
/* =========================================================
   WEBSITE REDESIGN LANDING PAGE
   File: /assets/css/website-redesign.css
   ========================================================= */


/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */

:root {
    --primary: #0d3b66;
    --primary-dark: #082b4a;
    --primary-light: #eaf3fb;

    --secondary: #f97316;
    --secondary-dark: #ea580c;
    --secondary-light: #fff1e8;

    --success: #198754;
    --danger: #dc3545;

    --dark: #172033;
    --text: #4b5563;
    --light-text: #6b7280;

    --white: #ffffff;
    --light-bg: #f7f9fc;
    --border-color: #e5e7eb;

    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 15px 40px rgba(13, 59, 102, 0.12);

    --radius: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s ease;
}


/* =========================================================
   2. GLOBAL RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}


/* =========================================================
   3. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}


h1 {
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    font-weight: 800;
}


h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}


h3 {
    font-size: 1.15rem;
}


p {
    margin-bottom: 1rem;
}


a {
    transition: var(--transition);
}


/* =========================================================
   4. COMMON SECTION STYLING
   ========================================================= */

.section-padding {
    padding: 100px 0;
}


.section-heading {
    max-width: 800px;
    margin: 0 auto 60px;
}


.section-heading h2 {
    margin-bottom: 18px;
}


.section-heading h2 span,
.hero-content h1 span,
.why-choose-content h2 span {
    color: var(--primary);
}


.section-heading p {
    font-size: 1.05rem;
    color: var(--light-text);
}


.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}


/* =========================================================
   5. BUTTONS
   ========================================================= */

.btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
}


.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}


.btn-primary:hover,
.btn-primary:focus {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}


.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}


.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* =========================================================
   6. LANDING PAGE HEADER
   ========================================================= */

.landing-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
}


.landing-logo {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
}


.landing-logo:hover {
    color: var(--primary);
}


.logo-text {
    display: flex;
    align-items: center;
}


.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}


/* =========================================================
   7. HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;
    padding: 90px 0 100px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f8fc 55%,
            #e9f2fa 100%
        );
    overflow: hidden;
}


.hero-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: rgba(13, 59, 102, 0.05);
    right: -250px;
    top: -180px;
}


.hero-section .container {
    position: relative;
    z-index: 2;
}


.hero-content {
    padding-right: 30px;
}


.hero-content h1 {
    margin-bottom: 22px;
}


.hero-description {
    max-width: 620px;
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}


.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}


.hero-benefit {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}


.hero-benefit i {
    color: var(--primary);
    font-size: 1.1rem;
}


.hero-visual {
    text-align: center;
    position: relative;
}


.hero-visual img {
    max-width: 100%;
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.15));
}


/* =========================================================
   8. PROBLEM SECTION
   ========================================================= */

.problems-section {
    background: var(--white);
}


.problem-card {
    height: 100%;
    text-align: center;
    padding: 25px 15px;
    transition: var(--transition);
}


.problem-card:hover {
    transform: translateY(-5px);
}


.problem-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 1.4rem;
}


.problem-card h3 {
    font-size: 0.95rem;
    margin: 0;
}


/* =========================================================
   9. BEFORE / AFTER SECTION
   ========================================================= */

.transformation-section {
    background:
        linear-gradient(
            90deg,
            #fff8f5 0%,
            #ffffff 50%,
            #f2faf6 100%
        );
}


.website-comparison {
    padding: 25px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}


.comparison-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}


.before-website .comparison-label {
    background: #fff0f0;
    color: var(--danger);
}


.after-website .comparison-label {
    background: #e9f8ef;
    color: var(--success);
}


.website-comparison img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}


.website-comparison ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


.website-comparison li {
    margin-bottom: 10px;
    font-size: 0.92rem;
}


.before-website li i {
    color: var(--danger);
    margin-right: 8px;
}


.after-website li i {
    color: var(--success);
    margin-right: 8px;
}


.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary);
}


.transformation-arrow i {
    font-size: 3rem;
}


.transformation-arrow span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   10. FEATURES SECTION
   ========================================================= */

.features-section {
    background: var(--white);
}


.feature-card {
    height: 100%;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}


.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}


.feature-card > i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.3rem;
}


.feature-card h3 {
    margin-bottom: 12px;
}


.feature-card p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 0.94rem;
}


/* =========================================================
   11. WHY CHOOSE US
   ========================================================= */

.why-choose-section {
    background: var(--light-bg);
}


.why-choose-content h2 {
    margin-bottom: 20px;
}


.why-choose-content p {
    color: var(--light-text);
}


.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}


.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}


.value-item i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
}


.value-item span {
    color: var(--dark);
    font-size: 0.92rem;
    font-weight: 600;
}


/* =========================================================
   12. PROCESS SECTION
   ========================================================= */

.process-section {
    background: var(--white);
}


.process-step {
    position: relative;
    height: 100%;
    text-align: center;
    padding: 15px;
}


.step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}


.process-step h3 {
    margin-bottom: 12px;
    font-size: 1rem;
}


