        :root {
            color-scheme: light;
            --bg: #f5f1ea;
            --bg-deep: #171418;
            --surface: rgba(255, 255, 255, 0.78);
            --surface-strong: #ffffff;
            --surface-dark: rgba(20, 18, 24, 0.72);
            --line: rgba(114, 96, 84, 0.16);
            --line-strong: rgba(114, 96, 84, 0.24);
            --text: #201a1f;
            --muted: #746a72;
            --muted-soft: #9a8f97;
            --brand: #8b5cf6;
            --brand-strong: #6d28d9;
            --brand-soft: rgba(139, 92, 246, 0.14);
            --accent: #f59e0b;
            --shadow: 0 20px 60px rgba(30, 23, 33, 0.12);
            --shadow-soft: 0 10px 30px rgba(30, 23, 33, 0.08);
            --radius-xl: 32px;
            --radius-lg: 24px;
            --radius-md: 18px;
            --radius-sm: 14px;
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at top left, rgba(139, 92, 246, 0.16), transparent 32%),
                radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.18), transparent 26%),
                linear-gradient(180deg, #fbf8f4 0%, #f5f1ea 45%, #f7f5f1 100%);
            min-height: 100vh;
        }
        body::before,
        body::after {
            content: "";
            position: fixed;
            inset: auto;
            pointer-events: none;
            z-index: -1;
            filter: blur(36px);
            opacity: 0.55;
        }
        body::before {
            width: 260px;
            height: 260px;
            top: 88px;
            right: -60px;
            background: rgba(139, 92, 246, 0.18);
        }
        body::after {
            width: 220px;
            height: 220px;
            left: -70px;
            bottom: 120px;
            background: rgba(245, 158, 11, 0.15);
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }
        a:hover { color: var(--brand-strong); }
        img { max-width: 100%; }
        .container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
        .site-shell {
            position: relative;
            overflow: hidden;
        }
        .site-shell::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 50%;
            width: 980px;
            height: 980px;
            transform: translateX(-50%);
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 62%);
            pointer-events: none;
            z-index: -1;
        }
        .utility-bar {
            color: #f8fafc;
            font-size: 13px;
            background: linear-gradient(90deg, rgba(20, 18, 24, 0.95), rgba(57, 38, 84, 0.92));
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .utility-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 11px 0;
            flex-wrap: wrap;
        }
        .utility-links,
        .utility-languages {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .utility-label {
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 11px;
        }
        .utility-bar a {
            color: rgba(255, 255, 255, 0.95);
            opacity: 0.86;
        }
        .utility-bar a:hover { opacity: 1; color: #ffffff; }
        .topbar {
            position: sticky;
            top: 0;
            z-index: 40;
            backdrop-filter: blur(18px);
            background: rgba(251, 248, 244, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        }
        .topbar .container {
            display: flex;
            gap: 22px;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
        }
        .brand-logo {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(139, 92, 246, 0.1);
            box-shadow: var(--shadow-soft);
            flex: 0 0 auto;
        }
        .brand-copy {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }
        .brand strong {
            display: block;
            font-size: 24px;
            line-height: 1.1;
            letter-spacing: 0.02em;
        }
        .brand span {
            color: var(--muted);
            font-size: 13px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 18px;
            flex: 1;
            flex-wrap: wrap;
        }
        .nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .nav a {
            color: var(--muted);
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid transparent;
            font-size: 14px;
        }
        .nav a:hover {
            color: var(--text);
            border-color: rgba(139, 92, 246, 0.18);
            background: rgba(255, 255, 255, 0.68);
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 18px;
            border-radius: 999px;
            font-size: 14px;
            color: #ffffff;
            background: linear-gradient(135deg, var(--brand), var(--brand-strong));
            box-shadow: 0 12px 28px rgba(109, 40, 217, 0.24);
        }
        .nav-cta:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }
        .menu-toggle {
            display: none;
            width: 48px;
            height: 48px;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(139, 92, 246, 0.16);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.82);
            color: var(--text);
            cursor: pointer;
            box-shadow: var(--shadow-soft);
        }
        .menu-toggle span,
        .menu-toggle::before,
        .menu-toggle::after {
            content: "";
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .menu-toggle span {
            position: relative;
        }
        .menu-toggle::before {
            position: absolute;
            transform: translateY(-6px);
        }
        .menu-toggle::after {
            position: absolute;
            transform: translateY(6px);
        }
        .menu-toggle.is-active span {
            opacity: 0;
        }
        .menu-toggle.is-active::before {
            transform: rotate(45deg);
        }
        .menu-toggle.is-active::after {
            transform: rotate(-45deg);
        }
        .mobile-nav-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(20, 18, 24, 0.26);
            backdrop-filter: blur(6px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
            z-index: 35;
        }
        .mobile-nav-backdrop.is-visible {
            opacity: 1;
            pointer-events: auto;
        }
        .ad-grid { display: grid; gap: 14px; margin: 22px auto 0; }
        .ad-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 26px;
            box-shadow: var(--shadow-soft);
        }
        .ad-carousel-track {
            position: relative;
            min-height: 220px;
        }
        .ad-slide {
            position: relative;
            overflow: hidden;
            min-height: 220px;
            border-radius: 26px;
            border: 1px solid rgba(245, 158, 11, 0.18);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.96));
            box-shadow: var(--shadow-soft);
        }
        .js-enhanced .ad-carousel.has-multiple .ad-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            pointer-events: none;
            transform: scale(1.02);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .js-enhanced .ad-carousel.has-multiple .ad-slide.is-active {
            opacity: 1;
            pointer-events: auto;
            transform: scale(1);
        }
        .ad-slide-link {
            position: relative;
            display: block;
            min-height: inherit;
            color: inherit;
        }
        .ad-slide-image {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 220px;
            object-fit: cover;
        }
        .ad-slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(20, 18, 24, 0.76) 0%, rgba(20, 18, 24, 0.42) 48%, rgba(20, 18, 24, 0.2) 100%);
        }
        .ad-slide.no-image .ad-slide-overlay {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(139, 92, 246, 0.1));
        }
        .ad-slide-content {
            position: absolute;
            inset: 0;
            z-index: 1;
            display: grid;
            align-content: end;
            gap: 10px;
            padding: 26px 28px;
        }
        .ad-slide-content strong {
            display: block;
            max-width: 20ch;
            font-size: clamp(1.4rem, 2.5vw, 2.2rem);
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: #ffffff;
        }
        .ad-slide-content p {
            margin: 0;
            max-width: 60ch;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }
        .ad-slide.no-image .ad-slide-content strong {
            color: #6b3f13;
        }
        .ad-slide.no-image .ad-slide-content p {
            color: #8a5a14;
        }
        .ad-slide-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            min-height: 42px;
            padding: 0 18px;
            border-radius: 999px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
            box-shadow: 0 14px 28px rgba(124, 58, 237, 0.22);
        }
        .ad-carousel-controls {
            position: absolute;
            right: 18px;
            bottom: 18px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ad-carousel-arrow,
        .ad-carousel-dot {
            appearance: none;
            border: 0;
            cursor: pointer;
            font: inherit;
        }
        .ad-carousel-arrow {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            color: #ffffff;
            background: rgba(20, 18, 24, 0.48);
            backdrop-filter: blur(10px);
        }
        .ad-carousel-dots {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 6px;
            min-height: 42px;
            border-radius: 999px;
            background: rgba(20, 18, 24, 0.34);
            backdrop-filter: blur(10px);
        }
        .ad-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.44);
        }
        .ad-carousel-dot.is-active {
            width: 28px;
            background: #ffffff;
        }
        .breadcrumb-wrap {
            margin: 22px 0 0;
            padding: 14px 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.76);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(10px);
        }
        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 12px;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .breadcrumb-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            color: var(--muted);
            font-size: 13px;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: "/";
            color: var(--muted-soft);
        }
        .breadcrumb-item a,
        .breadcrumb-item span {
            max-width: min(36ch, calc(100vw - 120px));
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .breadcrumb-item a {
            color: var(--muted);
        }
        .breadcrumb-item a:hover {
            color: var(--brand-strong);
        }
        .breadcrumb-item span[aria-current="page"] {
            color: var(--text);
            font-weight: 600;
        }
        main.container {
            position: relative;
            padding: 30px 0 70px;
        }
        .hero,
        .panel {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.72);
            box-shadow: var(--shadow);
        }
        .hero {
            margin: 12px auto 28px;
            padding: 54px;
            background:
                linear-gradient(135deg, rgba(20, 18, 24, 0.96), rgba(52, 36, 67, 0.92) 46%, rgba(109, 40, 217, 0.88)),
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%);
            color: #ffffff;
        }
        .hero::before,
        .panel::before {
            content: "";
            position: absolute;
            inset: auto auto 0 0;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
            transform: translate(-28%, 30%);
            pointer-events: none;
        }
        .hero h1 {
            margin: 0;
            font-size: clamp(2.35rem, 4vw, 4.5rem);
            line-height: 1.04;
            letter-spacing: -0.04em;
            max-width: 10ch;
        }
        .hero p {
            margin: 0;
            max-width: 680px;
            line-height: 1.85;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }
        .hero-grid {
            display: grid;
            gap: 30px;
            grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
            align-items: end;
        }
        .hero-copy {
            display: grid;
            gap: 18px;
            align-content: start;
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            padding: 9px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.88);
            font-size: 12px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }
        .hero-kicker::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fbbf24;
            box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.16);
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            padding-top: 8px;
        }
        .button,
        .button-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 22px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 14px;
        }
        .button {
            color: #ffffff;
            background: linear-gradient(135deg, #f7b733, #fc4a1a);
            box-shadow: 0 18px 30px rgba(252, 74, 26, 0.2);
        }
        .button:hover { color: #ffffff; transform: translateY(-1px); }
        .button-secondary {
            color: #7c2d12;
            border: 1px solid rgba(251, 146, 60, 0.38);
            background: rgba(255, 247, 237, 0.92);
            box-shadow: 0 12px 24px rgba(124, 45, 18, 0.08);
        }
        .button-secondary:hover {
            color: #ffffff;
            background: linear-gradient(135deg, #fb923c, #f97316);
            border-color: rgba(249, 115, 22, 0.7);
            box-shadow: 0 16px 30px rgba(249, 115, 22, 0.22);
            transform: translateY(-1px);
        }
        .hero-footnote {
            color: rgba(255, 255, 255, 0.62);
            font-size: 13px;
        }
        .hero-side {
            display: grid;
            gap: 16px;
        }
        .hero-card,
        .mini-card {
            position: relative;
            overflow: hidden;
            border-radius: 26px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
        }
        .hero-card { padding: 24px; }
        .hero-card h3,
        .mini-card strong,
        .stat-card strong {
            display: block;
            font-size: 14px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.72);
            margin-bottom: 10px;
        }
        .hero-card p,
        .mini-card p { color: rgba(255, 255, 255, 0.82); max-width: none; }
        .hero-social-card {
            padding: 22px;
        }
        .hero-social-head {
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 16px;
        }
        .hero-social-head span {
            display: block;
            color: rgba(255, 255, 255, 0.68);
            font-size: 13px;
            line-height: 1.7;
        }
        .hero-social-link {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 0 14px;
            border-radius: 999px;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.12);
            white-space: nowrap;
        }
        .hero-social-grid {
            display: grid;
            gap: 12px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .hero-social-item {
            padding: 14px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hero-social-item strong {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-size: 14px;
        }
        .hero-social-item span {
            display: block;
            color: rgba(255, 255, 255, 0.74);
            font-size: 12px;
            line-height: 1.6;
            word-break: break-word;
        }
        .hero-social-item img {
            display: block;
            width: 72px;
            height: 72px;
            margin-top: 12px;
            border-radius: 16px;
            background: #fff;
            padding: 5px;
            object-fit: cover;
        }
        .hero-stats {
            display: grid;
            gap: 14px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .stat-card {
            padding: 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .stat-card span {
            display: block;
            font-size: 2rem;
            line-height: 1;
            font-weight: 700;
            letter-spacing: -0.03em;
        }
        .stat-card small {
            display: block;
            margin-top: 10px;
            color: rgba(255, 255, 255, 0.66);
            line-height: 1.6;
        }
        .grid { display: grid; gap: 22px; }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
        .panel {
            padding: 30px;
            margin-bottom: 24px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.92));
            backdrop-filter: blur(14px);
        }
        .panel h2,
        .panel h1,
        .section-title {
            margin: 0;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        .section-title { font-size: clamp(1.75rem, 2.4vw, 2.5rem); }
        .section-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .section-heading p {
            margin: 0;
            max-width: 560px;
            color: var(--muted);
            line-height: 1.8;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: var(--brand-strong);
            background: var(--brand-soft);
            margin-bottom: 14px;
        }
        .eyebrow::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--brand);
        }
        .card {
            position: relative;
            overflow: hidden;
            display: grid;
            gap: 12px;
            align-content: start;
            padding: 24px;
            border-radius: 24px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
        }
        .card:hover {
            transform: translateY(-3px);
            border-color: rgba(139, 92, 246, 0.22);
            box-shadow: 0 26px 50px rgba(29, 22, 33, 0.12);
        }
        .card-cover {
            width: calc(100% + 48px);
            max-width: calc(100% + 48px);
            height: 220px;
            object-fit: cover;
            margin: -24px -24px 2px;
            border-radius: 24px 24px 0 0;
            display: block;
        }
        .content-cover {
            width: 100%;
            max-height: 460px;
            object-fit: cover;
            border-radius: 24px;
            margin: 10px 0 6px;
            display: block;
            box-shadow: var(--shadow-soft);
        }
        .card h3,
        .card strong {
            font-size: 1.15rem;
            line-height: 1.35;
        }
        .card p,
        .mini-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.85;
        }
        .card-link {
            color: var(--text);
        }
        .card-link:hover { color: var(--brand-strong); }
        .meta {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
            color: var(--muted-soft);
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin: 2px 0;
        }
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(139, 92, 246, 0.12);
            color: var(--brand-strong);
            font-size: 12px;
            font-weight: 600;
            margin-right: 8px;
        }
        .badge::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            opacity: 0.7;
        }
        .badge-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .split-panel {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
            gap: 24px;
            align-items: start;
        }
        .feature-list,
        .list {
            display: grid;
            gap: 16px;
        }
        .feature-item {
            padding: 18px 20px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid var(--line);
        }
        .feature-item strong {
            display: block;
            margin-bottom: 8px;
            font-size: 15px;
        }
        .feature-item p {
            margin: 0;
            color: var(--muted);
            line-height: 1.8;
        }
        .showcase-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
            align-items: stretch;
        }
        .showcase-lead {
            display: grid;
            gap: 18px;
            padding: 24px;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(21, 18, 26, 0.96), rgba(80, 45, 122, 0.88));
            color: #ffffff;
            min-height: 100%;
        }
        .showcase-lead p,
        .showcase-lead .meta {
            color: rgba(255, 255, 255, 0.76);
        }
        .showcase-media {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 22px;
            display: block;
        }
        .showcase-title {
            margin: 0;
            font-size: clamp(1.8rem, 3vw, 3rem);
            line-height: 1.08;
            letter-spacing: -0.04em;
        }
        .showcase-list {
            display: grid;
            gap: 16px;
        }
        .showcase-mini {
            display: grid;
            gap: 10px;
            padding: 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
        }
        .showcase-mini:hover {
            transform: translateY(-2px);
            border-color: rgba(139, 92, 246, 0.22);
        }
        .showcase-mini strong {
            font-size: 1.05rem;
            line-height: 1.35;
        }
        .showcase-mini p {
            margin: 0;
            color: var(--muted);
            line-height: 1.8;
        }
        .media-wall {
            display: grid;
            gap: 18px;
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
        .media-card {
            position: relative;
            overflow: hidden;
            min-height: 320px;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(37, 25, 52, 0.95), rgba(126, 34, 206, 0.74));
            box-shadow: var(--shadow);
        }
        .media-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .media-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(20, 18, 24, 0.06), rgba(20, 18, 24, 0.64));
        }
        .media-card-content {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            z-index: 1;
            color: #ffffff;
        }
        .media-card-content strong {
            display: block;
            font-size: 1.3rem;
            margin-bottom: 8px;
        }
        .media-card-content p {
            margin: 0;
            color: rgba(255, 255, 255, 0.76);
            line-height: 1.7;
        }
