/* ===== Speechninjas — design v3 (no top ticker, new layout system) ===== */
:root {
    --ink: #12110f;
    --ink-soft: #3d3a35;
    --muted: #6f6b63;
    --line: #e5e0d8;
    --bg: #f7f4ef;
    --bg-card: #ffffff;
    --accent: #1b4332;
    --accent-hover: #0f2e22;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(18, 17, 15, 0.06);
    --shadow-lg: 0 20px 50px rgba(18, 17, 15, 0.1);
    --transition: 0.2s ease;
    --font: 'DM Sans', system-ui, sans-serif;
    --sn-max: 1120px;
    --sn-pad: clamp(18px, 4vw, 32px);
    --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.sn-container { max-width: var(--sn-max); margin: 0 auto; padding-left: var(--sn-pad); padding-right: var(--sn-pad); }
.container { max-width: var(--sn-max); margin: 0 auto; padding: 0 var(--sn-pad); }

/* ----- Header: single row ----- */
.sn-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.sn-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: var(--header-h);
    padding-top: 12px;
    padding-bottom: 12px;
}
.sn-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.sn-logo__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--accent) 0%, #2d6a4f 100%);
    box-shadow: 0 2px 8px rgba(27, 67, 50, 0.25);
}
.sn-logo strong { font-weight: 800; }
.sn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}
.sn-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 8px 14px;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition);
}
.sn-nav a:hover { background: color-mix(in srgb, var(--ink) 6%, transparent); color: var(--ink); }
.sn-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mobile-toggle {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 10px 12px;
}
.mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 1px; }

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-primary { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--line); color: var(--ink); background: var(--bg-card); }
.btn-outline:hover { border-color: var(--ink-soft); background: var(--bg); }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.header-cta { font-size: 13px; padding: 9px 18px; }
.btn--on-dark { background: #fff; color: var(--accent); border-color: #fff; }
.btn--on-dark:hover { background: var(--bg); color: var(--accent-hover); }

/* ----- Home: split hero ----- */
.sn-hero { padding: clamp(32px, 6vw, 56px) 0 clamp(48px, 8vw, 80px); }
.sn-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(28px, 5vw, 48px);
    align-items: center;
}
.sn-hero__visual {
    position: relative;
}
.sn-hero__visual img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.sn-hero__visual::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid var(--line);
    pointer-events: none;
    z-index: -1;
}
.sn-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.sn-hero__title {
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.sn-hero__title em { font-style: normal; color: var(--accent); }
.sn-hero__lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 480px;
}
.sn-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.sn-hero__note { font-size: 13px; color: var(--muted); margin-bottom: 28px; max-width: 420px; }

.sn-stat-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sn-stat-chips li {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 0;
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 5px);
}
.sn-stat-chips strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.sn-stat-chips span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.3;
}

