/* ============================================================
   Seçkin Network — Public Design System
   Direction: corporate audit · cool slate · blue accent
   ============================================================ */

:root {
    --ink: #08111f;
    --ink-soft: #152033;
    --muted: #4a5a6b;
    --muted-2: #6b7a8a;
    --paper: #f4f6f8;
    --paper-2: #e8edf2;
    --white: #ffffff;
    --line: #d3dce6;
    --sea: #1b4f72;
    --sea-deep: #163a56;
    --sea-soft: rgba(27, 79, 114, 0.12);
    --copper: #b86b3a;
    --danger: #c0392b;
    --radius: 4px;
    --radius-lg: 12px;
    --max: 1180px;
    --max-wide: 1360px;
    --header-h: 76px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-display: "Outfit", "Segoe UI", sans-serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --fw-strong: 700;
}

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

.container {
    width: min(100% - 48px, var(--max));
    margin-inline: auto;
}
.container-wide {
    width: min(100% - 40px, var(--max-wide));
}

/* ---------- Typography ---------- */
.display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
}
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sea);
    margin-bottom: 14px;
}
.section-intro {
    max-width: 34rem;
}
.section-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin: 0 0 12px;
}
.section-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--sea);
    color: var(--white);
}
.btn-primary:hover { background: var(--sea-deep); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.btn-ink {
    background: var(--ink);
    color: var(--white);
}
.btn-ink:hover { background: var(--ink-soft); }
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-outline:hover {
    border-color: var(--ink);
    background: var(--white);
}
.btn-sm { padding: 10px 16px; font-size: 0.82rem; }

/* ============================================================
   HEADER
   ============================================================ */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(238, 242, 245, 0.88);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}