.media-wall-products {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.media-wall-detail {
    margin-top: 22px;
}
.product-media-card {
    min-height: 360px;
}
.product-card-meta {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}
        .media-card-fallback {
            display: grid;
            align-content: end;
            padding: 24px;
        }
        .logo-wall {
            display: grid;
            gap: 16px;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        }
        .logo-item {
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
            text-align: center;
        }
        .logo-item strong {
            font-size: 15px;
            line-height: 1.5;
            letter-spacing: 0.04em;
        }
        .story-grid,
        .team-grid {
            display: grid;
            gap: 20px;
        }
        .story-grid {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .story-block,
        .team-card {
            padding: 24px;
            border-radius: 26px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
        }
        .story-block h3,
        .team-card h3 {
            margin: 0 0 10px;
            font-size: 1.2rem;
        }
        .story-block p,
        .team-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.85;
        }
        .timeline-list {
            display: grid;
            gap: 16px;
        }
        .timeline-item {
            position: relative;
            padding: 20px 20px 20px 74px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-soft);
        }
        .timeline-year {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--brand), var(--brand-strong));
            color: #fff;
            font-weight: 700;
            font-size: 12px;
        }
        .timeline-item strong {
            display: block;
            margin-bottom: 8px;
            font-size: 1.05rem;
        }
        .team-grid {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .team-avatar {
            width: 72px;
            height: 72px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(245, 158, 11, 0.16));
            color: var(--brand-strong);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .team-role {
            color: var(--brand-strong);
            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .team-meta {
            display: grid;
            gap: 8px;
            margin-top: 16px;
            color: var(--muted-soft);
            font-size: 14px;
        }
        .case-hero-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
            align-items: start;
        }
        .case-sidebar {
            display: grid;
            gap: 14px;
        }
        .stat-pill {
            padding: 18px 20px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid var(--line);
        }
        .stat-pill strong {
            display: block;
            margin-bottom: 6px;
            font-size: 13px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted-soft);
        }
        .stat-pill span {
            display: block;
            font-size: 1.08rem;
            line-height: 1.6;
        }
        .consult-band {
            padding: 0 0 28px;
        }
        .consult-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
            align-items: start;
        }
        .consult-copy {
            display: grid;
            gap: 16px;
        }
        .consult-copy p {
            margin: 0;
            color: var(--muted);
            line-height: 1.9;
        }
        .consult-form {
            display: grid;
            gap: 14px;
        }
        .consult-form-grid {
            display: grid;
            gap: 14px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .form-field {
            display: grid;
            gap: 8px;
        }
        .form-field label {
            font-size: 13px;
            color: var(--muted);
        }
        .form-field input,
        .form-field textarea {
            width: 100%;
            border: 1px solid var(--line-strong);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.9);
            padding: 14px 16px;
            font: inherit;
            color: var(--text);
            outline: none;
        }
        .form-field textarea {
            min-height: 140px;
            resize: vertical;
        }
        .form-field input:focus,
        .form-field textarea:focus {
            border-color: rgba(139, 92, 246, 0.36);
            box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
        }
        .form-field.is-wide {
            grid-column: 1 / -1;
        }
        .form-alert {
            padding: 14px 16px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 12px;
        }
        .form-alert.success {
            background: rgba(34, 197, 94, 0.12);
            color: #166534;
            border: 1px solid rgba(34, 197, 94, 0.18);
        }
        .form-alert.error {
            background: rgba(239, 68, 68, 0.08);
            color: #991b1b;
            border: 1px solid rgba(239, 68, 68, 0.16);
        }
        .form-note {
            color: var(--muted-soft);
            font-size: 13px;
        }
        .cta-panel {
            background:
                linear-gradient(135deg, rgba(22, 18, 30, 0.98), rgba(69, 40, 112, 0.94) 56%, rgba(124, 58, 237, 0.88)),
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%);
            color: #ffffff;
        }
        .cta-panel .section-title,
        .cta-panel .eyebrow,
        .cta-panel .feature-item strong,
        .cta-panel a {
            color: #ffffff;
        }
        .cta-panel .eyebrow {
            background: rgba(255, 255, 255, 0.08);
        }
        .cta-panel .eyebrow::before {
            background: #fbbf24;
        }
        .cta-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
            align-items: center;
        }
        .cta-copy {
            display: grid;
            gap: 16px;
        }
        .cta-copy p {
            margin: 0;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.9;
            max-width: 640px;
        }
        .cta-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            padding-top: 8px;
        }
        .cta-note {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.62);
        }
        .cta-stack {
            display: grid;
            gap: 14px;
        }
        .cta-panel .feature-item {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .cta-panel .feature-item p {
            color: rgba(255, 255, 255, 0.72);
        }
        .js-enhanced [data-reveal] {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.75s ease, transform 0.75s ease;
            transition-delay: calc(var(--reveal-order, 0) * 0.08s);
        }
        .js-enhanced [data-reveal].is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .highlight-panel {
            padding: 24px;
            border-radius: 26px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(245, 158, 11, 0.12));
            border: 1px solid rgba(139, 92, 246, 0.14);
        }
        .highlight-panel h3 {
            margin: 0 0 12px;
            font-size: 1.3rem;
        }
        .highlight-panel p {
            margin: 0;
            color: var(--muted);
            line-height: 1.85;
        }
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
            margin: 24px 0;
            border: 0;
        }
        .detail-title {
            font-size: clamp(2rem, 3.2vw, 3.2rem);
        }
        .content-body {
            line-height: 1.95;
            color: #3a3138;
            white-space: pre-line;
        }
        .content-rich { white-space: normal; }
        .content-rich p { margin: 0 0 1em; }
        .content-rich h2,
        .content-rich h3,
        .content-rich h4 { margin: 1.25em 0 0.65em; line-height: 1.35; }
        .content-rich ul,
        .content-rich ol { margin: 0 0 1em; padding-left: 24px; }
        .content-rich blockquote {
            margin: 1.2em 0;
            padding: 16px 18px;
            border-left: 4px solid rgba(139, 92, 246, 0.46);
            background: rgba(139, 92, 246, 0.08);
            color: #5b3aa6;
            border-radius: 0 18px 18px 0;
        }
        .content-rich a {
            color: var(--brand-strong);
            text-decoration: underline;
            text-decoration-thickness: 1px;
        }
        .content-rich img { max-width: 100%; height: auto; border-radius: 16px; }
        .empty {
            padding: 22px;
            border-radius: 22px;
            color: var(--muted-soft);
            background: rgba(255, 255, 255, 0.5);
            border: 1px dashed var(--line-strong);
        }
        .pager { margin-top: 22px; }
        .pager nav {
            display: flex;
            justify-content: center;
        }
        .pager svg { width: 16px; }
        .footer {
            padding: 18px 0 0;
            color: rgba(255, 255, 255, 0.72);
        }
        .footer-shell {
            width: min(1480px, calc(100% - 32px));
            margin: 0 auto;
        }
        .footer-card {
            position: relative;
            overflow: hidden;
            padding: 34px 36px 26px;
            background:
                radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 24%),
                linear-gradient(135deg, rgba(20, 18, 24, 0.98), rgba(44, 31, 57, 0.96) 56%, rgba(73, 40, 102, 0.94));
            box-shadow: 0 28px 72px rgba(20, 18, 24, 0.28);
        }
        .footer-card::before {
            content: "";
            position: absolute;
            inset: -140px auto auto -120px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 68%);
            pointer-events: none;
        }
        .footer-hero {
            position: relative;
            display: flex;
            gap: 24px;
            align-items: end;
            justify-content: space-between;
            padding-bottom: 26px;
            margin-bottom: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-hero h2 {
            margin: 10px 0 12px;
            font-size: clamp(2rem, 3vw, 3rem);
            line-height: 1.04;
            color: #ffffff;
            letter-spacing: -0.04em;
        }
        .footer-hero p {
            max-width: 760px;
            margin: 0;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.9;
        }
        .footer-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.82);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }
        .footer-kicker::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #fbbf24;
        }
        .footer-hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .footer-grid {
            position: relative;
            display: grid;
            gap: 28px;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(280px, 0.85fr);
            align-items: start;
        }
        .footer-brand strong {
            display: block;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        .footer-brand-head {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 12px;
        }
        .footer-brand-head strong {
            margin-bottom: 0;
        }
        .footer-brand-logo {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.92);
            padding: 6px;
        }
        .footer-brand p,
        .footer-meta,
        .footer-links a {
            color: rgba(255, 255, 255, 0.72);
        }
        .footer-brand p,
        .footer-meta {
            margin: 0;
            line-height: 1.8;
        }
        .footer-column-stack,
        .footer-side {
            display: grid;
            gap: 20px;
        }
        .footer-section {
            display: grid;
            gap: 14px;
            align-content: start;
            padding: 18px 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
        }
        .footer-section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.62);
            font-size: 12px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }
        .footer-section-label::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(251, 191, 36, 0.9);
        }
        .footer-links {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }
        .footer-contact-list {
            display: grid;
            gap: 10px;
            margin-top: 18px;
        }
        .footer-contact-item {
            display: flex;
            gap: 10px;
            align-items: center;
            min-height: 44px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.84);
        }
        .footer-social-grid {
            display: grid;
            gap: 14px;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }
        .footer-social-card {
            padding: 14px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-social-card strong {
            display: block;
            margin-bottom: 6px;
            font-size: 0.96rem;
            color: #fff;
        }
        .footer-social-card span {
            display: block;
            min-height: 40px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 13px;
            line-height: 1.6;
            word-break: break-word;
        }
        .footer-social-card img {
            display: block;
            width: 100%;
            max-width: 112px;
            aspect-ratio: 1 / 1;
            margin-top: 12px;
            border-radius: 16px;
            background: #fff;
            padding: 6px;
            object-fit: cover;
        }
        .footer-links a {
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-links a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.12);
        }
        .footer-actions {
            display: grid;
            gap: 12px;
        }
        .footer-actions-wide {
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        }
        .footer-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 16px;
            border-radius: 999px;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }
        .footer-pill-primary {
            background: linear-gradient(135deg, #7c3aed, #ec4899);
            border-color: rgba(255, 255, 255, 0.16);
            box-shadow: 0 18px 32px rgba(124, 58, 237, 0.24);
        }
        .footer-pill:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
        }
        .footer-pill-primary:hover {
            background: linear-gradient(135deg, #8b5cf6, #f472b6);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.54);
            font-size: 13px;
            letter-spacing: 0.04em;
        }
        .service-float {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 80;
            display: grid;
            justify-items: end;
            gap: 12px;
        }
        .service-widget {
            width: min(360px, calc(100vw - 28px));
            padding: 18px;
            border-radius: 26px;
            color: #fff;
            background: linear-gradient(135deg, rgba(29, 21, 41, 0.96), rgba(109, 40, 217, 0.92));
            box-shadow: 0 24px 60px rgba(36, 22, 60, 0.28);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(18px) scale(0.96);
            transform-origin: bottom right;
            transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
        }
        .service-widget.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0) scale(1);
        }
        .service-widget-header {
            display: flex;
            gap: 14px;
            align-items: center;
        }
        .service-widget-avatar {
            width: 62px;
            height: 62px;
            border-radius: 20px;
            object-fit: cover;
            background: rgba(255, 255, 255, 0.94);
            flex: 0 0 auto;
        }
        .service-widget-name {
            font-size: 1rem;
            font-weight: 700;
        }
        .service-widget-role {
            margin-top: 4px;
            color: rgba(255, 255, 255, 0.72);
            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }
        .service-widget-copy {
            margin: 14px 0 0;
            color: rgba(255, 255, 255, 0.86);
            line-height: 1.75;
            font-size: 14px;
        }
        .service-widget-meta {
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }
        .service-widget-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 42px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.1);
        }
        .service-widget-qr {
            margin-top: 16px;
            padding: 14px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.12);
        }
        .service-widget-qr strong {
            display: block;
            margin-bottom: 10px;
            font-size: 13px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.76);
        }
        .service-widget-qr img {
            display: block;
            width: 148px;
            max-width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 18px;
            background: #fff;
            padding: 6px;
        }
        .service-widget-socials {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 14px;
        }
        .service-widget-socials span {
            display: inline-flex;
            align-items: center;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.88);
            font-size: 12px;
        }
        .service-widget-social-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            margin-top: 14px;
        }
        .service-widget-social-card {
            padding: 10px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.12);
        }
        .service-widget-social-card strong {
            display: block;
            margin-bottom: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.84);
        }
        .service-widget-social-card img {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 14px;
            background: #fff;
            padding: 5px;
        }
        .service-widget-actions {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            margin-top: 16px;
        }
        .service-widget-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0 14px;
            border-radius: 999px;
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .service-widget-action:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.16);
        }
        .service-float-dock {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
        }
        .service-float-btn,
        .service-float-main {
            appearance: none;
            border: 0;
            cursor: pointer;
            font: inherit;
        }
        .service-float-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 54px;
            min-height: 54px;
            padding: 0 16px;
            border-radius: 999px;
            color: #fff;
            background: rgba(29, 21, 41, 0.92);
            box-shadow: 0 16px 34px rgba(23, 18, 35, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .service-float-btn:hover {
            color: #fff;
            transform: translateY(-1px);
        }
        .service-float-top {
            display: none;
        }
        .service-float-top.is-visible {
            display: inline-flex;
        }
        .service-float-main {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 56px;
            padding: 0 20px;
            border-radius: 999px;
            color: #fff;
            background: linear-gradient(135deg, #6d28d9, #ec4899);
            box-shadow: 0 20px 44px rgba(109, 40, 217, 0.34);
        }
        .service-float-main::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fde68a;
            box-shadow: 0 0 0 6px rgba(253, 230, 138, 0.18);
        }
        .popup-mask {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.45);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
            padding: 16px;
            backdrop-filter: blur(10px);
        }
        .popup-mask.is-visible { display: flex; }
        .popup-card {
            width: min(520px, 100%);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), #ffffff);
            border-radius: 28px;
            padding: 28px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 28px 80px rgba(15, 23, 42, 0.26);
        }
        .popup-card h3 {
            margin: 0 0 12px;
            font-size: 1.5rem;
        }
        .popup-close {
            margin-top: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 16px;
            background: linear-gradient(135deg, var(--brand), var(--brand-strong));
            color: #fff;
            border-radius: 999px;
            cursor: pointer;
            border: 0;
        }
        @media (max-width: 1280px) {
            .footer-grid {
                grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            }
            .footer-side {
                grid-column: 1 / -1;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 1024px) {
            .hero-grid,
            .showcase-grid,
            .media-wall,
            .consult-grid,
            .case-hero-grid,
            .cta-grid,
            .split-panel,
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-side {
                grid-column: auto;
                grid-template-columns: 1fr;
            }
            .footer-hero {
                align-items: start;
                flex-direction: column;
            }
            .footer-hero-actions {
                justify-content: flex-start;
            }
            .hero h1 { max-width: none; }
        }
        @media (max-width: 768px) {
            .ad-carousel-track,
            .ad-slide,
            .ad-slide-image {
                min-height: 180px;
            }
            .ad-slide-content {
                padding: 18px 18px 22px;
            }
            .ad-slide-content strong {
                max-width: none;
                font-size: 1.3rem;
            }
            .ad-slide-content p {
                font-size: 13px;
                line-height: 1.7;
            }
            .ad-carousel-controls {
                right: 12px;
                bottom: 12px;
                gap: 8px;
            }
            .ad-carousel-arrow {
                width: 36px;
                height: 36px;
            }
            .ad-carousel-dots {
                min-height: 36px;
            }
            body.menu-open {
                overflow: hidden;
            }
            .utility-bar .container {
                align-items: flex-start;
            }
            .topbar .container {
                align-items: center;
            }
            .menu-toggle {
                display: inline-flex;
                position: relative;
            }
            .nav-wrap {
                position: fixed;
                top: 86px;
                left: 16px;
                right: 16px;
                z-index: 36;
                display: grid;
                gap: 14px;
                padding: 18px;
                border-radius: 26px;
                background: rgba(251, 248, 244, 0.96);
                border: 1px solid rgba(255, 255, 255, 0.8);
                box-shadow: 0 24px 60px rgba(20, 18, 24, 0.18);
                opacity: 0;
                pointer-events: none;
                transform: translateY(-12px);
                transition: opacity 0.25s ease, transform 0.25s ease;
            }
            .nav-wrap.is-open {
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
            }
            .nav {
                justify-content: flex-start;
                flex-direction: column;
                width: 100%;
            }
            .nav a,
            .nav-cta {
                width: 100%;
                justify-content: flex-start;
            }
            .hero {
                padding: 30px 24px;
                border-radius: 28px;
            }
            .hero-stats {
                grid-template-columns: 1fr;
            }
            .hero-social-grid {
                grid-template-columns: 1fr;
            }
            .showcase-media,
            .media-card {
                min-height: 260px;
                height: 260px;
            }
            .consult-form-grid {
                grid-template-columns: 1fr;
            }
            .panel,
            .card,
            .popup-card {
                padding-left: 20px;
                padding-right: 20px;
            }
            .footer-shell {
                width: min(100%, calc(100% - 20px));
            }
            .footer-card {
                padding: 24px 20px 20px;
                border-radius: 28px;
            }
            .footer-section {
                padding: 16px;
            }
            .footer-actions-wide,
            .footer-actions-compact {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 8px;
            }
            .breadcrumb-wrap {
                margin-top: 18px;
                padding: 12px 16px;
            }
            .breadcrumb-list {
                gap: 8px 10px;
            }
            .breadcrumb-item {
                gap: 10px;
                font-size: 12px;
            }
            .breadcrumb-item a,
            .breadcrumb-item span {
                max-width: min(22ch, calc(100vw - 112px));
            }
            .service-float {
                right: 14px;
                bottom: 14px;
                left: 14px;
                justify-items: stretch;
            }
            .service-widget {
                width: auto;
            }
            .service-float-dock {
                justify-content: space-between;
            }
            .card-cover {
                width: calc(100% + 40px);
                max-width: calc(100% + 40px);
                margin-left: -20px;
                margin-right: -20px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            * {
                animation: none !important;
                transition: none !important;
            }
            .js-enhanced [data-reveal] {
                opacity: 1;
                transform: none;
            }
        }

.section-top-gap {
    margin-top: 28px;
}

.hero-top-gap {
    margin-top: 12px;
}

.hero-bottom-gap {
    margin-bottom: 24px;
}

.badge-row-top-md {
    margin: 12px 0 0;
}

.badge-row-tight {
    margin: 6px 0 2px;
}

.badge-row-top-lg {
    margin-top: 18px;
}

.hero-actions-top-sm {
    padding-top: 12px;
}

.hero-actions-top-md {
    padding-top: 16px;
}

.footer-actions-compact {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.content-body-top {
    margin-top: 16px;
}

.full-width {
    width: 100%;
}

.empty-full-grid {
    grid-column: 1 / -1;
}

.contact-info-grid {
    gap: 16px;
    margin-top: 20px;
}

.qr-code-image {
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    background: #fff;
    padding: 8px;
    margin-top: 18px;
}

.qr-code-image-lg {
    width: min(220px, 100%);
}

.qr-code-image-md {
    width: min(180px, 100%);
}

.social-card-title {
    margin: 14px 0 10px;
}

.ad-grid-footer {
    margin-bottom: 18px;
}
