:root {
  --theme-brand: #150532;
  --theme-accent-color: #ff444e;
  --theme-accent-active: #ff1c39;
  --theme-canvas: #12052d;
  --theme-card-bg: #1e0b42;
  --theme-color-bg-card: #1a0838;
  --theme-grad-light: #ffc5ca;
  --theme-grad-mid: #ffffff;
  --theme-body-color: #ffffff;
  --theme-text-muted: #cfcada;
  --theme-divider: #35204f;
  --theme-warning-bg: #dc2626;

  --theme-font-heading: 'Hind', system-ui, sans-serif;
  --theme-font-base: 'Hind', system-ui, sans-serif;

  --theme-content-width: 1420px;
  --theme-edge-desktop: 24px;
  --theme-readable-width: 720px;
  --theme-wrap: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop));

  --theme-sec-y: 48px;
  --theme-spacing-xs: 8px;
  --theme-gutter-sm: 12px;
  --theme-spacing-md: 20px;
  --theme-spacing-lg: 32px;
  --theme-gutter-xl: 48px;

  --theme-radius-sm: 8px;
  --theme-radius-md: 14px;
  --theme-corner-lg: 22px;
  --theme-shadow-card: 0 18px 40px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }

html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--theme-canvas);
  color: var(--theme-body-color);
  font-family: var(--theme-font-base);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--theme-font-heading); line-height: 1.15; margin: 0 0 0.5em; font-weight: 700; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }

.rich-link { color: var(--theme-accent-color); text-decoration: underline; text-underline-offset: 2px; }
.rich-link:hover { color: var(--theme-grad-light); }

.skip-link {
  position: absolute; left: 12px; top: -200px; z-index: 200;
  background: var(--theme-accent-color); color: #fff; padding: 10px 18px;
  border-radius: var(--theme-radius-sm); font-weight: 600; text-decoration: none;
}
.skip-link:not(:focus) { top: -200px !important; }
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.main { display: block; }