.process-step p {
    margin-bottom: 0;
    font-size: 0.88rem;
    color: var(--light-text);
}


/* =========================================================
   13. MID CTA SECTION
   ========================================================= */

.mid-cta-section {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
}


.mid-cta-content {
    max-width: 760px;
    margin: 0 auto;
}


.mid-cta-content .section-eyebrow {
    color: #9ec8ed;
}


.mid-cta-content h2 {
    color: var(--white);
    margin-bottom: 18px;
}


.mid-cta-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 30px;
}


/* =========================================================
   14. PORTFOLIO SECTION
   ========================================================= */

.portfolio-section {
    background: var(--white);
}


.portfolio-item {
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background: var(--white);
    transition: var(--transition);
}


.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}


.portfolio-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}


.portfolio-item h3 {
    padding: 20px;
    margin: 0;
    font-size: 1rem;
}


/* =========================================================
   15. PRICING SECTION
   ========================================================= */

/* =========================================================
   PRICING SECTION
========================================================= */

.pricing-section {
    background: var(--light-bg);
}


/* ---------------------------------------------------------
   PRICING CARD
--------------------------------------------------------- */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;
    padding: 38px 30px 30px;

    background: var(--white);

    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);

    text-align: center;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}


.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}


/* ---------------------------------------------------------
   FEATURED / POPULAR CARD
--------------------------------------------------------- */

.featured-pricing {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}


.featured-pricing:hover {
    transform: translateY(-8px);
}


/* ---------------------------------------------------------
   POPULAR BADGE
--------------------------------------------------------- */

.popular-badge {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    padding: 6px 16px;

    background: var(--primary);
    color: var(--white);

    border-radius: 30px;

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   PACKAGE TITLE
--------------------------------------------------------- */

.pricing-card h3 {
    margin-bottom: 25px;

    color: var(--dark);
    font-size: 1.25rem;
}


/* ---------------------------------------------------------
   PRICE
--------------------------------------------------------- */

.price {
    min-height: 85px;
    margin-bottom: 25px;
}


.price span {
    display: block;

    margin-bottom: 4px;

    color: var(--light-text);

    font-size: 0.8rem;
    font-weight: 500;
}


.price strong {
    display: block;

    color: var(--primary);

    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}


/* ---------------------------------------------------------
   FEATURE LIST
--------------------------------------------------------- */

.pricing-card ul {
    flex-grow: 1;

    list-style: none;

    padding: 0;
    margin: 0 0 30px;

    text-align: left;
}


.pricing-card li {
    position: relative;

    padding: 10px 0 10px 25px;

    border-bottom: 1px solid var(--border-color);

    font-size: 0.9rem;
    color: var(--text);
}


/* Check icon */

.pricing-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--success);

    font-weight: 700;
}


.pricing-card li:last-child {
    border-bottom: none;
}


/* ---------------------------------------------------------
   BUTTON ALIGNMENT
--------------------------------------------------------- */

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}


/* ---------------------------------------------------------
   BASIC PACKAGE BUTTON
--------------------------------------------------------- */

.btn-pricing-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}


.btn-pricing-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* ---------------------------------------------------------
   POPULAR PACKAGE BUTTON
--------------------------------------------------------- */

.featured-pricing .btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}


.featured-pricing .btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   ADVANCED PACKAGE BUTTON
--------------------------------------------------------- */

.btn-pricing-dark {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


.btn-pricing-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   PRICING NOTE
--------------------------------------------------------- */

.pricing-note {
    max-width: 750px;

    margin-left: auto;
    margin-right: auto;

    color: var(--light-text);

    font-size: 0.85rem;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767.98px) {

    .pricing-card {
        padding: 35px 25px 28px;
    }


    .featured-pricing {
        margin-top: 15px;
    }


    .price strong {
        font-size: 2rem;
    }

}


/* =========================================================
   16. FAQ SECTION
   ========================================================= */

.faq-section {
    background: var(--white);
}


.faq-section .accordion {
    max-width: 900px;
    margin: 0 auto;
}


.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    overflow: hidden;
}


.accordion-button {
    padding: 20px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: none !important;
}


.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}


.accordion-body {
    color: var(--light-text);
    line-height: 1.7;
}


/* =========================================================
   17. FINAL CTA / LEAD FORM
   ========================================================= */

.final-cta-section {
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            #102f4d
        );
}


.final-cta-content .section-eyebrow {
    color: #9ec8ed;
}


.final-cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}


.final-cta-content p {
    color: rgba(255, 255, 255, 0.75);
}


.review-benefits {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}


.review-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}


.review-benefits i {
    color: #6ee7a8;
}


.landing-form-wrapper {
    padding: 35px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}


.form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}


.form-control {
    min-height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 10px 14px;
}


.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 59, 102, 0.1);
}


textarea.form-control {
    min-height: auto;
}


.improvement-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


.form-check {
    padding: 12px 10px 12px 35px;
    border: 1px solid var(--border-color);
    border-radius: 7px;
}


