/*
 * Aptagram shared design system.
 *
 * Promoted from wms_site/maintenance_site/migrations_site's index.css, which
 * were byte-identical in their :root/token block and largely identical in
 * the selectors below (see docs/cr-001.md CR002 follow-up design audit for
 * the full comparison). Polarity is flipped from the source: those files
 * defaulted to dark with a `body.theme-light` override; this site defaults
 * to light with a `.theme-dark` override, per the "light default, toggle to
 * dark" decision. The `theme-administrative`/`theme-warm`/`theme-azure`
 * variants that existed in the source files are intentionally dropped.
 *
 * Every page in aptagram_site/ links this file, then its own page-specific
 * CSS (if any) for content that doesn't belong here (e.g. wms.html's
 * operational-dashboard mock, migrations.html's path-strip diagram).
 */

:root {
    /* Light theme (default) */
    --bg-color: #f8fafc;
    --bg-color-rgb: 248, 250, 252;
    --surface-color: #ffffff;
    --surface-hover: #f1f5f9;
    --primary-color: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.1);
    --secondary-color: #22c55e;
    --accent-color: #8b5cf6;
    --accent-red: #ef4444;
    --text-main: #0f172a;
    --text-dim: #475569;
    --text-muted: #94a3b8;
    --glass-bg: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.08);
    --navbar-height: 72px;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-dark {
    --bg-color: #0c0c0c;
    --bg-color-rgb: 12, 12, 12;
    --surface-color: #1a1a1a;
    --surface-hover: #252525;
    --primary-color: #4dabf7;
    --primary-glow: rgba(77, 171, 247, 0.3);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--navbar-height) + 16px);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
}

/* ==================== Navbar ==================== */
nav.site-nav {
    height: var(--navbar-height);
    /* Solid, not translucent: on every page but the home page's cover-hero
       this is visually identical to a blended near-white/near-black, but a
       semi-transparent nav over the hero's dark photo picked up a muddy
       gray haze instead of sitting cleanly on top of it. */
    background: var(--bg-color);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* Wraps nav-links + nav-actions so both collapse together on mobile; on
   desktop it's just a flex row sitting between the logo and the edge. */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 24px;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: inherit;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img, .logo svg {
    height: 28px;
    width: auto;
    display: block;
}

/* The wordmark is navy-on-transparent; force it to white on the dark theme
   rather than shipping a second logo asset. */
.theme-dark .logo img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-base);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--text-main);
    background: var(--glass-bg);
}

.nav-links a.active {
    color: var(--primary-color);
    background: var(--primary-glow);
}

/* Products dropdown — hover/focus-within on desktop, no JS needed. */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown:focus-within > .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
    color: var(--text-main);
    background: var(--glass-bg);
}

.nav-dropdown-trigger .chevron {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    /* Touches the trigger directly (no margin-top gap): a gap there is dead
       space no element covers, so moving the mouse from the trigger down
       into the menu crosses it and drops :hover before arriving — the menu
       would vanish just as the cursor reaches it. padding-top keeps the
       same visual breathing room while staying inside the hoverable box. */
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 14px 6px 6px;
    margin-top: 0;
    z-index: 10;
}

.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--glass-bg);
    color: var(--text-main);
}

