@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400&family=Playfair+Display:ital@1&display=swap');

/* ===== 变量 ===== */
:root {
  --mint: #5cc6b0;
  --sand: #d4c4a8;
  --forest: #172623;
  --sand-light: #ede5d4;
  --sand-mid: #c8b596;
  --forest-mid: #2a3d39;
  --forest-light: #3d5550;
  --text: #1a2420;
  --text-muted: #5a6b67;
  --bg: #f7f2e8;
  --bg-card: #fff9f0;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 12px rgba(23,38,35,0.08);
  --shadow-md: 0 4px 24px rgba(23,38,35,0.13);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s ease-out;
  --container: 1160px;
}

/* ===== 重置 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--mint); }

/* ===== 工具 ===== */
.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;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 站点包裹 ===== */
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest);
  box-shadow: 0 2px 16px rgba(23,38,35,0.18);
}
.brand-bar {
  background: var(--forest);
  border-bottom: 1px solid var(--forest-mid);
  padding: 14px 0 12px;
}
.brand-bar .container {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-name:hover { color: var(--mint); }
.brand-tagline {
  font-size: 0.8rem;
  color: var(--sand-mid);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-bar {
  background: var(--forest-mid);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  flex: 1;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 14px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sand);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  min-height: 48px;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--forest-light);
  color: var(--mint);
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0 8px 12px;
  flex-shrink: 0;
}
.nav-search input {
  background: var(--forest);
  border: 1px solid var(--forest-light);
  border-radius: var(--radius-sm);
  color: var(--sand);
  padding: 7px 12px;
  font-size: 0.82rem;
  width: 160px;
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}
.nav-search input::placeholder { color: var(--text-muted); }
.nav-search input:focus { border-color: var(--mint); }
.nav-search button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 8px;
  font-size: 1rem;
  min-height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-search button:hover { background: var(--forest-light); }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--mint);
  color: var(--forest);
  border-color: var(--mint);
}
.btn-primary:hover {
  background: #4db89f;
  border-color: #4db89f;
  color: var(--forest);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--sand);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--sand-mid);
}
.btn-ghost:hover {
  background: var(--sand-light);
  color: var(--forest);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; min-height: 36px; }

/* ===== Hero（首页） ===== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(92,198,176,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  padding-bottom: 72px;
  padding-top: 72px;
}
.hero-text {
  max-width: 620px;
  margin-left: auto;
  text-align: right;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.2;
  margin-bottom: 20px;
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--sand-mid);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.hero-cta .btn-outline {
  border-color: var(--sand-mid);
  color: var(--sand);
}
.hero-cta .btn-outline:hover {
  background: var(--sand);
  color: var(--forest);
}

/* ===== 内页 Hero ===== */
.inner-hero {
  background: var(--forest);
  padding: 52px 0 44px;
  position: relative;
}
.inner-hero--faq { background: linear-gradient(135deg, var(--forest) 70%, #1e3832 100%); }
.inner-hero--pricing { background: linear-gradient(135deg, var(--forest) 60%, #243b36 100%); }
.inner-hero--about { background: linear-gradient(135deg, var(--forest) 65%, #1a3530 100%); }
.inner-hero--contact { background: linear-gradient(135deg, var(--forest) 65%, #1f3832 100%); }
.inner-hero--policy { background: var(--forest-mid); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--sand-mid);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--sand-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb span { color: var(--text-muted); }
.inner-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.25;
  font-style: italic;
  margin-bottom: 12px;
}
.inner-sub {
  font-size: 1rem;
  color: var(--sand-mid);
  max-width: 560px;
}
.pub-date, .mod-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-block;
  margin-right: 16px;
}
.policy-updated {
  font-size: 0.82rem;
  color: var(--sand-mid);
  margin-top: 8px;
}

/* ===== 内容区布局 ===== */
.content-section {
  padding: 0 0 64px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  padding-top: 40px;
}
.content-main { min-width: 0; }

/* ===== figure / aside 直接在 article 里 ===== */
.content-section > figure,
.content-section > .about-figure,
.content-section > .contact-figure,
.content-section > .faq-figure,
.content-section > .policy-figure,
.content-section > .pricing-banner {
  display: block;
  width: 100%;
}

/* figure 装饰 */
.content-figure { margin-bottom: 0; }
.content-figure--text {
  height: 6px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--sand) 60%, transparent 100%);
  margin-bottom: 0;
}
.figure-accent { height: 100%; }

.about-figure {
  background: var(--sand-light);
  border-bottom: 3px solid var(--mint);
  padding: 20px 0;
}
.about-identity {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest);
}
.about-separator { color: var(--sand-mid); }
.about-desc { font-style: italic; }

.contact-figure {
  background: var(--forest);
  padding: 0;
}
.contact-info-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--sand-mid);
}
.contact-info-item a { color: var(--mint); }
.contact-icon { font-size: 1.1rem; }

.faq-figure {
  background: var(--sand-light);
  border-left: 4px solid var(--mint);
  margin: 32px 0 0;
}
.faq-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}
.faq-intro a { color: var(--mint); }

