/*
 * service-pages.css
 * Stylový doplněk pro SEO servisní stránky (tvorba-webu-na-miru, redesign-webu, wordpress-webdesigner)
 * Navazuje na main.css — sdílí stejné CSS proměnné, typografii, tlačítka a design tokeny.
 * Pokud chcete přidat novou servisní stránku, stačí zkopírovat HTML strukturu a přidat
 * třídu `service-page-xxx` na <main> pro případné per-page overrides (viz sekce dole).
 */

/* =========================================
   GLOBAL: overflow guard (nezasahuje do main.css)
   ========================================= */
.service-body { overflow-x: hidden; }

.service-hero-grid > *,
.service-intro-grid > *,
.service-final-box > * { min-width: 0; }

.service-page h1,
.service-page h2,
.service-lead,
.service-copy,
.service-check,
.service-step,
.service-case,
.service-column,
.service-final-box { overflow-wrap: anywhere; }

/* =========================================
   1. HERO — navazuje na `.section-dark` z main.css
   ========================================= */
.service-hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: flex-start;
    padding-top: 164px;
    padding-bottom: 120px;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Spodní dělicí čára — stejně jako u section-dark na homepage */
.service-hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.service-hero .container {
    max-width: 1180px;
    position: relative;
    z-index: 1;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
    gap: 78px;
    align-items: center;
}

/* =========================================
   2. KICKER / BADGE — stejný styl jako status-badge na homepage
   ========================================= */
.service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    text-transform: none;
}

/* Accent tečka před textem */
.service-kicker::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* =========================================
   3. HERO TYPOGRAFIE
   ========================================= */
.service-hero h1 {
    max-width: 580px;
    color: var(--text-white);
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    margin-bottom: 26px;
}

.service-lead {
    max-width: 560px;
    color: #A1A1AA;
    font-size: 1.06rem;
    line-height: 1.78;
    font-weight: 400;
}

/* =========================================
   4. CTA TLAČÍTKA V HERO — přebírá styly z main.css, přizpůsobení pro tmavé pozadí
   ========================================= */
.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 34px;
}

.service-actions .btn-primary {
    background: var(--accent);
    color: var(--text-main);
}
.service-actions .btn-primary:hover {
    background: var(--text-white);
    color: var(--text-main);
}

.service-actions .btn-secondary {
    color: rgba(255, 255, 255, 0.68);
    border-color: rgba(255, 255, 255, 0.22);
}
.service-actions .btn-secondary:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.55);
}

/* =========================================
   5. PROOF STRIP — 3 statistiky pod CTA
   ========================================= */
.service-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-proof {
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.service-proof:last-child { border-right: 0; margin-right: 0; padding-right: 0; }

.service-proof strong {
    display: block;
    color: var(--text-white);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}
.service-proof span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    line-height: 1.6;
}

/* =========================================
   6. HERO VIZUÁL (pravá strana)
   Design: CSS mockup přizpůsobený design-tokeny
   ========================================= */
.service-visual {
    position: relative;
    min-height: 400px;
}

/* Hlavní rám — stejný styl jako bento-card, ale na tmavém pozadí */
.service-frame {
    position: absolute;
    top: 40px;
    right: 0;
    width: min(100%, 500px);
    min-height: 320px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: rotate(1.2deg);
    transition: transform 0.4s var(--transition);
}
.service-frame:hover { transform: rotate(0deg); }

