/*! Flexepin CSS v2026-07-05-15:30 (hidden-attr + cache-buster) */

/* =========================================================
   Flexepin Landing - Premium Stylesheet
   ========================================================= */

/* ---- Design tokens ---- */
:root {
  --color-bg:          #ffffff;
  --color-bg-soft:     #f5f7fb;
  --color-bg-tint:     #eef2f9;
  --color-ink:         #1a1f3a;
  --color-ink-soft:    #4a4f6a;
  --color-muted:       #6b7280;
  --color-line:        #e5e8f0;
  --color-line-soft:   #eef0f6;
  --color-primary:     #C53030;
  --color-primary-dark:#9b2424;
  --color-primary-soft:#fdecec;
  --color-accent:      #ff5252;
  --color-success:     #16a34a;
  --color-warning:     #f59e0b;
  --shadow-sm: 0 1px 2px rgba(26,31,58,0.05);
  --shadow-md: 0 8px 24px rgba(26,31,58,0.08);
  --shadow-lg: 0 24px 60px rgba(26,31,58,0.12);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; color: var(--color-ink); }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--color-ink-soft); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--color-ink); color: #fff;
  padding: 10px 16px; z-index: 100; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
main { display: block; }
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.soft  { background: var(--color-bg-soft); }
section.tint  { background: var(--color-bg-tint); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  text-decoration: none; line-height: 1.2;
}
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-primary-dark); text-decoration: none; transform: translateY(-1px); }
.btn-ghost   { background: transparent; color: var(--color-ink); border-color: var(--color-line); }
.btn-ghost:hover { background: var(--color-bg-soft); text-decoration: none; }
.btn-light   { background: #fff; color: var(--color-primary); }
.btn-light:hover { background: var(--color-bg-soft); text-decoration: none; }
.btn-block   { width: 100%; }
.btn-lg      { padding: 16px 28px; font-size: 1rem; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--color-line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 72px;
}
.brand img { display: block; height: 42px; width: auto; }
.site-nav ul { display: flex; gap: 26px; }
.site-nav a {
  color: var(--color-ink); font-weight: 500; font-size: 0.95rem;
  padding: 8px 0; position: relative; text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--color-primary); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--color-primary); border-radius: 2px;
}
.has-sub { position: relative; }
.has-sub > a { display: inline-flex; align-items: center; gap: 4px; }
.has-sub > a > span { font-size: 0.7em; margin-left: 4px; transition: transform .2s; }
.has-sub.is-open > a > span { transform: rotate(180deg); }
/* Default state: hidden via the [hidden] HTML attribute. JS removes it on open. */
.sub-menu {
  position: absolute; top: calc(100% + 6px); left: -16px; min-width: 220px; padding: 10px;
  background: #fff; border: 1px solid var(--color-line); border-radius: 12px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 2px;
  list-style: none; margin: 0;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .15s, transform .15s;
}
.has-sub.is-open > .sub-menu {
  opacity: 1; transform: translateY(0);
}
.sub-menu li a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 0.92rem; color: var(--color-ink); }
.sub-menu li a:hover { background: var(--color-bg-soft); text-decoration: none; }

.nav-cta { display: flex; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--color-line);
  border-radius: 8px; padding: 10px; flex-direction: column; gap: 4px;
}
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--color-ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative; padding: 96px 0 80px; overflow: hidden;
  background:
    radial-gradient(900px 600px at 110% -10%, rgba(197,48,48,0.06), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(26,31,58,0.05), transparent 60%),
    #fff;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-primary-soft); color: var(--color-primary);
  padding: 6px 14px; border-radius: 999px; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--color-primary); border-radius: 50%; }
.hero h1 .accent { color: var(--color-primary); display: block; }
.hero p.lead { font-size: 1.1rem; max-width: 520px; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 22px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--color-ink-soft); }
.hero-meta-item svg { color: var(--color-primary); }
.hero-art {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #1a1f3a, #252a4a);
  box-shadow: var(--shadow-lg);
}
.hero-art::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(197,48,48,0.4), transparent 50%);
  z-index: 1;
}
.hero-art img, .hero-art svg.illustration { position: relative; z-index: 2; display: block; width: 100%; height: auto; }
.hero-art .float-chip {
  position: absolute; z-index: 3; background: #fff; border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; gap: 12px; align-items: center;
  font-weight: 600; font-size: 0.9rem;
}
.hero-art .float-chip.top    { top: 24px; right: 24px; }
.hero-art .float-chip.bottom { bottom: 24px; left: 24px; }
.hero-art .float-chip svg { color: var(--color-primary); }