/* ---------- RG banner (header NOT fixed -> normal flow) ---------- */
.rg-banner {
  margin: 0;
  background: var(--theme-warning-bg);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.02em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: var(--theme-radius-md);
  font-family: var(--theme-font-heading); font-weight: 700; font-size: 16px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--theme-primary { background: var(--theme-accent-color); color: #ffffff; }
.btn--theme-primary:hover { background: var(--theme-accent-active); color: #ffffff; }
.btn--theme-ghost { background: rgba(255, 255, 255, 0.06); color: #ffffff; border-color: rgba(255, 255, 255, 0.28); }
.btn--theme-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #ffffff; }

/* ---------- header (HEAD-08) ---------- */
.a22 {
  background: var(--theme-brand);
  border-bottom: 1px solid var(--theme-divider);
  padding-block: 14px;
  position: relative;
}
.a22-bar {
  max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop));
  margin-inline: auto;
  padding-inline: var(--theme-edge-desktop);
  display: flex; align-items: center; gap: var(--theme-spacing-lg);
}
.a22-brand { flex-shrink: 0; display: inline-flex; }
.a22-logo-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: #ffffff; padding: 6px 16px; border-radius: var(--theme-radius-md);
}
.a22-logo-img { height: 88px; width: auto; flex-shrink: 0; display: block; }
.a22-nav { margin-left: auto; }
.a22-nav-list { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.a22-nav-item { position: relative; }
.a22-nav-link, .a22-more-link {
  display: block; padding: 10px 14px; border-radius: var(--theme-radius-sm);
  color: var(--theme-body-color); text-decoration: none; font-weight: 600; font-size: 15px;
}
.a22-nav-link:hover, .a22-more-link:hover { background: rgba(255, 255, 255, 0.08); }
.a22-nav-link.is-active, .a22-more-link.is-active { color: var(--theme-accent-color); }
.a22-more { position: relative; }
.a22-more-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px; border-radius: var(--theme-radius-sm);
  background: transparent; border: 0; color: var(--theme-body-color);
  font-family: var(--theme-font-base); font-weight: 600; font-size: 15px; cursor: pointer;
}
.a22-more-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.a22-more-caret { font-size: 11px; }
.a22-more-menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 50;
  min-width: 200px; list-style: none; margin: 0; padding: 8px;
  background: var(--theme-card-bg); border: 1px solid var(--theme-divider);
  border-radius: var(--theme-radius-md); box-shadow: var(--theme-shadow-card);
  display: none;
}
.a22-more-menu.is-open { display: block; }
.a22-auth { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.a22-auth-btn {
  display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0;
  padding-inline: var(--theme-spacing-md); padding-block: 10px;
  border-radius: var(--theme-radius-md); font-weight: 700; font-size: 15px; text-decoration: none;
  background: rgba(255, 255, 255, 0.06); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.28);
}
.a22-auth-btn:hover { background: rgba(255, 255, 255, 0.14); color: #ffffff; }
.a22-auth-btn--theme-primary { background: var(--theme-accent-color); color: #ffffff; border-color: var(--theme-accent-color); }
.a22-auth-btn--theme-primary:hover { background: var(--theme-accent-active); color: #ffffff; }
.a22-toggle {
  display: none; margin-left: auto; flex-direction: column; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 10px;
}
.a22-toggle-bar { width: 26px; height: 3px; background: #fff; border-radius: 2px; display: block; }
.a22-drawer { display: none; }
.a22-drawer-list { list-style: none; margin: 0; padding: 0; }
.a22-drawer-item { border-bottom: 1px solid var(--theme-divider); }
.a22-drawer-link {
  display: block; padding: 16px var(--theme-edge-desktop);
  color: var(--theme-body-color); text-decoration: none; font-weight: 600; font-size: 17px;
}
.a22-drawer-link.is-active { color: var(--theme-accent-color); }
.a22-drawer-link:hover { background: rgba(255, 255, 255, 0.06); }

/* ---------- hero (HERO-04) ---------- */
.z63 { padding-block: var(--theme-sec-y); background: radial-gradient(120% 140% at 85% 0%, rgba(255, 68, 78, 0.22), transparent 55%), var(--theme-canvas); }
.z63-inner {
  max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--theme-gutter-xl); align-items: center;
}
.z63-content { display: block; }
.z63-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 13px; font-weight: 700; color: var(--theme-accent-color); margin-bottom: 14px;
}
.z63-title { font-size: clamp(34px, 5vw, 58px); margin-bottom: 18px; }
.z63-subtitle { font-size: 19px; color: var(--theme-text-muted); max-width: 480px; margin-bottom: 28px; }
.z63-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.z63-media { position: relative; }
.z63-img { width: 100%; border-radius: var(--theme-corner-lg); box-shadow: var(--theme-shadow-card); }

/* ---------- page-header (PHEAD-06) ---------- */
.o32 { padding-block: var(--theme-sec-y); background: linear-gradient(180deg, var(--theme-brand), var(--theme-canvas)); }
.o32-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); text-align: center; }
.o32-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; font-weight: 700; color: var(--theme-accent-color); margin-bottom: 12px; }
.o32-title { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 14px; }
.o32-lead { font-size: 18px; color: var(--theme-text-muted); max-width: 760px; margin-inline: auto; }

/* ---------- context image ---------- */
.ctx { padding-block: var(--theme-sec-y); }
.ctx-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.ctx-img { width: 100%; border-radius: var(--theme-corner-lg); box-shadow: var(--theme-shadow-card); }

/* ---------- prose (PROSE-07) ---------- */
.i19 { padding-block: var(--theme-sec-y); }
.i19-col { max-width: var(--theme-readable-width); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.i19-body .i19-h { font-size: clamp(24px, 3vw, 32px); margin-top: 1.4em; }
.i19-body .i19-h:first-child { margin-top: 0; }
.i19-body .i19-p { color: var(--theme-text-muted); font-size: 17px; }

/* ---------- items-grid (GRID-05) ---------- */
.u48 { padding-block: var(--theme-sec-y); background: var(--theme-card-bg); }
.u48-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.u48-title { font-size: clamp(26px, 3.4vw, 38px); text-align: center; margin-bottom: var(--theme-gutter-xl); }
.u48-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--theme-spacing-md); }
.u48-card {
  background: var(--theme-color-bg-card); border: 1px solid var(--theme-divider);
  border-radius: var(--theme-radius-md); padding: 26px 24px; transition: transform 0.15s ease, border-color 0.15s ease;
}
.u48-card:hover { transform: translateY(-4px); border-color: var(--theme-accent-color); }
.u48-card-title { font-size: 19px; margin-bottom: 10px; color: var(--theme-body-color); }
.u48-card-text { color: var(--theme-text-muted); font-size: 15px; margin: 0; }

