/* roulang page: index */
:root {
      --bg: #F3F7FB;
      --card: #FFFFFF;
      --primary: #1E74B3;
      --primary-hover: #165E93;
      --teal: #2A9A86;
      --amber: #C4842A;
      --dark: #17344A;
      --text: #1B2A34;
      --muted: #5C6B76;
      --line: #D7E2EC;
      --ok: #2F7A58;
      --danger: #B42318;
      --radius-card: 10px;
      --radius-btn: 6px;
      --radius-input: 8px;
      --radius-badge: 4px;
      --shadow: 0 10px 28px rgba(30, 116, 179, 0.08);
      --shadow-hover: 0 16px 36px rgba(30, 116, 179, 0.14);
      --container: 1200px;
      --gap: 28px;
      --topbar-h: 40px;
      --nav-h: 68px;
      --focus: rgba(30, 116, 179, 0.4);
      --paper: repeating-linear-gradient(0deg, rgba(215, 226, 236, 0.35) 0 1px, transparent 1px 28px);
      --font: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      font-size: 16px;
      line-height: 1.75;
      color: var(--text);
      background: var(--bg);
      background-image: var(--paper);
      min-width: 320px;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--primary); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
    a:hover { color: var(--primary-hover); }
    button, input, select, textarea { font-family: inherit; font-size: 16px; }
    button { cursor: pointer; border: 0; }
    h1, h2, h3, h4, p { margin: 0; }
    ul { margin: 0; padding: 0; list-style: none; }
    :focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
    .skip-link {
      position: absolute; left: -999px; top: 8px; z-index: 10000;
      background: var(--primary); color: #fff; padding: 8px 14px; border-radius: var(--radius-btn);
    }
    .skip-link:focus { left: 12px; }
    .container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
    .topbar {
      height: var(--topbar-h);
      background: #EAF3F9;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
    }
    .topbar-inner {
      height: 100%;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
    .topbar a { color: var(--text); }
    .topbar a:hover { color: var(--primary); }
    .topbar .split { width: 1px; height: 12px; background: var(--line); }
    .site-header { position: relative; z-index: 40; }
    .main-nav {
      height: var(--nav-h);
      background: #fff;
      border-bottom: 1px solid var(--line);
      position: sticky; top: 0; z-index: 50;
    }
    .nav-inner {
      height: 100%;
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
    }
    .logo {
      display: flex; align-items: center; gap: 10px; color: var(--text); flex-shrink: 0;
    }
    .logo:hover { color: var(--primary); }
    .logo-mark {
      width: 36px; height: 36px; border-radius: 8px;
      border: 1.5px solid var(--primary); background: #F7FBFE;
      position: relative; display: grid; place-items: center;
    }
    .logo-mark span {
      display: block; width: 18px; height: 10px; border: 1.6px solid var(--primary);
      border-radius: 9px 9px 9px 9px; position: relative;
    }
    .logo-mark span::after {
      content: ""; position: absolute; left: 50%; top: -5px; width: 8px; height: 5px;
      border: 1.5px solid var(--primary); border-bottom: 0; border-radius: 6px 6px 0 0;
      transform: translateX(-50%);
    }
    .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .logo-text strong { font-size: 16px; font-weight: 700; }
    .logo-text small { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
    .nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
    .nav-links a {
      color: var(--text); padding: 8px 10px; border-radius: 6px; font-size: 14px; font-weight: 500;
      min-height: 44px; display: inline-flex; align-items: center;
    }
    .nav-links a:hover, .nav-links a.is-active { color: var(--primary); background: #F0F7FC; }
    .nav-cta { display: flex; align-items: center; gap: 10px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      min-height: 44px; padding: 0 18px; border-radius: var(--radius-btn);
      font-weight: 600; line-height: 1; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(1px); }
    .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 18px rgba(30, 116, 179, 0.18); }
    .btn-primary:hover { background: var(--primary-hover); color: #fff; }
    .btn-ghost { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
    .btn-ghost:hover { background: #EAF4FB; color: var(--primary-hover); }
    .btn-light { background: #fff; color: var(--dark); }
    .btn-light:hover { background: #F3F7FB; color: var(--primary); }
    .menu-toggle {
      display: none; width: 44px; height: 44px; background: #fff; border: 1px solid var(--line); border-radius: 8px;
      align-items: center; justify-content: center; flex-direction: column; gap: 5px;
    }
    .menu-toggle i { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; }
    .drawer {
      position: fixed; inset: 0; background: rgba(23, 52, 74, 0.42); z-index: 80;
      opacity: 0; pointer-events: none; transition: opacity .2s ease;
    }
    .drawer.open { opacity: 1; pointer-events: auto; }
    .drawer-panel {
      position: absolute; right: 0; top: 0; height: 100%; width: min(86vw, 340px);
      background: #fff; padding: 24px 20px; transform: translateX(100%); transition: transform .24s ease;
      display: flex; flex-direction: column; gap: 8px; box-shadow: -12px 0 32px rgba(23, 52, 74, 0.12);
    }
    .drawer.open .drawer-panel { transform: none; }
    .drawer-panel a {
      min-height: 44px; display: flex; align-items: center; padding: 0 10px; border-radius: 8px; color: var(--text); font-weight: 600;
    }
    .drawer-panel a:hover { background: #F0F7FC; color: var(--primary); }
    .hero {
      position: relative; min-height: max(480px, 74vh); color: #fff; overflow: hidden;
    }
    .hero-slides { position: absolute; inset: 0; }
    .hero-slide {
      position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
      background: #17344A center/cover no-repeat;
    }
    .hero-slide.is-on { opacity: 1; }
    .hero-slide::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(23, 52, 74, 0.18) 0%, rgba(23, 52, 74, 0.55) 48%, rgba(23, 52, 74, 0.82) 100%);
    }
    .hero-caption {
      position: absolute; left: 0; right: 0; bottom: 210px; z-index: 2;
    }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: .12em;
      color: #D9EAF6; margin-bottom: 8px;
    }
    .hero-kicker b { width: 22px; height: 1px; background: #D9EAF6; display: inline-block; }
    .slide-title { font-size: 28px; font-weight: 700; line-height: 1.3; }
    .hero-controls {
      position: absolute; right: max(20px, calc((100% - var(--container)) / 2));
      bottom: 228px; z-index: 3; display: flex; align-items: center; gap: 8px;
    }
    .hero-arrow, .hero-dots button {
      width: 44px; height: 44px; border-radius: 8px; background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.28);
    }
    .hero-arrow:hover { background: rgba(255,255,255,.28); }
    .hero-dots { display: flex; gap: 6px; }
    .hero-dots button { width: 10px; height: 10px; min-height: 10px; padding: 0; border-radius: 50%; background: rgba(255,255,255,.35); }
    .hero-dots button.is-on { background: #fff; width: 22px; border-radius: 8px; }
    .profile-wrap { position: relative; z-index: 4; padding: 72px 0 28px; }
    .profile-card {
      margin-top: min(34vh, 280px);
      background: #fff; color: var(--text);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow);
      padding: 22px 24px 24px;
      display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: start;
      border: 1px solid var(--line);
    }
    .avatar {
      width: 92px; height: 92px; border-radius: 50%;
      border: 3px solid #fff; box-shadow: 0 0 0 2px var(--primary);
      background: linear-gradient(180deg, #E7F3FB, #F7FBFE);
      display: grid; place-items: center; position: relative;
    }
    .avatar .cap {
      width: 42px; height: 22px; border: 2px solid var(--primary); border-radius: 12px;
      position: relative;
    }
    .avatar .cap::before {
      content: ""; position: absolute; left: 50%; top: -9px; width: 16px; height: 9px;
      border: 2px solid var(--primary); border-bottom: 0; border-radius: 10px 10px 0 0; transform: translateX(-50%);
    }
    .profile-main h1 { font-size: 36px; line-height: 1.25; font-weight: 700; margin-bottom: 8px; }
    .profile-main .lead { color: var(--muted); font-size: 15px; max-width: 760px; }
    .badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
    .badge {
      display: inline-flex; align-items: center; gap: 6px;
      min-height: 28px; padding: 2px 8px; border-radius: var(--radius-badge);
      font-size: 12px; font-weight: 600; background: #F3F7FB; color: var(--text); border: 1px solid var(--line);
    }
    .badge em { color: var(--primary); font-style: normal; font-size: 16px; }
    .badge.ok { background: #E8F6F0; color: var(--ok); border-color: #CDEADF; }
    .badge.warn { background: #FBF4E8; color: var(--amber); border-color: #F0E0C2; }
    .badge.teal { background: #E8F7F4; color: var(--teal); border-color: #C6E8E1; }
    .profile-actions { display: flex; flex-direction: column; gap: 10px; min-width: 168px; }
    section { padding: 88px 0; position: relative; }
    .sec-head { margin-bottom: 28px; }
    .chap {
      display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: .08em;
      margin-bottom: 8px;
    }
    .chap span { display: inline-block; width: 28px; height: 1px; background: var(--primary); }
    h2 { font-size: 26px; line-height: 1.35; font-weight: 700; }
    .sec-desc { margin-top: 12px; color: var(--muted); max-width: 760px; font-size: 15px; }
    .intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
    .intro-copy p + p { margin-top: 14px; }
    .intro-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
    .meta-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; box-shadow: var(--shadow); }
    .meta-item b { display: block; color: var(--primary); font-size: 18px; }
    .meta-item span { color: var(--muted); font-size: 13px; }
    .frame { position: relative; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
    .frame img { width: 100%; height: 420px; object-fit: cover; }
    .frame figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92); padding: 6px 10px; border-radius: 4px; font-size: 12px; color: var(--muted); }
    .bento { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
    .index-list { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); padding: 8px; }
    .index-list a {
      display: flex; align-items: center; justify-content: space-between; min-height: 48px;
      padding: 8px 12px; border-radius: 8px; color: var(--text); font-weight: 600;
    }
    .index-list a:hover, .index-list a.is-on { background: #F0F7FC; color: var(--primary); }
    .index-list small { color: var(--muted); font-weight: 500; }
    .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .svc-card {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px; box-shadow: var(--shadow);
      min-height: 168px; display: flex; flex-direction: column; gap: 8px; transition: transform .2s ease, box-shadow .2s ease;
    }
    .svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
    .svc-card.wide { grid-column: span 2; background: linear-gradient(180deg, #FFFFFF, #F7FBFE); }
    .svc-no { font-size: 12px; color: var(--primary); font-weight: 700; letter-spacing: .08em; }
    .svc-card h3 { font-size: 18px; }
    .svc-card p { color: var(--muted); font-size: 14px; }
    .adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .adv-card {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px 22px 22px;
      box-shadow: var(--shadow); min-height: 210px; transition: transform .2s ease, box-shadow .2s ease;
    }
    .adv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
    .ico {
      width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 14px;
      background: #EAF4FB; color: var(--primary); border: 1px solid #D3E6F4; font-weight: 700;
    }
    .adv-card h3 { font-size: 18px; margin-bottom: 8px; }
    .adv-card p { color: var(--muted); font-size: 14px; }
    .topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .topic-card {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .topic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
    .topic-card img { width: 100%; height: 180px; object-fit: cover; }
    .topic-body { padding: 16px 16px 18px; }
    .topic-body h3 { font-size: 18px; margin: 8px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .topic-body p { color: var(--muted); font-size: 14px; }
    .timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
    .timeline::before {
      content: ""; position: absolute; left: 18px; right: 18px; top: 28px; height: 1px; background: var(--line);
    }
    .step {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px; box-shadow: var(--shadow); position: relative;
    }
    .step .num {
      width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center;
      font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1;
    }
    .step h3 { font-size: 18px; margin-bottom: 6px; }
    .step p { color: var(--muted); font-size: 14px; }
    .stats {
      padding: 36px 0; background: #EAF3F9; border-block: 1px solid var(--line);
    }
    .stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
    .stat { text-align: center; padding: 10px 8px; }
    .stat b { display: block; font-size: 32px; color: var(--primary); line-height: 1.2; }
    .stat span { color: var(--muted); font-size: 13px; }
    .dark-band {
      background: var(--dark) center/cover no-repeat; color: #E8F0F6; padding: 88px 0;
    }
    .dark-band .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: stretch; }
    .quote { font-size: 24px; line-height: 1.5; font-weight: 700; }
    .quote small { display: block; margin-top: 12px; color: #B7C7D4; font-size: 14px; font-weight: 500; }
    .scene-box { display: grid; gap: 14px; }
    .scene-box article {
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 18px;
    }
    .scene-box h3 { font-size: 18px; margin-bottom: 6px; color: #fff; }
    .scene-box p { color: #C5D4DE; font-size: 14px; }
    .case-wall { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
    .case-card {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow);
      display: flex; flex-direction: column; min-height: 220px; transition: transform .2s ease, box-shadow .2s ease;
    }
    .case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
    .case-card.big { grid-row: span 2; }
    .case-card img { width: 100%; height: 140px; object-fit: cover; }
    .case-card.big img { height: 260px; }
    .case-card .pad { padding: 14px 16px 16px; }
    .case-card h3 { font-size: 18px; margin: 6px 0; }
    .case-card p { color: var(--muted); font-size: 14px; }
    .stories { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
    .story {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 20px; box-shadow: var(--shadow);
    }
    .who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .who .dot { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; }
    .who b { display: block; }
    .who span { color: var(--muted); font-size: 13px; }
    .story p { color: var(--muted); font-size: 14px; }
    .reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .review {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px; box-shadow: var(--shadow);
    }
    .stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; margin-bottom: 8px; }
    .review h3 { font-size: 16px; margin-bottom: 6px; }
    .review p { color: var(--muted); font-size: 14px; }
    .news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .news-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
    .news-card img { width: 100%; height: 132px; object-fit: cover; }
    .news-card .pad { padding: 14px; }
    .news-card time { color: var(--muted); font-size: 12px; }
    .news-card h3 { font-size: 16px; margin: 6px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .news-card p { color: var(--muted); font-size: 13px; }
    .logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .partner {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; min-height: 76px;
      display: grid; place-items: center; text-align: center; padding: 10px; color: #8A97A2; filter: grayscale(1);
      font-weight: 700; font-size: 13px; transition: filter .2s ease, color .2s ease, transform .2s ease;
    }
    .partner:hover { filter: none; color: var(--primary); transform: translateY(-2px); }
    .guard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .guard article {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px; box-shadow: var(--shadow);
    }
    .guard h3 { font-size: 17px; margin-bottom: 6px; }
    .guard p { color: var(--muted); font-size: 14px; }
    .faq-list { display: grid; gap: 10px; }
    .faq-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
    .faq-item button {
      width: 100%; text-align: left; background: #fff; min-height: 56px; padding: 12px 18px;
      display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 700; color: var(--text);
    }
    .faq-item button::after { content: "+"; color: var(--primary); font-size: 22px; font-weight: 400; }
    .faq-item.open button { border-bottom: 1px solid var(--line); }
    .faq-item.open button::after { content: "–"; }
    .faq-item .ans { display: none; background: #F6F9FC; padding: 14px 18px 16px; color: var(--muted); font-size: 14px; }
    .faq-item.open .ans { display: block; }
    .contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
    .form-card, .contact-side { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px; box-shadow: var(--shadow); }
    label { display: block; font-weight: 600; margin: 12px 0 6px; }
    input, select, textarea {
      width: 100%; border: 1px solid var(--line); border-radius: 8px; min-height: 44px; padding: 10px 12px; background: #fff; color: var(--text);
    }
    textarea { min-height: 120px; resize: vertical; }
    input:focus, select:focus, textarea:focus { border-color: var(--primary); }
    .form-error { color: var(--danger); font-size: 13px; display: none; margin-top: 4px; }
    .form-ok { display: none; margin-top: 12px; background: #E8F6F0; color: var(--ok); border: 1px solid #CDEADF; border-radius: 8px; padding: 10px 12px; }
    .side-list { display: grid; gap: 12px; margin-top: 10px; }
    .side-list div { border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
    .side-list b { display: block; }
    .side-list span, .side-list a { color: var(--muted); }
    .param-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
    .param-table th, .param-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
    .param-table th { width: 28%; background: #F7FBFE; color: var(--primary); font-weight: 700; }
    .param-table tr:last-child th, .param-table tr:last-child td { border-bottom: 0; }
    .class-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .class-card {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px; box-shadow: var(--shadow);
      min-height: 132px; transition: transform .2s ease, box-shadow .2s ease;
    }
    .class-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
    .class-card h3 { font-size: 16px; margin-bottom: 6px; }
    .class-card p { color: var(--muted); font-size: 13px; }
    .field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field-item { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--primary); border-radius: 10px; padding: 16px; box-shadow: var(--shadow); }
    .field-item h3 { font-size: 17px; margin-bottom: 6px; }
    .field-item p { color: var(--muted); font-size: 14px; }
    .people { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .people article { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px; box-shadow: var(--shadow); }
    .people h3 { font-size: 18px; margin-bottom: 8px; }
    .people p { color: var(--muted); font-size: 14px; }
    .a11y-bar {
      background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; display: flex; gap: 18px; flex-wrap: wrap; box-shadow: var(--shadow);
    }
    .a11y-bar b { color: var(--primary); }
    .site-footer { background: #123043; color: #C9D7E2; padding: 52px 0 20px; }
    .foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 24px; }
    .foot-brand strong { color: #fff; font-size: 18px; display: block; margin-bottom: 8px; }
    .site-footer a { color: #C9D7E2; }
    .site-footer a:hover { color: #fff; }
    .foot-col h3 { color: #fff; font-size: 16px; margin-bottom: 10px; }
    .foot-col a, .foot-col p { display: block; margin: 6px 0; font-size: 14px; }
    .copy { margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: #9BB0BF; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .alt { background: #fff; }
    .soft { background: transparent; }
    @media (max-width: 1280px) {
      .profile-main h1 { font-size: 32px; }
    }
    @media (max-width: 1024px) {
      section, .dark-band { padding: 72px 0; }
      .nav-links { display: none; }
      .menu-toggle { display: inline-flex; }
      .profile-card { grid-template-columns: 1fr; }
      .profile-actions { flex-direction: row; flex-wrap: wrap; }
      .intro-grid, .bento, .dark-band .container, .contact-grid, .field-grid, .people { grid-template-columns: 1fr; }
      .svc-grid, .adv-grid, .topic-grid, .reviews, .news-grid { grid-template-columns: 1fr 1fr; }
      .svc-card.wide { grid-column: span 2; }
      .stats-grid { grid-template-columns: 1fr 1fr 1fr; }
      .timeline { grid-template-columns: 1fr 1fr; }
      .timeline::before { display: none; }
      .case-wall { grid-template-columns: 1fr 1fr; }
      .case-card.big { grid-row: auto; }
      .stories { grid-template-columns: 1fr; }
      .logo-wall { grid-template-columns: repeat(3, 1fr); }
      .guard, .class-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
      .hero { min-height: 620px; }
      .hero-caption { bottom: 250px; }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 28px, var(--container)); }
      .topbar-right, .topbar .split, .hide-sm { display: none; }
      .profile-main h1 { font-size: 26px; }
      .slide-title { font-size: 22px; }
      h2 { font-size: 22px; }
      .hero-controls { bottom: 18px; right: 16px; }
      .hero-caption { display: none; }
      .profile-wrap { padding-top: 48px; }
      .profile-card { margin-top: 180px; }
      .intro-meta, .stats-grid, .svc-grid, .adv-grid, .topic-grid, .reviews, .news-grid, .guard, .class-grid, .foot-grid, .timeline { grid-template-columns: 1fr; }
      .svc-card.wide { grid-column: auto; }
      .case-wall { grid-template-columns: 1fr; }
      .logo-wall { grid-template-columns: 1fr 1fr; }
      .frame img, .case-card.big img { height: 220px; }
      .copy { flex-direction: column; }
      .nav-cta .btn { display: none; }
    }
    @media (max-width: 520px) {
      .badges .badge em { font-size: 14px; }
      .a11y-bar { flex-direction: column; }
      .profile-actions { width: 100%; }
      .profile-actions .btn { width: 100%; }
    }
