:root {
    --page-bg:    #08090e;
    --surface:    #0e1220;
    --surface-2:  #141b2d;
    --surface-3:  #1a2338;
    --brand:      #ff6635;
    --brand-dim:  rgba(255,102,53,0.14);
    --brand-glow: rgba(255,102,53,0.28);
    --fg:         #eef0f8;
    --fg-dim:     rgba(238,240,248,0.62);
    --fg-muted:   rgba(238,240,248,0.35);
    --line:       rgba(255,255,255,0.07);
    --line-s:     rgba(255,255,255,0.13);
    --font-d:     'Space Grotesk', sans-serif;
    --font-b:     'Inter', sans-serif;
    --font-m:     'IBM Plex Mono', monospace;
    --r:          10px;
    --r-lg:       16px;
    --max-w:      1180px;
    --ease-out:   cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--page-bg);
    color: var(--fg);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

.inner {
    width: min(100%, var(--max-w));
    margin-inline: auto;
    padding-inline: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: var(--r);
    transition: background 0.18s, transform 0.18s;
    white-space: nowrap;
}
.btn-primary:hover { background: #e5531e; transform: translateY(-1px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--line-s);
    color: var(--fg);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--r);
    transition: border-color 0.18s, color 0.18s;
    white-space: nowrap;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-m);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-dim);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255,102,53,0.2);
}

.section-title {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--fg);
    margin-top: 16px;
}
.section-title em { font-style: normal; color: var(--brand); }

.section-sub {
    font-size: 1.05rem;
    color: var(--fg-dim);
    line-height: 1.75;
    max-width: 580px;
    margin-top: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: none; }

#site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(8,9,14,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: padding 0.25s;
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-block: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.logo-w1 {
    font-family: var(--font-m);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-muted);
}
.logo-w2 {
    font-family: var(--font-d);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--fg);
    letter-spacing: -0.01em;
}
.logo-w2 em { font-style: normal; color: var(--brand); }
.site-logo--sm .logo-mark { width: 32px; height: 32px; }
.site-logo--sm .logo-w2 { font-size: 0.88rem; }

nav { flex: 1; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links li { position: relative; }
.nav-links a,
.nav-links button {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg-dim);
    padding: 7px 12px;
    border-radius: 7px;
    transition: color 0.15s, background 0.15s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover { color: var(--fg); background: rgba(255,255,255,0.06); }

.has-drop::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}
.drop-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--surface);
    border: 1px solid var(--line-s);
    border-radius: var(--r);
    padding: 8px;
    min-width: 228px;
    z-index: 800;
    box-shadow: 0 20px 48px rgba(0,0,0,0.6);
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s, visibility 0.15s;
    transition-delay: 300ms;
}
.has-drop:hover .drop-menu,
.has-drop:focus-within .drop-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0ms;
}
.drop-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 0.855rem;
    color: var(--fg-dim);
    transition: color 0.13s, background 0.13s;
}
.drop-menu a:hover { color: var(--fg); background: rgba(255,255,255,0.06); }
.drop-menu a svg { color: var(--brand); flex-shrink: 0; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: auto;
}
.nav-phone {
    font-size: 0.855rem;
    font-weight: 600;
    color: var(--fg-dim);
    transition: color 0.15s;
}
.nav-phone:hover { color: var(--fg); }

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    font-size: 0.835rem;
    padding: 9px 18px;
    border-radius: 8px;
    transition: background 0.18s;
    white-space: nowrap;
}
.btn-primary-sm:hover { background: #e5531e; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

#mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--surface);
    z-index: 850;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
#mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mob-nav-inner { padding: 80px 28px 40px; }
.mob-nav-inner ul { display: flex; flex-direction: column; gap: 2px; list-style: none; }
.mob-nav-inner a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fg);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.mob-nav-inner .mob-sub {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--fg-dim);
    padding: 9px 0 9px 16px;
}
.mob-heading {
    font-family: var(--font-m);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    padding: 16px 0 4px;
}
.mob-cta a { color: var(--brand) !important; font-weight: 700; padding-top: 20px; }

