/* ============================================
   RESET & VARIABLES
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue-deep:   #044D60;
    --blue-mid:    #08A0C7;
    --blue-vivid:  #0ABAE6;
    --teal:        #08A0C7;
    --teal-light:  #E6F6F9;
    --blue-light:  #E6F6F9;
    --accent:      #FF5C35;
    --white:       #FFFFFF;
    --gray-50:     #F7F9FC;
    --gray-100:    #EEF1F7;
    --gray-400:    #8A96AA;
    --gray-700:    #3A4255;
    --gray-900:    #111827;
    --green:       #16A34A;
    --green-light: #DCFCE7;

    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   40px;

    --shadow-sm:   0 2px 8px rgba(4,77,96,.08);
    --shadow-md:   0 8px 32px rgba(4,77,96,.12);
    --shadow-lg:   0 20px 60px rgba(4,77,96,.18);

    --font-head:   'Sora', sans-serif;
    --font-body:   'DM Sans', sans-serif;

    --wpp: #25D366;
    --wpp-dark: #128C7E;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ============================================
   UTILITIES
============================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-light);
    color: var(--teal);
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--blue-deep);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 560px;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    cursor: pointer;
    border: none;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-wpp {
    background: var(--wpp);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wpp:hover {
    background: var(--wpp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

.btn-outline {
    background: transparent;
    color: var(--blue-mid);
    border: 2px solid var(--blue-mid);
}
.btn-outline:hover {
    background: var(--blue-mid);
    color: #fff;
}

.btn-primary {
    background: var(--blue-mid);
    color: #fff;
    box-shadow: 0 4px 20px rgba(8,160,199,.3);
}
.btn-primary:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(8,160,199,.4);
}

/* ============================================
   TOPBAR
============================================ */
.topbar {
    background: var(--blue-deep);
    color: rgba(255,255,255,.8);
    font-size: .8rem;
    font-weight: 500;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-item svg { flex-shrink: 0; }

/* ============================================
   HEADER
============================================ */
.header {
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav a {
    color: var(--gray-700);
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}
.nav a:hover {
    color: var(--blue-mid);
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-mid);
    transition: width 0.3s ease;
}
.nav a:hover::after {
    width: 100%;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--blue-mid);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO
============================================ */
.hero {
    background: linear-gradient(135deg, #023642 0%, #08A0C7 60%, #0ABAE6 100%);
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center; /* Changed from end to center for better balance */
    position: relative;
    padding-bottom: 80px; /* Added padding to compensate for the center alignment */
}

.hero-content {
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
}
/* Removed pulse animation */

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--teal);
    position: relative;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}
.hero-stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.85);
    font-weight: 500;
}

/* Hero image card */
.hero-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
/* Removed float animation */
.hero-card-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
}
.hero-card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
}
.hero-card-icon {
    width: 40px; height: 40px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-card-text strong { display: block; font-family: var(--font-head); font-size: .85rem; color: var(--blue-deep); }
.hero-card-text span { font-size: .75rem; color: var(--gray-400); }

/* ============================================
   TRUST BAR
============================================ */
.trust-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 20px 0;
}
.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-icon {
    width: 40px; height: 40px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-text strong { display: block; font-family: var(--font-head); font-size: .82rem; color: var(--blue-deep); font-weight: 700; }
.trust-text span { font-size: .75rem; color: var(--gray-400); }

/* ============================================
   CONDITIONS (what we treat)
============================================ */
.conditions { background: #fff; }
.conditions-header { text-align: center; margin-bottom: 52px; }
.conditions-header .section-subtitle { margin: 0 auto; }

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.condition-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all .25s ease;
    cursor: default;
}
.condition-card:hover {
    background: #fff;
    border-color: var(--blue-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.condition-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--blue-mid);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
}
.condition-card:hover .condition-icon {
    background: var(--blue-mid);
    color: var(--white);
    transform: rotate(10deg);
}
.condition-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 8px;
}
.condition-desc {
    font-size: .85rem;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ============================================
   HOW IT WORKS
============================================ */
.steps { background: var(--blue-deep); }
.steps-header { text-align: center; margin-bottom: 52px; }
.steps-header .section-title { color: #fff; }
.steps-header .section-subtitle { color: rgba(255,255,255,.6); margin: 0 auto; }
.steps-header .tag { background: rgba(0,181,163,.15); color: var(--teal); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.6% + 20px);
    right: calc(16.6% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--teal), transparent, var(--teal));
    opacity: .35;
}

