/* roulang page: index */
:root {
            --green: #2E6B57;
            --green-deep: #245848;
            --green-darker: #1B4336;
            --amber: #C9842A;
            --amber-deep: #A86C1F;
            --paper: #F5F1EA;
            --white: #FFFFFF;
            --moss: #E7EFEA;
            --pine: #17241F;
            --pine-deep: #101816;
            --ink: #1E2A26;
            --muted: #5C6B66;
            --line: #C9D6D0;
            --line-strong: #9BB0A7;
            --danger: #8A3B32;
            --danger-bg: #F6E8E4;
            --radius-btn: 8px;
            --radius-card: 12px;
            --shadow: 0 8px 24px rgba(23, 36, 31, 0.08);
            --shadow-hover: 0 12px 28px rgba(23, 36, 31, 0.12);
            --container: 1200px;
            --nav-h: 64px;
            --space-section: 88px;
            --focus: 2px solid #C9842A;
        }
        *, *::before, *::after { box-sizing: border-box; }
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        body {
            margin: 0;
            font-family: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.8;
            color: var(--ink);
            background: var(--paper);
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--green-deep); text-decoration: none; }
        a:hover { color: var(--green-darker); }
        a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: var(--focus);
            outline-offset: 3px;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: 16px;
        }
        h1, h2, h3, p { margin: 0; }
        h1, h2, h3 { font-weight: 650; letter-spacing: 0.02em; line-height: 1.28; color: var(--ink); }
        h1 { font-size: 38px; }
        h2 { font-size: 26px; }
        h3 { font-size: 19px; }
        p + p { margin-top: 1.15em; }
        ul, ol, dl { margin: 0; padding: 0; }
        button { cursor: pointer; }
        .container {
            width: min(var(--container), calc(100% - 40px));
            margin-inline: auto;
        }
        section[id] { scroll-margin-top: 84px; }
        .section {
            padding: var(--space-section) 0;
        }
        .section-head {
            max-width: 760px;
            margin-bottom: 36px;
        }
        .section-head p {
            margin-top: 16px;
            color: var(--muted);
            line-height: 1.85;
        }
        .kicker {
            display: inline-block;
            margin-bottom: 10px;
            padding: 4px 10px;
            border-radius: 6px;
            background: var(--moss);
            color: var(--green-deep);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
            min-width: 44px;
            padding: 10px 22px;
            border-radius: var(--radius-btn);
            border: 1px solid transparent;
            font-weight: 600;
            line-height: 1.2;
            text-decoration: none;
            transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
        }
        .btn-amber {
            background: var(--amber);
            color: #fff;
            box-shadow: 0 6px 16px rgba(201, 132, 42, 0.28);
        }
        .btn-amber:hover {
            background: var(--amber-deep);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-amber:active { transform: translateY(0); }
        .btn-green {
            background: var(--green);
            color: #fff;
        }
        .btn-green:hover {
            background: var(--green-deep);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: #F3EFE6;
            border-color: rgba(243, 239, 230, 0.55);
        }
        .btn-outline:hover {
            background: rgba(243, 239, 230, 0.1);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-outline-green {
            background: transparent;
            color: var(--green-deep);
            border-color: var(--green);
        }
        .btn-outline-green:hover {
            background: var(--moss);
            color: var(--green-darker);
            transform: translateY(-2px);
        }
        .badge {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 2px 10px;
            border-radius: 6px;
            background: var(--moss);
            color: var(--green-deep);
            font-size: 12px;
            font-weight: 600;
        }
        .badge-amber {
            background: rgba(201, 132, 42, 0.14);
            color: #8A5A16;
        }
        .topbar {
            background: var(--green-deep);
            color: #E7EFEA;
            font-size: 13px;
            line-height: 1.4;
        }
        .topbar-inner {
            min-height: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding: 6px 0;
        }
        .topbar a { color: #F3EFE6; }
        .topbar a:hover { color: #fff; }
        .topbar-links, .topbar-right {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }
        .topbar-link {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            gap: 6px;
        }
        .topbar-cta {
            min-height: 28px;
            padding: 0 10px;
            border: 1px solid rgba(243, 239, 230, 0.35);
            border-radius: 6px;
            font-weight: 600;
        }
        .nav-main {
            position: sticky;
            top: 0;
            z-index: 80;
            background: rgba(245, 241, 234, 0.96);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--line);
        }
        .nav-inner {
            min-height: var(--nav-h);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }
        .logo {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 44px;
            color: var(--ink);
            line-height: 1.15;
        }
        .logo:hover { color: var(--green-darker); }
        .logo-mark {
            font-size: 12px;
            font-weight: 700;
            color: var(--green);
            letter-spacing: 0.18em;
        }
        .logo-name {
            font-size: 18px;
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-links a {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 44px;
            padding: 0 10px;
            color: var(--ink);
            font-size: 14px;
            font-weight: 500;
        }
        .nav-links a:hover { color: var(--green); }
        .nav-links a.is-active {
            color: var(--green-deep);
        }
        .nav-links a.is-active::after,
        .nav-links a:hover::after {
            content: "";
            position: absolute;
            left: 10px;
            right: 10px;
            bottom: 8px;
            height: 2px;
            background: var(--amber);
        }
        .nav-cta { margin-left: 8px; }
        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            padding: 0;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }
        .nav-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: var(--ink);
        }
        .nav-backdrop {
            display: none;
        }
        .hero {
            position: relative;
            background: var(--pine);
            color: #F3EFE6;
        }
        .hero-slider {
            position: relative;
            height: min(82vh, 740px);
            overflow: hidden;
        }
        .hero-track {
            height: 100%;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity .45s ease, visibility .45s ease;
        }
        .hero-slide.is-active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-slide::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(23, 36, 31, 0.78) 0%, rgba(23, 36, 31, 0.52) 46%, rgba(23, 36, 31, 0.22) 100%);
        }
        .hero-copy {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            align-items: center;
        }
        .hero-copy .container { width: min(1200px, calc(100% - 40px)); }
        .hero-copy-inner { max-width: 680px; }
        .brand-lock {
            display: inline-block;
            margin-bottom: 12px;
            color: #E7EFEA;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.16em;
        }
        .hero h1, .hero-heading {
            margin: 0 0 16px;
            color: #F3EFE6;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.25;
        }
        .hero-lead {
            max-width: 640px;
            margin-bottom: 22px;
            color: #E4E0D6;
            font-size: 16px;
            line-height: 1.85;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 22px;
        }
        .hero-search {
            display: grid;
            grid-template-columns: 1.1fr 1fr auto;
            gap: 8px;
            padding: 8px;
            background: rgba(245, 241, 234, 0.94);
            border-radius: 10px;
            max-width: 640px;
        }
        .hero-search label {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
        }
        .hero-search select {
            min-height: 44px;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 0 12px;
            background: #fff;
            color: var(--ink);
        }
        .hero-controls {
            position: absolute;
            z-index: 3;
            right: 24px;
            bottom: 150px;
            display: flex;
            gap: 8px;
        }
        .hero-arrow {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            border: 1px solid rgba(243, 239, 230, 0.35);
            background: rgba(23, 36, 31, 0.45);
            color: #F3EFE6;
        }
        .hero-arrow:hover { background: rgba(23, 36, 31, 0.72); }
        .hero-dots {
            position: absolute;
            z-index: 3;
            left: 50%;
            bottom: 126px;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 0;
            padding: 0;
            background: rgba(243, 239, 230, 0.35);
        }
        .hero-dot.is-active { background: var(--amber); }
        .hero-metrics {
            position: relative;
            z-index: 4;
            background: var(--pine-deep);
            border-top: 1px solid rgba(201, 132, 42, 0.35);
        }
        .metrics-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            min-height: 92px;
        }
        .metric {
            padding: 16px 18px;
            border-right: 1px solid rgba(201, 132, 42, 0.2);
        }
        .metric:last-child { border-right: 0; }
        .metric b {
            display: block;
            font-variant-numeric: tabular-nums;
            font-size: 26px;
            line-height: 1.2;
            color: #F3EFE6;
        }
        .metric span {
            display: block;
            margin-top: 4px;
            color: #C9D6D0;
            font-size: 13px;
        }
        .pain { background: var(--paper); }
        .pain-list {
            display: grid;
            gap: 18px;
        }
        .pain-item {
            display: grid;
            grid-template-columns: 1fr 72px 1fr;
            gap: 16px;
            align-items: stretch;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
        }
        .pain-item:nth-child(even) { direction: rtl; }
        .pain-item:nth-child(even) > * { direction: ltr; }
        .pain-col {
            padding: 22px 24px;
        }
        .pain-col h3 { margin-bottom: 8px; }
        .pain-col p { color: var(--muted); }
        .pain-bad {
            background: #F7F1E8;
            border-left: 4px solid #C9842A;
        }
        .pain-good {
            background: #fff;
            border-left: 4px solid var(--green);
        }
        .pain-mid {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--moss);
            color: var(--green-deep);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.12em;
        }
        .pain-visual {
            margin-top: 28px;
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--line);
        }
        .pain-visual img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .intro { background: var(--white); }
        .intro-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 40px;
            align-items: center;
        }
        .intro-photo {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            min-height: 420px;
        }
        .intro-photo img {
            width: 100%;
            height: 100%;
            min-height: 420px;
            object-fit: cover;
        }
        .ticket {
            position: absolute;
            right: 16px;
            bottom: 16px;
            width: min(260px, 78%);
            padding: 14px 16px 16px;
            background: #F5F1EA;
            color: var(--ink);
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .ticket::before, .ticket::after {
            content: "";
            position: absolute;
            top: 42px;
            width: 14px;
            height: 14px;
            background: var(--white);
            border-radius: 50%;
        }
        .ticket::before { left: -7px; }
        .ticket::after { right: -7px; }
        .ticket-top {
            display: flex;
            justify-content: space-between;
            padding-bottom: 8px;
            border-bottom: 1px dashed #C9D6D0;
            font-size: 12px;
            color: var(--muted);
        }
        .ticket strong { display: block; margin: 8px 0 4px; }
        .ticket small { color: var(--muted); }
        .spec-list {
            margin: 20px 0 0;
            display: grid;
            gap: 10px;
        }
        .spec-list li {
            list-style: none;
            padding-left: 18px;
            position: relative;
            color: var(--muted);
        }
        .spec-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--amber);
        }
        .process { background: var(--moss); }
        .steps {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
            position: relative;
        }
        .step {
            background: transparent;
            border: 0;
            padding: 0;
        }
        .step-index {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--green);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .step h3 { font-size: 16px; margin-bottom: 6px; }
        .step p { color: var(--muted); font-size: 14px; }
        .step-line {
            display: none;
        }
        .abilities { background: var(--white); }
        .ability-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .ability-card {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 22px 22px 22px 20px;
            border-left: 4px solid var(--green);
            box-shadow: none;
            transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
        }
        .ability-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
            border-color: var(--line-strong);
        }
        .ability-card header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
        }
        .ability-ico {
            width: 36px;
            height: 36px;
            color: var(--green);
        }
        .ability-card p { color: var(--muted); }
        .services { background: var(--paper); }
        .mag-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .mag-card {
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--white);
            border: 1px solid var(--line);
            min-height: 100%;
        }
        .mag-card--split {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
        }
        .mag-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 240px;
        }
        .mag-card--topimg img { min-height: 190px; height: 190px; }
        .mag-body { padding: 24px; }
        .mag-body p {
            margin: 12px 0 18px;
            color: var(--muted);
        }
        .mag-card--overlay {
            position: relative;
            min-height: 360px;
            color: #F3EFE6;
            border: 0;
        }
        .mag-card--overlay img {
            position: absolute;
            inset: 0;
            min-height: 360px;
            height: 100%;
        }
        .mag-card--overlay .mag-body {
            position: relative;
            z-index: 2;
            height: 100%;
            min-height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(180deg, rgba(23,36,31,0.05), rgba(23,36,31,0.78));
        }
        .mag-card--overlay h3, .mag-card--overlay p { color: #F3EFE6; }
        .audience { background: var(--white); }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 22px;
        }
        .tag {
            min-height: 40px;
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid var(--line);
            background: var(--moss);
            color: var(--green-darker);
            font-weight: 600;
            font-size: 14px;
        }
        .scene-list { display: grid; gap: 12px; }
        .scene {
            display: grid;
            grid-template-columns: 140px 1fr;
            gap: 16px;
            align-items: center;
            padding: 16px 18px;
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: 10px;
        }
        .scene strong {
            color: var(--green-deep);
        }
        .scene p { color: var(--muted); }
        .case {
            background: var(--pine) url("/assets/images/1f6e1f2a86f1c668.webp") center/cover no-repeat;
            color: #F3EFE6;
            position: relative;
        }
        .case::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(16, 24, 22, 0.86);
        }
        .case .container { position: relative; z-index: 1; }
        .case .section-head p, .case h2 { color: #F3EFE6; }
        .case-grid {
            display: grid;
            grid-template-columns: 1.35fr 1fr;
            gap: 18px;
        }
        .case-main, .case-side {
            border: 1px solid rgba(201, 132, 42, 0.35);
            border-radius: var(--radius-card);
            padding: 24px;
            background: rgba(23, 36, 31, 0.35);
        }
        .case-main p, .case-side p { color: #D8D3C8; margin-top: 10px; }
        .case-side + .case-side { margin-top: 18px; }
        .path {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .path span {
            padding: 6px 10px;
            border-radius: 6px;
            border: 1px dashed rgba(243, 239, 230, 0.3);
            font-size: 13px;
        }
        .stories { background: var(--paper); }
        .story-track {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 8px;
        }
        .story-card {
            flex: 0 0 min(78%, 540px);
            scroll-snap-align: start;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
            display: grid;
            grid-template-columns: 180px 1fr;
            min-height: 220px;
        }
        .story-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 220px;
        }
        .story-body { padding: 22px; }
        .story-meta {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }
        .story-body p { color: var(--muted); }
        .stats { background: var(--moss); }
        .stats-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
        }
        .stat {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 18px 14px;
            text-align: left;
        }
        .stat b {
            display: block;
            font-size: 28px;
            font-variant-numeric: tabular-nums;
            color: var(--green-deep);
            line-height: 1.15;
        }
        .stat em {
            display: block;
            font-style: normal;
            font-size: 13px;
            color: var(--ink);
            margin: 4px 0;
        }
        .stat span {
            color: var(--muted);
            font-size: 13px;
        }
        .reviews { background: var(--white); }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .review-card {
            background: var(--paper);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 20px;
            min-height: 100%;
        }
        .review-card p {
            color: var(--ink);
            position: relative;
            padding-top: 8px;
        }
        .quote {
            display: block;
            font-size: 28px;
            line-height: 1;
            color: var(--amber);
            font-weight: 700;
        }
        .stars { color: var(--amber); letter-spacing: 2px; font-size: 13px; }
        .review-foot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            color: var(--muted);
            font-size: 13px;
        }
        .notes { background: var(--paper); }
        .note-list {
            display: grid;
            gap: 0;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            overflow: hidden;
        }
        .note-row {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 18px;
            padding: 18px 22px;
            border-top: 1px solid var(--line);
        }
        .note-row:first-child { border-top: 0; }
        .note-row dt {
            font-weight: 700;
            color: var(--green-deep);
        }
        .note-row dd { color: var(--muted); }
        .news { background: var(--white); }
        .news-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 16px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 16px;
        }
        .news-card {
            display: grid;
            grid-template-columns: 160px 1fr;
            gap: 16px;
            padding: 14px;
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            background: var(--paper);
        }
        .news-card:first-child {
            grid-row: span 3;
            grid-template-columns: 1fr;
            padding: 0;
            overflow: hidden;
            background: var(--white);
        }
        .news-card:first-child img { height: 240px; object-fit: cover; width: 100%; }
        .news-card img { width: 100%; height: 108px; object-fit: cover; border-radius: 8px; }
        .news-card:first-child .news-body { padding: 18px 20px 22px; }
        .news-date { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
        .news-card h3 { margin: 6px 0 8px; font-size: 18px; }
        .news-card p { color: var(--muted); }
        .trust { background: var(--moss); }
        .trust-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 24px;
        }
        .check-item { margin-bottom: 16px; }
        .check-item header {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 6px;
        }
        .bar {
            height: 8px;
            background: #D5E0DA;
            border-radius: 99px;
            overflow: hidden;
        }
        .bar > span {
            display: block;
            height: 100%;
            background: var(--green);
            border-radius: 99px;
        }
        .rank {
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: var(--radius-card);
            padding: 18px;
        }
        .rank ol { list-style: none; }
        .rank li {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 0;
            border-top: 1px solid var(--line);
            color: var(--muted);
        }
        .rank li:first-child { border-top: 0; }
        .rank b { color: var(--ink); }
        .faq { background: var(--white); }
        .faq-list { display: grid; gap: 10px; }
        .faq-item {
            border: 1px solid var(--line);
            border-radius: 10px;
            background: var(--paper);
            overflow: hidden;
        }
        .faq-item.is-open { background: var(--white); }
        .faq-q {
            width: 100%;
            min-height: 52px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 12px 18px;
            border: 0;
            background: transparent;
            text-align: left;
            font-weight: 650;
            color: var(--ink);
        }
        .faq-q svg {
            width: 18px;
            height: 18px;
            flex: none;
            transition: transform .18s ease;
        }
        .faq-item.is-open .faq-q svg { transform: rotate(45deg); }
        .faq-a {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows .18s ease;
        }
        .faq-item.is-open .faq-a { grid-template-rows: 1fr; }
        .faq-a-inner {
            overflow: hidden;
        }
        .faq-a-inner p {
            padding: 0 18px 16px;
            color: var(--muted);
        }
        .cta {
            background: linear-gradient(180deg, var(--pine) 0 42%, var(--paper) 42% 100%);
        }
        .cta-box {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 0;
            background: var(--white);
            border: 1px solid var(--line);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .cta-copy {
            padding: 36px 32px;
            background: var(--green-darker);
            color: #F3EFE6;
        }
        .cta-copy h2 { color: #F3EFE6; }
        .cta-copy p { margin-top: 14px; color: #D8D3C8; }
        .cta-points { margin-top: 18px; }
        .cta-points li {
            list-style: none;
            padding: 8px 0 8px 18px;
            position: relative;
        }
        .cta-points li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 16px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--amber);
        }
        .cta-hotline {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 22px;
        }
        .cta-hotline a {
            display: inline-flex;
            align-items: center;
            min-height: 44px;
            color: #F3EFE6;
            font-size: 20px;
            font-weight: 700;
        }
        .cta-form { padding: 32px; }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .field { display: flex; flex-direction: column; gap: 6px; }
        .field-full { grid-column: 1 / -1; }
        .field label { font-weight: 650; font-size: 14px; }
        .field input, .field select, .field textarea {
            min-height: 44px;
            border: 1px solid var(--line);
            border-radius: 8px;
            padding: 10px 12px;
            background: #fff;
            color: var(--ink);
        }
        .field textarea { min-height: 96px; resize: vertical; }
        .form-error, .form-success {
            grid-column: 1 / -1;
            padding: 12px 14px;
            border-radius: 8px;
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }
        .form-error {
            background: var(--danger-bg);
            color: var(--danger);
            border: 1px solid #E2B6AE;
        }
        .form-success {
            background: var(--moss);
            color: var(--green-darker);
            border: 1px solid #B7CFC2;
        }
        .site-footer {
            background: var(--pine-deep);
            color: #D8D3C8;
            padding: 56px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
            gap: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(201, 132, 42, 0.22);
        }
        .site-footer h3 {
            color: #F3EFE6;
            font-size: 16px;
            margin-bottom: 12px;
        }
        .site-footer a { color: #D8D3C8; }
        .site-footer a:hover { color: #fff; }
        .footer-nav, .footer-contact {
            display: grid;
            gap: 8px;
        }
        .footer-nav a, .footer-contact a, .footer-contact p {
            min-height: 32px;
            display: inline-flex;
            align-items: center;
        }
        .copyright {
            padding-top: 18px;
            font-size: 13px;
            color: #9BB0A7;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }
        .pattern-dot {
            background-image: radial-gradient(rgba(201,132,42,0.18) 0.8px, transparent 1px);
            background-size: 12px 12px;
        }
        @media (max-width: 1280px) {
            h1, .hero h1, .hero-heading { font-size: 34px; }
        }
        @media (max-width: 1024px) {
            :root { --space-section: 72px; }
            .nav-toggle { display: inline-flex; }
            .nav-backdrop.is-on {
                display: block;
                position: fixed;
                inset: 0;
                background: rgba(16, 24, 22, 0.46);
                z-index: 90;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                z-index: 100;
                width: min(86vw, 360px);
                height: 100vh;
                background: var(--paper);
                flex-direction: column;
                align-items: stretch;
                padding: 72px 22px 32px;
                gap: 4px;
                transform: translateX(100%);
                transition: transform .2s ease;
                box-shadow: var(--shadow-hover);
            }
            .nav-links.is-open { transform: translateX(0); }
            .nav-links a { border-bottom: 1px solid var(--line); }
            .nav-links a.is-active::after, .nav-links a:hover::after { display: none; }
            .nav-cta { margin: 12px 0 0; }
            .nav-cta .btn { width: 100%; }
            .intro-grid, .case-grid, .trust-grid, .cta-box, .mag-card--split, .news-grid {
                grid-template-columns: 1fr;
            }
            .ability-grid, .review-grid { grid-template-columns: 1fr 1fr; }
            .stats-row, .steps, .metrics-row { grid-template-columns: 1fr 1fr; }
            .steps { gap: 18px; }
            .hero-slider { height: min(68vh, 680px); }
            .hero-controls { bottom: 210px; }
            .hero-dots { bottom: 188px; }
            .topbar-hide { display: none; }
        }
        @media (max-width: 768px) {
            :root { --space-section: 56px; }
            h1, .hero h1, .hero-heading { font-size: 28px; }
            h2 { font-size: 24px; }
            .hero-search { grid-template-columns: 1fr; }
            .pain-item, .pain-item:nth-child(even) {
                direction: ltr;
                grid-template-columns: 1fr;
            }
            .pain-mid { min-height: 40px; }
            .story-card, .news-card, .note-row, .scene {
                grid-template-columns: 1fr;
            }
            .story-card img, .intro-photo img, .intro-photo { min-height: 200px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .form-grid { grid-template-columns: 1fr; }
            .hero-metrics .metric { border-right: 0; border-bottom: 1px solid rgba(201,132,42,0.2); }
        }
        @media (max-width: 520px) {
            .container { width: min(var(--container), calc(100% - 28px)); }
            h1, .hero h1, .hero-heading { font-size: 26px; }
            .ability-grid, .review-grid, .stats-row, .steps, .metrics-row, .mag-grid, .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero-slider { height: min(64vh, 620px); }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .hero-actions .btn { width: 100%; }
            .cta-copy, .cta-form { padding: 24px 18px; }
            .copyright { flex-direction: column; }
        }
