/* ============ CSS VARIABLES ============ */
:root {
  --bg: #FBF7F0;
  --bg-alt: #F5EDDF;
  --cream: #F8E6C4;
  --accent: #E87A4F;
  --accent-deep: #C85A2F;
  --berry: #D89B9B;
  --ink: #2B1F1A;
  --ink-muted: #4A3A32;
  --heading-font: 'Noto Sans TC', sans-serif;
  --body-font: 'Noto Sans TC', sans-serif;
  --radius: 20px;
}

/* ============ RESET ============ */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: var(--heading-font); margin: 0; letter-spacing: -0.02em; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}
.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--ink-muted);
}
.nav-links a { transition: color .2s; padding: 8px 4px; }
.nav-links a:hover { color: var(--ink); }
.nav-back {
  margin-left: auto;
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.nav-back:hover { color: var(--accent); }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px 12px 24px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  transition: transform .15s, background .2s;
}
.cta-btn:hover { background: var(--accent-deep); transform: translateY(-1px); }
.cta-btn .arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid; place-items: center;
  font-size: 13px;
}
@media (max-width: 840px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px 20px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 32px 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: var(--cream);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid; place-items: center;
  font-size: 12px;
}
.hero-title {
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-title .accent {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  left: 4%; right: 4%;
  bottom: -2px;
  height: 8px;
  background: var(--cream);
  opacity: .7;
  border-radius: 100px;
  z-index: -1;
}
.hero-sub {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 480px;
  text-wrap: pretty;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: white;
  padding: 14px 24px 14px 20px;
  border-radius: 16px;
  transition: transform .15s, background .2s;
}
.store-badge:hover { transform: translateY(-2px); background: #000; }
.store-badge i { font-size: 28px; }
.store-badge .label { font-size: 13px; opacity: .85; }
.store-badge .store { font-size: 18px; font-weight: 600; margin-top: -2px; }

.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meta-label {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
}
.hero-blob {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at 30% 30%, var(--cream), var(--bg-alt) 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-phone {
  position: relative;
  z-index: 2;
  width: 68%;
  filter: drop-shadow(0 30px 50px rgba(43, 31, 26, 0.18));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating chat bubbles */
.chat-bubble {
  position: absolute;
  background: white;
  padding: 10px 14px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(43, 31, 26, 0.08);
  font-size: 14px;
  font-weight: 500;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bubbleFloat 5s ease-in-out infinite;
}
.chat-bubble.b1 { top: 14%; left: -4%; animation-delay: 0s; }
.chat-bubble.b2 { top: 42%; right: -6%; animation-delay: 1.5s; background: var(--ink); color: white; }
.chat-bubble.b3 { bottom: 14%; left: 4%; animation-delay: 3s; background: var(--cream); }
.chat-bubble .flag {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; }
  .hero { padding: 30px 20px 50px; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.marquee-track .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ SECTION BASE ============ */
section.block {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 32px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.section-kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 900px;
  text-wrap: balance;
}
.section-sub {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 620px;
  text-wrap: pretty;
}

/* ============ TRANSLATION SHOWCASE ============ */
.translation-section {
  background: var(--bg-alt);
  padding: 100px 32px;
}
.translation-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.chat-mock {
  background: white;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(43, 31, 26, 0.1);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  margin-bottom: 20px;
}
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--berry));
  display: grid; place-items: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.chat-name { font-weight: 600; font-size: 17px; }
.chat-members { font-size: 14px; color: var(--ink-muted); margin-top: 2px; }
.chat-status {
  margin-left: auto;
  font-size: 13px;
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.chat-status .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5BB87A;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.msg-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-end;
}
.msg-row.mine { flex-direction: row-reverse; }
.msg-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
}
.msg-avatar.a2 { background: var(--berry); color: white; }
.msg-avatar.a3 { background: var(--ink); color: var(--cream); }
.msg-bubble {
  max-width: 78%;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 18px;
  border-top-left-radius: 4px;
  font-size: 16px;
  line-height: 1.6;
}
.msg-row.mine .msg-bubble {
  background: linear-gradient(135deg, var(--accent) 0%, #E88A62 100%);
  color: white;
  border-top-left-radius: 18px;
  border-top-right-radius: 4px;
}
.msg-translated {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed color-mix(in oklab, currentColor 25%, transparent);
  font-size: 14px;
  opacity: 0.82;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.msg-translated i { font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.msg-lang-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  background: color-mix(in oklab, currentColor 12%, transparent);
  margin-right: 6px;
  vertical-align: middle;
}

.typing {
  display: inline-flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: 18px;
  border-top-left-radius: 4px;
}
.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-muted);
  animation: typing 1.2s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.lang-chips {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lang-chip {
  padding: 8px 14px;
  background: var(--bg);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  transition: all .2s;
}
.lang-chip:hover { background: var(--cream); border-color: var(--accent); }
.lang-chip .code { font-weight: 700; color: var(--accent); margin-right: 4px; }

@media (max-width: 900px) {
  .translation-inner { grid-template-columns: 1fr; gap: 40px; }
  .translation-section { padding: 60px 20px; }
}

/* ============ FEATURES ============ */
.features-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.feature-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.feature-card:hover { transform: translateY(-4px); }
.fc-1 { grid-column: span 7; background: var(--cream); min-height: 380px; }
.fc-2 { grid-column: span 5; background: white; min-height: 380px; }
.fc-3 { grid-column: span 4; background: var(--ink); color: var(--bg); min-height: 320px; }
.fc-4 { grid-column: span 4; background: var(--berry); color: white; min-height: 320px; }
.fc-5 { grid-column: span 4; background: white; min-height: 320px; }

.f-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.fc-3 .f-icon, .fc-4 .f-icon { background: rgba(255,255,255,0.15); color: white; }
.f-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.f-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted);
  text-wrap: pretty;
}
.fc-3 .f-desc, .fc-4 .f-desc { color: rgba(255,255,255,0.78); }

.vitals-mock {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.vital-pill {
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vital-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: grid; place-items: center;
  color: var(--accent);
  font-size: 14px;
}
.vital-val { font-weight: 700; font-size: 17px; line-height: 1; }
.vital-name { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }

.member-stack {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.member-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--bg);
  border-radius: 12px;
}
.member-row .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
}
.member-row .info { flex: 1; }
.member-row .name { font-size: 16px; font-weight: 600; }
.member-row .lang { font-size: 13px; color: var(--ink-muted); }
.member-row .dot-online {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #5BB87A;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .fc-1, .fc-2, .fc-3, .fc-4, .fc-5 { grid-column: span 1; min-height: auto; }
}

/* ============ HOW IT WORKS ============ */
.how-section {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 32px;
}
.how-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.how-section .section-kicker { color: var(--cream); }
.how-section .section-kicker::before { background: var(--cream); }
.how-steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-num {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-num::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
}
.step:nth-child(3) .step-num { color: var(--berry); }
.step-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.step-desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(251, 247, 240, 0.82);
  text-wrap: pretty;
}
.step-visual {
  margin-top: 24px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
}
.step-visual.v1 { background: linear-gradient(135deg, rgba(232,122,79,0.18), rgba(245,217,168,0.06)); }
.step-visual.v2 { background: linear-gradient(135deg, rgba(58,168,196,0.18), rgba(232,122,79,0.06)); }
.step-visual.v3 { background: linear-gradient(135deg, rgba(216,155,155,0.18), rgba(58,168,196,0.06)); }


