/* AIM Websites – Champagne Chic Light Theme (Light Mode Only - Forced) */
:root {
  color-scheme: light only;
  -webkit-color-scheme: light;
  --bg: #FAFAF8;
  --bg-deep: #FFFFFF;
  --text: #2D2D2D;
  --muted: #7A7A7A;
  --accent: #C9A961;
  --accent-warm: #E8B4A8;
  --border: rgba(201, 169, 97, 0.15);
  --card: #FFFFFF;
  --shadow: 0 20px 45px rgba(0,0,0,0.08);
  --shadow-sm: 0 8px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 40px 80px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-full: 9999px;
  --touch-target: 48px;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(14px, 2vw, 16px);
  background: #FAFAF8 !important;
  color: #2D2D2D !important;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.7;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, #FAFAF8 0%, #F3EFE8 100%) !important;
  color: #2D2D2D !important;
  padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; padding-left: max(1.25rem, env(safe-area-inset-left)); padding-right: max(1.25rem, env(safe-area-inset-right)); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.75) 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; }
.logo { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; }
.logo-aim { letter-spacing: 0.18em; font-weight: 700; color: var(--text); }
.logo-websites { letter-spacing: 0.2em; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 1rem; }
.main-nav a { color: var(--text); text-decoration: none; opacity: 0.9; }
.main-nav a:hover { opacity: 1; }