.policy-figure {
  background: var(--sand-light);
  border-left: 4px solid var(--mint);
  margin: 32px 0 0;
}
.policy-notice {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-banner {
  background: var(--forest);
  padding: 20px 0;
}
.pricing-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--forest-light);
  color: var(--sand);
  border: 1px solid var(--forest-mid);
}
.pricing-badge--gold { background: #4a3a20; color: #e8c97a; border-color: #6b5530; }
.pricing-badge--mint { background: rgba(92,198,176,0.15); color: var(--mint); border-color: var(--mint); }

/* ===== features-figure (home) ===== */
.features-figure { display: block; width: 100%; }
.features-section {
  background: var(--sand-light);
  padding: 0;
}
.features-section .features-figure { padding: 56px 0; }

/* ===== Prose ===== */
.prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--forest);
  margin: 2em 0 0.4em;
  font-style: italic;
}
.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-mid);
  margin: 1.5em 0 0.4em;
}
.prose p { margin-bottom: 1em; }
.prose ul, .prose ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--mint); font-weight: 500; }
.prose a:hover { color: var(--forest); }
.prose hr {
  border: none;
  border-top: 2px solid var(--sand);
  margin: 1.5em 0;
}
.prose strong { color: var(--forest); }
.prose blockquote {
  border-left: 3px solid var(--mint);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--sand-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-style: italic;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.9rem;
}
.prose th {
  background: var(--forest);
  color: var(--sand);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.prose td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--sand);
}
.prose tr:nth-child(even) td { background: var(--sand-light); }
.prose--policy { font-size: 0.92rem; }

/* h2/h3 后紧跟 hr */
.prose h2 + hr,
.prose h3 + hr {
  border-top-color: var(--mint);
  margin: 0.5em 0 1em;
}
h2 + hr, h3 + hr {
  border: none;
  border-top: 2px solid var(--mint);
  margin: 0.4em 0 1.2em;
}

/* ===== Aside（右侧栏） ===== */
.content-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aside-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.aside-box h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.aside-box h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.aside-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.aside-highlight {
  background: var(--forest);
  color: var(--sand);
}
.aside-highlight h2,
.aside-highlight h3 { color: var(--sand); }
.aside-highlight p { color: var(--sand-mid); }
.aside-highlight .btn-outline {
  border-color: var(--sand-mid);
  color: var(--sand);
}
.aside-highlight .btn-outline:hover {
  background: var(--sand);
  color: var(--forest);
}
.aside-cta { background: var(--sand-light); }
.aside-cta h3 { color: var(--forest); }
.aside-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
}
.aside-links dt {
  margin: 0;
  padding: 0;
}
.aside-links dt a {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1px solid var(--sand-light);
  transition: color var(--transition);
}
.aside-links dt a:hover { color: var(--mint); }
.aside-links dd {
  font-size: 0.76rem;
  color: var(--text-muted);
  padding: 0 0 6px;
  margin: 0;
}
.aside-text-link {
  font-size: 0.85rem;
  color: var(--mint);
  font-weight: 500;
}

