:root{
    --primary:#0f766e;
    --primary-light:#14b8a6;
    --primary-soft:#ccfbf1;
    --dark:#0f172a;
    --dark-soft:#1e293b;
    --text:#1e293b;
    --muted:#64748b;
    --bg:#f8fafc;
    --white:#ffffff;
    --border:#e2e8f0;
    --shadow:0 24px 70px rgba(15,23,42,.12);
    --shadow-soft:0 14px 40px rgba(15,23,42,.08);
    --radius:28px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    line-height:1.65;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:16px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(15,23,42,.06);
    z-index:1000;
}

.logo img{
    height:95px;
    width:auto;
    object-fit:contain;
}

.nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.nav a{
    font-size:15px;
    font-weight:800;
    color:#334155;
}

.nav a:hover{
    color:var(--primary);
}

.nav-cta{
    background:var(--dark);
    color:white !important;
    padding:12px 18px;
    border-radius:999px;
}

.menu-btn{
    display:none;
    border:none;
    background:var(--dark);
    color:white;
    padding:11px 17px;
    border-radius:999px;
    font-weight:900;
    cursor:pointer;
}

.section{
    padding:110px 7%;
}

.hero{
    min-height:100vh;
    padding:150px 7% 90px;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:70px;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(20,184,166,.12);
    top:130px;
    left:-220px;
    z-index:-1;
}

.badge{
    display:inline-flex;
    align-items:center;
    background:var(--primary-soft);
    color:#115e59;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    margin-bottom:24px;
}

.hero h1{
    font-size:76px;
    line-height:.96;
    letter-spacing:-3.5px;
    color:var(--dark);
    margin-bottom:26px;
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    font-size:20px;
    color:#475569;
    max-width:680px;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 26px;
    border-radius:16px;
    font-weight:900;
    border:none;
    cursor:pointer;
    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:white;
    box-shadow:0 16px 35px rgba(15,118,110,.25);
}

.btn-secondary{
    background:white;
    color:var(--dark);
    border:1px solid var(--border);
}

.trust-row{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    color:#475569;
    font-size:14px;
    font-weight:800;
}

.hero-visual{
    position:relative;
    background:white;
    padding:18px;
    border-radius:36px;
    box-shadow:var(--shadow);
}

.hero-visual img{
    width:100%;
    height:590px;
    object-fit:cover;
    object-position:85% center;
    border-radius:26px;
}

.floating-card{
    position:absolute;
    left:-28px;
    bottom:42px;
    background:white;
    padding:22px 24px;
    border-radius:22px;
    box-shadow:var(--shadow);
    max-width:285px;
    font-weight:800;
    color:#475569;
}

.floating-card strong{
    display:block;
    font-size:42px;
    line-height:1;
    color:var(--primary);
    margin-bottom:6px;
}

.section-head{
    max-width:900px;
    margin:0 auto 64px;
    text-align:center;
}