#main-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(255,255,255,0.94);
}
.navbar { height: var(--header-h); }
.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-brand .logo {
    height: 40px;
    width: auto;
}
.nav-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
}
.nav-brand .brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}
.nav-menu-wrapper { display: flex; align-items: center; gap: 8px; }
.mobile-drawer { display: none; }
.drawer-top,
.drawer-section-label,
.drawer-actions,
.drawer-contact,
.drawer-foot,
.drawer-only,
.drawer-chevron,
.drawer-ico {
    display: none;
}
.drawer-link-main {
    display: inline;
}
.drawer-link-main span { display: inline; }
.desktop-only { display: inline-flex; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.nav-contact {
    display: block;
    margin-left: auto;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-soft);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-contact:hover,
.nav-contact.active {
    color: var(--sea);
    background: var(--sea-soft);
}
.nav-cta {
    flex-shrink: 0;
    margin-left: 12px;
}
.nav-menu > li > a {
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-soft);
    border-radius: var(--radius);
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--sea);
    background: var(--sea-soft);
}
.has-dropdown { position: relative; }
.dropdown-caret {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.65rem;
    opacity: 0.6;
}
.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.25s var(--ease);
    box-shadow: 0 18px 40px rgba(8, 17, 31, 0.1);
    z-index: 20;
}
.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu-custom a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.dropdown-menu-custom a:hover {
    background: var(--paper);
    color: var(--sea);
}
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    z-index: 1002;
}
.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,17,31,0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 960px) {
    .mobile-menu-toggle { display: flex; }
    .desktop-nav { display: none !important; }
    .desktop-only { display: none !important; }
    .drawer-only { display: list-item; }
    .drawer-top,
    .drawer-section-label,
    .drawer-actions,
    .drawer-contact,
    .drawer-foot {
        display: block;
    }
    .drawer-ico,
    .drawer-chevron {
        display: block;
    }

    .mobile-drawer {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 92vw);
        height: 100dvh;
        height: 100%;
        max-height: 100dvh;
        padding: env(safe-area-inset-top, 0) 0 env(safe-area-inset-bottom, 0);
        background:
            linear-gradient(180deg, rgba(27,79,114,0.08) 0%, transparent 180px),
            var(--white);
        transform: translateX(105%);
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 1101;
        overflow-y: auto;
        box-shadow: -24px 0 60px rgba(8,17,31,0.22);
        -webkit-overflow-scrolling: touch;
    }
    .mobile-drawer.active { transform: translateX(0); }

    .drawer-top {
        padding: max(16px, env(safe-area-inset-top, 0px)) 18px 20px 22px;
        background: linear-gradient(145deg, #163a56 0%, #1b4f72 48%, #14919b 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    .drawer-top::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        right: -40px;
        top: -50px;
        pointer-events: none;
    }
    .drawer-top-bar {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        position: relative;
        z-index: 1;
        margin-bottom: 14px;
    }
    .drawer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        min-width: 0;
        flex: 1;
    }
    .drawer-brand img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        background: #fff;
        border-radius: 12px;
        padding: 4px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
        flex-shrink: 0;
    }
    .drawer-brand strong {
        display: block;
        font-family: var(--font-display);
        font-size: 1.15rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
    }
    .drawer-brand small {
        display: block;
        margin-top: 3px;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        opacity: 0.85;
        font-weight: 600;
    }
    .drawer-close {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        margin: -4px -4px 0 0;
        border: 1px solid rgba(255,255,255,0.35);
        border-radius: 12px;
        background: rgba(255,255,255,0.14);
        color: #fff;
        font-size: 1.75rem;
        line-height: 1;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    .drawer-close:hover,
    .drawer-close:focus-visible {
        background: rgba(255,255,255,0.28);
        border-color: rgba(255,255,255,0.55);
        outline: none;
    }
    .drawer-close span {
        display: block;
        margin-top: -2px;
        font-weight: 400;
    }
    .drawer-lead {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.55;
        color: rgba(255,255,255,0.88);
        position: relative;
        z-index: 1;
        max-width: 28ch;
    }

    .drawer-section-label {
        padding: 18px 22px 8px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .mobile-drawer .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        flex: 0;
        padding: 0 14px;
    }
    .mobile-drawer .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 14px 14px;
        font-size: 1.02rem;
        background: var(--paper);
        border: 1px solid transparent;
        border-radius: 14px;
    }
    .mobile-drawer .nav-menu > li > a:hover,
    .mobile-drawer .nav-menu > li > a.active {
        color: var(--sea);
        background: rgba(27,79,114,0.08);
        border-color: rgba(27,79,114,0.18);
    }
    .drawer-link-main {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }
    .drawer-ico {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: var(--sea);
        opacity: 0.95;
    }
    .drawer-chevron {
        font-size: 1.2rem;
        color: var(--muted);
        line-height: 1;
        opacity: 0.7;
    }
    .mobile-drawer .dropdown-caret {
        margin-left: auto;
        font-size: 0.85rem;
    }

    .drawer-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 18px 14px 8px;
    }
    .drawer-cta,
    .drawer-wa {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.92rem;
        text-align: center;
        padding: 12px 10px;
    }
    .drawer-wa {
        border: 1px solid rgba(27,79,114,0.28);
        color: var(--sea);
        background: #fff;
    }

    .drawer-contact {
        margin: 10px 14px 0;
        padding: 14px;
        border-radius: 16px;
        background: #f4f8f9;
        border: 1px solid var(--line);
    }
    .drawer-contact .drawer-section-label {
        padding: 0 0 10px;
    }
    .drawer-contact-row {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 10px 0;
        border-top: 1px solid rgba(27,79,114,0.1);
        color: inherit;
        text-decoration: none;
    }
    .drawer-contact-row:first-of-type { border-top: 0; padding-top: 0; }
    .drawer-contact-k {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
    }
    .drawer-contact-v {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--ink);
        word-break: break-word;
    }
    .drawer-contact-row:not(.is-static):active .drawer-contact-v {
        color: var(--sea);
    }

    .drawer-foot {
        padding: 18px 22px 28px;
        font-size: 0.78rem;
        color: var(--muted);
    }

    .mobile-drawer .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        display: none;
        padding: 4px 0 4px 12px;
        background: transparent;
    }
    .mobile-drawer .has-dropdown.mobile-open .dropdown-menu-custom { display: block; }
    .mobile-drawer .dropdown-menu-custom a {
        padding: 11px 12px 11px 48px;
        font-size: 0.92rem;
        background: transparent;
    }
    body.menu-open { overflow: hidden; }

    .mobile-drawer.active .nav-menu > li {
        animation: drawerItemIn 0.4s var(--ease) both;
    }
    .mobile-drawer.active .nav-menu > li:nth-child(1) { animation-delay: 0.04s; }
    .mobile-drawer.active .nav-menu > li:nth-child(2) { animation-delay: 0.08s; }
    .mobile-drawer.active .nav-menu > li:nth-child(3) { animation-delay: 0.12s; }
    .mobile-drawer.active .nav-menu > li:nth-child(4) { animation-delay: 0.16s; }
    .mobile-drawer.active .nav-menu > li:nth-child(5) { animation-delay: 0.2s; }
    .mobile-drawer.active .nav-menu > li:nth-child(6) { animation-delay: 0.24s; }
    .mobile-drawer.active .nav-menu > li:nth-child(7) { animation-delay: 0.28s; }
    .mobile-drawer.active .nav-menu > li:nth-child(8) { animation-delay: 0.32s; }
}