.bubble-flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 260px;
}
.bubble-flow .b {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  background: rgba(255,255,255,0.08);
  max-width: 80%;
}
.bubble-flow .b.mine {
  background: var(--accent);
  align-self: flex-end;
  color: white;
}
.bubble-flow .b small {
  display: block;
  font-size: 12px;
  opacity: 0.65;
  margin-top: 4px;
}

.heart-viz {
  display: flex;
  align-items: center;
  gap: 14px;
}
.heart-viz .big { font-size: 60px; color: var(--accent); }
.heart-viz .num { font-size: 36px; font-weight: 700; }
.heart-viz .unit { font-size: 14px; opacity: 0.6; }

@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-section { padding: 60px 20px; }
}

/* ============ TESTIMONIAL ============ */
.testimonials {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 32px;
}
.quote-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quote-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote-card.featured {
  background: var(--accent);
  color: white;
  border: none;
}
.quote-mark {
  font-family: 'Noto Serif TC', serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: -10px;
}
.quote-card.featured .quote-mark { color: var(--cream); }
.quote-text {
  font-size: 19px;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  flex: 1;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklab, currentColor 12%, transparent);
}
.quote-author .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: grid; place-items: center;
  font-weight: 600;
}
.quote-card.featured .quote-author .av { background: white; }
.quote-name { font-weight: 600; font-size: 16px; }
.quote-role { font-size: 14px; opacity: 0.75; margin-top: 2px; }