/* ----- Section shells ----- */
.sn-block { padding: clamp(48px, 9vw, 88px) 0; }
.sn-block--surface { background: var(--bg-card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sn-block__head { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.sn-block__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}
.sn-block__title { font-size: clamp(1.45rem, 2.8vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.sn-block__sub { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.sn-block__intro { margin-bottom: 28px; max-width: 560px; }
.sn-block__intro .sn-kicker { display: block; margin-bottom: 10px; }

/* ----- Service cards (3-up) ----- */
.sn-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sn-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.sn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sn-card__img { height: 160px; overflow: hidden; }
.sn-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sn-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.sn-card__tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}
.sn-card__body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.sn-card__body p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.sn-card__price { font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; }
.sn-card__price small { font-size: 12px; font-weight: 600; color: var(--muted); }
.sn-card .btn-primary { width: 100%; justify-content: center; margin-top: auto; }

/* ----- Process: horizontal steps ----- */
.sn-process-wrap { text-align: center; }
.sn-process-wrap .sn-block__head { margin-bottom: 36px; }
.sn-process-h {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: left;
}
.sn-process-h__step {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 18px;
    position: relative;
    padding-top: 36px;
}
.sn-process-h__num {
    position: absolute;
    top: 6px;
    left: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sn-process-h__step h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.sn-process-h__step p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }

/* ----- Quotes: three equal cards ----- */
.sn-quotes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.sn-quote-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.sn-quote-card__stars { font-size: 11px; letter-spacing: 3px; color: #b08968; margin-bottom: 14px; }
.sn-quote-card blockquote { font-size: 14px; line-height: 1.65; font-style: normal; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.sn-quote-card__name { font-weight: 700; font-size: 14px; }
.sn-quote-card__role { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ----- CTA full-bleed dark ----- */
.sn-cta-banner {
    background: var(--ink);
    color: #f0ebe3;
    padding: clamp(48px, 8vw, 72px) 0;
    text-align: center;
}
.sn-cta-banner h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #fff;
}
.sn-cta-banner p { font-size: 15px; color: color-mix(in srgb, #fff 72%, transparent); max-width: 460px; margin: 0 auto 22px; line-height: 1.6; }

/* ----- Footer ----- */
.sn-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--line);
    padding: 44px 0 0;
}
.sn-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 28px 20px;
    padding-bottom: 36px;
}
.sn-footer__brand { font-size: 17px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.02em; }
.sn-footer__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.65; max-width: 260px; }
.sn-footer__col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.sn-footer__col a {
    display: block;
    font-size: 13px;
    color: var(--ink-soft);
    padding: 3px 0;
    transition: color var(--transition);
}
.sn-footer__col a:hover { color: var(--accent); }
.sn-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0 22px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
}

/* ----- Cookie ----- */
.cookie-banner {
    position: fixed;
    bottom: var(--sn-pad);
    right: var(--sn-pad);
    left: auto;
    max-width: 340px;
    background: var(--bg-card);
    color: var(--ink-soft);
    padding: 16px 18px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    font-size: 12px;
    line-height: 1.5;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}
.cookie-banner a { color: var(--accent); font-weight: 600; }
.cookie-banner.show { display: flex; }

/* ----- About ----- */
.sn-page-hero {
    padding: clamp(40px, 8vw, 64px) 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--line);
}
.sn-page-hero .sn-kicker { margin-bottom: 12px; }
.sn-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}
.sn-page-hero h1 {
    font-size: clamp(1.65rem, 3.8vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    max-width: 640px;
}
.sn-page-hero p {
    margin-top: 14px;
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.65;
}

.sn-prose { padding: 48px 0; }
.sn-prose h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
.sn-prose p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; max-width: 620px; }
.sn-prose__figure { margin: 28px 0; }
.sn-prose__figure img { width: 100%; max-height: 380px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }

.sn-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 48px 0;
    border-top: 1px solid var(--line);
}
.sn-split--flip .sn-split__visual { order: 2; }
.sn-split--flip .sn-split__copy { order: 1; }
.sn-split__copy { min-width: 0; }
.sn-split__visual img { width: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); min-height: 260px; }

.sn-metrics { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-card); }
.sn-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.sn-metric { padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); }
.sn-metric:last-child { border-right: 0; }
.sn-metric__num { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; letter-spacing: -0.03em; }
.sn-metric__lbl { margin-top: 8px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); line-height: 1.35; }

.sn-team-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.sn-team-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.sn-team-row__avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--accent);
    border: 1px solid var(--line);
}
.sn-team-row h4 { font-size: 15px; font-weight: 700; }
.sn-team-row p { font-size: 13px; color: var(--muted); margin-top: 2px; }