/* ---------- data-table (TABLE-05) ---------- */
.k72 { padding-block: var(--theme-sec-y); }
.k72-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.k72-title { font-size: clamp(24px, 3vw, 34px); text-align: center; margin-bottom: var(--theme-spacing-lg); }
.k72-table { width: 100%; max-width: 760px; margin-inline: auto; border-collapse: collapse; border: 1px solid var(--theme-divider); border-radius: var(--theme-radius-md); overflow: hidden; }
.k72-table th, .k72-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--theme-divider); }
.k72-table th { background: var(--theme-brand); color: #fff; font-weight: 700; }
.k72-table td { color: var(--theme-text-muted); }
.k72-table tr:last-child td { border-bottom: 0; }

/* ---------- reviews (REV-04) ---------- */
.n79 { padding-block: var(--theme-sec-y); background: var(--theme-card-bg); }
.n79-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.n79-title { font-size: clamp(26px, 3.4vw, 38px); text-align: center; margin-bottom: var(--theme-gutter-xl); }
.n79-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--theme-spacing-md); }
.n79-card { background: var(--theme-color-bg-card); border: 1px solid var(--theme-divider); border-radius: var(--theme-radius-md); padding: 24px; }
.n79-stars { display: inline-flex; gap: 2px; margin-bottom: 12px; font-size: 18px; }
.n79-star { color: #857a95; }
.n79-star--on, .n79-star--half { color: #ffc24b; }
.n79-text { color: var(--theme-text-muted); font-size: 15px; }
.n79-author { font-weight: 700; color: var(--theme-body-color); margin: 8px 0 0; }

/* ---------- faq (FAQ-09) ---------- */
.r42 { padding-block: var(--theme-sec-y); }
.r42-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.r42-title { font-size: clamp(26px, 3.4vw, 38px); text-align: center; margin-bottom: var(--theme-gutter-xl); }
.r42-list { max-width: 860px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.r42-item { background: var(--theme-color-bg-card); border: 1px solid var(--theme-divider); border-radius: var(--theme-radius-md); overflow: hidden; }
.r42-q { cursor: pointer; padding: 20px 24px; font-family: var(--theme-font-heading); font-weight: 600; font-size: 18px; list-style: none; position: relative; }
.r42-q::-webkit-details-marker { display: none; }
.r42-q::after { content: '+'; position: absolute; right: 24px; top: 18px; font-size: 24px; color: var(--theme-accent-color); }
.r42-item[open] .r42-q::after { content: '–'; }
.r42-a { padding: 0 24px 22px; color: var(--theme-text-muted); font-size: 16px; }
.r42-a p { margin: 0; }

/* ---------- cta-block (CTA-07) ---------- */
.w22 { padding-block: var(--theme-sec-y); }
.w22-inner {
  max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop);
}
.w22-inner {
  text-align: center;
}
.w22 { }
.w22-inner > * { position: relative; }
.w22-title { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 14px; }
.w22-text { color: var(--theme-text-muted); font-size: 18px; max-width: 580px; margin: 0 auto 26px; }
.w22-actions { display: flex; justify-content: center; }
.w22-inner {
  background: linear-gradient(120deg, rgba(255, 68, 78, 0.16), rgba(255, 197, 202, 0.08));
  border: 1px solid var(--theme-divider); border-radius: var(--theme-corner-lg);
  padding-block: var(--theme-gutter-xl);
}

/* ---------- contact-form (FORM-05) ---------- */
.a33 { padding-block: var(--theme-sec-y); }
.a33-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.a33-intro { text-align: center; color: var(--theme-text-muted); max-width: 640px; margin: 0 auto 28px; font-size: 18px; }
.a33-form { max-width: 640px; margin-inline: auto; display: flex; flex-direction: column; gap: 18px; }
.a33-field { display: flex; flex-direction: column; gap: 8px; }
.a33-label { font-weight: 600; font-size: 15px; }
.a33-input, .a33-textarea {
  background: var(--theme-color-bg-card); border: 1px solid var(--theme-divider); border-radius: var(--theme-radius-sm);
  padding: 14px 16px; color: var(--theme-body-color); font-family: var(--theme-font-base); font-size: 16px;
}
.a33-input:focus, .a33-textarea:focus { outline: 2px solid var(--theme-accent-color); border-color: var(--theme-accent-color); }
.a33-textarea { resize: vertical; }
.a33-submit { align-self: flex-start; }
.a33-success {
  max-width: 640px; margin: 20px auto 0; padding: 18px 22px; text-align: center;
  background: rgba(46, 160, 90, 0.16); border: 1px solid #2ea05a; border-radius: var(--theme-radius-md);
  color: #d6ffe4; font-weight: 600;
}

/* ---------- author-card (AUTH-07) ---------- */
.f60 { padding-block: var(--theme-sec-y); }
.f60-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.f60-card {
  display: flex; gap: var(--theme-spacing-lg); align-items: flex-start; max-width: 900px; margin-inline: auto;
  background: var(--theme-color-bg-card); border: 1px solid var(--theme-divider); border-radius: var(--theme-corner-lg); padding: 32px;
}
.f60-portrait { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--theme-accent-color); }
.f60-body { flex: 1; }
.f60-name { font-size: 30px; margin-bottom: 4px; }
.f60-role { color: var(--theme-accent-color); font-weight: 600; margin-bottom: 14px; }
.f60-bio { color: var(--theme-text-muted); }
.f60-expertise { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.f60-exp-item { background: var(--theme-card-bg); border: 1px solid var(--theme-divider); border-radius: 999px; padding: 6px 14px; font-size: 14px; color: var(--theme-text-muted); }
.f60-articles { max-width: 900px; margin: var(--theme-spacing-lg) auto 0; }
.f60-articles-heading { font-size: 24px; margin-bottom: 16px; }
.f60-articles-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.f60-articles-item { border-bottom: 1px solid var(--theme-divider); padding-bottom: 10px; }
.f60-articles-link { color: var(--theme-body-color); text-decoration: none; font-weight: 600; }
.f60-articles-link:hover { color: var(--theme-accent-color); }

/* ---------- author-byline (BYLINE-01) ---------- */
.q12 {
  max-width: var(--theme-readable-width); margin: var(--theme-sec-y) auto; padding: 22px var(--theme-edge-desktop);
  display: flex; align-items: center; gap: 18px;
  background: var(--theme-color-bg-card); border: 1px solid var(--theme-divider); border-radius: var(--theme-radius-md);
}
.q12-portrait { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--theme-accent-color); }
.q12-body { display: flex; flex-direction: column; }
.q12-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--theme-text-muted); }
.q12-name { font-family: var(--theme-font-heading); font-weight: 700; font-size: 18px; color: var(--theme-body-color); text-decoration: none; }
.q12-name:hover { color: var(--theme-accent-color); }
.q12-role { font-size: 14px; color: var(--theme-text-muted); }

