:root{
    --teal:#18B8B6;
    --teal-dark:#0E9998;
    --navy:#1F2C49;
    --dark:#071428;
    --dark-2:#0B1B34;
    --white:#ffffff;
    --light:#F6F9FC;
    --muted:#657185;
    --border:#E5EAF1;
    --shadow:0 16px 42px rgba(31,44,73,.12);
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background:#ffffff;
    color:#111B2E;
    line-height:1.55;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(86%,1320px);
    margin:0 auto;
}

/* =========================
   HEADER
========================= */

.site-header{
    background:#ffffff;
    border-bottom:1px solid rgba(31,44,73,.08);
    height:72px;
    display:flex;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    width:100%;
}

.logo img{
    height:42px;
    width:auto;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:34px;
}

.main-nav > a,
.nav-dropdown > a{
    color:#0E1830;
    font-size:14px;
    font-weight:800;
    transition:.2s ease;
}

.main-nav a:hover{
    color:var(--teal);
}

.nav-cta{
    background:var(--teal);
    color:#ffffff !important;
    padding:12px 18px;
    border-radius:6px;
    box-shadow:0 8px 20px rgba(24,184,182,.22);
}

.nav-cta:hover{
    background:#20C7C5;
}

/* =========================
   DROPDOWN
========================= */

.nav-dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:260px;
    background:#ffffff;
    border:1px solid rgba(31,44,73,.08);
    border-radius:10px;
    box-shadow:var(--shadow);
    padding:12px 0;
    display:none;
}

.dropdown-menu a{
    display:block;
    padding:12px 18px;
    color:#1A2742;
    font-size:14px;
    font-weight:600;
}

.dropdown-menu a:hover{
    background:#F6F9FC;
    color:var(--teal-dark);
}

.nav-dropdown:hover .dropdown-menu{
    display:block;
}

/* =========================
   MOBILE NAV
========================= */

.mobile-menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    color:#1A2742;
    cursor:pointer;
}

.mobile-nav{
    display:none;
    flex-direction:column;
    background:#ffffff;
    border-bottom:1px solid var(--border);
    padding:12px 24px 24px;
}

.mobile-nav a{
    padding:12px 0;
    color:#1A2742;
    font-weight:700;
    border-bottom:1px solid #EEF2F7;
}

/* =========================
   FOOTER
========================= */

.site-footer{
    background:#06101F;
    color:#C8D3E0;
    padding:56px 0 28px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.7fr repeat(4,1fr);
    gap:42px;
    padding-bottom:36px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.footer-brand img{
    height:48px;
    width:auto;
    margin-bottom:18px;
}

.footer-brand p{
    max-width:320px;
    color:#B7C7D8;
}

.footer-column h4{
    color:#ffffff;
    margin-bottom:14px;
    font-size:15px;
}

.footer-column a{
    display:block;
    margin-bottom:10px;
    color:#C8D3E0;
    font-size:14px;
}

.footer-column a:hover{
    color:var(--teal);
}

.footer-bottom{
    padding-top:24px;
    color:#8FA0B5;
    font-size:14px;
}

/* =========================
   FORM PAGES
========================= */

.dbt-form-page{
    background:linear-gradient(180deg,#071428 0%,#0B1B34 320px,#F6F9FC 320px,#F6F9FC 100%);
    min-height:100vh;
    padding-bottom:80px;
}

.dbt-form-hero{
    padding:96px 0 48px;
    color:#ffffff;
}

.dbt-form-hero .eyebrow{
    color:var(--teal);
    text-transform:uppercase;
    font-size:13px;
    font-weight:800;
    letter-spacing:.12em;
    margin-bottom:16px;
}

.dbt-form-hero h1{
    font-size:clamp(42px,5vw,72px);
    line-height:1.02;
    letter-spacing:-.04em;
    font-weight:900;
    max-width:820px;
    margin-bottom:20px;
}

.dbt-form-hero p{
    max-width:760px;
    font-size:20px;
    color:#D6E0EC;
}

.dbt-form-card{
    background:#ffffff;
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:48px;
    margin-top:-10px;
    position:relative;
    z-index:10;
}

.dbt-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    margin-bottom:24px;
}

.dbt-form-grid label,
.dbt-form-card label{
    display:flex;
    flex-direction:column;
    gap:10px;
    color:#1A2742;
    font-size:14px;
    font-weight:700;
}

.dbt-form-card input,
.dbt-form-card textarea,
.dbt-form-card select{
    width:100%;
    border:1px solid #D6E0EC;
    border-radius:10px;
    padding:16px 18px;
    font-size:16px;
    font-family:inherit;
    color:#0E1830;
    background:#ffffff;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.dbt-form-card textarea{
    resize:vertical;
    min-height:180px;
}

.dbt-form-card input:focus,
.dbt-form-card textarea:focus,
.dbt-form-card select:focus{
    outline:none;
    border-color:var(--teal);
    box-shadow:0 0 0 4px rgba(24,184,182,.15);
}

.cf-turnstile{
    margin:28px 0;
}

.dbt-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--teal);
    color:#ffffff;
    border:none;
    border-radius:10px;
    padding:16px 28px;
    font-size:15px;
    font-weight:800;
    letter-spacing:.02em;
    text-transform:uppercase;
    cursor:pointer;
    transition:.2s ease;
    box-shadow:0 12px 24px rgba(24,184,182,.24);
}

.dbt-button:hover{
    background:#20C7C5;
    transform:translateY(-2px);
}

/* =========================
   PAGE HELPERS
========================= */

.section{
    padding:72px 0;
}

.section-title{
    font-size:clamp(34px,4vw,52px);
    line-height:1.08;
    letter-spacing:-.04em;
    font-weight:900;
}

.section-subtitle{
    color:#526176;
    font-size:18px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    border-radius:6px;
    padding:16px 24px;
    font-weight:800;
    font-size:14px;
    letter-spacing:.02em;
    transition:.2s ease;
    text-transform:uppercase;
}

.btn-primary{
    background:var(--teal);
    color:#ffffff;
}

.btn-primary:hover{
    background:#20C7C5;
    transform:translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:860px){

    .main-nav{
        display:none;
    }

    .mobile-menu-toggle{
        display:block;
    }

    .mobile-nav.active{
        display:flex;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .dbt-form-grid{
        grid-template-columns:1fr;
    }

    .dbt-form-card{
        padding:32px 24px;
    }

    .container{
        width:92%;
    }

}