/* ===== Section h2 装饰 ===== */
.section-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
  font-style: italic;
}

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.card h3 a {
  color: var(--forest);
  text-decoration: none;
}
.card h3 a:hover { color: var(--mint); }
.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.card-date {
  font-size: 0.76rem;
  color: var(--sand-mid);
}
.card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mint);
  text-decoration: none;
  align-self: flex-start;
}
.card-link:hover { color: var(--forest); }

/* ===== Steps ===== */
.steps-section { padding: 64px 0; background: var(--bg); }
.steps-figure { display: block; }
.steps-figure figcaption { margin-bottom: 0; }
.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 400;
  color: var(--mint);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 4px;
}
.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-body a { color: var(--mint); font-weight: 500; }

/* ===== Related (feature) ===== */
.related-section { background: var(--sand-light); padding: 0; }
.related-figure { display: block; padding: 48px 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.related-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--transition);
}
.related-card:hover { box-shadow: var(--shadow-md); }
.related-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mint);
  text-transform: none;
  letter-spacing: 0.04em;
}
.related-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
}
.related-link:hover { color: var(--mint); }

/* ===== About values ===== */
.about-values {
  margin-top: 40px;
  background: var(--sand-light);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.about-values h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  font-style: italic;
  margin-bottom: 4px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.value-item { text-align: center; }
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.value-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Contact form (in aside) ===== */
.contact-form-aside {
  margin-top: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.contact-form-aside h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  font-style: italic;
  margin-bottom: 4px;
}
.contact-form { margin-top: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
  line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--mint); }
.form-group textarea { resize: vertical; }

/* ===== Footer ===== */
.site-footer {
  background: var(--forest);
  color: var(--sand);
  padding: 36px 0 24px;
  text-align: center;
}
.footer-cta-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 0 24px;
}
.footer-cta-line .btn-outline {
  border-color: var(--sand-mid);
  color: var(--sand);
}
.footer-cta-line .btn-outline:hover {
  background: var(--sand);
  color: var(--forest);
}
.footer-cta-line .btn-ghost {
  border-color: var(--forest-light);
  color: var(--sand-mid);
}
.footer-cta-line .btn-ghost:hover {
  background: var(--forest-light);
  color: var(--sand);
}
.site-footer > p {
  font-size: 0.82rem;
  color: var(--sand-mid);
  padding: 0 24px;
  line-height: 2;
  margin-bottom: 10px;
}
.site-footer > p a {
  color: var(--sand-mid);
  text-decoration: none;
  margin: 0 2px;
}
.site-footer > p a:hover { color: var(--mint); }
.site-footer small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0 24px;
  margin-top: 4px;
}

/* ===== hr 装饰 ===== */
hr {
  border: none;
  border-top: 2px solid var(--sand);
  margin: 0.6em 0 1.2em;
}
.aside-box hr {
  border-top-color: var(--sand);
  margin: 8px 0 12px;
}
.aside-highlight hr { border-top-color: var(--forest-light); }

/* ===== Scroll Reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

/* ===== 移动端 ===== */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .content-aside {
    position: static;
  }
  .steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .brand-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .brand-tagline { display: none; }
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav a {
    font-size: 0.78rem;
    padding: 12px 10px;
    min-height: 44px;
  }
  .nav-search {
    padding: 8px 12px;
    border-top: 1px solid var(--forest-light);
  }
  .nav-search input { width: 100%; }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-cta { justify-content: flex-start; }
  .cards-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-info-bar { flex-direction: column; gap: 12px; }
  .pricing-banner-inner { gap: 8px; }
  .about-identity { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-cta-line { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .inner-hero { padding: 36px 0 28px; }
  .content-section { padding-bottom: 40px; }
  .steps-section { padding: 40px 0; }
}
