/* roulang page: index */
:root {
      --blue: #2E6FA8;
      --blue-deep: #1F527C;
      --steel: #5C6B75;
      --amber: #C9842A;
      --amber-deep: #A66B1E;
      --bg: #F4F7FA;
      --card: #FFFFFF;
      --line: #E8EEF4;
      --ink: #1A2430;
      --muted: #5C6B75;
      --weak: #8A96A0;
      --dark: #243240;
      --ok: #2F7D57;
      --radius-card: 12px;
      --radius-btn: 8px;
      --radius-badge: 4px;
      --radius-img: 12px;
      --shadow: 0 10px 28px rgba(30, 82, 124, 0.08), 0 1px 0 rgba(255,255,255,0.8) inset;
      --shadow-hover: 0 16px 40px rgba(30, 82, 124, 0.14);
      --space: 24px;
      --max: 1200px;
      --header-h: 118px;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 16px;
      line-height: 1.75;
      color: var(--ink);
      background: var(--bg);
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-img); }
    a { color: var(--blue); text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
    a:hover { color: var(--blue-deep); }
    button, input, select, textarea { font-family: inherit; }
    button { cursor: pointer; border: 0; background: none; }
    h1, h2, h3, h4, p { margin: 0; }
    ul { margin: 0; padding: 0; list-style: none; }
    .container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
    .skip {
      position: absolute; left: -999px; top: 0;
    }
    .skip:focus { left: 16px; top: 16px; background: #fff; padding: 8px 12px; z-index: 2000; }
    .site-header {
      position: sticky; top: 0; z-index: 1000;
      background: #fff;
      box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(31, 82, 124, 0.04);
    }
    .nav-row { display: flex; align-items: center; }
    .nav-row-top {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
      min-height: 64px;
      gap: 20px;
      justify-content: space-between;
    }
    .logo {
      display: flex; align-items: center; gap: 10px; color: var(--ink); flex-shrink: 0;
    }
    .logo:hover { color: var(--blue-deep); }
    .logo-mark {
      width: 40px; height: 40px; border-radius: 8px;
      background: linear-gradient(180deg, #3B82B8, var(--blue-deep));
      display: grid; place-items: center;
      box-shadow: 0 6px 14px rgba(46, 111, 168, 0.28);
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
    .logo-text strong { font-size: 16px; font-weight: 700; letter-spacing: .02em; }
    .logo-text span { font-size: 12px; color: var(--steel); font-weight: 500; }
    .trust-strip { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; flex: 1; }
    .trust-strip span {
      font-size: 12px; color: var(--blue-deep); background: #EAF2F8;
      border: 1px solid #D3E4F2; border-radius: var(--radius-badge);
      padding: 4px 10px; letter-spacing: .02em;
    }
    .nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .tel {
      color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums;
      display: inline-flex; align-items: center; gap: 6px; min-height: 44px;
    }
    .tel svg { width: 16px; height: 16px; }
    .nav-row-bottom {
      background: var(--blue-deep);
    }
    .nav-row-bottom nav {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
      display: flex; align-items: center; gap: 4px;
      min-height: 48px;
    }
    .nav-row-bottom a {
      color: rgba(255,255,255,.86);
      font-size: 14px; font-weight: 500;
      padding: 10px 14px; min-height: 44px;
      display: inline-flex; align-items: center;
      border-radius: 6px;
    }
    .nav-row-bottom a:hover,
    .nav-row-bottom a.is-active {
      color: #fff; background: rgba(255,255,255,.12);
    }
    .nav-toggle {
      display: none; width: 44px; height: 44px; border-radius: 8px;
      border: 1px solid var(--line); align-items: center; justify-content: center; gap: 5px; flex-direction: column;
    }
    .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
    .drawer-close { display: none; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 44px; padding: 0 18px; border-radius: var(--radius-btn);
      font-size: 14px; font-weight: 600; letter-spacing: .02em;
      border: 1px solid transparent; transition: .2s ease;
    }
    .btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--blue); outline-offset: 2px;
    }
    .btn-primary { background: var(--blue); color: #fff; }
    .btn-primary:hover { background: #286396; color: #fff; transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(1px); background: var(--blue-deep); }
    .btn-ghost { background: #fff; color: var(--blue-deep); border-color: #B9D0E3; }
    .btn-ghost:hover { background: #F3F8FC; color: var(--blue-deep); }
    .btn-amber { background: var(--amber); color: #fff; }
    .btn-amber:hover { background: var(--amber-deep); color: #fff; transform: translateY(-1px); }
    .btn-amber:active { transform: translateY(1px); }
    .site-header.is-compact .trust-strip { display: none; }
    .site-header.is-compact .nav-row-bottom { display: none; }
    .site-header.is-compact .nav-row-top { min-height: 58px; }
    .hero { position: relative; overflow: hidden; background: #1b2a38; }
    .hero-track { display: flex; width: 300%; transition: transform .55s ease; }
    .hero-slide {
      width: 33.333%; position: relative; min-height: 620px;
      display: flex; align-items: stretch;
    }
    .hero-slide img.hero-bg {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0;
    }
    .hero-mask {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(244,247,250,.94) 0%, rgba(244,247,250,.82) 42%, rgba(36,50,64,.28) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
      display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px;
      align-items: center; padding: 72px 0;
    }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--blue-deep); font-weight: 600; margin-bottom: 14px;
    }
    .eyebrow i {
      width: 28px; height: 2px; background: var(--amber); display: inline-block;
    }
    .hero h1, .hero .hero-title {
      font-size: 42px; line-height: 1.22; font-weight: 700; letter-spacing: .01em; margin-bottom: 16px;
    }
    .hero-lead { color: var(--steel); max-width: 620px; margin-bottom: 22px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
    .grade-row { display: flex; flex-wrap: wrap; gap: 8px; }
    .grade {
      display: inline-flex; align-items: center; gap: 6px;
      background: #fff; border: 1px solid #E2C08A; color: #8A5A16;
      border-radius: var(--radius-badge); padding: 6px 10px; font-size: 12px; font-weight: 600;
      min-height: 32px;
    }
    .grade em { font-style: normal; color: var(--amber); }
    .hero-panel {
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(232,238,244,.9);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      padding: 22px;
    }
    .hero-panel h3 { font-size: 16px; margin-bottom: 12px; }
    .hero-panel dl { display: grid; gap: 10px; }
    .hero-panel dt { font-size: 12px; color: var(--weak); }
    .hero-panel dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--blue-deep); }
    .hero-nav {
      position: absolute; z-index: 3; inset: auto 24px 24px auto;
      display: flex; gap: 8px; align-items: center;
    }
    .hero-nav button, .hero-dots button {
      width: 44px; height: 44px; border-radius: 8px; background: #fff; color: var(--blue-deep);
      border: 1px solid var(--line); display: grid; place-items: center;
    }
    .hero-nav button:hover { background: var(--blue); color: #fff; }
    .hero-dots {
      position: absolute; z-index: 3; left: 50%; bottom: 24px; transform: translateX(-50%);
      display: flex; gap: 8px;
    }
    .hero-dots button { width: 10px; height: 10px; border-radius: 50%; padding: 0; min-width: 10px; background: #fff; opacity: .45; }
    .hero-dots button.is-on { opacity: 1; background: var(--amber); width: 22px; border-radius: 8px; }
    main section { padding: 96px 0; }
    main section:nth-child(even) { background: #fff; }
    main section:nth-child(odd) { background: var(--bg); }
    .sec-head { max-width: 760px; margin-bottom: 36px; }
    .sec-head h2 { font-size: 28px; line-height: 1.3; margin-bottom: 12px; }
    .sec-head p { color: var(--steel); }
    .kpi-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    }
    .kpi-card, .card, .plan-card, .story-card, .review-card, .news-card, .matrix-card, .guard-card {
      background: var(--card); border-radius: var(--radius-card); box-shadow: var(--shadow); border: 1px solid #EEF3F7;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .kpi-card:hover, .card:hover, .plan-card:hover, .story-card:hover, .review-card:hover, .news-card:hover, .matrix-card:hover, .guard-card:hover {
      transform: translateY(-4px); box-shadow: var(--shadow-hover);
    }
    .kpi-card { padding: 24px 22px; }
    .kpi-card .num {
      font-size: 36px; font-weight: 700; color: var(--blue); letter-spacing: -.02em;
      font-variant-numeric: tabular-nums; font-family: "DIN Alternate", "Tabular nums", "Noto Sans SC", sans-serif;
      line-height: 1.1;
    }
    .kpi-card .unit { font-size: 14px; color: var(--blue-deep); margin-left: 4px; font-weight: 600; }
    .kpi-card h3 { font-size: 15px; margin: 10px 0 6px; }
    .kpi-card p { font-size: 13px; color: var(--steel); line-height: 1.65; }
    .intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
    .intro-grid img { width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow); }
    .def-list { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 18px; }
    .def-list div {
      display: grid; grid-template-columns: 120px 1fr; gap: 12px;
      padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px;
    }
    .def-list dt { color: var(--blue-deep); font-weight: 600; }
    .def-list dd { margin: 0; color: var(--steel); }
    .matrix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .matrix-card { padding: 22px; }
    .matrix-card .ico {
      width: 44px; height: 44px; border-radius: 8px; border: 1px solid #D7E4EF;
      display: grid; place-items: center; margin-bottom: 14px; color: var(--blue-deep); background: #F3F8FC;
    }
    .matrix-card h3 { font-size: 18px; margin-bottom: 8px; }
    .matrix-card .metric { color: var(--blue); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 14px; margin-bottom: 8px; }
    .matrix-card p { font-size: 14px; color: var(--steel); }
    .plans-layout { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 18px; align-items: stretch; }
    .plan-card { overflow: hidden; display: flex; flex-direction: column; }
    .plan-card img { height: 180px; width: 100%; object-fit: cover; border-radius: 0; }
    .plan-card.featured img { height: 240px; }
    .plan-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
    .plan-card h3 { font-size: 20px; }
    .badge {
      display: inline-flex; align-items: center; border-radius: var(--radius-badge);
      padding: 3px 8px; font-size: 12px; font-weight: 600; width: fit-content;
    }
    .badge-ok { background: #E7F6EE; color: var(--ok); }
    .badge-amber { background: #F8EEDF; color: var(--amber-deep); }
    .tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
    .tag-cloud span {
      font-size: 12px; background: #F3F6F9; color: var(--steel); border-radius: 4px; padding: 4px 8px;
    }
    .plan-meta { font-size: 13px; color: var(--steel); }
    .plan-card .btn { margin-top: auto; }
    .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .compare-col { padding: 26px; border-radius: var(--radius-card); }
    .compare-col.bad { background: #F7F1EA; border: 1px solid #EBD9C4; }
    .compare-col.good { background: #EEF6F2; border: 1px solid #CDE5D8; }
    .compare-col h3 { font-size: 20px; margin-bottom: 8px; }
    .compare-col p.lead { font-size: 14px; color: var(--steel); margin-bottom: 16px; }
    .compare-col li {
      display: grid; grid-template-columns: 16px 1fr; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--ink);
    }
    .compare-col li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; margin-top: 8px; background: #B0895A; }
    .compare-col.good li::before { background: var(--ok); }
    .save { color: var(--amber-deep); font-weight: 700; font-variant-numeric: tabular-nums; }
    .dark-case {
      background: var(--dark) !important; color: #E8EEF4; position: relative; overflow: hidden;
    }
    .dark-case .bg {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; border-radius: 0;
    }
    .dark-case .container { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; }
    .dark-case h2 { color: #fff; }
    .dark-case .sec-head p { color: #C5D0D8; }
    .claim-flow { display: grid; gap: 12px; }
    .claim-flow li {
      background: rgba(15, 22, 30, .45); border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px; padding: 16px 18px;
      display: grid; grid-template-columns: 64px 1fr; gap: 12px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    }
    .claim-flow b { color: #E2B66A; font-variant-numeric: tabular-nums; font-size: 13px; }
    .timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; }
    .timeline::before {
      content: ""; position: absolute; left: 8%; right: 8%; top: 27px; height: 2px; background: #D5E3EE;
    }
    .time-node { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow); padding: 22px 16px 18px; position: relative; }
    .time-node .dot {
      width: 14px; height: 14px; border-radius: 50%; background: var(--blue); border: 3px solid #fff;
      box-shadow: 0 0 0 2px var(--blue); margin-bottom: 14px;
    }
    .time-node h3 { font-size: 16px; margin-bottom: 8px; }
    .time-node p { font-size: 13px; color: var(--steel); }
    .story-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; }
    .story-card img { height: 190px; width: 100%; object-fit: cover; border-radius: 12px 12px 0 0; }
    .story-card .body { padding: 18px; }
    .story-card h3 { font-size: 18px; margin-bottom: 6px; }
    .meta { font-size: 13px; color: var(--weak); margin-bottom: 8px; }
    .quote { font-size: 14px; color: var(--ink); }
    .stats-bar {
      background: #EAF2F8 !important; padding: 56px 0 !important;
    }
    .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; text-align: center; }
    .stats-row b {
      display: block; font-size: 34px; color: var(--blue-deep); font-variant-numeric: tabular-nums;
      font-family: "DIN Alternate", "Noto Sans SC", sans-serif;
    }
    .stats-row span { font-size: 13px; color: var(--steel); }
    .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .review-card { padding: 22px; }
    .stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; margin-bottom: 8px; }
    .review-card h3 { font-size: 16px; }
    .car-tag {
      display: inline-block; margin-top: 10px; font-size: 12px; color: var(--blue-deep);
      background: #EAF2F8; border-radius: 4px; padding: 3px 8px;
    }
    .scene-list { display: grid; gap: 14px; }
    .scene-bar {
      display: grid; grid-template-columns: 220px 1fr auto; gap: 20px; align-items: center;
      background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow); overflow: hidden;
      padding-right: 18px;
    }
    .scene-bar img { width: 220px; height: 120px; object-fit: cover; border-radius: 0; }
    .scene-bar h3 { font-size: 18px; margin-bottom: 4px; }
    .scene-bar p { font-size: 14px; color: var(--steel); }
    .news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .news-card { display: grid; grid-template-columns: 168px 1fr; overflow: hidden; }
    .news-card img { width: 168px; height: 100%; object-fit: cover; border-radius: 0; min-height: 132px; }
    .news-card .body { padding: 16px 16px 16px 0; }
    .news-card time { font-size: 12px; color: var(--weak); }
    .news-card h3 { font-size: 16px; margin: 6px 0; }
    .news-card p { font-size: 13px; color: var(--steel); }
    .news-more { margin-top: 22px; }
    .guard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .guard-card { padding: 22px; text-align: left; position: relative; }
    .stamp {
      width: 54px; height: 54px; border: 2px solid #C9D8E6; border-radius: 50%;
      display: grid; place-items: center; color: var(--blue-deep); font-size: 11px; font-weight: 700;
      margin-bottom: 12px; transform: rotate(-8deg);
    }
    .guard-card h3 { font-size: 16px; margin-bottom: 8px; }
    .guard-card p { font-size: 13px; color: var(--steel); }
    .chip-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
    .chip {
      border: 1px solid #D3E1EC; background: #fff; border-radius: 8px; min-height: 44px;
      padding: 8px 14px; font-size: 14px; color: var(--ink); text-align: left;
    }
    .chip:hover, .chip.is-on { border-color: var(--blue); color: var(--blue-deep); background: #F3F8FC; }
    .chip-answer {
      display: none; margin-top: 14px; background: #fff; border-radius: var(--radius-card);
      box-shadow: var(--shadow); padding: 16px 18px; color: var(--steel); font-size: 14px;
    }
    .chip-answer.show { display: block; }
    .faq-list { display: grid; gap: 10px; }
    .faq-item { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow); overflow: hidden; }
    .faq-item button {
      width: 100%; text-align: left; padding: 16px 20px; min-height: 56px;
      font-size: 16px; font-weight: 600; color: var(--ink);
      display: flex; justify-content: space-between; gap: 12px; align-items: center;
    }
    .faq-item button span { color: var(--blue); font-size: 22px; line-height: 1; }
    .faq-item .ans { display: none; padding: 0 20px 18px; color: var(--steel); font-size: 14px; }
    .faq-item.open .ans { display: block; }
    .consult {
      background: linear-gradient(180deg, #F4F7FA, #E8F0F6) !important;
    }
    .consult-box {
      display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px;
      background: #fff; border-radius: 12px; box-shadow: var(--shadow); overflow: hidden;
    }
    .consult-cta {
      background: var(--dark) url("/assets/images/f665166b868296b2.webp") center/cover no-repeat;
      color: #fff; padding: 36px 32px; position: relative;
    }
    .consult-cta::before {
      content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(36,50,64,.82), rgba(36,50,64,.9));
    }
    .consult-cta > * { position: relative; z-index: 1; }
    .consult-cta h2 { color: #fff; font-size: 28px; margin: 8px 0 12px; }
    .consult-cta p { color: #D5DEE6; margin-bottom: 18px; }
    .consult-cta .hours { font-size: 14px; color: #E2B66A; }
    .form-wrap { padding: 32px; }
    form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    form label { display: grid; gap: 6px; font-size: 13px; color: var(--blue-deep); font-weight: 600; }
    form label.full { grid-column: 1 / -1; }
    input, select, textarea {
      min-height: 44px; border: 1px solid #D5E0EA; border-radius: 8px; padding: 8px 12px; background: #FBFCFD; color: var(--ink);
    }
    textarea { min-height: 88px; resize: vertical; }
    .form-msg { grid-column: 1 / -1; font-size: 14px; color: var(--ok); display: none; }
    .form-msg.err { color: #A13D2A; }
    .form-msg.show { display: block; }
    .site-footer {
      background: #1B2833; color: #C5D0D8; padding: 56px 0 24px;
    }
    .foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
    .site-footer h3 { color: #fff; font-size: 16px; margin-bottom: 12px; }
    .site-footer a { color: #C5D0D8; display: inline-block; min-height: 32px; }
    .site-footer a:hover { color: #fff; }
    .copy { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; font-size: 13px; color: #8EA0AD; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .overlay {
      display: none; position: fixed; inset: 0; background: rgba(18, 28, 38, .45); z-index: 900;
    }
    .overlay.show { display: block; }
    @media (max-width: 1280px) {
      .hero h1, .hero .hero-title { font-size: 36px; }
    }
    @media (max-width: 1024px) {
      .container, .nav-row-top, .nav-row-bottom nav, .hero-content { width: min(100% - 48px, var(--max)); }
      .hero-content, .intro-grid, .dark-case .container, .consult-box, .plans-layout, .story-grid { grid-template-columns: 1fr 1fr; }
      .plans-layout { grid-template-columns: 1fr; }
      .kpi-grid, .guard-grid, .stats-row { grid-template-columns: 1fr 1fr; }
      .matrix-grid, .review-grid { grid-template-columns: 1fr 1fr; }
      .timeline { grid-template-columns: 1fr 1fr; }
      .timeline::before { display: none; }
      .scene-bar { grid-template-columns: 180px 1fr; padding-right: 0; }
      .scene-bar .btn { display: none; }
      .hero-slide { min-height: 560px; }
    }
    @media (max-width: 768px) {
      main section { padding: 64px 0; }
      .sec-head h2, .consult-cta h2 { font-size: 24px; }
      .hero h1, .hero .hero-title { font-size: 30px; }
      .hero-content, .intro-grid, .compare-grid, .dark-case .container, .consult-box, .news-grid, .foot-grid, .story-grid, .review-grid, .matrix-grid { grid-template-columns: 1fr; }
      .hero-panel { display: none; }
      .trust-strip { display: none; }
      .nav-toggle { display: inline-flex; }
      .nav-actions .tel-text { display: none; }
      .nav-row-bottom {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(86vw, 360px);
        transform: translateX(104%); transition: transform .28s ease; display: block; z-index: 1100;
        background: #1F527C; padding: 18px 16px 24px; box-shadow: -12px 0 40px rgba(0,0,0,.2);
      }
      .nav-row-bottom.open { transform: translateX(0); }
      .nav-row-bottom nav { width: 100%; flex-direction: column; align-items: stretch; gap: 6px; }
      .nav-row-bottom a { width: 100%; min-height: 44px; }
      .drawer-close { display: block; color: #fff; margin: 8px 8px 16px auto; min-height: 44px; padding: 0 12px; }
      form { grid-template-columns: 1fr; }
      .news-card { grid-template-columns: 1fr; }
      .news-card img { width: 100%; height: 180px; }
      .scene-bar { grid-template-columns: 1fr; }
      .scene-bar img { width: 100%; height: 160px; }
      .scene-bar > div { padding: 0 16px 16px; }
      .hero-slide { min-height: 520px; }
      .copy { flex-direction: column; }
    }
    @media (max-width: 520px) {
      .container, .nav-row-top, .hero-content { width: calc(100% - 32px); }
      main section { padding: 56px 0; }
      .kpi-grid, .stats-row, .guard-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .btn { width: auto; }
      .hero-actions .btn { flex: 1; }
      .nav-row-top .btn-primary { display: none; }
      .site-header.is-compact .nav-row-top .btn-primary { display: inline-flex; padding: 0 12px; }
      .hero h1, .hero .hero-title { font-size: 28px; }
      .kpi-card .num, .stats-row b { font-size: 28px; }
    }
    @media print {
      .site-header, .hero-nav, .hero-dots, .nav-toggle, .consult, .btn, .overlay { display: none !important; }
      body { background: #fff; color: #000; }
    }