@keyframes drawerItemIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.78);
    padding: 88px 0 36px;
    margin-top: 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
}
.footer-brand p {
    margin: 0 0 22px;
    max-width: 28rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
    background: var(--sea);
    border-color: var(--sea);
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.68);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-col .contact-line {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.68);
}
.footer-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 14px;
    background: #0a1624;
    aspect-ratio: 16 / 10;
    max-height: 160px;
}
.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}
.footer-map-link {
    color: var(--sea-soft, #7ec8cf) !important;
    font-weight: 600;
}
.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE
   ============================================================ */
.hero {
    position: relative;
    min-height: calc(100dvh - var(--header-h));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}
.hero-media {
    position: absolute;
    inset: 0;
}
.hero-media .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    background-size: cover;
    background-position: center;
}
.hero-media .slide.active { opacity: 1; }
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,17,31,0.88) 0%, rgba(8,17,31,0.55) 48%, rgba(8,17,31,0.25) 100%),
        linear-gradient(to top, rgba(8,17,31,0.75) 0%, transparent 45%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, var(--max));
    margin: 0 auto;
    padding: 72px 0 88px;
    max-width: 44rem;
}
.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.95;
    margin: 0 0 22px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0 0 14px;
    color: rgba(255,255,255,0.95);
    max-width: 22ch;
}
.hero-lead {
    margin: 0 0 32px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    max-width: 38ch;
    line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-dots {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100% - var(--max)) / 2));
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: height 0.3s ease, background 0.3s ease;
}
.hero-dots button.active {
    height: 28px;
    border-radius: 8px;
    background: #fff;
}

/* Reveal motion */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Products strip */
.section {
    padding: 100px 0;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 48px;
}
.section-head .section-link {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--sea);
    border-bottom: 1.5px solid currentColor;
    padding-bottom: 2px;
}
.products-showcase {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 16px;
    min-height: 480px;
}
.products-stage {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 20px;
    align-items: stretch;
}
.stage-module {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.stage-module-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.stage-module-head h3 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
}
.stage-module-head a {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sea);
    white-space: nowrap;
}
.stage-pick-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.stage-pick {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: start;
    padding: 6px;
    margin: -6px;
    border-radius: var(--radius);
    transition: background 0.2s ease;
}
.stage-pick:hover { background: var(--paper); }
.stage-pick img {
    width: 64px;
    height: 52px;
    object-fit: cover;
    border-radius: 3px;
    background: var(--paper-2);
}
.stage-pick em {
    display: block;
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sea);
    margin-bottom: 4px;
}
.stage-pick strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.3;
    color: var(--ink);
}
.stage-empty {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}
.products-band .product-feature { min-height: 420px; }
.products-band .product-feature h3 { font-size: 1.55rem; }
.products-band .product-row { grid-template-columns: 120px 1fr; }
.products-band .product-row .pr-body { padding: 18px 20px; }
.products-band .product-row h3 { font-size: 1.02rem; }
.product-feature {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--ink);
    color: #fff;
    min-height: 420px;
}
.product-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 1s var(--ease), opacity 0.4s ease;
}
.product-feature:hover img {
    transform: scale(1.04);
    opacity: 0.85;
}
.product-feature .pf-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 36px;
    background: linear-gradient(to top, rgba(8,17,31,0.92), transparent);
}
.product-feature .pf-code {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}
.product-feature h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
}
.product-feature p {
    margin: 0 0 18px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    max-width: 36ch;
}
.product-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-row {
    flex: 1;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.35s var(--ease);
}
.product-row:hover {
    border-color: var(--sea);
    transform: translateX(4px);
}
.product-row img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
}
.product-row .pr-body {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-row h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}
.product-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
@media (max-width: 1100px) {
    .products-stage {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .products-showcase {
        grid-column: 1 / -1;
        order: -1;
    }
}
@media (max-width: 900px) {
    .products-showcase { grid-template-columns: 1fr; min-height: 0; }
    .product-row { grid-template-columns: 110px 1fr; }
    .products-stage { grid-template-columns: 1fr; }
    .products-showcase { order: 0; }
}

/* Gallery */
.gallery-section {
    background: var(--ink);
    color: #fff;
    padding: 100px 0;
}
.gallery-section.gallery-page {
    background: var(--paper);
    color: var(--ink);
    padding: 72px 0 100px;
}
.gallery-section.gallery-page .section-intro h2 { color: var(--ink); }
.gallery-section.gallery-page .gi-caption {
    color: #fff;
}
.gallery-section .section-intro h2 { color: #fff; }
.gallery-section .section-intro p { color: rgba(255,255,255,0.6); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: zoom-in;
    background: var(--ink-soft);
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gi-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 18px 20px;
    background: linear-gradient(to top, rgba(8,17,31,0.85), transparent);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gi-caption {
    opacity: 1;
    transform: none;
}
@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8,17,31,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 88vh;
    border-radius: var(--radius);
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    font-size: 1.4rem;
    border-radius: var(--radius);
    cursor: pointer;
}

/* Editor picks — magazine */
.picks-section { background: var(--white); }
.picks-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
}
.pick-lead {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    min-height: 480px;
    background: var(--ink);
    color: #fff;
}
.pick-lead img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.9s var(--ease);
}
.pick-lead:hover img { transform: scale(1.04); }
.pick-lead .pl-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 36px;
    background: linear-gradient(to top, rgba(8,17,31,0.95) 10%, transparent);
}
.pick-lead .pl-meta {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sea-bright, #3db8c2);
    font-weight: 700;
    margin-bottom: 10px;
}
.pick-lead h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    line-height: 1.2;
}
.pick-lead p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.pick-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.pick-side-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    flex: 1;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    transition: border-color 0.25s ease, background 0.25s ease;
}
.pick-side-item:hover {
    border-color: var(--sea);
    background: var(--white);
}
.pick-side-item img {
    width: 100%;
    height: 100%;
    min-height: 110px;
    object-fit: cover;
    border-radius: var(--radius);
}
.pick-side-item .ps-meta {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sea);
    font-weight: 700;
    margin-bottom: 8px;
}
.pick-side-item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.25;
}
.pick-side-item .ps-date {
    font-size: 0.82rem;
    color: var(--muted);
}
@media (max-width: 860px) {
    .picks-layout { grid-template-columns: 1fr; }
    .pick-lead { min-height: 360px; }
    .pick-side-item { grid-template-columns: 100px 1fr; }
}