.nav-dropdown-menu a.active {
    color: var(--primary-color);
    background: var(--primary-glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.theme-selector select,
.lang-selector select {
    background-color: var(--surface-color);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
}

.theme-selector select option,
.lang-selector select option {
    background-color: var(--surface-color);
    color: var(--text-main);
}

.lang-selector a {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-selector a:hover {
    color: var(--text-main);
    border-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    flex-shrink: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: var(--transition-base);
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: var(--surface-color);
        border-bottom: 1px solid var(--glass-border);
        padding: 0 16px;
        gap: 4px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    nav.site-nav.nav-open .nav-menu {
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
        padding: 8px 16px 16px;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
    }

    .nav-links a {
        padding: 12px 14px;
    }

    .nav-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        padding-top: 12px;
        margin-top: 8px;
        border-top: 1px solid var(--glass-border);
    }

    .nav-actions .btn-primary {
        width: 100%;
        text-align: center;
        order: 3;
    }

    /* No hover on touch — the dropdown is always expanded inline instead. */
    .nav-dropdown-trigger {
        cursor: default;
        padding: 12px 14px;
    }

    .nav-dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        background: none;
        margin: 0 0 0 14px;
        padding: 0 0 0 12px;
        border-left: 2px solid var(--glass-border);
    }
}

/* ==================== Typography / hero ==================== */
h1, h2, h3, h4 {
    line-height: 1.15;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.hero {
    padding: calc(var(--navbar-height) + 88px) 0 100px;
    position: relative;
}

.hero.hero-centered {
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--text-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .lead {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 640px;
    margin-bottom: 32px;
}

.hero.hero-centered p {
    margin-left: auto;
    margin-right: auto;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-copy { flex: 1.1; }
.hero-visual { flex: 1; position: relative; }

.hero-visual img.main-shot {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    display: block;
}

.hero-visual img.accent-shot {
    position: absolute;
    width: 46%;
    bottom: -32px;
    left: -32px;
    border-radius: 14px;
    border: 4px solid var(--bg-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-glow);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-intro h2 { margin-bottom: 12px; }

.section-intro p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* ==================== Feature rows (text + image, alternating) ==================== */
.feature-row {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 90px 0;
}

.feature-row.reverse { flex-direction: row-reverse; }
.feature-content { flex: 1; }

/* Consistent breathing room between whatever mix of badge/heading/
   paragraphs/list/button a feature-content block happens to contain —
   the reset zeroes all margins, so without this any two of them collide. */
.feature-content > * + * {
    margin-top: 16px;
}

.feature-content > * + .btn {
    margin-top: 28px;
}

.feature-image {
    flex: 1.1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== Card grids ==================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 40px 0;
}

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.feature-card .card-body { padding: 24px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-dim); font-size: 0.95rem; }

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 28px;
    border-radius: 16px;
}

.value-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { color: var(--text-dim); font-size: 0.9rem; }

.check-list { list-style: none; margin: 24px 0; }

.check-list li {
    color: var(--text-dim);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-banner {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 100px 0;
}

.cta-banner h3 { font-size: 1.75rem; margin-bottom: 8px; }
.cta-banner p { color: var(--text-dim); }

/* ==================== Buttons ==================== */
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.95rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ==================== Footer ==================== */
footer.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 64px 0 0;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.92rem;
}

.footer-col a:hover { color: var(--primary-color); }

.footer-col p {
    color: var(--text-dim);
    font-size: 0.92rem;
}

.footer-company address {
    font-style: normal;
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .hero-grid { flex-direction: column; }
    .hero-visual { width: 100%; }
    .card-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual img.accent-shot { display: none; }
}

/* ==================== Legal documents ====================
   Plain prose pages (privacy, terms, EULA) — narrower measure and denser
   type than the marketing components above. */
.legal-doc {
    max-width: 720px;
    margin: 0 auto;
    padding: 8px 0 100px;
}

.legal-note {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 40px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.legal-doc h2 {
    font-size: 1.4rem;
    margin-top: 48px;
    margin-bottom: 14px;
}

.legal-doc h2:first-of-type {
    margin-top: 0;
}

.legal-doc h3 {
    font-size: 1.1rem;
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-doc p {
    color: var(--text-dim);
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.legal-doc ul,
.legal-doc ol {
    color: var(--text-dim);
    font-size: 0.98rem;
    margin: 0 0 16px 1.3em;
}

.legal-doc li {
    margin-bottom: 8px;
}

.legal-doc strong {
    color: var(--text-main);
}

/* ==================== Contact form ==================== */
.contact-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    padding: 8px 0 100px;
}

.contact-form-col {
    flex: 1.6;
}

.contact-info-col {
    flex: 1;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.contact-form label.required::after {
    content: " *";
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: var(--surface-color);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Honeypot field — must stay visually hidden but present in the DOM/tab order-free. */
.contact-form .form-row-hidden {
    position: absolute;
    left: -9999px;
}

.contact-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
}

.contact-info h3 {
    margin-bottom: 16px;
}

.contact-info address {
    font-style: normal;
}

.contact-info ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.92rem;
}

.contact-info ul a {
    color: inherit;
    text-decoration: none;
}

.contact-info ul li i {
    color: var(--primary-color);
    width: 16px;
    margin-right: 8px;
}

.contact-info ul a:hover {
    color: var(--primary-color);
}

.alert {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    border: 1px solid transparent;
}

.alert-success {
    color: var(--secondary-color);
    background: color-mix(in srgb, var(--secondary-color) 12%, transparent);
    border-color: color-mix(in srgb, var(--secondary-color) 30%, transparent);
}

.alert-danger {
    color: var(--accent-red);
    background: color-mix(in srgb, var(--accent-red) 12%, transparent);
    border-color: color-mix(in srgb, var(--accent-red) 30%, transparent);
}

@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
    }
}

/* ==================== Stats row ==================== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    text-align: center;
    padding: 24px 0 64px;
    flex-wrap: wrap;
}

.stats-row .stat {
    flex: 1;
    min-width: 200px;
}

.stats-row .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stats-row .stat-label {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ==================== Job listing ==================== */
.job-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    padding: 8px 0 100px;
}

.job-main {
    flex: 1.6;
}

.job-aside {
    flex: 1;
}

.job-aside img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    display: block;
}

.job-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 32px;
}

.job-card h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary-color);
}

.job-card h3 {
    font-size: 1.05rem;
    margin-top: 24px;
    margin-bottom: 10px;
}

.job-card p {
    color: var(--text-dim);
    margin-bottom: 16px;
}

.job-card ul {
    color: var(--text-dim);
    margin: 0 0 16px 1.3em;
}

.job-card li {
    margin-bottom: 6px;
}

@media (max-width: 900px) {
    .job-layout {
        flex-direction: column;
    }
}

/* ==================== Cover hero (full-bleed photo, home page) ====================
   Text is always white here regardless of theme — it sits on a fixed dark
   overlay over a photo, not on the theme's own background. */
.cover-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--navbar-height) + 40px) 0 60px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.cover-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 22, 0.55);
}

.cover-hero .container {
    position: relative;
    z-index: 1;
}

.cover-hero h1 {
    font-size: clamp(2.75rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #fff;
}

.cover-hero .subtitle {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.cover-hero p.lead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 32px;
    font-style: italic;
    font-size: 1.15rem;
}

/* ==================== Picture banner (centered title + large linked photo) ==================== */
.picture-banner {
    text-align: center;
    padding: 56px 0;
}

.picture-banner h2 {
    margin-bottom: 28px;
}

.picture-banner .banner-image {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.picture-banner img {
    width: 100%;
    display: block;
}

.picture-banner figcaption {
    color: var(--text-dim);
    margin-top: 16px;
    font-size: 0.95rem;
}

/* ==================== Centered text block ==================== */
.text-block-centered {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.text-block-centered p {
    color: var(--text-dim);
    margin-bottom: 12px;
}

.text-block-centered strong {
    color: var(--text-main);
}

/* ==================== Icon feature row ==================== */
.icon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    padding: 40px 0;
}

.icon-features .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-glow);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}

.icon-features h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.icon-features p {
    color: var(--text-dim);
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .icon-features {
        grid-template-columns: 1fr;
    }
}