/* ---------- legal (LEGAL-07) ---------- */
.m86 { padding-block: var(--theme-sec-y); }
.m86-col { max-width: var(--theme-readable-width); margin-inline: auto; padding-inline: var(--theme-edge-desktop); }
.m86-intro { font-size: 19px; color: var(--theme-body-color); margin-bottom: var(--theme-spacing-lg); }
.m86-section { margin-bottom: var(--theme-spacing-lg); }
.m86-heading { font-size: clamp(22px, 2.8vw, 28px); margin-bottom: 12px; }
.m86-text { color: var(--theme-text-muted); }
.m86-contacts { padding-left: 20px; color: var(--theme-text-muted); }
.m86-contact { margin-bottom: 8px; }
.m86-disclaimer { margin-top: var(--theme-spacing-lg); padding: 18px 20px; background: var(--theme-color-bg-card); border-left: 3px solid var(--theme-accent-color); border-radius: var(--theme-radius-sm); color: var(--theme-text-muted); font-size: 15px; }

/* ---------- error (ERR-02) ---------- */
.p15 { padding-block: 80px; }
.p15-inner { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop); text-align: center; }
.p15-code { display: block; font-family: var(--theme-font-heading); font-size: clamp(72px, 14vw, 140px); font-weight: 700; color: var(--theme-accent-color); line-height: 1; }
.p15-title { font-size: clamp(26px, 3.6vw, 40px); margin: 10px 0 14px; }
.p15-text { color: var(--theme-text-muted); max-width: 520px; margin: 0 auto 28px; font-size: 18px; }
.p15-actions { display: flex; justify-content: center; }