.sn-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sn-value {
    padding: 22px 20px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.sn-value h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.sn-value p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

/* ----- Programs ----- */
.sn-catalog-head { padding: 40px 0 20px; }
.sn-catalog-head h1 { font-size: clamp(1.45rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.sn-catalog-head p { font-size: 15px; color: var(--ink-soft); max-width: 520px; line-height: 1.65; }

.sn-offer {
    display: grid;
    grid-template-columns: 180px 1fr minmax(130px, 180px);
    gap: 22px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.sn-offer__img img { width: 180px; height: 110px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.sn-offer__main h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.sn-offer__main p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; max-width: 480px; }
.sn-offer__side { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.sn-offer__price strong { display: block; font-size: 1.15rem; font-weight: 800; }
.sn-offer__price span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.sn-faq-wrap {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 48px 0 72px;
    align-items: start;
    border-top: 1px solid var(--line);
    margin-top: 8px;
}
.sn-faq-wrap h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    position: sticky;
    top: calc(var(--header-h) + 12px);
}

/* ----- Contact ----- */
.sn-contact-hero { padding: 36px 0 24px; }
.sn-contact-hero h1 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; margin-bottom: 8px; }
.sn-contact-hero p { font-size: 15px; color: var(--ink-soft); max-width: 440px; }

.sn-contact-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 36px 0 72px;
    align-items: start;
}
.sn-contact-card {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: var(--shadow);
    font-size: 13px;
}
.sn-contact-card h3 { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.sn-contact-line { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.sn-contact-line:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.sn-contact-line strong { display: block; font-size: 11px; margin-bottom: 4px; color: var(--ink); }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font);
    background: var(--bg-card);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.5; }
.form-check input { margin-top: 3px; accent-color: var(--accent); }

/* ----- Legal ----- */
.sn-legal {
    padding: 36px 0 72px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start;
}
.sn-legal__nav {
    position: sticky;
    top: calc(var(--header-h) + 12px);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.sn-legal__body h1 { font-size: 1.85rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.sn-legal__body .updated { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.sn-legal__body h2 { font-size: 13px; font-weight: 700; margin: 24px 0 8px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.sn-legal__body h3 { font-size: 14px; font-weight: 600; margin: 18px 0 6px; }
.sn-legal__body p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 12px; }
.sn-legal__body ul { padding-left: 18px; margin-bottom: 12px; }
.sn-legal__body ul li { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 5px; }

/* ----- FAQ ----- */
.faq-item { border: 1px solid var(--line); margin-bottom: 10px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-card); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: var(--bg-card);
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font);
    transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question::after { content: '+'; font-size: 16px; font-weight: 500; color: var(--muted); }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 480px; }
.faq-answer p { padding: 0 16px 14px; font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ----- Responsive ----- */
@media (max-width: 960px) {
    .sn-hero__grid { grid-template-columns: 1fr; }
    .sn-hero__visual { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
    .sn-stat-chips li { flex: 1 1 100%; max-width: none; }
    .sn-card-grid { grid-template-columns: 1fr; }
    .sn-process-h { grid-template-columns: repeat(2, 1fr); }
    .sn-quotes-row { grid-template-columns: 1fr; }
    .sn-metrics__grid { grid-template-columns: repeat(2, 1fr); }
    .sn-metric { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .sn-metric:nth-child(2n) { border-right: 0; }
    .sn-footer__grid { grid-template-columns: 1fr 1fr; }
    .sn-offer { grid-template-columns: 1fr; }
    .sn-offer__img img { width: 100%; max-width: 280px; height: 150px; }
    .sn-offer__side { align-items: flex-start; text-align: left; }
    .sn-faq-wrap { grid-template-columns: 1fr; }
    .sn-faq-wrap h2 { position: static; }
    .sn-contact-layout { grid-template-columns: 1fr; }
    .sn-contact-card { position: static; }
    .sn-legal { grid-template-columns: 1fr; }
    .sn-legal__nav { position: static; }
    .sn-split { grid-template-columns: 1fr; }
    .sn-split--flip .sn-split__visual { order: 0; }
    .sn-values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sn-nav {
        display: none;
        position: fixed;
        inset: 0;
        top: 0;
        z-index: 200;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        padding: 24px;
        flex: none;
    }
    .sn-nav.active { display: flex; }
    .sn-nav a { text-align: center; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
    .mobile-toggle { display: block; }
    .header-cta { display: none; }
    .sn-metrics__grid { grid-template-columns: 1fr; }
    .sn-metric { border-right: 0; }
    .sn-footer__grid { grid-template-columns: 1fr; }
    .sn-process-h { grid-template-columns: 1fr; }
}