/* Marquee trust strip */
.trust-strip {
    border-block: 1px solid var(--line);
    background: var(--white);
    padding: 28px 0;
    overflow: hidden;
}
.trust-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 28s linear infinite;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.trust-track span { white-space: nowrap; }
.trust-track span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sea);
    margin-right: 56px;
    vertical-align: middle;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* About strip (homepage) — legacy kept for safety */
.about-strip {
    position: relative;
    padding: 96px 0;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

/* Homepage about: logo + text */
.about-home {
    padding: 96px 0;
    background:
        radial-gradient(ellipse 50% 80% at 0% 50%, rgba(27,79,114,0.08), transparent 55%),
        var(--paper);
    border-block: 1px solid var(--line);
}
.about-home-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: center;
}
.about-home-logo {
    width: 200px;
    height: 200px;
    display: grid;
    place-items: center;
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.about-home-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-home-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    line-height: 1.1;
    color: var(--ink);
}
.about-home-copy p {
    margin: 0 0 28px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 48ch;
    font-weight: 500;
}
.about-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 800px) {
    .about-home-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .about-home-logo {
        margin: 0 auto;
        width: 160px;
        height: 160px;
    }
    .about-home-copy p { margin-inline: auto; }
    .about-home-actions { justify-content: center; }
}

/* About page: logo + text */
.about-simple {
    padding: 100px 0 110px;
    background:
        radial-gradient(ellipse 45% 60% at 10% 20%, rgba(27,79,114,0.07), transparent 50%),
        var(--white);
}
.about-simple-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: center;
    max-width: 980px;
}
.about-simple-logo {
    width: 280px;
    height: 280px;
    display: grid;
    place-items: center;
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.about-simple-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-simple-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    line-height: 1.1;
}
.about-simple-copy p {
    margin: 0 0 1.15rem;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.75;
    font-weight: 500;
    max-width: 52ch;
}
.about-simple-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
@media (max-width: 860px) {
    .about-simple { padding: 64px 0 80px; }
    .about-simple-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .about-simple-logo {
        margin: 0 auto;
        width: 200px;
        height: 200px;
        padding: 28px;
    }
    .about-simple-copy p { margin-inline: auto; }
    .about-simple-actions { justify-content: center; }
}

/* References logo wall */
.refs-section {
    padding: 64px 0 96px;
    background: var(--paper);
}
.refs-empty {
    text-align: center;
    color: var(--muted);
    padding: 48px 0;
}
.refs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.refs-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: border-color 0.25s ease, transform 0.35s var(--ease);
    color: inherit;
}
a.refs-card:hover {
    border-color: var(--sea);
    transform: translateY(-3px);
}
.refs-logo {
    width: 100%;
    height: 88px;
    display: grid;
    place-items: center;
}
.refs-logo img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.refs-initials {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sea-soft);
    color: var(--sea);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
}
.refs-card strong {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    line-height: 1.3;
}
.refs-card em {
    font-style: normal;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}