/* ---------- cookie (COOK-04) ---------- */
.u33 { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; padding: 16px; }
.u33-box {
  max-width: 1080px; margin-inline: auto; display: flex; align-items: center; gap: var(--theme-spacing-md);
  background: var(--theme-card-bg); border: 1px solid var(--theme-divider);
  border-radius: var(--theme-radius-md); box-shadow: var(--theme-shadow-card); padding: 18px 24px;
}
.u33-text { margin: 0; font-size: 15px; color: var(--theme-text-muted); flex: 1; }
.u33-actions { display: flex; gap: 10px; flex-shrink: 0; }
.u33-btn { padding: 10px 20px; border-radius: var(--theme-radius-sm); font-weight: 700; font-size: 14px; cursor: pointer; border: 1px solid transparent; }
.u33-btn--theme-accept { background: var(--theme-accent-color); color: #fff; }
.u33-btn--theme-accept:hover { background: var(--theme-accent-active); }
.u33-btn--theme-decline { background: transparent; color: var(--theme-body-color); border-color: var(--theme-divider); }
.u33-btn--theme-decline:hover { background: rgba(255, 255, 255, 0.08); }

/* ---------- footer (FOOT-03) ---------- */
.y02 { background: var(--theme-brand); border-top: 1px solid var(--theme-divider); padding-block: var(--theme-gutter-xl) var(--theme-spacing-lg); }
.y02-cols {
  max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin-inline: auto; padding-inline: var(--theme-edge-desktop);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--theme-gutter-xl);
}
.y02-col { min-width: 0; }
.y02-brand-col { max-width: 360px; }
.y02-logo-pill { display: inline-flex; background: #fff; padding: 6px 14px; border-radius: var(--theme-radius-md); margin-bottom: 16px; }
.y02-logo-img { height: 56px; width: auto; display: block; }
.y02-tagline { color: var(--theme-text-muted); font-size: 15px; }
.y02-rg { color: var(--theme-text-muted); font-size: 13px; margin: 0; }
.y02-heading { font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.y02-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.y02-link { color: var(--theme-text-muted); text-decoration: none; font-size: 15px; }
.y02-link:hover { color: var(--theme-accent-color); }
.y02-bottom { max-width: calc(var(--theme-content-width) + 2 * var(--theme-edge-desktop)); margin: var(--theme-spacing-lg) auto 0; padding: var(--theme-spacing-md) var(--theme-edge-desktop) 0; border-top: 1px solid var(--theme-divider); }
.y02-copy { margin: 0; color: var(--theme-text-muted); font-size: 14px; text-align: center; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .a22-nav, .a22-auth { display: none; }
  .a22-toggle { display: flex; }
  .a22-drawer {
    display: block; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--theme-brand); border-bottom: 1px solid var(--theme-divider);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease; z-index: 120;
  }
  .a22-drawer.is-open { max-height: 640px; }
  .z63-inner { grid-template-columns: 1fr; }
  .z63-media { order: -1; }
  .y02-cols { grid-template-columns: 1fr 1fr; }
  .y02-brand-col { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .a22-logo-img { height: 56px; }
  .z63-title { font-size: clamp(28px, 8vw, 40px); }
  .u48-grid, .n79-grid { grid-template-columns: 1fr; }
  .f60-card { flex-direction: column; align-items: center; text-align: center; }
  .f60-expertise { justify-content: center; }
  .y02-cols { grid-template-columns: 1fr; gap: var(--theme-spacing-lg); }
  .u33, .u33-box {
    padding: 12px 14px !important; gap: 8px !important; font-size: 13px !important; line-height: 1.35 !important;
  }
  .u33-box { flex-direction: column; align-items: stretch; }
  .u33-btn { padding: 8px 14px !important; font-size: 12px !important; min-height: 36px !important; }
  .w22-actions, .p15-actions, .z63-actions { flex-direction: column; }
  .a33-submit { align-self: stretch; }
}