/* ---- Section heading ---- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* ---- Features ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-soft); color: var(--color-primary); margin-bottom: 18px;
}
.feature-card.highlight { background: linear-gradient(160deg, #1a1f3a, #252a4a); color: #fff; border-color: transparent; }
.feature-card.highlight h3, .feature-card.highlight p { color: #fff; }
.feature-card.highlight .icon { background: rgba(197,48,48,0.2); color: #ff7575; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 0.95rem; }

/* ---- Steps ---- */
.steps-wrap { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative; text-align: center; padding: 20px 14px; border-radius: 14px;
}
.step .num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--color-primary-soft); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 800;
  position: relative;
}
.step .num .badge {
  position: absolute; top: -6px; right: -6px; background: var(--color-primary); color: #fff;
  width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.88rem; margin: 0; }
.steps-wrap h2 { text-align: center; margin-bottom: 8px; }
.steps-wrap .subtitle { text-align: center; color: var(--color-muted); margin-bottom: 32px; }

/* ---- Information section ---- */
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.info-grid ul { display: grid; gap: 10px; margin: 18px 0; }
.info-grid li {
  display: flex; gap: 10px; align-items: flex-start; padding-left: 4px;
  color: var(--color-ink-soft); font-size: 0.96rem;
}
.info-grid li::before {
  content: "✓"; color: var(--color-primary); font-weight: 800; flex-shrink: 0; width: 20px; height: 20px;
  background: var(--color-primary-soft); border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: 0.7rem; margin-top: 3px;
}
.info-art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ---- Testimonial spotlight ---- */
.spotlight {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #7a0e0e, #4a0606); color: #fff; padding: 60px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center;
}
.spotlight::before {
  content: ""; position: absolute; inset: 0; opacity: 0.15;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
}
.spotlight .logo-row { margin-bottom: 28px; opacity: 0.85; position: relative; }
.spotlight .logo-row .lg {
  font-family: var(--font-sans); font-weight: 800; font-size: 28px; color: #fff; letter-spacing: -0.5px;
}
.spotlight .logo-row .lg .dot { color: var(--color-primary); }
.spotlight blockquote {
  position: relative; margin: 0; font-size: 1.4rem; font-weight: 600; line-height: 1.4;
}
.spotlight cite { display: block; margin-top: 18px; font-style: normal; font-size: 0.9rem; }
.spotlight cite strong { display: block; color: #fff; font-weight: 700; }
.spotlight cite span { color: rgba(255,255,255,0.7); }
.spotlight-art { position: relative; }
.spotlight-art .art {
  position: relative; z-index: 2; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 5/3;
}
.spotlight-art .art svg, .spotlight-art .art img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-art .quote-mark {
  position: absolute; top: -20px; left: -20px; font-family: Georgia, serif;
  font-size: 200px; color: rgba(255,255,255,0.15); line-height: 1; z-index: 1;
}

/* ---- Testimonial grid ---- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.testi-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 22px; }
.testi-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.testi-card .head img { width: 40px; height: 40px; border-radius: 50%; }
.testi-card .head .meta strong { display: block; color: var(--color-ink); font-size: 0.95rem; }
.testi-card .head .meta span { color: var(--color-muted); font-size: 0.82rem; }
.testi-card p { font-size: 0.92rem; color: var(--color-ink-soft); margin: 0; font-style: italic; }
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 6px; letter-spacing: 2px; }

/* ---- Merchant verification ---- */
.merchant { background: var(--color-bg-soft); }
.merchant-form {
  display: flex; gap: 10px; max-width: 580px; margin: 0 auto;
  background: #fff; padding: 8px; border-radius: 14px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}
.merchant-form input {
  flex: 1; border: none; outline: none; padding: 14px 16px; font-size: 1rem; background: transparent;
  color: var(--color-ink);
}
.merchant-form input::placeholder { color: var(--color-muted); }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--color-line); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  list-style: none; padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; font-weight: 600; color: var(--color-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 12px; height: 12px; border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary); transform: rotate(45deg); transition: transform .2s;
  margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .answer { padding: 0 22px 20px; color: var(--color-ink-soft); font-size: 0.95rem; }
.faq-item .answer p { margin: 0; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a1f3a 0%, #252a4a 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 48px;
  display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(197,48,48,0.3), transparent 60%);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 0; position: relative; }