/* Traffic lights dot bar — stejný styl jako code-window v main.css */
.service-frame-top {
    display: flex;
    gap: 7px;
    padding: 6px 6px 14px;
    position: relative;
    z-index: 2;
}
.service-frame-top span {
    width: 9px; height: 9px;
    border-radius: 50%;
}
.service-frame-top span:nth-child(1) { background: #ff5f56; }
.service-frame-top span:nth-child(2) { background: #ffbd2e; }
.service-frame-top span:nth-child(3) { background: #27c93f; }

/*
 * CSS-art obsah rámu — simuluje webové rozhraní
 * ::before = hlavní plocha / layout webu
 * ::after  = pill badge s popisem stránky (per-page override níže)
 */
.service-frame::before {
    content: "";
    position: absolute;
    inset: 76px 20px 56px;
    border-radius: 16px;
    overflow: hidden;
    background:
        /* Accent sidebar */
        linear-gradient(90deg, rgba(114,240,189,0.85) 0 34%, transparent 34% 100%),
        /* Heading bone */
        linear-gradient(rgba(255,255,255,0.14) 0 0) 38px 36px / 46% 14px no-repeat,
        /* Body text bones */
        linear-gradient(rgba(255,255,255,0.08) 0 0) 38px 62px / 62% 9px no-repeat,
        linear-gradient(rgba(255,255,255,0.06) 0 0) 38px 82px / 50% 9px no-repeat,
        /* Card row */
        linear-gradient(rgba(255,255,255,0.07) 0 32px, transparent 32px) 38px 114px / 28% 32px no-repeat,
        linear-gradient(rgba(255,255,255,0.07) 0 32px, transparent 32px) calc(38px + 30% + 8px) 114px / 28% 32px no-repeat,
        /* Dark bg */
        #17171a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Pill badge — per-page text je přepsán níže */
.service-frame::after {
    content: "design / kód / nasazení";
    position: absolute;
    left: 36px;
    bottom: 22px;
    z-index: 3;
    background: var(--accent);
    color: var(--text-main);
    border-radius: var(--radius-pill);
    padding: 7px 16px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Per-page label overrides */
.service-page-redesign  .service-frame::after { content: "audit / redesign / nasazení"; }
.service-page-custom    .service-frame::after { content: "struktura / design / web"; }
.service-page-wordpress .service-frame::after { content: "WordPress / správa / růst"; }

/* Floating poznámka pod rámem */
.service-note {
    position: absolute;
    left: -8px;
    bottom: 10px;
    z-index: 4;
    max-width: 264px;
    padding: 18px 22px;
    border-radius: 20px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: var(--text-white);
}
.service-note strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.25;
}
.service-note span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

/* Accent linka vlevo na poznámce */
.service-note::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}

/* =========================================
   7. INTRO SEKCE (text + checks pod ním)
   ========================================= */
.service-intro-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.85fr);
    gap: 72px;
    align-items: end;
}

.service-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-pill);
    background: var(--bg-surface);
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 22px;
}

.service-copy {
    display: grid;
    gap: 20px;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.76;
    max-width: 570px;
    padding-bottom: 10px;
}
.service-copy strong { color: var(--text-main); }

.service-intro-grid h2 {
    max-width: 590px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.07;
}

/* =========================================
   8. CHECK KARTY — SJEDNOCENO s `.bento-card` z main.css
   Stejné hodnoty: background, border, radius, hover shadow
   ========================================= */
.service-checks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.service-check {
    /* Identický základ jako .bento-card */
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.055);
    border-radius: var(--radius-card);
    padding: 28px;
    min-height: 218px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-check::before {
    content: none;
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--accent);
    opacity: 0.9;
}

.service-check:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 54px -42px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

/*
 * Číslo — místo generického černého kolečka
 * Tenký řádek s číslem jako u `bento-title` rytmu na homepage
 */
.service-check > span {
    display: inline-flex;
    width: 42px;
    height: 30px;
    border-radius: var(--radius-pill);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.075);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}
.service-check > span::before { content: none; }

.service-check h3 {
    font-size: 1.16rem;
    margin-bottom: 14px;
    line-height: 1.2;
    color: var(--text-main);
}

.service-check p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.68;
}

/* =========================================
   9. METODA / PROCESS SEKCE — čistý bg-surface
   ========================================= */
.service-method {
    background: var(--bg-surface);
}

/* =========================================
   10. KROKY (service-steps) — identické s homepage procesní sekcí
   ========================================= */
.service-steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-top: 0;
}

.service-step {
    display: flex;
    gap: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    align-items: start;
    transition: var(--transition);
}

.service-step:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.service-step-number {
    flex-shrink: 0;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    padding-top: 0;
}

.service-step:first-child .service-step-number {
    background: #ecfdf5;
    border-color: var(--accent);
    color: var(--text-main);
}

.service-step h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
    color: var(--text-main);
}
.service-step p {
    max-width: 760px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================
   11. CASE KARTY — SJEDNOCENO s `.project-card` z main.css
   ========================================= */
.service-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-case {
    /* Identický základ jako .project-card .p-small */
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-card);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.service-case:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.28);
    transform: translateY(-4px);
}

/*
 * ::before — tmavá vizuální plocha nahoře karty
 * Nahrazuje původní fake-browser CSS art, lépe ladí s project-card stylem
 */