@media (max-width: 960px) {
    .refs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .refs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .refs-card { padding: 22px 14px 18px; }
}
@media (max-width: 420px) {
    .refs-grid { grid-template-columns: 1fr; }
}

/* About page legacy (unused but kept if needed) */
.about-hero {
    position: relative;
    min-height: min(78dvh, 640px);
    display: grid;
    align-items: end;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}
.about-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.about-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,17,31,0.9) 0%, rgba(8,17,31,0.55) 48%, rgba(8,17,31,0.25) 100%),
        linear-gradient(to top, rgba(8,17,31,0.85) 0%, transparent 50%);
}
.about-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, var(--max));
    margin: 0 auto;
    padding: 72px 0 80px;
    max-width: 46rem;
}
.about-hero-label {
    margin: 0 0 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.about-hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.95;
    margin: 0 0 20px;
}
.about-hero-lead {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.72);
    max-width: 38ch;
}
.about-story {
    padding: 100px 0;
    background: var(--white);
}
.about-story-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}
.about-story-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
}
.about-story-prose p {
    margin: 0 0 1.25rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}
.about-story-prose p:last-child { margin-bottom: 0; }
.about-focus {
    padding: 88px 0;
    background: var(--paper);
    border-block: 1px solid var(--line);
}
.about-focus-head {
    margin-bottom: 40px;
    max-width: 28rem;
}
.about-focus-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
}
.about-focus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.about-focus-list li {
    padding: 28px 28px 8px 0;
    border-right: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
}
.about-focus-list li:last-child {
    border-right: none;
    padding-right: 0;
}
.about-focus-list .af-num {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sea);
    letter-spacing: -0.02em;
    padding-top: 2px;
}
.about-focus-list h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}
.about-focus-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 28ch;
}
.about-mv {
    padding: 96px 0;
    background: var(--white);
}
.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.about-mv-grid p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.45;
    color: var(--ink);
    max-width: 28ch;
}
@media (max-width: 900px) {
    .about-story-inner,
    .about-focus-list,
    .about-mv-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-focus-list li {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 24px 0;
        grid-template-columns: 40px 1fr;
    }
    .about-focus-list li:last-child { border-bottom: none; }
    .about-mv-grid p { max-width: none; }
}
@media (max-width: 640px) {
    .about-hero { min-height: 70dvh; }
    .about-hero-inner { padding: 56px 0 56px; }
}

/* Home news list */
.home-news {
    padding-top: 88px;
    padding-bottom: 40px;
}
.home-news-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}
.home-news-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: baseline;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s ease;
}
.home-news-row:hover h3 { color: var(--sea); }
.home-news-row time {
    font-size: 0.82rem;
    color: var(--muted-2);
    font-weight: 600;
}
.home-news-row .hn-cat {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sea);
    margin-bottom: 6px;
}
.home-news-row h3 {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.35;
    color: var(--ink);
    transition: color 0.2s ease;
}
.home-news-row.is-featured h3 {
    color: var(--ink-soft);
}
@media (max-width: 640px) {
    .home-news-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* Home gallery */
.home-gallery-section {
    background: var(--white);
    border-block: 1px solid var(--line);
}
.home-gallery-grid--wide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.home-gallery-cell {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper-2);
}
.home-gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
}
.home-gallery-cell:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
    .home-gallery-grid--wide {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
@media (max-width: 520px) {
    .home-gallery-grid--wide {
        grid-template-columns: 1fr 1fr;
    }
}

/* CTA band */
.cta-band {
    padding: 100px 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 20%, rgba(27,79,114,0.18), transparent),
        var(--paper);
}
.cta-band-inner {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 40px;
    align-items: center;
    padding: 56px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
}
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
    line-height: 1.15;
}
.cta-band p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    max-width: 36ch;
}
@media (max-width: 700px) {
    .cta-band-inner {
        grid-template-columns: 1fr;
        padding: 36px;
    }
    .section-head { flex-direction: column; align-items: start; }
}

/* ============================================================
   INNER PAGES — shared shells
   ============================================================ */
.page-hero {
    background: var(--ink);
    color: #fff;
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 100% 0%, rgba(27,79,114,0.35), transparent 60%),
        linear-gradient(135deg, transparent 40%, rgba(27,79,114,0.08));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
    line-height: 1.05;
}
.page-hero p {
    margin: 0;
    max-width: 40ch;
    color: rgba(255,255,255,0.68);
    font-size: 1.1rem;
}
.breadcrumb-nav {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: #fff; }

.content-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 56px);
}