#hero {
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -160px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(255,102,53,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-title {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--brand); }
.hero-sub {
    font-size: 1.05rem;
    color: var(--fg-dim);
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hero-stat-num {
    font-family: var(--font-d);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--fg);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero-stat-label { font-size: 0.76rem; color: var(--fg-muted); margin-top: 3px; }
.hero-stat-div { width: 1px; height: 34px; background: var(--line-s); }

.hero-visual {}
.dash-panel {
    background: var(--surface);
    border: 1px solid var(--line-s);
    border-radius: var(--r-lg);
    padding: 22px;
    position: relative;
    overflow: hidden;
}
.dash-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), #ff9466);
}
.dash-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.dash-label {
    font-family: var(--font-m);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
}
.dash-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-m);
    font-size: 0.6rem;
    color: #4ade80;
}
.dash-live::before {
    content: '';
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.dash-big-num {
    font-family: var(--font-d);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 2px;
}
.dash-big-sub { font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 18px; }
.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 68px;
    margin-bottom: 6px;
}
.dash-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #b83d18, #ff7a52);
    height: var(--h, 30%);
    opacity: 0.75;
    animation: bar-rise 0.9s var(--ease-out) both;
    animation-delay: var(--d, 0ms);
}
.dash-bar.hi { background: linear-gradient(to top, var(--brand), #ff9466); opacity: 1; }
@keyframes bar-rise { from { transform: scaleY(0); transform-origin: bottom; } to { transform: scaleY(1); } }
.dash-x {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-m);
    font-size: 0.56rem;
    color: var(--fg-muted);
    margin-bottom: 14px;
}
.dash-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.dash-chip {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
}
.dash-chip-v {
    font-family: var(--font-d);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--fg);
    letter-spacing: -0.02em;
}
.dash-chip-v.orange { color: var(--brand); }
.dash-chip-k { font-size: 0.66rem; color: var(--fg-muted); margin-top: 1px; }

#stats-strip {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 44px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.stat-cell {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-d);
    font-size: clamp(2rem,3.5vw,2.7rem);
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-lbl { font-size: 0.8rem; color: var(--fg-dim); line-height: 1.4; }

#services { padding: 96px 0; }
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head .section-sub { margin-inline: auto; margin-top: 14px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.svc-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    transition: border-color 0.2s, transform 0.22s;
    position: relative;
    overflow: hidden;
}
.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), #ff9466);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}
.svc-card:hover { border-color: rgba(255,102,53,0.3); transform: translateY(-5px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
    width: 52px; height: 52px;
    background: var(--brand-dim);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--brand);
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-name {
    font-family: var(--font-d);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.svc-desc { font-size: 0.88rem; color: var(--fg-dim); line-height: 1.72; margin-bottom: 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
    font-family: var(--font-m);
    font-size: 0.63rem;
    color: var(--fg-muted);
    background: var(--surface-2);
    border: 1px solid var(--line);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
}

#why { padding: 0 0 96px; }
.why-header { margin-bottom: 44px; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}
.why-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 28px 28px 76px;
    position: relative;
}
.why-num {
    position: absolute;
    left: 22px; top: 24px;
    font-family: var(--font-d);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-dim);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}
.why-title { font-family: var(--font-d); font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.why-body { font-size: 0.87rem; color: var(--fg-dim); line-height: 1.7; }

#process {
    padding: 96px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line-s) 20%, var(--line-s) 80%, transparent);
}
.proc-step { text-align: center; padding: 0 18px; position: relative; }
.proc-num {
    width: 64px; height: 64px;
    background: var(--surface-2);
    border: 1px solid var(--line-s);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-d);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand);
    position: relative;
    z-index: 1;
}
.proc-title { font-family: var(--font-d); font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.proc-body { font-size: 0.84rem; color: var(--fg-dim); line-height: 1.65; }

#results { padding: 96px 0; }
.results-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-top: 52px;
}
.result-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.result-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 130px; height: 130px;
    background: radial-gradient(circle, var(--brand-dim) 0%, transparent 70%);
    pointer-events: none;
}
.result-tag {
    font-family: var(--font-m);
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 12px;
}
.result-num {
    font-family: var(--font-d);
    font-size: clamp(2.2rem,3.8vw,3rem);
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.result-title { font-family: var(--font-d); font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.result-body { font-size: 0.84rem; color: var(--fg-dim); line-height: 1.65; }

#testimonials {
    padding: 96px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 52px;
}
.testi-card {
    background: var(--page-bg);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--brand); }