.kicker{
    color:var(--primary);
    font-size:13px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section h2{
    font-size:52px;
    line-height:1.08;
    letter-spacing:-2px;
    color:var(--dark);
    margin-bottom:18px;
}

.section-head p,
.section p{
    color:var(--muted);
    font-size:17px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.value-card{
    background:white;
    padding:36px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(226,232,240,.7);
}

.value-card span{
    display:inline-flex;
    width:46px;
    height:46px;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:var(--primary-soft);
    color:var(--primary);
    font-weight:900;
    margin-bottom:22px;
}

.value-card h3{
    font-size:24px;
    color:var(--dark);
    margin-bottom:10px;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about{
    background:white;
}

.about-image{
    border-radius:34px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.about-image img{
    width:100%;
    height:620px;
    object-fit:cover;
    object-position:center;
}

.about-text h2 span{
    font-size:28px;
    color:var(--primary);
}

.about-text p{
    margin-bottom:18px;
}

.quote{
    margin-top:26px;
    padding:24px;
    border-left:5px solid var(--primary);
    background:#f0fdfa;
    border-radius:0 18px 18px 0;
    font-size:22px;
    font-weight:900;
    color:var(--dark);
}

.topic-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.topic-card{
    background:white;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(226,232,240,.7);
}

.topic-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    object-position:center;
}

.topic-card div{
    padding:28px;
}

.topic-card h3{
    font-size:23px;
    color:var(--dark);
    margin-bottom:10px;
}

.dark-section{
    background:linear-gradient(135deg,var(--dark),#12333a);
    color:white;
}

.dark-section h2,
.dark-section p{
    color:white;
}

.dark-section .kicker{
    color:#5eead4;
}

.process{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.step{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    padding:30px;
    border-radius:24px;
}

.step span{
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary-light);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    margin-bottom:18px;
}

.step h3{
    margin-bottom:10px;
    font-size:22px;
}

.included{
    background:#ecfeff;
}

.checklist{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.check{
    background:white;
    padding:18px 20px;
    border-radius:18px;
    box-shadow:var(--shadow-soft);
    font-weight:800;
    color:#334155;
    border:1px solid rgba(226,232,240,.75);
}

.check::before{
    content:"✓";
    color:var(--primary);
    font-weight:900;
    margin-right:10px;
}

.price-card{
    background:white;
    border-radius:34px;
    padding:54px;
    display:grid;
    grid-template-columns:1.5fr .7fr;
    gap:50px;
    align-items:center;
    box-shadow:var(--shadow);
    border:1px solid rgba(226,232,240,.8);
}

.price-box{
    background:linear-gradient(135deg,var(--primary),var(--dark));
    color:white;
    border-radius:28px;
    padding:34px;
    text-align:center;
}

.price-box span{
    display:block;
    font-weight:800;
    opacity:.8;
}

.price-box strong{
    display:block;
    font-size:58px;
    line-height:1;
    margin:10px 0;
}

.price-box p,
.price-box small{
    color:white;
}

.price-box small{
    display:block;
    margin-top:14px;
    opacity:.85;
}

.faq{
    max-width:930px;
    margin:0 auto;
}

.faq-item{
    background:white;
    border-radius:20px;
    margin-bottom:16px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    border:1px solid rgba(226,232,240,.8);
}

.faq-question{
    width:100%;
    border:none;
    background:white;
    padding:23px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    font-size:17px;
    font-weight:900;
    color:var(--dark);
    cursor:pointer;
}

.faq-question span{
    font-size:24px;
    transition:.25s ease;
    color:var(--primary);
}

.faq-answer{
    display:none;
    padding:0 24px 24px;
    color:var(--muted);
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

.contact-box{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    background:white;
    border-radius:34px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.contact-info{
    background:linear-gradient(135deg,var(--primary),var(--dark));
    color:white;
    padding:54px;
}

.contact-info h2{
    color:white;
}

.contact-info p{
    color:rgba(255,255,255,.88);
}

.contact-list{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:14px;
    font-weight:800;
}

form{
    padding:54px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-bottom:16px;
}

input,
select,
textarea{
    width:100%;
    padding:16px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:15px;
    background:white;
    color:var(--text);
}

textarea{
    min-height:140px;
    resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:var(--primary-light);
    box-shadow:0 0 0 4px rgba(20,184,166,.12);
}

.form-note{
    margin:20px 0;
    color:var(--muted);
    font-size:13px;
}

.success,
.error{
    padding:15px 17px;
    border-radius:14px;
    margin-bottom:18px;
    font-weight:800;
}

.success{
    background:#dcfce7;
    color:#166534;
}

.error{
    background:#fee2e2;
    color:#991b1b;
}

.reveal{
    opacity:0;
    transform:translateY(34px);
    transition:.75s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

footer{
    background:var(--dark);
    color:white;
    padding:38px 7%;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

@media(max-width:1100px){
    .hero,
    .split,
    .price-card,
    .contact-box{
        grid-template-columns:1fr;
    }

    .topic-grid{
        grid-template-columns:1fr 1fr;
    }

    .process{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:58px;
    }

    .hero-visual img{
        height:520px;
    }
}

@media(max-width:768px){
    .header{
        padding:14px 5%;
    }

    .logo img{
        height:100px;
    }

    .nav{
        display:none;
    }

    .nav.nav-open{
        display:flex;
        position:absolute;
        top:82px;
        left:5%;
        right:5%;
        flex-direction:column;
        align-items:flex-start;
        background:white;
        padding:24px;
        border-radius:22px;
        box-shadow:var(--shadow);
    }

    .menu-btn{
        display:block;
    }

    .section{
        padding:78px 5%;
    }

    .hero{
        padding:125px 5% 70px;
        gap:40px;
    }

    .hero h1{
        font-size:43px;
        letter-spacing:-1.6px;
    }

    .hero p{
        font-size:17px;
    }

    .section h2{
        font-size:35px;
        letter-spacing:-1px;
    }

    .value-grid,
    .topic-grid,
    .process,
    .form-row{
        grid-template-columns:1fr;
    }

    .hero-visual{
        padding:12px;
        border-radius:26px;
    }

    .hero-visual img{
        height:390px;
        border-radius:20px;
    }

    .floating-card{
        left:18px;
        right:18px;
        bottom:18px;
        max-width:none;
    }

    .about-image img{
        height:430px;
    }

    .price-card,
    form,
    .contact-info{
        padding:30px;
    }

    .price-box strong{
        font-size:48px;
    }

    footer{
        flex-direction:column;
    }
}
.header{
    height:110px !important;
    padding:10px 7% !important;
    overflow:visible !important;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:110px !important;
    width:auto;
    max-height:none;
    display:block;
}
.footer-links{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:.2s;
}

.footer-links a:hover{
    color:var(--primary-light);
}