/* roulang page: index */
:root {
            --primary: #1769e0;
            --primary-dark: #0d4faf;
            --primary-light: #eaf3ff;
            --accent: #ff7b45;
            --accent-dark: #df5825;
            --ink: #13233b;
            --text: #3d4b61;
            --muted: #6e7d93;
            --line: #dfe7f1;
            --surface: #ffffff;
            --surface-soft: #f5f8fc;
            --surface-blue: #edf5ff;
            --success: #178f63;
            --warning: #c56c12;
            --radius-sm: 10px;
            --radius: 18px;
            --radius-lg: 28px;
            --shadow-sm: 0 8px 24px rgba(34, 67, 112, .08);
            --shadow: 0 18px 50px rgba(34, 67, 112, .13);
            --shadow-hover: 0 24px 60px rgba(34, 67, 112, .18);
            --container: 1200px;
            --transition: .25s ease;
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            color: var(--text);
            background: var(--surface);
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        body.menu-open { overflow: hidden; }
        h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
        h1, h2, h3, h4 {
            color: var(--ink);
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -.025em;
        }
        h1 { font-size: clamp(2.3rem, 5vw, 4.75rem); }
        h2 { font-size: clamp(1.85rem, 3vw, 3rem); }
        h3 { font-size: 1.2rem; }
        p { margin-bottom: 1rem; }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition), background var(--transition), transform var(--transition);
        }
        a:hover { color: var(--primary-dark); }
        button, input, select, textarea { font: inherit; }
        button { cursor: pointer; }
        img, svg { display: block; max-width: 100%; }
        ::selection { background: #cfe4ff; color: var(--ink); }
        :focus-visible {
            outline: 3px solid rgba(23, 105, 224, .35);
            outline-offset: 3px;
        }

        .site-container {
            width: min(calc(100% - 40px), var(--container));
            margin-inline: auto;
        }
        .section { padding: 96px 0; position: relative; }
        .section-soft { background: var(--surface-soft); }
        .section-blue { background: var(--surface-blue); }
        .section-dark {
            overflow: hidden;
            color: #dce9fb;
            background: #10233e;
        }
        .section-dark h2, .section-dark h3 { color: #fff; }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            color: var(--primary);
            font-size: .82rem;
            font-weight: 800;
            letter-spacing: .08em;
        }
        .eyebrow::before {
            width: 24px;
            height: 3px;
            border-radius: 3px;
            background: var(--accent);
            content: "";
        }
        .section-head {
            max-width: 760px;
            margin-bottom: 42px;
        }
        .section-head h2 { margin-bottom: 14px; }
        .section-head p {
            color: var(--muted);
            font-size: 1.04rem;
            margin-bottom: 0;
        }
        .section-head.split {
            max-width: none;
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 36px;
        }
        .section-head.split > div:first-child { max-width: 720px; }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 76px;
            border-bottom: 1px solid rgba(223, 231, 241, .9);
            background: rgba(255, 255, 255, .94);
            backdrop-filter: blur(18px);
        }
        .nav-wrap {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 26px;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            min-width: 0;
            color: var(--ink);
            font-size: 1.03rem;
            font-weight: 900;
            white-space: nowrap;
        }
        .brand:hover { color: var(--primary); }
        .brand-mark {
            display: grid;
            width: 39px;
            height: 39px;
            flex: 0 0 39px;
            place-items: center;
            border-radius: 12px;
            color: #fff;
            background: var(--primary);
            box-shadow: 0 8px 20px rgba(23, 105, 224, .24);
        }
        .brand-mark svg { width: 22px; height: 22px; }
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-left: auto;
        }
        .desktop-nav a {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 42px;
            padding: 0 17px;
            border-radius: 10px;
            color: var(--text);
            font-weight: 700;
        }
        .desktop-nav a:hover { color: var(--primary); background: var(--primary-light); }
        .desktop-nav a.active { color: var(--primary); background: var(--primary-light); }
        .desktop-nav a.active::after {
            position: absolute;
            right: 18px;
            bottom: 3px;
            left: 18px;
            height: 2px;
            border-radius: 2px;
            background: var(--primary);
            content: "";
        }
        .nav-actions { display: flex; align-items: center; gap: 10px; }
        .nav-search {
            display: flex;
            align-items: center;
            width: 210px;
            height: 42px;
            padding: 0 12px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: var(--surface-soft);
        }
        .nav-search svg { width: 17px; color: var(--muted); }
        .nav-search input {
            width: 100%;
            height: 40px;
            margin: 0;
            padding: 0 0 0 8px;
            border: 0;
            box-shadow: none;
            color: var(--ink);
            background: transparent;
            font-size: .9rem;
        }
        .nav-search input:focus { border: 0; box-shadow: none; background: transparent; }
        .menu-toggle {
            display: none;
            width: 43px;
            height: 43px;
            padding: 10px;
            border: 1px solid var(--line);
            border-radius: 11px;
            color: var(--ink);
            background: #fff;
        }
        .menu-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            margin: 4px 0;
            border-radius: 2px;
            background: currentColor;
        }
        .mobile-panel {
            display: none;
            position: fixed;
            inset: 76px 0 auto;
            z-index: 999;
            padding: 18px 20px 24px;
            border-bottom: 1px solid var(--line);
            background: #fff;
            box-shadow: var(--shadow);
        }
        .mobile-panel.open { display: block; }
        .mobile-panel a {
            display: block;
            padding: 13px 14px;
            margin-bottom: 5px;
            border-radius: 10px;
            color: var(--text);
            font-weight: 750;
        }
        .mobile-panel a.active { color: var(--primary); background: var(--primary-light); }

        .button, .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            margin: 0;
            padding: 12px 22px;
            border: 1px solid transparent;
            border-radius: 12px;
            color: #fff;
            background: var(--primary);
            font-size: .96rem;
            font-weight: 800;
            line-height: 1.2;
            box-shadow: 0 10px 22px rgba(23, 105, 224, .2);
            transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
        }
        .button:hover, .btn:hover {
            color: #fff;
            background: var(--primary-dark);
            box-shadow: 0 14px 30px rgba(23, 105, 224, .27);
            transform: translateY(-2px);
        }
        .button:active, .btn:active { transform: translateY(0); }
        .button.secondary {
            color: var(--ink);
            border-color: var(--line);
            background: #fff;
            box-shadow: none;
        }
        .button.secondary:hover {
            color: var(--primary);
            border-color: #aecdf5;
            background: var(--primary-light);
        }
        .button.accent {
            background: var(--accent);
            box-shadow: 0 10px 24px rgba(255, 123, 69, .26);
        }
        .button.accent:hover { background: var(--accent-dark); }
        .button.small { min-height: 40px; padding: 9px 16px; font-size: .88rem; }

        .flash-bar {
            color: #fff;
            background: #10233e;
        }
        .flash-inner {
            min-height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            font-size: .9rem;
        }
        .flash-label {
            padding: 3px 9px;
            border-radius: 999px;
            color: #1d2d43;
            background: #ffd58f;
            font-size: .76rem;
            font-weight: 900;
        }
        .countdown { display: flex; align-items: center; gap: 5px; }
        .countdown b {
            display: inline-grid;
            min-width: 28px;
            height: 27px;
            padding: 0 5px;
            place-items: center;
            border: 1px solid rgba(255,255,255,.16);
            border-radius: 6px;
            background: rgba(255,255,255,.09);
            font-variant-numeric: tabular-nums;
        }

        .hero {
            overflow: hidden;
            padding: 58px 0 76px;
            background:
                radial-gradient(circle at 80% 12%, rgba(91, 167, 255, .22), transparent 28%),
                linear-gradient(180deg, #f6faff 0%, #fff 100%);
        }
        .hero-stage {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr);
            gap: 34px;
            align-items: stretch;
        }
        .hero-copy {
            position: relative;
            padding: 48px 20px 40px 0;
        }
        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
            padding: 7px 12px;
            border: 1px solid #cfe1f8;
            border-radius: 999px;
            color: var(--primary-dark);
            background: rgba(255,255,255,.84);
            font-size: .82rem;
            font-weight: 800;
        }
        .hero-kicker i {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--success);
            box-shadow: 0 0 0 5px rgba(23, 143, 99, .1);
        }
        .hero h1 { max-width: 800px; margin-bottom: 22px; }
        .hero h1 span { color: var(--primary); }
        .hero-lead {
            max-width: 720px;
            margin-bottom: 28px;
            color: #51617a;
            font-size: 1.08rem;
        }
        .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--muted);
            font-size: .9rem;
            font-weight: 700;
        }
        .hero-points span { display: inline-flex; align-items: center; gap: 7px; }
        .hero-points span::before {
            display: grid;
            width: 20px;
            height: 20px;
            place-items: center;
            border-radius: 50%;
            color: var(--success);
            background: #e5f7f0;
            content: "✓";
            font-size: .72rem;
            font-weight: 900;
        }
        .offer-card {
            position: relative;
            overflow: hidden;
            padding: 30px;
            border: 1px solid #d9e7f8;
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,.96);
            box-shadow: var(--shadow);
        }
        .offer-card::before {
            position: absolute;
            top: -70px;
            right: -50px;
            width: 190px;
            height: 190px;
            border-radius: 50%;
            background: #e1efff;
            content: "";
        }
        .offer-top { position: relative; display: flex; justify-content: space-between; gap: 16px; }
        .offer-badge {
            display: inline-flex;
            padding: 5px 10px;
            border-radius: 999px;
            color: #a8471f;
            background: #fff0e9;
            font-size: .76rem;
            font-weight: 900;
        }
        .offer-icon {
            display: grid;
            width: 64px;
            height: 64px;
            flex: 0 0 64px;
            place-items: center;
            border-radius: 18px;
            color: #fff;
            background: var(--primary);
            box-shadow: 0 12px 28px rgba(23,105,224,.25);
        }
        .offer-icon svg { width: 31px; }
        .offer-card h2 { position: relative; margin: 28px 0 12px; font-size: 1.68rem; }
        .offer-card > p { position: relative; color: var(--muted); }
        .offer-list { position: relative; padding: 0; margin: 22px 0; list-style: none; }
        .offer-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px dashed var(--line);
            color: var(--text);
            font-size: .94rem;
        }
        .offer-list li:last-child { border-bottom: 0; }
        .offer-list li::before { color: var(--primary); content: "●"; font-size: .62rem; }
        .offer-price {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 18px;
        }
        .offer-price strong { color: var(--accent-dark); font-size: 2.05rem; }
        .offer-price del { color: #99a5b7; font-size: .9rem; }
        .offer-card .button { width: 100%; }

        .catalog-layout {
            display: grid;
            grid-template-columns: .72fr 1.28fr;
            gap: 54px;
            align-items: start;
        }
        .catalog-intro {
            position: sticky;
            top: 110px;
            padding: 30px;
            border-radius: var(--radius);
            background: #10233e;
            box-shadow: var(--shadow);
        }
        .catalog-intro h2 { color: #fff; }
        .catalog-intro p { color: #b9cbe2; }
        .catalog-meta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 26px;
        }
        .catalog-meta div {
            padding: 14px;
            border: 1px solid rgba(255,255,255,.11);
            border-radius: 12px;
            background: rgba(255,255,255,.06);
        }
        .catalog-meta strong { display: block; color: #fff; font-size: 1.35rem; }
        .catalog-meta span { color: #9fb4cf; font-size: .78rem; }
        .catalog-list { display: grid; gap: 14px; }
        .catalog-item {
            display: grid;
            grid-template-columns: 56px 1fr auto;
            gap: 18px;
            align-items: center;
            padding: 22px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
        }
        .catalog-item:hover {
            border-color: #bcd5f4;
            box-shadow: var(--shadow);
            transform: translateX(5px);
        }
        .catalog-no {
            display: grid;
            width: 56px;
            height: 56px;
            place-items: center;
            border-radius: 15px;
            color: var(--primary);
            background: var(--primary-light);
            font-weight: 900;
        }
        .catalog-item h3 { margin-bottom: 5px; }
        .catalog-item p { margin: 0; color: var(--muted); font-size: .9rem; }
        .text-link { font-size: .88rem; font-weight: 850; white-space: nowrap; }
        .text-link::after { margin-left: 5px; content: "→"; }

        .value-grid {
            display: grid;
            grid-template-columns: 1.2fr .8fr .8fr;
            grid-template-rows: auto auto;
            gap: 18px;
        }
        .value-card {
            min-height: 230px;
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition), box-shadow var(--transition);
        }
        .value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
        .value-card.featured {
            grid-row: span 2;
            color: #dce9fb;
            background: var(--primary);
            border-color: var(--primary);
        }
        .value-card.featured h3 { color: #fff; font-size: 1.65rem; }
        .value-card.featured p { color: #d8e8ff; }
        .value-icon {
            display: grid;
            width: 48px;
            height: 48px;
            margin-bottom: 22px;
            place-items: center;
            border-radius: 14px;
            color: var(--primary);
            background: var(--primary-light);
            font-size: 1.2rem;
            font-weight: 900;
        }
        .featured .value-icon { color: #fff; background: rgba(255,255,255,.15); }
        .value-card p { margin: 0; color: var(--muted); font-size: .93rem; }
        .check-stack { padding: 0; margin: 26px 0 0; list-style: none; }
        .check-stack li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,.14);
            color: #fff;
            font-weight: 700;
        }
        .check-stack li::before { margin-right: 9px; color: #aee6cc; content: "✓"; }

        .metrics-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: var(--line);
            box-shadow: var(--shadow-sm);
        }
        .metric { padding: 30px 24px; background: #fff; }
        .metric strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary);
            font-size: clamp(1.65rem, 3vw, 2.45rem);
            line-height: 1.1;
        }
        .metric span { color: var(--muted); font-size: .9rem; }
        .comparison {
            margin-top: 28px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .compare-card {
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: var(--radius);
            background: #fff;
        }
        .compare-card.recommended {
            border-color: #a9caf4;
            background: #f5f9ff;
            box-shadow: var(--shadow-sm);
        }
        .compare-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
        .compare-tag {
            padding: 4px 9px;
            border-radius: 999px;
            color: var(--success);
            background: #e7f7f1;
            font-size: .73rem;
            font-weight: 900;
        }
        .compare-list { padding: 0; margin: 18px 0 0; list-style: none; }
        .compare-list li { padding: 9px 0; color: var(--text); }
        .compare-list li::before { margin-right: 9px; color: var(--primary); content: "✓"; }

        .news-layout {
            display: grid;
            grid-template-columns: 1.25fr .75fr;
            gap: 26px;
        }
        .news-list {
            border-top: 2px solid var(--ink);
        }
        .news-row {
            display: grid;
            grid-template-columns: 102px 1fr auto;
            gap: 18px;
            align-items: center;
            padding: 23px 4px;
            border-bottom: 1px solid var(--line);
        }
        .news-date { color: var(--muted); font-size: .82rem; }
        .news-row h3 { margin: 0; font-size: 1.06rem; }
        .news-row h3 a { color: var(--ink); }
        .news-row h3 a:hover { color: var(--primary); }
        .news-type {
            padding: 4px 9px;
            border-radius: 999px;
            color: var(--primary);
            background: var(--primary-light);
            font-size: .72rem;
            font-weight: 850;
        }
        .viewpoint {
            padding: 30px;
            border-radius: var(--radius);
            color: #dce9fb;
            background: #10233e;
            box-shadow: var(--shadow);
        }
        .viewpoint-label { color: #7fc0ff; font-size: .8rem; font-weight: 850; }
        .viewpoint blockquote {
            margin: 18px 0 22px;
            padding: 0;
            border: 0;
            color: #fff;
            font-size: 1.32rem;
            font-weight: 800;
            line-height: 1.55;
        }
        .viewpoint p { color: #b8cae2; font-size: .91rem; }

        .promo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .promo-card {
            padding: 25px;
            border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--radius);
            background: rgba(255,255,255,.06);
        }
        .promo-card .number {
            display: inline-grid;
            width: 34px;
            height: 34px;
            margin-bottom: 18px;
            place-items: center;
            border-radius: 10px;
            color: #10233e;
            background: #8dc7ff;
            font-weight: 900;
        }
        .promo-card p { margin: 0; color: #b8cae2; font-size: .9rem; }
        .commission-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            margin-top: 28px;
            padding: 24px 28px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius);
            background: rgba(255,255,255,.06);
        }
        .commission-bar p { margin: 4px 0 0; color: #aec1da; font-size: .88rem; }
        .commission-bar strong { color: #fff; }

        .download-wrap {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            background: #fff;
            box-shadow: var(--shadow);
        }
        .download-copy {
            position: relative;
            overflow: hidden;
            padding: 48px;
            color: #d9e8fc;
            background: var(--primary);
        }
        .download-copy::after {
            position: absolute;
            right: -85px;
            bottom: -95px;
            width: 260px;
            height: 260px;
            border: 45px solid rgba(255,255,255,.08);
            border-radius: 50%;
            content: "";
        }
        .download-copy h2 { color: #fff; }
        .download-copy p { color: #d8e9ff; }
        .download-items {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 24px;
        }
        .download-items span {
            padding: 7px 11px;
            border: 1px solid rgba(255,255,255,.17);
            border-radius: 999px;
            background: rgba(255,255,255,.1);
            font-size: .8rem;
            font-weight: 700;
        }
        .lead-form { padding: 42px 48px; }
        .lead-form h3 { font-size: 1.45rem; margin-bottom: 8px; }
        .form-note { color: var(--muted); font-size: .86rem; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
        .field label {
            display: block;
            margin-bottom: 7px;
            color: var(--ink);
            font-size: .86rem;
            font-weight: 800;
        }
        .field input, .field select {
            width: 100%;
            height: 48px;
            margin: 0;
            padding: 0 14px;
            border: 1px solid var(--line);
            border-radius: 11px;
            color: var(--ink);
            background: var(--surface-soft);
            box-shadow: none;
        }
        .field input:focus, .field select:focus {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(23,105,224,.1);
        }
        .field.full { grid-column: 1 / -1; }
        .consent {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            margin: 17px 0;
            color: var(--muted);
            font-size: .78rem;
        }
        .consent input { margin-top: 5px; }
        .form-message {
            display: none;
            margin-top: 14px;
            padding: 10px 12px;
            border-radius: 9px;
            color: #116a4b;
            background: #e8f8f2;
            font-size: .85rem;
        }

        .faq-wrap {
            display: grid;
            grid-template-columns: .65fr 1.35fr;
            gap: 50px;
            align-items: start;
        }
        .faq-intro {
            padding: 28px;
            border-radius: var(--radius);
            background: var(--primary-light);
        }
        .faq-intro p { margin-bottom: 20px; color: var(--muted); }
        .faq-item {
            margin-bottom: 12px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 20px 22px;
            border: 0;
            color: var(--ink);
            background: transparent;
            text-align: left;
            font-weight: 850;
        }
        .faq-question:hover { color: var(--primary); background: #f8fbff; }
        .faq-question span:last-child {
            display: grid;
            width: 27px;
            height: 27px;
            flex: 0 0 27px;
            place-items: center;
            border-radius: 8px;
            color: var(--primary);
            background: var(--primary-light);
            font-size: 1.1rem;
            transition: transform var(--transition);
        }
        .faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
        .faq-answer {
            display: none;
            padding: 0 22px 20px;
            color: var(--muted);
            font-size: .92rem;
        }
        .faq-item.open .faq-answer { display: block; }

        .final-cta {
            padding: 70px 0;
            background: linear-gradient(135deg, #edf5ff 0%, #f9fbfe 55%, #fff4ee 100%);
        }
        .cta-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            padding: 42px 48px;
            border: 1px solid #d9e6f5;
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,.86);
            box-shadow: var(--shadow-sm);
        }
        .cta-box h2 { margin-bottom: 10px; }
        .cta-box p { max-width: 720px; margin: 0; color: var(--muted); }
        .cta-actions { display: flex; gap: 10px; flex: 0 0 auto; }

        .site-footer {
            padding: 56px 0 26px;
            color: #aebed3;
            background: #0d1d32;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr .6fr .8fr;
            gap: 50px;
            padding-bottom: 38px;
        }
        .footer-brand { color: #fff; }
        .footer-brand .brand-mark { background: #257ae8; }
        .footer-about { max-width: 520px; margin-top: 17px; color: #9fb1c9; font-size: .9rem; }
        .footer-title { margin-bottom: 16px; color: #fff; font-size: .92rem; font-weight: 850; }
        .footer-links { padding: 0; margin: 0; list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #aebed3; font-size: .88rem; }
        .footer-links a:hover { color: #fff; }
        .footer-contact p { margin-bottom: 8px; color: #aebed3; font-size: .88rem; }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,.09);
            font-size: .78rem;
        }
        .footer-bottom p { margin: 0; }

        @media (max-width: 1024px) {
            .nav-search { display: none; }
            .hero-stage { grid-template-columns: 1fr .72fr; }
            .hero-copy { padding-top: 30px; }
            .value-grid { grid-template-columns: 1fr 1fr; }
            .value-card.featured { grid-column: 1 / -1; grid-row: auto; }
            .promo-grid { grid-template-columns: 1fr 1fr; }
            .catalog-layout { gap: 28px; }
        }

        @media (max-width: 768px) {
            .site-container { width: min(calc(100% - 30px), var(--container)); }
            .section { padding: 72px 0; }
            .desktop-nav, .nav-actions .button { display: none; }
            .menu-toggle { display: block; }
            .hero { padding: 40px 0 58px; }
            .hero-stage, .catalog-layout, .news-layout, .download-wrap, .faq-wrap {
                grid-template-columns: 1fr;
            }
            .hero-copy { padding: 18px 0 0; }
            .offer-card { padding: 25px; }
            .catalog-intro { position: static; }
            .section-head.split { display: block; }
            .section-head.split .button { margin-top: 18px; }
            .metrics-strip { grid-template-columns: 1fr 1fr; }
            .comparison { grid-template-columns: 1fr; }
            .news-row { grid-template-columns: 88px 1fr; }
            .news-type { display: none; }
            .download-copy, .lead-form { padding: 36px; }
            .cta-box { display: block; padding: 34px; }
            .cta-actions { margin-top: 24px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid > div:first-child { grid-column: 1 / -1; }
        }

        @media (max-width: 520px) {
            .site-header, .nav-wrap { height: 68px; min-height: 68px; }
            .mobile-panel { top: 68px; }
            .brand { font-size: .88rem; }
            .brand-mark { width: 35px; height: 35px; flex-basis: 35px; }
            .flash-inner { min-height: 58px; flex-wrap: wrap; gap: 6px 10px; padding: 7px 0; }
            .flash-inner > span:nth-child(2) { font-size: .78rem; }
            .hero h1 { font-size: 2.18rem; }
            .hero-lead { font-size: .98rem; }
            .hero-actions .button { width: 100%; }
            .hero-points { display: grid; gap: 10px; }
            .catalog-item { grid-template-columns: 46px 1fr; gap: 13px; padding: 18px; }
            .catalog-no { width: 46px; height: 46px; }
            .catalog-item .text-link { grid-column: 2; }
            .catalog-meta, .value-grid, .metrics-strip, .promo-grid, .form-grid {
                grid-template-columns: 1fr;
            }
            .value-card.featured { grid-column: auto; }
            .metric { padding: 23px; }
            .news-row { grid-template-columns: 1fr; gap: 5px; padding: 18px 4px; }
            .commission-bar { display: block; }
            .commission-bar .button { width: 100%; margin-top: 18px; }
            .download-copy, .lead-form { padding: 28px 22px; }
            .field.full { grid-column: auto; }
            .cta-box { padding: 28px 22px; }
            .cta-actions { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-grid > div:first-child { grid-column: auto; }
            .footer-bottom { display: block; }
            .footer-bottom p + p { margin-top: 8px; }
        }

/* roulang page: category1 */
:root {
 --primary: #1769e0;
 --primary-dark: #0d4faf;
 --primary-light: #eaf3ff;
 --accent: #ff7b45;
 --accent-dark: #df5825;
 --ink: #13233b;
 --text: #3d4b61;
 --muted: #6e7d93;
 --line: #dfe7f1;
 --surface: #ffffff;
 --surface-soft: #f5f8fc;
 --surface-blue: #edf5ff;
 --success: #178f63;
 --warning: #c56c12;
 --radius-sm: 10px;
 --radius: 18px;
 --radius-lg: 28px;
 --shadow-sm: 0 8px 24px rgba(34, 67, 112, .08);
 --shadow: 0 18px 50px rgba(34, 67, 112, .13);
 --shadow-hover: 0 24px 60px rgba(34, 67, 112, .18);
 --container: 1200px;
 --transition: .25s ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
 margin: 0;
 color: var(--text);
 background: var(--surface);
 font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
 font-size: 16px;
 line-height: 1.75;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

::selection {
 color: #fff;
 background: var(--primary);
}

h1,
h2,
h3,
h4,
p,
ul { margin-top: 0; }

h1,
h2,
h3,
h4 {
 color: var(--ink);
 font-weight: 850;
 line-height: 1.25;
 letter-spacing: -.025em;
}

h1 {
 margin-bottom: 22px;
 font-size: clamp(2.45rem, 4.8vw, 4.45rem);
}

h2 {
 margin-bottom: 16px;
 font-size: clamp(1.9rem, 3vw, 2.8rem);
}

h3 {
 margin-bottom: 10px;
 font-size: 1.22rem;
}

p { margin-bottom: 1rem; }

a {
 color: var(--primary);
 text-decoration: none;
 transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

a:hover { color: var(--primary-dark); }

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

img,
svg {
 display: block;
 max-width: 100%;
}

input,
select,
textarea {
 width: 100%;
 margin: 0;
 border: 1px solid var(--line);
 border-radius: 12px;
 color: var(--ink);
 background: #fff;
 box-shadow: none;
 transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:focus,
select:focus,
textarea:focus {
 border-color: var(--primary);
 outline: none;
 background: #fff;
 box-shadow: 0 0 0 4px rgba(23, 105, 224, .12);
}

.site-container {
 width: min(calc(100% - 40px), var(--container));
 margin-inline: auto;
}

.section {
 position: relative;
 padding: 96px 0;
}

.section-soft { background: var(--surface-soft); }
.section-blue { background: var(--surface-blue); }

.section-dark {
 overflow: hidden;
 color: #dce9fb;
 background: #10233e;
}

.section-dark h2,
.section-dark h3 { color: #fff; }

.eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 margin-bottom: 14px;
 color: var(--primary);
 font-size: .82rem;
 font-weight: 800;
 letter-spacing: .08em;
}

.eyebrow::before {
 width: 24px;
 height: 3px;
 border-radius: 3px;
 background: var(--accent);
 content: "";
}

.section-head {
 max-width: 760px;
 margin-bottom: 42px;
}

.section-head h2 { margin-bottom: 14px; }

.section-head p {
 margin-bottom: 0;
 color: var(--muted);
 font-size: 1.04rem;
}

.section-head.split {
 display: flex;
 max-width: none;
 align-items: end;
 justify-content: space-between;
 gap: 36px;
}

.section-head.split > div:first-child { max-width: 720px; }

.site-header {
 position: sticky;
 top: 0;
 z-index: 1000;
 height: 76px;
 border-bottom: 1px solid rgba(223, 231, 241, .9);
 background: rgba(255, 255, 255, .94);
 backdrop-filter: blur(18px);
}

.nav-wrap {
 display: flex;
 min-height: 76px;
 align-items: center;
 justify-content: space-between;
 gap: 26px;
}

.brand {
 display: inline-flex;
 min-width: 0;
 align-items: center;
 gap: 11px;
 color: var(--ink);
 font-size: 1.03rem;
 font-weight: 900;
 white-space: nowrap;
}

.brand:hover { color: var(--primary); }

.brand-mark {
 display: grid;
 width: 39px;
 height: 39px;
 flex: 0 0 39px;
 place-items: center;
 border-radius: 12px;
 color: #fff;
 background: var(--primary);
 box-shadow: 0 8px 20px rgba(23, 105, 224, .24);
}

.brand-mark svg {
 width: 22px;
 height: 22px;
}

.desktop-nav {
 display: flex;
 align-items: center;
 gap: 5px;
 margin-left: auto;
}

.desktop-nav a {
 position: relative;
 display: inline-flex;
 min-height: 42px;
 align-items: center;
 padding: 0 17px;
 border-radius: 10px;
 color: var(--text);
 font-weight: 700;
}

.desktop-nav a:hover {
 color: var(--primary);
 background: var(--primary-light);
}

.desktop-nav a.active {
 color: var(--primary);
 background: var(--primary-light);
}

.desktop-nav a.active::after {
 position: absolute;
 right: 18px;
 bottom: 3px;
 left: 18px;
 height: 2px;
 border-radius: 2px;
 background: var(--primary);
 content: "";
}

.nav-actions {
 display: flex;
 align-items: center;
 gap: 10px;
}

.nav-search {
 display: flex;
 width: 210px;
 height: 42px;
 align-items: center;
 padding: 0 12px;
 border: 1px solid var(--line);
 border-radius: 12px;
 background: var(--surface-soft);
 transition: border-color var(--transition), box-shadow var(--transition);
}

.nav-search:focus-within {
 border-color: var(--primary);
 box-shadow: 0 0 0 4px rgba(23, 105, 224, .1);
}

.nav-search svg {
 width: 17px;
 color: var(--muted);
}

.nav-search input {
 width: 100%;
 height: 40px;
 margin: 0;
 padding: 0 0 0 8px;
 border: 0;
 box-shadow: none;
 color: var(--ink);
 background: transparent;
 font-size: .9rem;
}

.nav-search input:focus {
 border: 0;
 box-shadow: none;
 background: transparent;
}

.menu-toggle {
 display: none;
 width: 43px;
 height: 43px;
 padding: 10px;
 border: 1px solid var(--line);
 border-radius: 11px;
 color: var(--ink);
 background: #fff;
}

.menu-toggle span {
 display: block;
 width: 100%;
 height: 2px;
 margin: 4px 0;
 border-radius: 2px;
 background: currentColor;
 transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle:focus-visible,
.button:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
 outline: 3px solid rgba(23, 105, 224, .28);
 outline-offset: 3px;
}

.button {
 display: inline-flex;
 min-height: 50px;
 align-items: center;
 justify-content: center;
 gap: 9px;
 margin: 0;
 padding: 0 24px;
 border: 1px solid var(--primary);
 border-radius: 12px;
 color: #fff;
 background: var(--primary);
 font-weight: 800;
 line-height: 1.2;
 box-shadow: 0 10px 24px rgba(23, 105, 224, .2);
}

.button:hover,
.button:focus {
 color: #fff;
 background: var(--primary-dark);
 border-color: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: 0 14px 30px rgba(23, 105, 224, .27);
}

.button.small {
 min-height: 42px;
 padding: 0 17px;
 border-radius: 10px;
 font-size: .9rem;
}

.button.secondary {
 color: var(--primary);
 border-color: #bfd5f3;
 background: #fff;
 box-shadow: none;
}

.button.secondary:hover {
 color: var(--primary-dark);
 border-color: var(--primary);
 background: var(--primary-light);
}

.button.accent {
 border-color: var(--accent);
 background: var(--accent);
 box-shadow: 0 10px 24px rgba(255, 123, 69, .22);
}

.button.accent:hover {
 border-color: var(--accent-dark);
 background: var(--accent-dark);
}

.button svg {
 width: 18px;
 height: 18px;
}

.badge,
.status-badge {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 padding: 7px 11px;
 border-radius: 999px;
 color: var(--primary);
 background: var(--primary-light);
 font-size: .78rem;
 font-weight: 800;
 line-height: 1.2;
}

.status-badge {
 color: #a7491f;
 background: #fff0e9;
}

.status-dot {
 width: 8px;
 height: 8px;
 border-radius: 50%;
 background: var(--accent);
 box-shadow: 0 0 0 5px rgba(255, 123, 69, .14);
 animation: pulse 1.8s infinite;
}

@keyframes pulse {
 50% { box-shadow: 0 0 0 9px rgba(255, 123, 69, 0); }
}

.inner-hero {
 overflow: hidden;
 padding: 70px 0 84px;
 background:
  radial-gradient(circle at 10% 20%, rgba(23, 105, 224, .1), transparent 28%),
  radial-gradient(circle at 93% 75%, rgba(255, 123, 69, .09), transparent 25%),
  linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}

.inner-hero::before {
 position: absolute;
 top: 58px;
 right: 6%;
 width: 210px;
 height: 210px;
 border: 1px solid rgba(23, 105, 224, .09);
 border-radius: 50%;
 content: "";
}

.hero-grid {
 position: relative;
 display: grid;
 grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
 align-items: center;
 gap: 64px;
}

.breadcrumbs {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 8px;
 margin: 0 0 24px;
 color: var(--muted);
 font-size: .9rem;
}

.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }

.hero-lead {
 max-width: 650px;
 margin-bottom: 28px;
 color: var(--muted);
 font-size: 1.11rem;
}

.hero-points {
 display: flex;
 flex-wrap: wrap;
 gap: 10px 18px;
 margin: 0 0 30px;
 padding: 0;
 list-style: none;
}

.hero-points li {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 color: var(--text);
 font-weight: 700;
}

.hero-points svg {
 width: 19px;
 height: 19px;
 color: var(--success);
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
}

.live-card {
 position: relative;
 overflow: hidden;
 border: 1px solid rgba(23, 105, 224, .14);
 border-radius: var(--radius-lg);
 background: #fff;
 box-shadow: var(--shadow);
}

.live-cover {
 position: relative;
 min-height: 255px;
 padding: 30px;
 color: #fff;
 background:
  linear-gradient(135deg, rgba(8, 43, 91, .96), rgba(23, 105, 224, .88)),
  #1769e0;
}

.live-cover::before,
.live-cover::after {
 position: absolute;
 border-radius: 50%;
 content: "";
}

.live-cover::before {
 top: -75px;
 right: -40px;
 width: 220px;
 height: 220px;
 border: 42px solid rgba(255, 255, 255, .08);
}

.live-cover::after {
 right: 70px;
 bottom: -92px;
 width: 190px;
 height: 190px;
 background: rgba(255, 123, 69, .2);
}

.live-topline {
 position: relative;
 z-index: 1;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
}

.live-cover .status-badge {
 color: #fff;
 background: rgba(255, 255, 255, .15);
 backdrop-filter: blur(8px);
}

.live-date {
 color: #dce9ff;
 font-size: .86rem;
 font-weight: 700;
}

.live-title {
 position: relative;
 z-index: 1;
 max-width: 430px;
 margin: 44px 0 12px;
 color: #fff;
 font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.live-cover p {
 position: relative;
 z-index: 1;
 max-width: 430px;
 margin: 0;
 color: #d8e7ff;
}

.live-body { padding: 26px 30px 30px; }

.countdown-label {
 margin-bottom: 10px;
 color: var(--muted);
 font-size: .86rem;
 font-weight: 700;
}

.countdown {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 9px;
 margin-bottom: 20px;
}

.time-box {
 padding: 10px 5px;
 border: 1px solid var(--line);
 border-radius: 12px;
 text-align: center;
 background: var(--surface-soft);
}

.time-box strong {
 display: block;
 color: var(--ink);
 font-size: 1.3rem;
 line-height: 1.2;
}

.time-box span {
 color: var(--muted);
 font-size: .7rem;
}

.reminder-form {
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto;
 gap: 10px;
}

.reminder-form input {
 height: 48px;
 padding: 0 14px;
}

.form-note {
 margin: 10px 0 0;
 color: var(--muted);
 font-size: .78rem;
}

.form-message {
 display: none;
 margin: 10px 0 0;
 color: var(--success);
 font-size: .84rem;
 font-weight: 700;
}

.form-message.show { display: block; }

.metrics-strip {
 position: relative;
 z-index: 3;
 margin-top: -34px;
}

.metrics-panel {
 display: grid;
 grid-template-columns: 1.2fr repeat(4, 1fr);
 overflow: hidden;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 background: #fff;
 box-shadow: var(--shadow);
}

.metric-intro,
.metric-item {
 min-height: 142px;
 padding: 26px;
}

.metric-intro {
 display: flex;
 flex-direction: column;
 justify-content: center;
 color: #fff;
 background: var(--primary);
}

.metric-intro strong {
 font-size: 1.22rem;
}

.metric-intro span {
 margin-top: 4px;
 color: #d9e8ff;
 font-size: .88rem;
}

.metric-item {
 display: flex;
 flex-direction: column;
 justify-content: center;
 border-left: 1px solid var(--line);
}

.metric-item strong {
 color: var(--ink);
 font-size: 1.72rem;
 line-height: 1.2;
}

.metric-item span {
 margin-top: 6px;
 color: var(--muted);
 font-size: .88rem;
}

.metric-item small {
 margin-top: 4px;
 color: var(--success);
 font-weight: 700;
}

.service-layout {
 display: grid;
 grid-template-columns: .72fr 1.28fr;
 gap: 50px;
}

.service-aside {
 position: sticky;
 top: 110px;
 align-self: start;
}

.service-aside p { color: var(--muted); }

.aside-checks {
 margin: 26px 0 0;
 padding: 0;
 list-style: none;
}

.aside-checks li {
 display: flex;
 align-items: flex-start;
 gap: 11px;
 padding: 14px 0;
 border-bottom: 1px solid var(--line);
 color: var(--text);
 font-weight: 700;
}

.check-icon {
 display: grid;
 width: 25px;
 height: 25px;
 flex: 0 0 25px;
 place-items: center;
 border-radius: 8px;
 color: var(--success);
 background: #e8f7f1;
}

.check-icon svg {
 width: 15px;
 height: 15px;
}

.service-matrix {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 18px;
}

.service-card {
 position: relative;
 padding: 27px;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 background: #fff;
 box-shadow: var(--shadow-sm);
 transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
 border-color: #bdd4f4;
 transform: translateY(-5px);
 box-shadow: var(--shadow-hover);
}

.service-card.featured {
 grid-column: 1 / -1;
 display: grid;
 grid-template-columns: auto 1fr auto;
 align-items: center;
 gap: 22px;
 border-color: #bdd4f4;
 background: linear-gradient(120deg, #fff, #f2f7ff);
}

.service-icon {
 display: grid;
 width: 52px;
 height: 52px;
 margin-bottom: 21px;
 place-items: center;
 border-radius: 15px;
 color: var(--primary);
 background: var(--primary-light);
}

.featured .service-icon { margin-bottom: 0; }

.service-icon svg {
 width: 25px;
 height: 25px;
}

.service-card p {
 margin-bottom: 0;
 color: var(--muted);
 font-size: .94rem;
}

.card-tag {
 display: inline-flex;
 margin-top: 18px;
 padding: 5px 9px;
 border-radius: 8px;
 color: var(--primary);
 background: var(--primary-light);
 font-size: .75rem;
 font-weight: 800;
}

.workflow-shell {
 display: grid;
 grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
 align-items: center;
 gap: 60px;
}

.workflow-board {
 padding: 30px;
 border: 1px solid #cad9ed;
 border-radius: var(--radius-lg);
 background: #fff;
 box-shadow: var(--shadow);
}

.board-head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 margin-bottom: 23px;
 padding-bottom: 18px;
 border-bottom: 1px solid var(--line);
}

.board-head strong { color: var(--ink); }

.progress-chip {
 padding: 6px 10px;
 border-radius: 999px;
 color: var(--success);
 background: #e8f7f1;
 font-size: .76rem;
 font-weight: 800;
}

.workflow-list {
 margin: 0;
 padding: 0;
 list-style: none;
 counter-reset: workflow;
}

.workflow-list li {
 position: relative;
 display: grid;
 grid-template-columns: 42px 1fr auto;
 align-items: center;
 gap: 15px;
 padding: 15px 0;
 border-bottom: 1px solid var(--line);
 counter-increment: workflow;
}

.workflow-list li:last-child { border-bottom: 0; }

.workflow-list li::before {
 display: grid;
 width: 38px;
 height: 38px;
 place-items: center;
 border-radius: 12px;
 color: var(--primary);
 background: var(--primary-light);
 font-weight: 900;
 content: counter(workflow, decimal-leading-zero);
}

.workflow-list strong {
 display: block;
 color: var(--ink);
}

.workflow-list span {
 color: var(--muted);
 font-size: .83rem;
}

.workflow-list em {
 padding: 4px 8px;
 border-radius: 7px;
 color: var(--success);
 background: #e8f7f1;
 font-size: .72rem;
 font-style: normal;
 font-weight: 800;
}

.workflow-copy .section-head { margin-bottom: 26px; }

.workflow-copy > p {
 color: var(--muted);
 font-size: 1.03rem;
}

.notice-box {
 display: flex;
 align-items: flex-start;
 gap: 13px;
 margin-top: 24px;
 padding: 18px;
 border-left: 4px solid var(--accent);
 border-radius: 0 12px 12px 0;
 background: #fff7f3;
}

.notice-box svg {
 width: 21px;
 flex: 0 0 21px;
 color: var(--accent-dark);
}

.notice-box p {
 margin: 0;
 color: #75442f;
 font-size: .9rem;
}

.compare-wrap {
 overflow: hidden;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 background: #fff;
 box-shadow: var(--shadow-sm);
}

.compare-header,
.compare-row {
 display: grid;
 grid-template-columns: 1.1fr 1fr 1fr;
}

.compare-header {
 color: #fff;
 background: #10233e;
}

.compare-header div {
 padding: 19px 24px;
 font-weight: 800;
}

.compare-header div:last-child {
 background: var(--primary);
}

.compare-row {
 border-bottom: 1px solid var(--line);
}

.compare-row:last-child { border-bottom: 0; }

.compare-row > div {
 display: flex;
 min-height: 73px;
 align-items: center;
 padding: 16px 24px;
 border-right: 1px solid var(--line);
}

.compare-row > div:last-child {
 border-right: 0;
 background: #f4f8ff;
}

.compare-label {
 color: var(--ink);
 font-weight: 800;
}

.compare-basic {
 color: var(--muted);
 font-size: .92rem;
}

.compare-good {
 gap: 9px;
 color: var(--text);
 font-size: .92rem;
 font-weight: 700;
}

.compare-good svg {
 width: 18px;
 height: 18px;
 flex: 0 0 18px;
 color: var(--success);
}

.compare-summary {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 26px;
 margin-top: 24px;
 padding: 21px 24px;
 border-radius: var(--radius);
 background: var(--surface-blue);
}

.compare-summary p {
 margin: 0;
 color: var(--text);
}

.faq-layout {
 display: grid;
 grid-template-columns: .7fr 1.3fr;
 gap: 54px;
}

.faq-aside {
 padding: 30px;
 border-radius: var(--radius);
 color: #dce9fb;
 background: #10233e;
 box-shadow: var(--shadow);
}

.faq-aside h2 { color: #fff; }

.faq-aside p { color: #b8c8dc; }

.faq-aside .button {
 margin-top: 10px;
 color: var(--ink);
 border-color: #fff;
 background: #fff;
 box-shadow: none;
}

.faq-aside .button:hover {
 color: var(--primary);
 background: var(--primary-light);
}

.faq-list {
 border-top: 1px solid var(--line);
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
 display: flex;
 width: 100%;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 padding: 22px 2px;
 border: 0;
 color: var(--ink);
 background: transparent;
 text-align: left;
 font-weight: 800;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
 position: relative;
 width: 26px;
 height: 26px;
 flex: 0 0 26px;
 border-radius: 8px;
 background: var(--primary-light);
}

.faq-icon::before,
.faq-icon::after {
 position: absolute;
 top: 12px;
 left: 7px;
 width: 12px;
 height: 2px;
 border-radius: 2px;
 background: var(--primary);
 content: "";
 transition: transform var(--transition);
}

.faq-icon::after { transform: rotate(90deg); }

.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }

.faq-answer {
 display: none;
 padding: 0 42px 22px 2px;
 color: var(--muted);
}

.faq-answer p { margin: 0; }

.faq-item.open .faq-answer { display: block; }

.cta-section { padding: 88px 0; }

.cta-shell {
 position: relative;
 display: grid;
 grid-template-columns: .86fr 1.14fr;
 overflow: hidden;
 border-radius: var(--radius-lg);
 background: #10233e;
 box-shadow: var(--shadow);
}

.cta-copy {
 position: relative;
 padding: 54px;
 color: #d9e6f7;
}

.cta-copy::after {
 position: absolute;
 right: -60px;
 bottom: -100px;
 width: 230px;
 height: 230px;
 border: 45px solid rgba(255, 255, 255, .05);
 border-radius: 50%;
 content: "";
}

.cta-copy .eyebrow { color: #8dbbff; }
.cta-copy h2 { color: #fff; }
.cta-copy p { color: #b9c9dc; }

.cta-list {
 margin: 26px 0 0;
 padding: 0;
 list-style: none;
}

.cta-list li {
 display: flex;
 align-items: center;
 gap: 10px;
 margin: 10px 0;
 font-weight: 700;
}

.cta-list svg {
 width: 18px;
 color: #62d7ae;
}

.request-form {
 position: relative;
 padding: 46px;
 background: #fff;
}

.form-title {
 margin-bottom: 22px;
 color: var(--ink);
 font-size: 1.25rem;
 font-weight: 850;
}

.form-grid {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 17px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
 display: block;
 margin-bottom: 7px;
 color: var(--ink);
 font-size: .86rem;
 font-weight: 800;
}

.form-field input,
.form-field select {
 height: 49px;
 padding: 0 13px;
}

.form-field textarea {
 min-height: 104px;
 padding: 12px 13px;
 resize: vertical;
}

.form-actions {
 display: flex;
 align-items: center;
 gap: 16px;
 margin-top: 20px;
}

.form-actions small {
 color: var(--muted);
 line-height: 1.5;
}

.submit-result {
 display: none;
 margin-top: 15px;
 padding: 11px 14px;
 border-radius: 10px;
 color: #126f4e;
 background: #e8f7f1;
 font-size: .88rem;
 font-weight: 700;
}

.submit-result.show { display: block; }

.site-footer {
 padding: 68px 0 24px;
 color: #aebdd0;
 background: #0b192d;
}

.footer-grid {
 display: grid;
 grid-template-columns: 1.35fr .65fr .8fr;
 gap: 60px;
 padding-bottom: 45px;
}

.footer-brand {
 margin-bottom: 20px;
 color: #fff;
}

.footer-brand:hover { color: #8dbbff; }

.footer-about {
 max-width: 520px;
 margin-bottom: 0;
 color: #9fb0c5;
 font-size: .92rem;
}

.footer-title {
 margin-bottom: 17px;
 color: #fff;
 font-size: 1rem;
}

.footer-links {
 margin: 0;
 padding: 0;
 list-style: none;
}

.footer-links li { margin: 9px 0; }

.footer-links a {
 color: #aebdd0;
 font-size: .92rem;
}

.footer-links a:hover {
 color: #fff;
 padding-left: 3px;
}

.footer-contact p {
 margin: 7px 0;
 color: #aebdd0;
 font-size: .9rem;
}

.footer-bottom {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 22px;
 padding-top: 24px;
 border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
 margin: 0;
 color: #8294aa;
 font-size: .82rem;
}

.search-flash {
 animation: searchFlash 1.4s ease;
}

@keyframes searchFlash {
 0%, 100% { box-shadow: inherit; }
 35% { box-shadow: 0 0 0 6px rgba(255, 123, 69, .22), var(--shadow); }
}

@media (max-width: 1100px) {
 .nav-search { display: none; }

 .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  gap: 38px;
 }

 .metrics-panel { grid-template-columns: repeat(4, 1fr); }

 .metric-intro {
  grid-column: 1 / -1;
  min-height: auto;
  padding: 18px 24px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
 }

 .metric-item { min-height: 120px; }

 .service-layout,
 .workflow-shell,
 .faq-layout { gap: 36px; }

 .cta-copy,
 .request-form { padding: 40px; }
}

@media (max-width: 900px) {
 .section { padding: 76px 0; }

 .desktop-nav {
  position: fixed;
  top: 76px;
  right: 0;
  left: 0;
  display: none;
  margin: 0;
  padding: 14px 20px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
 }

 body.menu-open .desktop-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
 }

 .desktop-nav a {
  width: 100%;
  justify-content: space-between;
 }

 .desktop-nav a.active::after { display: none; }

 .menu-toggle { display: block; }

 body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
 body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
 body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

 .hero-grid,
 .service-layout,
 .workflow-shell,
 .faq-layout,
 .cta-shell {
  grid-template-columns: 1fr;
 }

 .inner-hero { padding-top: 55px; }

 .hero-copy { max-width: 740px; }

 .live-card { max-width: 650px; }

 .service-aside { position: static; }

 .service-layout { gap: 30px; }

 .workflow-board { order: 2; }

 .compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
 }

 .compare-header,
 .compare-row { min-width: 760px; }

 .cta-copy { padding-bottom: 45px; }

 .footer-grid {
  grid-template-columns: 1.2fr .8fr;
 }

 .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
 .site-container { width: min(calc(100% - 28px), var(--container)); }

 .site-header,
 .nav-wrap { height: 68px; min-height: 68px; }

 .desktop-nav { top: 68px; }

 .brand { font-size: .93rem; }

 .brand-mark {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
 }

 .nav-actions .button.small { display: none; }

 .section { padding: 64px 0; }

 .inner-hero { padding: 42px 0 68px; }

 h1 { font-size: clamp(2.2rem, 11vw, 3.35rem); }

 .hero-lead { font-size: 1rem; }

 .section-head.split {
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
 }

 .live-cover {
  min-height: 235px;
  padding: 24px;
 }

 .live-body { padding: 22px; }

 .reminder-form { grid-template-columns: 1fr; }

 .metrics-strip { margin-top: -26px; }

 .metrics-panel { grid-template-columns: repeat(2, 1fr); }

 .metric-intro {
  flex-direction: column;
  align-items: flex-start;
 }

 .metric-item:nth-child(even) { border-left: 0; }
 .metric-item { padding: 20px; }

 .service-matrix { grid-template-columns: 1fr; }

 .service-card.featured {
  grid-column: auto;
  grid-template-columns: 1fr;
 }

 .featured .service-icon { margin-bottom: 5px; }

 .workflow-board { padding: 22px; }

 .workflow-list li {
  grid-template-columns: 40px 1fr;
 }

 .workflow-list em {
  grid-column: 2;
  justify-self: start;
 }

 .compare-summary {
  align-items: flex-start;
  flex-direction: column;
 }

 .faq-aside { padding: 25px; }

 .cta-section { padding: 62px 0; }

 .cta-copy,
 .request-form { padding: 31px 24px; }

 .form-grid { grid-template-columns: 1fr; }

 .form-field.full { grid-column: auto; }

 .form-actions {
  align-items: stretch;
  flex-direction: column;
 }

 .form-actions .button { width: 100%; }

 .footer-grid {
  grid-template-columns: 1fr;
  gap: 34px;
 }

 .footer-contact { grid-column: auto; }

 .footer-bottom {
  align-items: flex-start;
  flex-direction: column;
 }
}

@media (max-width: 520px) {
 body { font-size: 15px; }

 .brand span:last-child {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
 }

 .hero-actions {
  align-items: stretch;
  flex-direction: column;
 }

 .hero-actions .button { width: 100%; }

 .live-topline {
  align-items: flex-start;
  flex-direction: column;
 }

 .live-title { margin-top: 26px; }

 .countdown { gap: 6px; }

 .time-box { padding: 9px 2px; }

 .metrics-panel { grid-template-columns: 1fr; }

 .metric-intro { grid-column: auto; }

 .metric-item {
  min-height: auto;
  border-top: 1px solid var(--line);
  border-left: 0;
 }

 .board-head {
  align-items: flex-start;
  flex-direction: column;
 }

 .footer-brand span:last-child { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
 *,
 *::before,
 *::after {
  scroll-behavior: auto !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
 }
}