.service-case::before {
    content: '';
    display: block;
    width: 100%;
    height: 130px;
    flex-shrink: 0;
    position: relative; /* ne absolute — je součástí flow karty */
    background:
        radial-gradient(280px circle at 80% 30%, rgba(114,240,189,0.13), transparent 55%),
        linear-gradient(140deg, var(--bg-dark) 0%, #252529 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Mřížka */
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(280px circle at 80% 30%, rgba(114,240,189,0.13), transparent 55%),
        linear-gradient(140deg, var(--bg-dark) 0%, #252529 100%);
    background-size: 22px 22px, 22px 22px, 100% 100%, 100% 100%;
}

/*
 * ::after — accent linka nahoře při hoveru
 */
.service-case::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 2;
}
.service-case:hover::after { opacity: 1; }

.service-case-body {
    position: relative;
    z-index: 1;
    padding: 28px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-case h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.2;
}

.service-case p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    flex: 1;
}

.service-case a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 18px;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 700;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 2px;
    width: fit-content;
    transition: var(--transition);
}
.service-case a:hover { color: var(--accent); border-color: var(--accent); }
.service-case a::after { content: ' →'; }

/* =========================================
   12. DARK PANEL — shodný s `.section-dark` z main.css
   ========================================= */
.service-dark-panel {
    background: var(--bg-dark);
    color: var(--text-white);
}
.service-dark-panel .section-desc,
.service-dark-panel p,
.service-dark-panel li {
    color: rgba(255, 255, 255, 0.62);
}
/* project-header na tmavém pozadí */
.service-dark-panel .project-header {
    border-color: rgba(255, 255, 255, 0.1);
}
.service-dark-panel h2 { color: var(--text-white); }

/* =========================================
   13. SLOUPCE (co dostanete) — identické s `.about-grid` rytmem
   ========================================= */
.service-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-column {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.035);
    transition: background 0.3s;
}
.service-column:hover { background: rgba(255, 255, 255, 0.055); }

.service-column h3 {
    margin-bottom: 22px;
    color: var(--text-white);
    font-size: 1.15rem;
}

.service-column ul { display: grid; gap: 12px; }

