/* ─────────── index.html — landing page specific styles ─────────── */

/* ─────────── hero ─────────── */
section.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../logo.png") no-repeat 92% 50% / 320px auto,
    radial-gradient(900px 500px at 80% -10%, rgba(14,124,107,.08), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(232,93,76,.06), transparent 60%);
  opacity: .12;
  pointer-events: none;
}
.hero-inner { position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
}
h1.h-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 20px;
  max-width: 900px;
}
h1.h-display .accent { color: var(--brand); }
h1.h-display .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(184,84,80,.4);
  text-decoration-thickness: 4px;
  color: var(--australia);
}
.hero-sub {
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 640px;
  margin: 0 0 36px;
}

/* price tabs */
.tabs {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  transition: all .18s ease;
}
.tab:hover { color: var(--ink); }
.tab.active {
  background: var(--ink);
  color: white;
}

/* price comparison cards */
.price-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 760px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
}
.price-card.china {
  border-color: var(--brand);
  border-width: 2px;
  background: linear-gradient(180deg, #fff, #fbfdfc);
  box-shadow: 0 8px 24px rgba(14,124,107,.10);
}
.price-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.price-flag.china { color: var(--brand); }
.price-procedure {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 14px;
  min-height: 38px;
}
.price-amount {
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
}
.price-amount.strike {
  color: var(--australia);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}
.price-fee {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.price-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 13.5px;
  color: var(--ink-2);
}
.arrow {
  align-self: center;
  color: var(--muted);
  font-size: 26px;
  user-select: none;
}
.savings {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, #0a5d51 100%);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(14,124,107,.18);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0;
  text-decoration: none;
  transition: all .18s ease;
}
.btn-primary {
  background: var(--cta);
  color: white;
  box-shadow: 0 6px 18px rgba(232,93,76,.28);
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(232,93,76,.34);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--ink);
}
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.procedure-carousel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  max-width: 760px;
}
.carousel-arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .18s ease;
  line-height: 1;
  padding: 0;
}
.carousel-arrow:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.procedure-tabs-wrapper {
  flex: 1;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.procedure-tabs-wrapper::-webkit-scrollbar { display: none; }
.procedure-tabs {
  display: flex;
  gap: 8px;
  padding: 2px 0;
}
.proc-tab {
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0;
  transition: all .18s ease;
  white-space: nowrap;
}
.proc-tab:hover { color: var(--ink); border-color: var(--border-strong); }
.proc-tab.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.why-china-bullets {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12.5px;
  color: var(--brand-ink);
}
.why-china-bullets div {
  line-height: 1.45;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  color: var(--muted);
  font-size: 13.5px;
}
.reddit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s ease;
}
.reddit-badge:hover { color: var(--ink); }
.reddit-badge .star { color: #FF4500; }
.check { color: var(--brand); font-weight: 700; }

@media (max-width: 760px) {
  .price-cards {
    grid-template-columns: 1fr;
  }
  .arrow { transform: rotate(90deg); }
  section.hero { padding: 40px 0 56px; }
  .btn { width: 100%; justify-content: center; }
}

/* ─────────── shared section styles ─────────── */
section.block {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
section.block.alt { background: var(--surface-2); }
section.faq-section { background: #E8F4E0; }
section.why-china-section { background: #FFF3EB; }
.section-eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
h2.h-section {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0 0 18px;
  max-width: 760px;
}
.section-sub {
  color: var(--ink-2);
  max-width: 640px;
  font-size: 17px;
  margin: 0 0 48px;
}

@media (max-width: 720px) {
  section.block { padding: 60px 0; }
}

/* ─────────── how it works ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-ink);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}
.step-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  border-radius: var(--radius-md);
  font-size: 18px;
  flex-shrink: 0;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.step h3 {
  font-size: 17px;
  margin: 0;
  letter-spacing: -.01em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 920px) { .steps, .steps-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps, .steps-3 { grid-template-columns: 1fr; } }
.steps-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─────────── coordinators ─────────── */
.coordinators {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.coordinator-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.coordinator-card h3 {
  font-size: 16px;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}
.coordinator-role {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.coordinator-quote {
  color: var(--ink-2);
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}

.promises {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.promises h4 {
  margin: 0 0 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.promise {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--ink-2);
}
.promise:first-of-type { border-top: 0; padding-top: 0; }
.promise-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 820px) { .coordinators { grid-template-columns: 1fr; } }

/* ─────────── pricing ─────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 10px 30px rgba(14,124,107,.12);
}
.plan.featured::before {
  content: "★ Most popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brand);
  margin: 0 0 8px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.plan-price .amount {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.plan-price .currency {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}
.plan-tagline {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.feat-check {
  flex-shrink: 0;
  color: var(--brand);
  font-weight: 700;
  margin-top: 1px;
}
.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .18s ease;
}
.plan-cta:hover { background: var(--brand-ink); }
.plan.featured .plan-cta { background: var(--cta); }
.plan.featured .plan-cta:hover { background: var(--cta-hover); }

.pricing-note {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
}
.pricing-note h4 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.pricing-note p {
  margin: 0 0 8px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.pricing-note ul {
  margin: 12px 0 0;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.pricing-note ul li { padding: 3px 0; }
.pricing-note-text {
  margin-top: 18px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan.featured { order: -1; }
}

/* ─────────── stories ─────────── */
.reddit-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 36px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.reddit-feature::before {
  content: "";
  position: absolute;
  left: 0; top: 32px; bottom: 32px;
  width: 4px;
  background: #FF4500;
  border-radius: 0 4px 4px 0;
}
.reddit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.reddit-icon {
  width: 24px; height: 24px;
  background: #FF4500;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
}
.reddit-feature blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.reddit-stats {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
}
.reddit-stats a {
  margin-left: auto;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}
.reddit-stats a:hover { text-decoration: underline; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.testimonial blockquote {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.testimonial-attr {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.small-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  color: white;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.small-avatar.r { background: linear-gradient(135deg, #B85450, #DB7B6F); }
.small-avatar.l { background: linear-gradient(135deg, #4A6FA5, #6E92C7); }
.small-avatar.k { background: linear-gradient(135deg, #5C8C50, #7CAF6F); }
.testimonial-name {
  font-weight: 600;
  font-size: 14.5px;
  margin: 0;
}
.testimonial-role {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.procedure-tag {
  display: inline-block;
  background: var(--surface-2);
  color: var(--ink-2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.placeholder-note {
  display: block;
  margin-top: 10px;
  font-size: 10.5px;
  color: #B8B0A0;
  font-style: italic;
  opacity: .65;
}

@media (max-width: 820px) { .testimonials { grid-template-columns: 1fr; } }

/* ─────────── FAQ ─────────── */
.faqs { max-width: 780px; }
details.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: border-color .15s ease;
}
details.faq[open] { border-color: var(--brand); }
details.faq summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--muted);
  font-weight: 400;
  transition: transform .2s ease;
  margin-left: 16px;
}
details.faq[open] summary::after { content: "−"; }
.faq-body {
  padding: 0 22px 22px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq-body strong { color: var(--ink); }
.faq-body ul { padding-left: 18px; margin: 10px 0; }

/* ─────────── final CTA ─────────── */
section.final-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--ink);
  color: white;
}
section.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}
section.final-cta h2 .accent { color: #FFB088; }
section.final-cta p {
  color: rgba(255,255,255,.75);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
section.final-cta .btn-primary {
  margin-bottom: 16px;
}
.final-meta {
  color: rgba(255,255,255,.55);
  font-size: 14px;
}

/* ─────────── floating WhatsApp ─────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* live activity badge — small social proof element */
.live-activity {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 99;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  animation: slideUp .5s ease;
  transition: opacity .3s ease;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,.5);
  animation: pulse 1.6s infinite;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
@media (max-width: 720px) {
  .live-activity { display: none; }
}

/* ─────────── enquiry form ─────────── */
.enquiry-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.form-group label .req {
  color: #FFB088;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  color: white;
  font: inherit;
  font-size: 15px;
  transition: border-color .18s ease, background .18s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FFB088;
  background: rgba(255,255,255,.12);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.5)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group select option {
  color: var(--ink);
  background: white;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  padding: 16px 32px;
  margin: 8px auto 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0;
  cursor: pointer;
  background: #FFB088;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(255,176,136,.35);
  transition: all .18s ease;
}
.btn-submit:hover {
  background: #FFD0B0;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255,176,136,.45);
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─────────── form submit states ─────────── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