.testi-stars svg { width: 13px; height: 13px; }
.testi-quote { font-size: 0.9rem; color: var(--fg-dim); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-author { font-size: 0.82rem; font-weight: 600; color: var(--fg); }
.testi-role { font-size: 0.74rem; color: var(--fg-muted); margin-top: 2px; }

#seo-content { padding: 96px 0; }
.content-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
}
.content-sidebar { position: sticky; top: 90px; }
.sidebar-head { font-family: var(--font-d); font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.sidebar-sub { font-size: 0.82rem; color: var(--fg-dim); line-height: 1.6; margin-bottom: 20px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 1px; }
.sidebar-nav a {
    font-size: 0.8rem;
    color: var(--fg-dim);
    padding: 7px 12px;
    border-radius: 7px;
    border-left: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.sidebar-nav a:hover { color: var(--fg); border-left-color: var(--brand); background: var(--brand-dim); }

.content-intro { margin-bottom: 28px; }
.content-intro h2 {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.content-intro p { font-size: 0.92rem; color: var(--fg-dim); line-height: 1.78; margin-bottom: 10px; }

.acc-item { border-bottom: 1px solid var(--line); }
.acc-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-d);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--fg);
    transition: color 0.15s;
}
.acc-item summary:hover { color: var(--brand); }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
    content: '+';
    font-family: var(--font-m);
    font-size: 1.25rem;
    color: var(--brand);
    flex-shrink: 0;
    line-height: 1;
}
.acc-item[open] summary::after { content: '−'; }
.acc-body { padding: 0 0 18px; font-size: 0.88rem; color: var(--fg-dim); line-height: 1.8; }
.acc-body p { margin-bottom: 10px; }
.acc-body p:last-child { margin-bottom: 0; }
.acc-body ul { margin: 8px 0 10px 18px; }
.acc-body ul li { margin-bottom: 5px; }
@keyframes acc-fade { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
.acc-item[open] .acc-body { animation: acc-fade 0.2s ease; }

#faq {
    padding: 96px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.faq-list { max-width: 760px; margin: 52px auto 0; }

#cta-band {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,102,53,0.13) 0%, transparent 65%);
    pointer-events: none;
}
.cta-title {
    font-family: var(--font-d);
    font-size: clamp(2rem,4.5vw,3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
}
.cta-title em { font-style: normal; color: var(--brand); }
.cta-sub { font-size: 1.02rem; color: var(--fg-dim); margin-bottom: 36px; max-width: 520px; margin-inline: auto; position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

#contact { padding: 96px 0; }
.contact-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-d);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.contact-info p { font-size: 0.88rem; color: var(--fg-dim); line-height: 1.72; margin-bottom: 28px; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.87rem;
}
.c-icon {
    width: 34px; height: 34px;
    background: var(--brand-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    flex-shrink: 0;
}
.c-icon svg { width: 15px; height: 15px; }
.c-text strong { display: block; font-size: 0.7rem; color: var(--fg-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.c-text a, .c-text span { color: var(--fg); }

.form-shell {
    background: var(--surface);
    border: 1px solid var(--line-s);
    border-radius: var(--r-lg);
    padding: 34px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.f-group label { font-size: 0.76rem; font-weight: 600; color: var(--fg-dim); letter-spacing: 0.03em; }
.f-group input,
.f-group select,
.f-group textarea {
    background: var(--surface-2);
    border: 1px solid var(--line-s);
    border-radius: 8px;
    color: var(--fg);
    font-family: var(--font-b);
    font-size: 0.88rem;
    padding: 11px 13px;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--brand); }
.f-group select { appearance: none; cursor: pointer; }
.f-group textarea { resize: vertical; min-height: 108px; }
.f-group input::placeholder, .f-group textarea::placeholder { color: var(--fg-muted); }
.f-trap { display: none; }
.f-submit {
    width: 100%;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-b);
    font-weight: 600;
    font-size: 0.93rem;
    padding: 14px;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.18s;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
}
.f-submit:hover { background: #e5531e; }
.f-submit:disabled { opacity: 0.6; cursor: not-allowed; }
#form-msg {
    margin-top: 12px;
    font-size: 0.86rem;
    padding: 11px 14px;
    border-radius: 8px;
    display: none;
}
#form-msg.success { background: rgba(74,222,128,0.1); color: #4ade80; display: block; }
#form-msg.error   { background: rgba(248,113,113,0.1); color: #f87171; display: block; }

#site-footer {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-desc { font-size: 0.84rem; color: var(--fg-dim); line-height: 1.65; margin: 12px 0; max-width: 270px; }
.footer-contact-item {
    font-size: 0.83rem;
    color: var(--fg-dim);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}
.footer-contact-item a { color: var(--fg-dim); transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--brand); }
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-socials a {
    width: 32px; height: 32px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-muted);
    transition: color 0.15s, border-color 0.15s;
}
.footer-socials a:hover { color: var(--brand); border-color: rgba(255,102,53,0.3); }
.footer-socials svg { width: 14px; height: 14px; }
.footer-col h4 {
    font-family: var(--font-m);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: 0.84rem;
    color: var(--fg-dim);
    padding: 4px 0;
    transition: color 0.15s;
}
.footer-col a:hover { color: var(--fg); }
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--brand);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 9px 18px;
    border-radius: 8px;
    margin-top: 12px;
    transition: background 0.18s;
}
.footer-cta-btn:hover { background: #e5531e; }
.footer-base {
    border-top: 1px solid var(--line);
    padding: 16px 0;
}
.footer-base .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--fg-muted);
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--fg-muted); transition: color 0.15s; }
.footer-legal a:hover { color: var(--fg); }