/* Product detail page */
.pd-hero {
    background: var(--paper);
    padding: 36px 0 56px;
    border-bottom: 1px solid var(--line);
}
.pd-hero-top .breadcrumb-nav {
    color: var(--muted);
    margin-bottom: 28px;
}
.pd-hero-top .breadcrumb-nav a { color: var(--muted); }
.pd-hero-top .breadcrumb-nav a:hover { color: var(--sea); }
.pd-stage {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 48px;
    align-items: start;
}
.pd-gallery-main {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--ink);
}
.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.45s var(--ease), transform 0.8s var(--ease);
}
.pd-gallery-main img.is-switching {
    opacity: 0.35;
    transform: scale(1.03);
}
.pd-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 6px 12px;
    background: var(--sea);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
}
.pd-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.pd-thumb {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--white);
    opacity: 0.7;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}
.pd-thumb.is-active,
.pd-thumb:hover {
    opacity: 1;
    border-color: var(--sea);
}
.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-code {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sea);
    margin-bottom: 12px;
}
.pd-summary h1 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.22;
    margin: 0 0 16px;
    max-width: 18ch;
    text-wrap: balance;
}
.pd-lead {
    margin: 0 0 28px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    max-width: 40ch;
}
.pd-highlights {
    display: grid;
    gap: 10px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}
.pd-highlights li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
}
.pd-highlights li.is-ai {
    border-color: rgba(27, 79, 114, 0.35);
    background: linear-gradient(135deg, rgba(27, 79, 114, 0.08), rgba(255, 255, 255, 0.95));
    box-shadow: inset 3px 0 0 var(--sea);
}
.pd-feature.is-ai {
    border-color: rgba(27, 79, 114, 0.32);
    background: linear-gradient(160deg, rgba(27, 79, 114, 0.07), transparent 55%);
    box-shadow: inset 3px 0 0 var(--sea);
}
.pd-feature.is-ai .pd-feature-icon {
    background: var(--sea);
    color: #fff;
}
.pd-hi-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--sea);
    background: var(--sea-soft);
    border-radius: var(--radius);
}
.pd-hi-icon .fi-svg,
.pd-feature-icon .fi-svg {
    width: 18px;
    height: 18px;
}
.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.pd-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
}
.pd-share > span {
    font-weight: 700;
    color: var(--ink);
}
.pd-share a,
.pd-share .share-copy-btn {
    color: var(--sea);
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}
.pd-share a:hover,
.pd-share .share-copy-btn:hover {
    text-decoration: underline;
}
.pd-body {
    background: var(--white);
}
.pd-body-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}
.pd-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}
.pd-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
    font-weight: 500;
}
.pd-description p { margin: 0 0 1.15rem; }
.pd-description h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
    margin: 1.6rem 0 0.75rem;
}
.pd-description ul {
    margin: 0 0 1.2rem;
    padding-left: 1.2rem;
    color: var(--ink-soft);
}
.pd-description li { margin-bottom: 0.4rem; }
.pd-specs {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: calc(var(--header-h) + 16px);
}
.pd-specs h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 0 0 18px;
    color: var(--ink);
}
.pd-specs dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pd-specs dl > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.pd-specs dl > div:last-child { border-bottom: none; }
.pd-specs dt {
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--ink-soft);
}
.pd-specs dd {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    text-align: right;
}
.pd-features {
    padding: 88px 0;
    background: var(--paper);
    border-block: 1px solid var(--line);
}
.pd-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pd-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color 0.25s ease, transform 0.35s var(--ease);
}
.pd-feature:hover {
    border-color: var(--sea);
    transform: translateY(-3px);
}
.pd-feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--sea);
    background: var(--sea-soft);
    border-radius: var(--radius);
}
.pd-feature-num {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--muted-2);
    margin-bottom: 6px;
}
.pd-feature h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.pd-feature p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 500;
    line-height: 1.6;
}
.pd-related { background: var(--white); }
@media (max-width: 960px) {
    .pd-stage,
    .pd-body-grid,
    .pd-feature-list {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .pd-specs { position: static; }
    .pd-feature-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .pd-feature-list { grid-template-columns: 1fr; }
}

/* Product listing cards — refined */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-tile {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.35s var(--ease);
}
.product-tile:hover {
    border-color: var(--sea);
    transform: translateY(-4px);
}
.product-tile .pt-media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--paper-2);
}
.product-tile .pt-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.product-tile:hover .pt-media img { transform: scale(1.05); }
.product-tile .pt-body { padding: 24px; }
.product-tile h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}
.product-tile p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .product-grid { grid-template-columns: 1fr; }
}

