/* ==========================
   PUBLIC SEO LANDING PAGES — shared styles
   Reuses --brand / --ink / --muted / --soft-bg / --border-soft tokens
   defined in ../home/style.css (loaded before this file on every page
   that uses it). Visually consistent with shared/legal.css.
========================== */
html{overflow-x:hidden;}
html, body { width:100%; max-width:100%; overflow-x:hidden; }
*, *::before, *::after { box-sizing:border-box; }
img, video, svg, canvas { max-width:100%; }
img { height:auto; }

.seo-hero{
    padding:clamp(60px, 10vw, 100px) clamp(18px, 6vw, 8%) clamp(48px, 8vw, 72px);
    text-align:center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 70px; /* Offset for fixed navbar */
}
.seo-hero h1{
    color: var(--tb-navy);
    font-size:clamp(30px, 5vw, 46px);
    font-weight: 800;
    margin-bottom:14px;
    line-height:1.15;
}
.seo-hero p{
    color: var(--tb-ink-soft);
    font-size:clamp(15px, 2vw, 17px);
    max-width:640px;
    margin:0 auto 24px;
}
.seo-hero-ctas{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}
.seo-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 26px;
    border-radius:30px;
    font-weight:600;
    font-size:15px;
    text-decoration:none;
    cursor:pointer;
    border:none;
    transition:transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.seo-btn-primary{
    background: linear-gradient(135deg, var(--tb-primary), var(--tb-accent));
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}
.seo-btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(13, 110, 253, 0.3); }
.seo-btn-ghost{
    background:rgba(255,255,255,0.8);
    color: var(--tb-primary);
    border:1.5px solid var(--tb-primary-light);
}
.seo-btn-ghost:hover{ background:#fff; border-color: var(--tb-primary); }

.seo-section{
    padding: var(--section-padding) var(--container-px);
    max-width:1120px;
    margin:0 auto;
}

@media (max-width: 768px) {
    .seo-section {
        padding-block: var(--section-gap-mobile);
    }
}
.seo-section.alt{ background: transparent; max-width:none; }
.seo-section.alt > .seo-inner{ max-width:1120px; margin:0 auto; }

.seo-section h2{
    font-size:clamp(22px, 3.4vw, 30px);
    color:var(--ink);
    font-weight:700;
    margin-bottom:10px;
}
.seo-section h3{
    font-size:18px;
    color:var(--ink);
    font-weight:600;
    margin-bottom:8px;
}
.seo-section > p.lead{
    color:var(--muted);
    font-size:15.5px;
    max-width:760px;
    margin-bottom:28px;
}
.seo-section p{
    color:var(--ink-soft);
    line-height:1.7;
    font-size:15px;
}

.seo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap:22px;
    margin-top:24px;
}
.seo-card{
    background:#fff;
    border:1px solid var(--border-soft);
    border-radius:16px;
    padding:26px 22px;
    transition:transform .18s ease, box-shadow .18s ease;
}
.seo-card:hover{ transform:translateY(-4px); box-shadow:0 14px 28px rgba(13,110,253,.1); }
.seo-card i{
    width:46px; height:46px;
    display:flex; align-items:center; justify-content:center;
    border-radius:12px;
    background:var(--brand-light);
    color:var(--brand);
    font-size:19px;
    margin-bottom:14px;
}
.seo-card h3{ margin-bottom:8px; }
.seo-card p{ font-size:14.5px; color:var(--muted); margin:0; }

.seo-steps{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:20px;
    margin-top:26px;
    counter-reset: seo-step;
}
.seo-step{
    position:relative;
    background:#fff;
    border:1px solid var(--border-soft);
    border-radius:16px;
    padding:24px 20px 20px;
}
.seo-step::before{
    counter-increment: seo-step;
    content: counter(seo-step);
    display:flex; align-items:center; justify-content:center;
    width:32px; height:32px;
    border-radius:50%;
    background:var(--brand);
    color:#fff;
    font-weight:700;
    font-size:14px;
    margin-bottom:14px;
}
.seo-step h3{ margin-bottom:6px; font-size:16px; }
.seo-step p{ font-size:14px; color:var(--muted); margin:0; }

.seo-faq{
    margin-top:22px;
    display:flex;
    flex-direction:column;
    gap:12px;
}
.seo-faq-item{
    background:#fff;
    border:1px solid var(--border-soft);
    border-radius:14px;
    overflow:hidden;
}
.seo-faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:18px 20px;
    font-weight:600;
    color:var(--ink);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}
.seo-faq-item summary::-webkit-details-marker{ display:none; }
.seo-faq-item summary::after{
    content:"\002B";
    font-size:20px;
    color:var(--brand);
    flex-shrink:0;
    transition:transform .2s ease;
}
.seo-faq-item[open] summary::after{ transform:rotate(45deg); }
.seo-faq-item p{
    padding:0 20px 18px;
    margin:0;
    color:var(--muted);
    font-size:14.5px;
}

.seo-cta-band {
    background: linear-gradient(135deg, #071A3D 0%, #0B2A63 50%, #061733 100%);
    border-radius: 24px;
    padding: clamp(32px, 5vw, 52px);
    text-align: center;
    color: #fff;
    margin: clamp(40px, 6vw, 60px) auto 0;
    max-width: 1120px;
    position: relative;
    overflow: hidden;
}

.seo-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.seo-cta-band h2{ color:#fff; margin-bottom:10px; }
.seo-cta-band p{ color:#dce7ff; max-width:560px; margin:0 auto 22px; }

.seo-links-row{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:28px;
}
.seo-links-row a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:30px;
    border:1.5px solid var(--border-soft);
    color:var(--ink-soft);
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:border-color .18s ease, color .18s ease, background .18s ease;
}
.seo-links-row a:hover{
    border-color:var(--brand);
    color:var(--brand);
    background:var(--brand-light);
}

.seo-breadcrumb{
    max-width:1120px;
    margin:0 auto;
    padding:16px clamp(18px, 6vw, 8%) 0;
    font-size:13px;
    color:var(--muted);
}
.seo-breadcrumb a{ color:var(--muted); text-decoration:none; }
.seo-breadcrumb a:hover{ color:var(--brand); }

@media (max-width:640px){
    .seo-hero-ctas{ flex-direction:column; align-items:stretch; }
    .seo-btn{ justify-content:center; }
}