.form-check-input {
    margin-top: 0.3rem;
}


.form-check-label {
    font-size: 0.85rem;
    cursor: pointer;
}

/* =========================================================
   WHATSAPP SECONDARY CTA
========================================================= */

.whatsapp-cta {
    margin-top: 22px;
}

.whatsapp-divider {
    position: relative;
    text-align: center;
    margin: 18px 0;
}

.whatsapp-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--border-color);
}

.whatsapp-divider span {
    position: relative;
    z-index: 1;
    padding: 0 12px;
    background: var(--white);
    color: var(--light-text);
    font-size: 0.72rem;
    font-weight: 700;
}


/* WhatsApp button */

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 13px;

    width: 100%;
    padding: 14px 16px;

    border: 1px solid #25D366;
    border-radius: 9px;

    background: #f4fff8;
    color: #172033;

    text-decoration: none;

    transition: var(--transition);
}

.whatsapp-button:hover {
    background: #25D366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.20);
}

.whatsapp-button > .fa-whatsapp {
    flex-shrink: 0;
    font-size: 1.7rem;
    color: #25D366;
}

.whatsapp-button:hover > .fa-whatsapp {
    color: #ffffff;
}

.whatsapp-button span {
    flex: 1;
    text-align: left;
}

.whatsapp-button strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
}

.whatsapp-button small {
    display: block;
    margin-top: 3px;
    font-size: 0.72rem;
    color: var(--light-text);
}

.whatsapp-button:hover small {
    color: rgba(255,255,255,0.85);
}

.whatsapp-arrow {
    font-size: 0.8rem;
    color: #25D366;
}

.whatsapp-button:hover .whatsapp-arrow {
    color: #ffffff;
}


/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;
    color: #ffffff;

    font-size: 1.8rem;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    z-index: 999;

    transition: var(--transition);
}

.floating-whatsapp:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
}



/* =========================================================
   18. FOOTER
   ========================================================= */

.landing-footer {
    padding: 70px 0 25px;
    background: #081c2e;
    color: rgba(255, 255, 255, 0.65);
}


.footer-brand h3,
.landing-footer h4 {
    color: var(--white);
}


.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}


.landing-footer h4 {
    margin-bottom: 18px;
    font-size: 1rem;
}


.landing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.landing-footer li {
    margin-bottom: 9px;
}


.landing-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
}


.landing-footer a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}


.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}


.social-links a:hover {
    background: var(--secondary);
}


.footer-contact {
    margin-bottom: 0;
}


.landing-footer hr {
    margin: 40px 0 25px;
    border-color: rgba(255, 255, 255, 0.1);
}


.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
}


.footer-bottom div {
    display: flex;
    gap: 12px;
    align-items: center;
}


/* =========================================================
   19. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .section-padding {
        padding: 80px 0;
    }


    .hero-section {
        padding: 70px 0 80px;
    }


    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-buttons,
    .hero-benefits {
        justify-content: center;
    }


    .hero-visual {
        max-width: 700px;
        margin: 0 auto;
    }


    .transformation-arrow {
        flex-direction: row;
        justify-content: center;
        padding: 10px 0;
    }


    .transformation-arrow i {
        transform: rotate(90deg);
    }


    .why-choose-content {
        text-align: center;
    }


    .final-cta-content {
        text-align: center;
    }


    .review-benefits {
        display: inline-block;
        text-align: left;
    }

}


/* =========================================================
   20. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .section-padding {
        padding: 65px 0;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading p {
        font-size: 0.95rem;
    }


    .landing-logo {
        font-size: 1.25rem;
    }


    .header-cta {
        font-size: 0.75rem;
        padding: 9px 13px;
    }


    .hero-section {
        padding: 60px 0 70px;
    }


    .hero-content h1 {
        font-size: 2.25rem;
    }


    .hero-description {
        font-size: 1rem;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-benefits {
        flex-direction: column;
        align-items: flex-start;
        max-width: 220px;
        margin: 0 auto;
        gap: 13px;
    }


    .problem-card {
        padding: 15px;
    }


    .website-comparison {
        padding: 18px;
    }


    .feature-card {
        padding: 25px;
    }


    .mid-cta-section,
    .final-cta-section {
        padding: 70px 0;
    }


    .process-step {
        padding: 20px 15px;
    }


    .pricing-card {
        padding: 35px 25px;
    }


    .improvement-options {
        grid-template-columns: 1fr;
    }


    .landing-form-wrapper {
        padding: 25px 20px;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


    .footer-bottom div {
        flex-wrap: wrap;
    }

}


/* =========================================================
   21. SMALL MOBILE DEVICES
   ========================================================= */

@media (max-width: 420px) {

    .header-cta {
        font-size: 0.68rem;
        padding: 8px 10px;
    }


    .landing-logo {
        font-size: 1.1rem;
    }


    .hero-content h1 {
        font-size: 2rem;
    }


    .hero-section {
        padding-top: 45px;
    }

}