/* ---- Page header (sub-pages) ---- */
.page-header { padding: 70px 0 50px; background: var(--color-bg-soft); border-bottom: 1px solid var(--color-line); }
.page-header h1 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 14px; }
.page-header p { font-size: 1.05rem; max-width: 720px; margin: 0; }
.breadcrumb { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span[aria-hidden] { margin: 0 8px; }

/* ---- Form ---- */
.form-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--color-ink); }
.field label .req { color: var(--color-primary); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid var(--color-line);
  border-radius: 10px; background: #fff; color: var(--color-ink); transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(197,48,48,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 0.82rem; color: var(--color-muted); }
.captcha {
  display: flex; align-items: center; gap: 14px; padding: 14px;
  background: var(--color-bg-soft); border: 1px solid var(--color-line); border-radius: 10px;
}
.captcha input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--color-primary); }
.captcha .label { font-size: 0.9rem; color: var(--color-ink); }
.form-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 16px; }
.form-status { padding: 14px 18px; border-radius: 10px; font-weight: 500; margin-bottom: 18px; }
.form-status.ok    { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-status.error { background: var(--color-primary-soft); color: var(--color-primary); border: 1px solid #f5b6b6; }

/* ---- Get flexepin / Use flexepin content cards ---- */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.content-grid.reverse > :first-child { order: 2; }
.card-soft { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; }
.tag-list li { background: var(--color-bg-soft); border: 1px solid var(--color-line); padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; color: var(--color-ink-soft); font-weight: 500; }

/* ---- Footer ---- */
.site-footer { background: #0f1226; color: rgba(255,255,255,0.85); padding: 64px 0 24px; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 42px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.social-list { display: flex; gap: 10px; margin-top: 16px; }
.social-list a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06);
  transition: background .2s, transform .15s;
}
.social-list a:hover { background: var(--color-primary); transform: translateY(-2px); }
.social-list img { filter: brightness(0) invert(1); }
.footer-col h2 { color: #fff; font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; }
.footer-newsletter p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-newsletter form { display: flex; gap: 8px; margin-top: 12px; }
.footer-newsletter input {
  flex: 1; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: #fff;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter input:focus { outline: none; border-color: var(--color-primary); }
.legal-mini { color: rgba(255,255,255,0.5); font-size: 0.78rem; margin-top: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

/* ---- Floating chat bubble ---- */
.chat-bubble {
  position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-primary); border: none; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 60; transition: transform .2s, background .2s;
}
.chat-bubble:hover { background: var(--color-primary-dark); transform: translateY(-2px); }

/* ---- Misc ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tag-pill {
  display: inline-block; padding: 4px 10px; background: var(--color-primary-soft); color: var(--color-primary);
  border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid, .info-grid, .content-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse > :first-child { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--color-line); padding: 16px 24px; display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 6px; }
  .sub-menu { position: static; box-shadow: none; border: none; padding: 4px 0 0 12px; min-width: 0; transform: none; }
  .nav-cta { display: none; }
  .nav-cta.is-open { display: flex; padding: 12px 24px 16px; border-bottom: 1px solid var(--color-line); }
  .footer-top { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; padding: 36px; }
  .cta-banner { padding: 32px; }
  .form-card { padding: 24px; }
  .steps-wrap { padding: 24px; }
  .hero { padding: 60px 0 40px; }
  .hero-art .float-chip { padding: 10px 12px; font-size: 0.8rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 16px; }
  .merchant-form { flex-direction: column; }
  .spotlight blockquote { font-size: 1.1rem; }
  .spotlight { padding: 28px 22px; }
}