/* News listing */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-grid--compact {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
}
.news-feature {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    transition: border-color 0.25s ease;
}
.news-feature:hover { border-color: var(--sea); }
.news-feature .nf-media {
    min-height: 280px;
    background: var(--paper-2);
    overflow: hidden;
}
.news-feature .nf-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.news-feature:hover .nf-media img { transform: scale(1.03); }
.news-feature .nf-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-feature h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 14px;
}
.news-feature p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}
.news-tile {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s ease;
}
.news-tile:hover { border-color: var(--sea); }
.news-tile .nt-media {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--paper-2);
}
.news-tile .nt-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.news-tile:hover .nt-media img { transform: scale(1.04); }
.news-tile .nt-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-tile .nt-cat,
.news-feature .nt-cat {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sea);
    font-weight: 700;
    margin-bottom: 10px;
}
.news-tile h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    line-height: 1.3;
}
.news-tile p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    flex: 1;
}
.news-tile .nt-meta,
.news-feature .nt-meta {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--muted-2);
    font-weight: 600;
}
@media (max-width: 900px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-grid--compact { grid-template-columns: 1fr 1fr; }
    .news-feature { grid-template-columns: 1fr; min-height: 0; }
    .news-feature .nf-media { aspect-ratio: 16/10; min-height: 0; }
}
@media (max-width: 560px) {
    .news-grid,
    .news-grid--compact { grid-template-columns: 1fr; }
}

/* Story detail */
.preview-banner {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}
.story-hero {
    position: relative;
    min-height: min(68dvh, 560px);
    display: grid;
    align-items: end;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}
.story-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.story-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8,17,31,0.88) 0%, rgba(8,17,31,0.45) 55%, rgba(8,17,31,0.25) 100%),
        linear-gradient(to top, rgba(8,17,31,0.9) 0%, transparent 55%);
}
.story-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 820px);
    margin: 0 auto;
    padding: 72px 0 64px;
}
.story-hero .breadcrumb-nav {
    margin-bottom: 18px;
    color: rgba(255,255,255,0.55);
}
.story-hero .breadcrumb-nav a { color: rgba(255,255,255,0.75); }
.story-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}
.story-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin: 0 0 20px;
}
.story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}
.story-body {
    background: var(--paper);
    padding: 56px 0 72px;
}
.story-layout {
    max-width: 740px;
}
.story-dek {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.45;
    color: var(--ink);
    margin: 0 0 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.story-content.prose {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--ink-soft);
}
.story-content.prose h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 700;
    margin: 2.4rem 0 0.9rem;
}
.story-content.prose h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.8rem 0 0.7rem;
}
.story-content.prose p { margin: 0 0 1.25rem; }
.story-content.prose ul,
.story-content.prose ol {
    margin: 0 0 1.35rem;
    padding-left: 1.25rem;
}
.story-content.prose li { margin-bottom: 0.45rem; }
.story-content.prose blockquote {
    margin: 2rem 0;
    padding: 18px 22px;
    border-left: 3px solid var(--sea);
    background: var(--white);
    color: var(--ink-soft);
    font-style: italic;
}
.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 28px;
}
.story-tags a {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-soft);
}
.story-tags a:hover {
    border-color: var(--sea);
    color: var(--sea);
}
.story-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 0.88rem;
}
.story-share > span {
    font-weight: 700;
    color: var(--ink);
}
.story-share a,
.story-share .share-copy-btn {
    color: var(--sea);
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}
.story-related {
    padding: 72px 0 96px;
    background: var(--white);
    border-top: 1px solid var(--line);
}
@media (max-width: 640px) {
    .story-hero { min-height: 60dvh; }
    .story-hero-inner { padding: 56px 0 48px; }
    .story-body { padding: 40px 0 56px; }
}

/* Article body prose */
.prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
}
.prose h2, .prose h3 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-top: 2em;
}
.prose img {
    border-radius: var(--radius);
    margin: 1.5em 0;
}
.prose a { color: var(--sea); text-decoration: underline; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sea);
}
.alert-success {
    background: rgba(27,79,114,0.1);
    color: var(--sea-deep);
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    margin-bottom: 20px;
}
.alert-error {
    background: rgba(192,57,43,0.1);
    color: var(--danger);
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
    margin-bottom: 20px;
}

/* ============================================================
   Seçkin Network — dense homepage modules
   ============================================================ */