@media (max-width: 780px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}
.faq-item {
  border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
  padding: 32px 0;
}
.faq-item:last-child { border-bottom: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  gap: 20px;
}
.faq-toggle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid; place-items: center;
  transition: transform .3s, background .2s;
  font-size: 16px;
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-muted);
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 14px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  max-width: 1240px;
  margin: 0 auto 40px;
}
.final-cta-inner {
  margin: 0 32px;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-radius: 32px;
  padding: 80px 60px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 217, 175, 0.18);
  top: -150px; right: -100px;
}
.final-cta-inner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(216, 155, 155, 0.2);
  bottom: -120px; left: -80px;
}
.fc-content { position: relative; z-index: 1; }
.fc-title {
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 800px;
  margin: 0 auto;
  text-wrap: balance;
}
.fc-sub {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.92;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
  text-wrap: pretty;
}
.fc-stores {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.fc-stores .store-badge { background: white; color: var(--ink); }
.fc-stores .store-badge:hover { background: var(--ink); color: white; }

/* ============ FOOTER ============ */
footer.site-footer {
  padding: 60px 32px 40px;
  max-width: 1240px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
}
.footer-brand { max-width: 320px; }
.footer-tagline {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-muted);
}
.social-row {
  display: flex;
  gap: 12px;
}
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid; place-items: center;
  font-size: 15px;
  color: var(--ink);
  transition: background .2s;
}
.social-row a:hover { background: var(--accent); color: white; }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .final-cta-inner { padding: 50px 28px; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SUB-PAGE CONTENT ============ */
.page-hero {
  background: var(--bg-alt);
  padding: 48px 32px 40px;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.page-hero .meta {
  font-size: 14px;
  color: var(--ink-muted);
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.page-content h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.page-content p {
  margin: 0 0 1rem;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
}
.page-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.page-content ul li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}
.page-content ul li:last-child { border-bottom: none; }
.page-content ul li::before {
  content: "›";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.page-content a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}
.page-content a:hover { text-decoration: underline; }

.steps-card {
  background: var(--bg-alt);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 20px;
  padding: 28px 32px;
  margin: 1.5rem 0 2rem;
}
.steps-card .step-row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.steps-card .step-row:last-child { border-bottom: none; padding-bottom: 0; }
.steps-card .step-row:first-child { padding-top: 0; }
.step-badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.notice-box {
  background: #fff8f3;
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 1.5rem 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.notice-box strong { color: var(--ink); }

.sub-footer {
  padding: 32px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  text-align: center;
  background: var(--bg-alt);
}
.sub-footer-inner { max-width: 720px; margin: 0 auto; }
.sub-footer p {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.sub-footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.sub-footer-links a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color .2s;
}
.sub-footer-links a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .page-hero { padding: 36px 20px 28px; }
  .page-content { padding: 36px 20px 60px; }
  .steps-card { padding: 20px; }
  .sub-footer { padding: 24px 20px; }
}

/* ============ ACCESSIBILITY ============ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone { animation: none; }
  .chat-bubble { animation: none; }
  .marquee-track { animation-play-state: paused; }
  .typing span { animation: none; opacity: 0.6; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