.hamburger { display: none; border: 1px solid var(--border); background: transparent; color: var(--text); padding: 0.4rem 0.6rem; border-radius: var(--radius-full); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.7rem 1rem; border-radius: var(--radius-full); border: 1px solid transparent; text-decoration: none; font-weight: 600; transition: all 200ms ease; min-height: 48px; }
.primary-btn { background: linear-gradient(180deg, #C9A961, #B8860B); color: #FFFFFF; box-shadow: 0 12px 32px rgba(201, 169, 97, 0.3); }
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(201, 169, 97, 0.4); }
.ghost-btn { background: rgba(201, 169, 97, 0.08); color: var(--text); border: 1px solid var(--border); transition: all 200ms ease; }
.ghost-btn:hover { background: rgba(201, 169, 97, 0.15); border-color: rgba(201, 169, 97, 0.3); }
.nav-btn { padding: 0.55rem 0.9rem; font-size: 0.95rem; }

/* Hero */
.hero { padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 4rem); }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.hero-title { font-size: clamp(1.8rem, 5vw, 3.2rem); line-height: 1.25; margin: 0.5rem 0 1.5rem; font-weight: 700; letter-spacing: -0.015em; }
.eyebrow { letter-spacing: 0.15em; color: var(--accent); font-size: clamp(0.75rem, 3vw, 0.85rem); font-weight: 600; text-transform: uppercase; margin-bottom: 1rem; }
.hero-sub { color: var(--muted); max-width: 65ch; font-size: clamp(1rem, 2.5vw, 1.05rem); line-height: 1.8; margin-bottom: 1.5rem; }
.hero-anchor { color: var(--accent); font-weight: 700; font-size: clamp(0.95rem, 2vw, 1.1rem); line-height: 1.5; margin-bottom: 1.5rem; max-width: 65ch; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-actions .btn { min-width: 140px; }
.hero-footnotes { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; color: var(--muted); }
.hero-footnotes span { font-size: clamp(0.85rem, 2.5vw, 0.95rem); font-weight: 500; }
.hero-footnotes .wa-link { color: var(--text); text-decoration: none; font-weight: 600; opacity: 0.85; }
.proof-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.proof-pill { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(34,197,94,0.12); color: #166534; border: 1px solid rgba(34,197,94,0.2); border-radius: 999px; padding: 0.35rem 0.75rem; font-weight: 700; box-shadow: var(--shadow-sm); font-size: 0.88rem; }

/* Outcome / Why */
.outcome { padding: clamp(1.25rem, 5vw, 1.75rem) 0; }
.outcome-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 4vw, 1.5rem); }
.outcome-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1rem, 4vw, 1.4rem); box-shadow: var(--shadow-sm); display: grid; gap: 0.8rem; }
.outcome-rows { display: grid; gap: 0.8rem; }
.outcome-row { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; background: rgba(201, 169, 97, 0.06); border: 1px solid var(--border); border-radius: 12px; padding: 0.6rem 0.75rem; }
.pill { display: inline-flex; align-items: center; justify-content: center; padding: 0.3rem 0.7rem; border-radius: 999px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.01em; }
.pill-bad { background: rgba(239, 68, 68, 0.12); color: #991b1b; border: 1px solid rgba(239, 68, 68, 0.25); }
.pill-good { background: rgba(34, 197, 94, 0.12); color: #166534; border: 1px solid rgba(34, 197, 94, 0.25); }
.why-list { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.35rem; color: var(--muted); }

.hero-preview .browser-card { background: linear-gradient(180deg, #FAFAF8, #F3EFE8); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.browser-top { display: flex; align-items: center; gap: 8px; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--border); background: rgba(201, 169, 97, 0.05); }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ef4444; }
.dot.amber { background: #f59e0b; }
.dot.green { background: #22c55e; }
.url-badge { margin-left: auto; font-size: 0.8rem; color: var(--muted); background: rgba(148,163,184,0.08); border: 1px solid var(--border); padding: 0.25rem 0.5rem; border-radius: var(--radius-full); }
.browser-iframe { width: 100%; height: 400px; background: #fff; overflow: hidden; }
.browser-iframe iframe { width: 100%; height: 100%; border: none; }
.preview-left h3 { margin: 0; font-size: 1.05rem; }
.preview-left .muted { color: var(--muted); margin-top: 0.25rem; }
.mini-bullets { margin: 0.75rem 0 0; padding-left: 1rem; color: var(--muted); }

.preview-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.product-mini { background: rgba(2,6,23,0.6); border: 1px solid var(--border); border-radius: 12px; padding: 0.6rem; display: flex; flex-direction: column; gap: 0.4rem; }
.product-mini .tag { font-size: 0.75rem; color: var(--muted); }
.product-mini .name { font-weight: 600; }
.product-mini .mini-btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.4rem 0.6rem; font-size: 0.8rem; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.35); color: var(--text); border-radius: 9999px; text-decoration: none; }
.muted-card { opacity: 0.7; align-items: center; justify-content: center; }
.preview-caption { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; text-align: center; }

/* Who it's for */
.who-for { padding: clamp(1.5rem, 6vw, 2rem) 0; }
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 4vw, 1.5rem); }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.25rem, 5vw, 2rem); box-shadow: var(--shadow-sm); transition: all 300ms ease; }
.info-card:hover { border-color: rgba(201, 169, 97, 0.3); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-title { margin: 0 0 0.5rem; font-size: 1.05rem; }

/* Section head */
.section-head { margin-bottom: 1rem; }
.section-title { margin: 0 0 0.25rem; font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
.section-sub { color: var(--muted); }

/* Portfolio */
.portfolio { padding: clamp(1.5rem, 6vw, 2rem) 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 4vw, 1.5rem); }
.portfolio-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: all 300ms ease; }
.portfolio-card:hover { border-color: rgba(201, 169, 97, 0.3); box-shadow: var(--shadow); transform: translateY(-4px); }
.card-thumb { height: clamp(90px, 25vw, 140px); background: linear-gradient(135deg, #E8D5C4, #D9C4AF); border-bottom: 1px solid var(--border); background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: local; }
.card-thumb.alt { background: linear-gradient(135deg, #E0D2C8, #D4C4B4); }
.card-thumb.alt2 { background: linear-gradient(135deg, #EBD9CC, #DCC9B8); }
.thumb-fs-bronze { background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)), url('portfolio/fs-bronze.png'); }
.thumb-kingsmen { background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)), url('portfolio/kingsmen-silver.png'); }
.thumb-fs-silver { background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18)), url('portfolio/fs-silver.png'); }
.card-body { padding: clamp(0.75rem, 3vw, 1rem); display: flex; flex-direction: column; gap: 0.6rem; }
.card-sub { color: var(--muted); }
.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag-pill { font-size: 0.75rem; color: var(--text); border: 1px solid var(--border); background: rgba(201, 169, 97, 0.1); padding: 0.2rem 0.5rem; border-radius: 9999px; }
.tag-pill.warm { border-color: rgba(232, 180, 168, 0.5); color: #8B5A3C; background: rgba(232, 180, 168, 0.15); }

/* Pricing */
.pricing { padding: clamp(1.5rem, 6vw, 2rem) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1rem, 4vw, 1.5rem); align-items: start; }
.pricing-card { position: relative; background: linear-gradient(180deg, #FFFFFF, #FBF9F6); border: 1px solid var(--border); border-radius: 14px; padding: clamp(1rem, 4vw, 1.4rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.65rem; transition: all 300ms ease; }
.pricing-card:hover { border-color: rgba(201, 169, 97, 0.3); box-shadow: var(--shadow); }
.tier-label { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.tier-name { margin: 0.15rem 0; }
.tier-tagline { color: var(--muted); }
.price { font-size: 1.6rem; font-weight: 700; }
.onetime { font-size: 0.9rem; color: var(--muted); font-weight: 500; margin-left: 6px; }
.features { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.note { color: var(--muted); font-size: 0.95rem; }
.note.warm { color: #C9A961; }

.tier-silver { transform: translateY(-8px); border-color: rgba(201, 169, 97, 0.4); box-shadow: 0 18px 38px rgba(201, 169, 97, 0.12), var(--shadow-sm); }
.tier-badge { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #FFFFFF; font-weight: 700; font-size: 0.75rem; padding: 0.25rem 0.6rem; border-radius: 9999px; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 8px 18px rgba(201, 169, 97, 0.25); }
.pricing-grid > .pricing-card:first-child { transform: scale(0.96); opacity: 0.92; }
.pricing-grid > .tier-gold { border-color: rgba(201, 169, 97, 0.35); box-shadow: 0 20px 50px rgba(201, 169, 97, 0.15), var(--shadow-sm); }

.pricing-footnote { text-align: center; color: var(--muted); margin-top: 1rem; }
.pricing-toggle { display: inline-flex; gap: 0.35rem; margin-bottom: 0.75rem; background: rgba(201, 169, 97, 0.08); padding: 0.25rem; border-radius: 999px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.toggle-btn { border: none; background: transparent; padding: 0.45rem 0.9rem; border-radius: 999px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all 150ms ease; }
.toggle-btn.is-active { background: #fff; color: var(--text); box-shadow: 0 8px 20px rgba(0,0,0,0.06); border: 1px solid rgba(201, 169, 97, 0.35); }
.toggle-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.pricing-compare { margin-top: 1.5rem; background: rgba(201, 169, 97, 0.06); border: 1px solid var(--border); border-radius: 14px; padding: 1rem; box-shadow: var(--shadow-sm); }
.compare-head { font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.compare-grid { display: grid; gap: 0.4rem; overflow-x: auto; padding-bottom: 0.35rem; }
.compare-row { display: grid; grid-template-columns: repeat(8, minmax(90px, 1fr)); gap: 0.5rem; padding: 0.35rem 0.4rem; border-radius: 10px; align-items: center; background: rgba(255,255,255,0.6); border: 1px solid rgba(201, 169, 97, 0.12); min-width: 760px; }
.compare-header { background: rgba(201, 169, 97, 0.12); font-weight: 700; color: var(--text); border-color: rgba(201, 169, 97, 0.25); }
.compare-row div { font-size: 0.92rem; color: var(--muted); }
.compare-row div:first-child { font-weight: 700; color: var(--text); }
.pricing-guarantee { margin-top: 1rem; text-align: center; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #166534; padding: 0.85rem 1rem; border-radius: 12px; font-size: 0.95rem; box-shadow: var(--shadow-sm); }
.compare-note { margin-top: 0.4rem; color: var(--muted); font-size: 0.92rem; text-align: center; }

@media (max-width: 720px) {
  .compare-grid { overflow: visible; }
  .compare-header { display: none; }
  .compare-row { min-width: 0; grid-template-columns: 1fr; padding: 0.6rem 0.65rem; }
  .compare-row div { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; border-bottom: 1px dashed var(--border); padding: 0.2rem 0; font-size: 0.95rem; }
  .compare-row div:last-child { border-bottom: none; }
  .compare-row div::before { content: attr(data-label); font-weight: 700; color: var(--text); opacity: 0.85; }
  .compare-row div:first-child { font-weight: 700; color: var(--text); opacity: 1; border-bottom: 1px solid rgba(201, 169, 97, 0.2); padding-bottom: 0.35rem; margin-bottom: 0.15rem; }
  .compare-row div:first-child::before { content: 'Package'; }
}

/* Deal styling */
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.75;
  font-size: 0.95rem;
  font-weight: 500;
}

.tier-price .amount {
  font-size: 2.1rem;
  font-weight: 700;
}

.tier-price .once {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-left: 0.15rem;
}

.discount-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Optional: make Silver’s discount feel louder */
.tier-silver .old-price {
  opacity: 0.9;
}

.tier-silver .discount-note {
  color: #22c55e;
  font-weight: 500;
}

/* Subtle glow for Silver amount */
.tier-silver .tier-price .amount {
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.25);
}

@media (min-width: 900px) {
  .old-price { font-size: 1rem; }
}

/* Process */
.process { padding: clamp(1.5rem, 6vw, 2rem) 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 4vw, 1.5rem); }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1rem, 4vw, 1.5rem); box-shadow: var(--shadow-sm); transition: all 300ms ease; }
.step-card:hover { border-color: rgba(201, 169, 97, 0.3); box-shadow: var(--shadow); transform: translateY(-2px); }

/* FAQ */
.faq { padding: clamp(1.5rem, 6vw, 2rem) 0; }
.faq-list { display: grid; grid-template-columns: 1fr; gap: clamp(0.5rem, 2vw, 0.6rem); }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: clamp(0.8rem, 3vw, 1rem); transition: all 200ms ease; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: clamp(0.95rem, 3vw, 1rem); }
.faq-item p { color: var(--muted); font-size: clamp(0.9rem, 2.5vw, 0.95rem); }

/* Contact */
.contact { padding: clamp(1.5rem, 6vw, 2rem) 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.contact-points { color: var(--muted); font-size: clamp(0.9rem, 2.5vw, 0.95rem); }
.contact-hint { color: var(--muted); font-size: 0.9rem; margin-top: 0.6rem; }
.contact-right { background: linear-gradient(180deg, #FFFFFF, #FBF9F6); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.25rem, 5vw, 1.5rem); box-shadow: var(--shadow-sm); }
.contact-form { display: grid; gap: clamp(0.6rem, 2vw, 0.75rem); }
.form-row { display: grid; gap: 0.35rem; }
label { color: var(--muted); font-size: clamp(0.85rem, 2.5vw, 0.9rem); }
input, select, textarea { background: rgba(201, 169, 97, 0.06); border: 1px solid var(--border); color: var(--text); padding: 0.75rem; border-radius: 10px; outline: none; -webkit-appearance: none; -moz-appearance: none; appearance: none; font-size: 1rem; min-height: 44px; }
input:focus, select:focus, textarea:focus { border-color: rgba(201, 169, 97, 0.5); box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1); }

.form-note { color: var(--muted); font-size: 0.9rem; }
.form-note a { color: var(--accent); text-decoration: none; }
.contact-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.field-hint { color: var(--muted); margin: 0; font-size: 0.9rem; }
.field-error { color: #b91c1c; margin: 0; font-size: 0.9rem; min-height: 1.1rem; }
.form-status { margin: 0.35rem 0 0; color: #166534; font-weight: 600; font-size: 0.95rem; min-height: 1.1rem; }
.has-error { border-color: rgba(239, 68, 68, 0.55) !important; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12); }
.has-error:focus { outline: none; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: rgba(201, 169, 97, 0.04); padding: clamp(1rem, 4vw, 1.5rem) 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-inner span { color: var(--muted); font-size: clamp(0.85rem, 2vw, 0.9rem); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .browser-body { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .portfolio-grid,
  .pricing-grid,
  .process-grid,
  .who-grid,
  .contact-inner { grid-template-columns: 1fr; }
  .tier-silver { transform: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; line-height: 1.65; }
  .container { padding: 0 1rem; }
  
  .portfolio-grid,
  .pricing-grid,
  .process-grid,
  .who-grid { 
    grid-template-columns: 1fr;
  }
  .contact-inner { grid-template-columns: 1fr; }
  .info-card,
  .step-card,
  .portfolio-card {
    padding: clamp(1rem, 4vw, 1.5rem);
  }
  .pricing-card {
    padding: clamp(1rem, 4vw, 1.5rem);
  }
  input,
  textarea,
  select {
    font-size: 1rem;
    padding: 0.75rem;
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
  }
  section h2 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 1rem;
  }
  .btn { 
    min-height: 44px;
    padding: clamp(0.6rem, 2vw, 0.8rem) clamp(0.8rem, 3vw, 1rem);
    font-size: 0.95rem;
  }
  .nav-btn { padding: 0.5rem 0.65rem; font-size: 0.85rem; }
}

@media (max-width: 720px) {
  .hamburger { display: none; }
  .main-nav { display: none !important; }
  .header-inner { padding: 0.5rem 0; gap: 0.5rem; }
  .logo-aim { font-size: clamp(0.85rem, 4vw, 1rem); }
  .logo-websites { font-size: clamp(0.6rem, 3vw, 0.75rem); }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero { padding: clamp(1.75rem, 5vw, 2.5rem) 0 clamp(1.25rem, 4vw, 1.75rem); }
  .hero-title { font-size: clamp(1.5rem, 7vw, 2rem); line-height: 1.3; }
  .hero-sub { font-size: clamp(0.95rem, 3.5vw, 1rem); line-height: 1.7; }
  .eyebrow { font-size: clamp(0.7rem, 2.5vw, 0.8rem); letter-spacing: 0.12em; }
  .hero-actions { gap: 0.6rem; margin-top: 1.5rem; margin-bottom: 1.75rem; }
  .hero-actions .btn { width: 100%; min-width: auto; padding: 0.7rem 1rem; font-size: 0.95rem; }
  .hero-footnotes { gap: 0.75rem; margin-top: 1rem; }
  .hero-footnotes span { font-size: clamp(0.8rem, 2.5vw, 0.85rem); }
  
  .section-title { font-size: clamp(1.2rem, 5vw, 1.5rem); margin-bottom: 0.8rem; }
  .section-sub { font-size: clamp(0.9rem, 3vw, 0.95rem); }
  
  .card-title { font-size: clamp(0.95rem, 3.5vw, 1rem); margin-bottom: 0.4rem; }
  .tier-name { font-size: clamp(1rem, 3.5vw, 1.2rem); }
  .price { font-size: clamp(1.4rem, 5vw, 1.6rem); }
  
  .nav-btn { padding: 0.5rem 0.65rem; font-size: 0.8rem; }
  .hamburger { padding: 0.35rem 0.5rem; font-size: 1.2rem; }
  
  .browser-iframe { height: clamp(250px, 60vw, 350px); }
  .preview-right { grid-template-columns: 1fr; gap: 0.6rem; }
  
  footer { padding: clamp(1rem, 4vw, 1.5rem) 0; padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

.mobile-quick-nav {
  position: fixed;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 0.35rem 0.6rem;
  display: none;
  gap: 0.4rem;
  z-index: 60;
  backdrop-filter: blur(8px);
}

.mobile-quick-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.mobile-quick-nav a:hover,
.mobile-quick-nav a.is-active {
  background: rgba(201, 169, 97, 0.15);
  color: var(--text);
}

@media (max-width: 720px) {
  body { padding-bottom: 96px; }
  .mobile-quick-nav { display: inline-flex; }
}