.sn-stats {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}
.sn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sn-stat {
    text-align: center;
    padding: 8px 12px;
}
.sn-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--sea-deep);
    margin-bottom: 4px;
}
.sn-stat span {
    font-size: 0.86rem;
    color: var(--muted);
    font-weight: 600;
}

.sn-about-strip {
    background: linear-gradient(180deg, #eef3f7 0%, var(--paper) 100%);
}
.sn-about-strip-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}
.sn-about-strip-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    line-height: 1.15;
}
.sn-about-strip-inner > div > p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0;
    max-width: 38rem;
}
.sn-pillars {
    display: grid;
    gap: 14px;
}
.sn-pillars li {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
}
.sn-pillars strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--sea-deep);
}
.sn-pillars span { color: var(--muted); font-size: 0.92rem; }

.sn-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.sn-service-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.sn-service-card:hover {
    border-color: rgba(27, 79, 114, 0.35);
    transform: translateY(-2px);
}
.sn-service-visual {
    background: var(--paper-2);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sn-service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sn-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    box-shadow: 0 10px 24px rgba(8, 17, 31, 0.12);
}
.sn-service-visual.tone-sea {
    background: linear-gradient(160deg, #e8f1f6 0%, #d5e6f0 100%);
}
.sn-service-visual.tone-sea .sn-service-icon { background: #1b4f72; }
.sn-service-visual.tone-amber {
    background: linear-gradient(160deg, #fff6e8 0%, #fde8c8 100%);
}
.sn-service-visual.tone-amber .sn-service-icon { background: #c47a1b; }
.sn-service-visual.tone-green {
    background: linear-gradient(160deg, #e8f6ef 0%, #cfe9db 100%);
}
.sn-service-visual.tone-green .sn-service-icon { background: #1f7a4d; }
.sn-service-visual.tone-slate {
    background: linear-gradient(160deg, #eef0f4 0%, #d9dee8 100%);
}
.sn-service-visual.tone-slate .sn-service-icon { background: #3d4f66; }

.sn-service-tile .pt-media {
    aspect-ratio: 16 / 11;
    min-height: 160px;
}
.sn-service-tile .pt-media img { display: none; }
.sn-service-list .sn-badge {
    display: inline-block;
    margin-bottom: 6px;
}
.sn-service-body {
    padding: 20px 22px;
}
.sn-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sea);
    margin-bottom: 8px;
}
.sn-service-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.sn-service-body p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.92rem;
}
.sn-more {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--sea);
}

.sn-process { background: var(--white); border-block: 1px solid var(--line); }
.sn-process-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.sn-process-grid li {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
}
.sn-process-grid span {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--sea);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.sn-process-grid strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.sn-process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.sn-coverage-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.sn-coverage-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    line-height: 1.15;
}
.sn-coverage-inner > div > p {
    color: var(--muted);
    margin: 0 0 18px;
    max-width: 38rem;
}
.sn-coverage-list {
    display: grid;
    gap: 10px;
}
.sn-coverage-list li {
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
}
.sn-coverage-panel {
    background: linear-gradient(160deg, #163a56 0%, #1b4f72 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}
.sn-coverage-panel h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0;
    letter-spacing: -0.02em;
    color: #fff;
}
.sn-coverage-inner .sn-coverage-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.55;
}
.sn-coverage-panel .btn-primary {
    align-self: flex-start;
    margin-top: 8px;
    background: #fff;
    color: var(--sea-deep);
    border-color: #fff;
}

.sn-news-feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.sn-news-lead {
    display: grid;
    grid-template-columns: 1fr;
}
.sn-news-lead img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.sn-news-lead div { padding: 20px 22px 8px; }
.sn-news-lead em {
    display: block;
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sea);
    margin-bottom: 8px;
}
.sn-news-lead h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.sn-news-lead p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.sn-news-rest {
    list-style: none;
    margin: 0;
    padding: 8px 22px 18px;
    border-top: 1px solid var(--line);
}
.sn-news-rest li + li { border-top: 1px solid var(--line); }
.sn-news-rest a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.sn-news-rest a:hover { color: var(--sea); }

.sn-refs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.sn-ref-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    min-height: 110px;
}
.sn-ref-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.sn-ref-card span {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 960px) {
    .sn-stats-grid,
    .sn-process-grid,
    .sn-refs-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-about-strip-inner,
    .sn-coverage-inner,
    .sn-service-grid { grid-template-columns: 1fr; }
    .sn-service-card { grid-template-columns: 110px 1fr; }
}
@media (max-width: 560px) {
    .sn-stats-grid,
    .sn-process-grid,
    .sn-refs-grid { grid-template-columns: 1fr; }
}