.step-card { text-align: center; position: relative; }
.step-num {
    width: 56px; height: 56px;
    background: var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 1.3rem; font-weight: 800;
    color: var(--blue-deep);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.step-title {
    font-family: var(--font-head);
    font-size: 1rem; font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.step-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ============================================
   PRICING / CTA STRIP
============================================ */
.pricing-strip {
    background: linear-gradient(135deg, var(--teal) 0%, #009688 100%);
    padding: 60px 0;
}
.pricing-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.pricing-content .tag { background: rgba(255,255,255,.2); color: #fff; }
.pricing-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.pricing-note { font-size: .9rem; color: rgba(255,255,255,.75); }
.pricing-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
    background: #fff;
    color: var(--teal);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ============================================
   FAQ
============================================ */
.faq { background: var(--gray-50); }
.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 72px;
    align-items: start;
}
.faq-sidebar .section-subtitle { margin-bottom: 32px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item.active { border-color: var(--teal); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 600;
    color: var(--blue-deep);
    gap: 12px;
    user-select: none;
}
.faq-question span {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 700;
    color: var(--blue-mid);
    flex-shrink: 0;
    transition: all .2s;
}
.faq-item.active .faq-question span {
    background: var(--teal);
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 22px;
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

/* ============================================
   LOCATION
============================================ */
.location { background: #fff; }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.location-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.location-item-icon {
    width: 44px; height: 44px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.location-item-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 4px;
}
.location-item-text p { font-size: .85rem; color: var(--gray-400); line-height: 1.6; }

.map-container {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    position: relative;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    padding: 80px 0;
    text-align: center;
}
.final-cta .tag { background: rgba(0,181,163,.2); color: var(--teal); }
.final-cta-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.final-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: #021D24;
    padding: 32px 0;
}
.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-dev { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-dev a { font-weight: 600; color: rgba(255,255,255,.5) !important; transition: color .2s; }
.footer-dev a:hover { color: #fff !important; }

/* ============================================
   FLOATING WhatsApp
============================================ */
.float-wpp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 62px; height: 62px;
    background: var(--wpp);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,.5);
    transition: all .25s;
    cursor: pointer;
}
.float-wpp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.float-wpp-tooltip {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-900);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.float-wpp:hover .float-wpp-tooltip { opacity: 1; }

/* ============================================
   ANIMATIONS
============================================ */
.anim { opacity: 1; }
/* Removed fadeInUp animation */
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .3s; }
.anim-d4 { animation-delay: .4s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
    .menu-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 100px 32px 40px;
    }
    .nav.is-active { right: 0; }
    .nav a { 
        width: 100%;
        font-size: 1rem; 
        color: var(--blue-deep); 
        padding: 18px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .hero { padding: 40px 0; }
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px; 
        padding-bottom: 0;
    }
    .hero-content {
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; border-top-color: rgba(255,255,255,.1); }
    .hero-card { 
        display: block; 
        max-width: 400px; 
        margin: 0 auto;
        border-radius: var(--radius-lg);
    }
    .hero-card-img { height: 300px; }
    
    .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
    .conditions-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .header .container { justify-content: space-between; height: 64px; }
    .logo img { height: 38px; }
    .section { padding: 52px 0; }
    .btn { padding: 14px 24px; font-size: .95rem; width: 100%; justify-content: center; }
    .hero-title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
    .hero-desc { font-size: .95rem; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; }
    .conditions-grid { grid-template-columns: 1fr; }
    .trust-bar .container { grid-template-columns: 1fr; gap: 24px; }
    .trust-item { justify-content: flex-start; max-width: 320px; margin: 0 auto; width: 100%; }
    .trust-text { text-align: left; }
    .topbar .container { justify-content: center; }
    .topbar-item:last-child { display: none; }
    .pricing-strip .container { flex-direction: column; text-align: center; }
    .hero-stats { gap: 20px; }
    .footer .container { flex-direction: column; text-align: center; }
}