.legal-hero {
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--line);
}
.legal-label {
    font-family: var(--font-m);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 18px;
}
.legal-hero h1 {
    font-family: var(--font-d);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: var(--fg);
    margin-bottom: 18px;
}
.legal-meta {
    font-size: 0.82rem;
    color: var(--fg-muted);
    margin-bottom: 18px;
}
.legal-meta time { color: var(--fg-dim); }
.legal-intro {
    font-size: 1rem;
    color: var(--fg-dim);
    line-height: 1.75;
    max-width: 640px;
}
.legal-intro a { color: var(--brand); text-decoration: underline; }

.legal-body { padding: 64px 0 96px; }

.legal-qa { display: flex; flex-direction: column; gap: 56px; }

.legal-qa-group { }
.legal-qa-group > h2 {
    font-family: var(--font-d);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.01em;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
}

.lqa { padding: 24px 0; border-bottom: 1px solid var(--line); }
.lqa:last-child { border-bottom: none; }
.lqa h3 {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 10px;
    line-height: 1.4;
}
.lqa p {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.8;
    margin-bottom: 10px;
}
.lqa p:last-child { margin-bottom: 0; }
.lqa a { color: var(--brand); text-decoration: underline; }
.lqa strong { color: var(--fg); font-weight: 600; }
.lqa ul {
    margin: 10px 0 10px 20px;
    list-style: disc;
}
.lqa ul li {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.75;
    margin-bottom: 6px;
}
.lqa ul li strong { color: var(--fg); font-weight: 600; }

@media (max-width: 1040px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .content-layout { grid-template-columns: 1fr; }
    .content-sidebar { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .results-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-cell { border-right: none; border-bottom: 1px solid var(--line); padding: 20px; }
    .stat-cell:nth-child(2), .stat-cell:last-child { border-bottom: none; }
}
@media (max-width: 760px) {
    nav, .nav-actions { display: none; }
    .hamburger { display: flex; }
    #mobile-nav { display: block; }
    .why-grid { grid-template-columns: 1fr; }
    .f-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 18px; }
}

.seo-h1 {
    font-family: var(--font-d);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin-bottom: 20px;
    line-height: 1.1;
}
#seo-content .content-intro h2 {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--fg);
}
.seo-intro-sub {
    font-family: var(--font-b);
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    color: var(--brand) !important;
    letter-spacing: 0 !important;
    margin-bottom: 18px !important;
    margin-top: -8px !important;
}
#seo-content .acc-item summary h2 {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
    text-align: left;
    flex: 1;
}
#seo-content .acc-body h3 {
    font-family: var(--font-d);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--fg);
    margin: 18px 0 8px;
    letter-spacing: 0.01em;
}
.sidebar-phone-link {
    display: block;
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 10px;
    transition: opacity 0.15s;
}
.sidebar-phone-link:hover { opacity: 0.8; }
.sidebar-audit-btn {
    display: block;
    text-align: center;
    margin-bottom: 24px;
}