.service-column li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}
.service-column li::before {
    content: '';
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* =========================================
   14. FAQ — accordion, identický s homepage stylem
   ========================================= */
.service-faq-list { display: grid; gap: 0; }

.service-faq {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.service-faq:first-child { border-top: 1px solid rgba(0, 0, 0, 0.07); }

.service-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 0;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary:hover { color: var(--accent-hover); }

/* Plus/minus ikona */
.service-faq summary::after {
    content: '+';
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.service-faq[open] summary::after {
    content: '−';
    background: transparent;
    color: var(--accent);
    border-color: transparent;
}

.service-faq p {
    padding: 0 0 20px;
    line-height: 1.6;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
}

/* =========================================
   15. FINAL CTA BOX — robustnější než původní, shodný s bento-card feel
   ========================================= */
.service-final { padding-top: 0; }

.service-final-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: 52px;
    border-radius: var(--radius-card);
    background: var(--bg-dark);
    color: var(--text-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-final-box h2 {
    color: var(--text-white);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    margin-bottom: 0;
    line-height: 1.05;
}
.service-final-box p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 14px;
    font-size: 0.97rem;
    line-height: 1.72;
}

.service-final-box .btn-primary {
    background: var(--accent);
    color: var(--text-main);
    white-space: nowrap;
    flex-shrink: 0;
}
.service-final-box .btn-primary:hover {
    background: var(--text-white);
    color: var(--text-main);
}

/* =========================================
   16. RESPONSIVE — breakpointy shodné s main.css
   ========================================= */
@media (max-width: 960px) {
    .service-hero-grid,
    .service-intro-grid,
    .service-columns,
    .service-final-box {
        grid-template-columns: 1fr;
    }

    .service-hero-grid { gap: 44px; }
    .service-intro-grid {
        gap: 30px;
        align-items: start;
    }

    .service-visual {
        min-height: 320px;
        max-width: 520px;
    }
    .service-frame {
        top: 0; right: auto; left: 0;
        width: 100%;
    }

    .service-proof-strip,
    .service-checks,
    .service-case-grid {
        grid-template-columns: 1fr;
    }

    .service-check { min-height: auto; }
    .service-case  { min-height: auto; }
}

@media (max-width: 640px) {
    .service-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 64px;
    }

    .service-hero h1 {
        font-size: clamp(2.2rem, 10.5vw, 3rem);
        letter-spacing: -0.055em;
    }

    .service-lead { font-size: 1rem; }

    .service-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .service-actions .btn-primary,
    .service-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .service-proof-strip {
        gap: 20px;
    }
    .service-proof {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-right: 0; margin-right: 0;
        padding-bottom: 20px;
    }
    .service-proof:last-child { border-bottom: 0; padding-bottom: 0; }

    .service-visual { display: none; } /* Skrýt vizuál na malých obrazovkách */

    .service-frame {
        position: relative;
        min-height: 260px;
        border-radius: 20px;
        transform: none;
        top: auto; left: auto;
    }

    .service-step {
        gap: 16px;
        padding: 0;
    }

    .service-check,
    .service-case,
    .service-column {
        border-radius: 20px;
    }

    .service-check {
        border-radius: 20px;
        padding: 24px;
    }

    .service-final-box {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
    }
    .service-final-box .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   HOVER VYPNUTÍ NA DOTYKOVÝCH ZAŘÍZENÍCH
   (shodné s main.css @media (hover: none))
   ========================================= */
@media (hover: none) {
    .service-check:hover { transform: none; box-shadow: none; background: var(--bg-surface); }
    .service-case:hover  { transform: none; box-shadow: none; background: var(--bg-surface); }
}

/* =========================================
   17. SATELLITE MODE
   SEO stranky funguji jako obsahove vstupni stranky, ne jako dalsi homepage.
   ========================================= */
.service-satellite .service-hero {
    min-height: auto;
    padding-top: 136px;
    padding-bottom: 72px;
}

.service-satellite .service-hero-grid {
    display: block;
    max-width: 860px;
}

.service-satellite .service-visual {
    display: none;
}

.service-satellite .service-frame::before,
.service-satellite .service-frame::after {
    content: none;
}

.service-satellite .service-hero h1 {
    max-width: 820px;
    font-size: clamp(2.45rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.service-satellite .service-lead {
    max-width: 760px;
}

.service-satellite .service-actions {
    margin-top: 30px;
}

.service-satellite-note {
    max-width: 760px;
    margin-top: 24px;
    padding: 18px 20px;
    color: rgba(255,255,255,0.66);
    font-size: 0.92rem;
    line-height: 1.65;
    border-left: 3px solid var(--accent);
    background: rgba(255,255,255,0.035);
    border-radius: 0 16px 16px 0;
}

.service-satellite .service-proof-strip {
    max-width: 760px;
    margin-top: 38px;
    padding-top: 24px;
    padding-bottom: 6px;
}

.service-satellite .service-intro-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: end;
}

.service-satellite .service-hero + .section {
    padding-top: 96px;
}

.service-satellite .service-intro-grid h2 {
    max-width: 590px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.07;
}

.service-satellite .service-copy {
    max-width: 610px;
    font-size: 1.02rem;
    line-height: 1.78;
}

.service-satellite .service-checks {
    margin-top: 56px;
}

.service-satellite .service-method {
    padding-top: 96px;
    padding-bottom: 96px;
}

.service-satellite .service-dark-panel {
    padding-top: 96px;
    padding-bottom: 96px;
}

.service-satellite .service-faq-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.service-satellite .service-final {
    padding-top: 56px;
}

.service-satellite .service-final-box {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 40px;
}

.service-satellite footer {
    padding-top: 56px;
}

.service-satellite .footer-email {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    margin-bottom: 42px;
}

@media (max-width: 960px) {
    .service-satellite .service-intro-grid,
    .service-satellite .service-final-box {
        grid-template-columns: 1fr;
    }

    .service-satellite .service-intro-grid {
        gap: 28px;
        align-items: start;
    }

    .service-satellite .service-intro-grid h2,
    .service-satellite .service-copy {
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .service-satellite .service-hero {
        padding-top: 118px;
        padding-bottom: 56px;
    }

    .service-satellite .service-hero h1 {
        font-size: clamp(2rem, 10vw, 2.9rem);
        line-height: 1;
    }

    .service-satellite-note {
        padding: 16px 18px;
        font-size: 0.88rem;
    }

    .service-satellite .service-hero + .section {
        padding-top: 72px;
    }

    .service-satellite .service-intro-grid {
        gap: 24px;
    }

    .service-satellite .service-intro-grid h2 {
        font-size: clamp(1.95rem, 8.2vw, 2.45rem);
        line-height: 1.05;
    }

    .service-satellite .service-copy {
        font-size: 1rem;
        line-height: 1.72;
    }

    .service-satellite .service-method,
    .service-satellite .service-dark-panel,
    .service-satellite .service-faq-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .service-check {
        padding: 24px;
    }

    .service-step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .service-satellite .service-final-box {
        padding: 28px;
    }
}
