/* ============================================
   CENTURY AUTO REPAIR - SHARED STYLES
   Breeze-inspired: clean, bright, friendly, modern
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Color system */
  --cream: #FAF7F2;
  --cream-2: #F3EFE7;
  --ink: #1A2238;
  --ink-soft: #3B4358;
  --ink-mute: #6B7388;
  --sky: #6BB8E8;
  --sky-deep: #2E7CB8;
  --sky-soft: #DCEEF9;
  --sun: #F5C84B;
  --sun-soft: #FBE9B0;
  --coral: #FF7B5A;
  --coral-soft: #FFD9CC;
  --leaf: #4FB286;
  --leaf-soft: #CFEADC;
  --line: #E6E0D4;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26, 34, 56, 0.04);
  --shadow-md: 0 8px 28px rgba(26, 34, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(26, 34, 56, 0.12);

  /* Type */
  --display: 'Instrument Serif', Georgia, serif;
  --body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --max: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-deep);
  padding: 8px 14px;
  background: var(--sky-soft);
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow.coral { color: var(--coral); background: var(--coral-soft); }
.eyebrow.sun { color: #8a6a10; background: var(--sun-soft); }
.eyebrow.leaf { color: #2d7a55; background: var(--leaf-soft); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 92px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(20px, 2.4vw, 28px); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--sky-deep);
}

p { color: var(--ink-soft); }

.lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 620px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

section {
  padding: 110px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
}

@media (max-width: 480px) {
  section { padding: 52px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { margin-bottom: 12px; }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 224, 212, 0.6);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  min-width: 0;
  flex-shrink: 1;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}

.brand-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.nav-links a:hover { color: var(--ink); background: var(--cream-2); }
.nav-links a.active { color: var(--ink); background: var(--cream-2); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; padding: 14px 20px; }
  .nav-cta { gap: 8px; flex-shrink: 0; }
}

@media (max-width: 520px) {
  .nav-cta .btn-sun { display: none; }
  .brand { font-size: 15px; gap: 8px; line-height: 1.2; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark svg { width: 18px; height: 18px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sky-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 124, 184, 0.3);
}

.btn-sun {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 4px 0 #d9a92c;
}

.btn-sun:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #d9a92c, 0 12px 24px rgba(245, 200, 75, 0.4);
}

.btn-sun:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 #d9a92c;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--cream-2);
}

.btn-lg {
  padding: 18px 34px;
  font-size: 16px;
}

.btn svg { width: 18px; height: 18px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--sky-soft) 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sun-soft) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero-title {
  margin: 8px 0 24px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  font-size: 14px;
  color: var(--ink-mute);
}

.hero-trust .stars {
  color: var(--sun);
  font-size: 18px;
  letter-spacing: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 100%;
  isolation: isolate;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.hero-card.main {
  inset: 0;
  background: linear-gradient(150deg, var(--sky) 0%, var(--sky-deep) 100%);
  color: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-card.main::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
}

.hero-card.main .label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  position: relative;
}

.hero-card.main .big {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 12px 0;
  position: relative;
}

.hero-card.main .big em {
  font-style: italic;
  color: var(--sun-soft);
}

.hero-card.main .desc {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 280px;
}

.hero-card.float-1 {
  top: -28px;
  right: -28px;
  width: 200px;
  background: var(--sun);
  transform: rotate(6deg);
  z-index: 3;
}

.hero-card.float-1 .num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  font-style: italic;
  color: var(--ink);
}
.hero-card.float-1 .lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}

.hero-card.float-2 {
  bottom: -24px;
  left: -28px;
  width: 240px;
  z-index: 3;
  transform: rotate(-3deg);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.hero-card.float-2 .check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-card.float-2 .text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.hero-card.float-2 .text small {
  display: block;
  font-weight: 500;
  color: var(--ink-mute);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .hero-visual { max-width: 460px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 64px; overflow-x: clip; }
  .hero-grid { gap: 32px; }
  .hero-card.main { padding: 22px 20px; }
  .hero-card.main .big { font-size: clamp(38px, 12vw, 72px); }
  .hero-card.main .desc { font-size: 14px; max-width: none; }
  .hero-cta-row { margin-top: 24px; gap: 12px; }
  .hero-trust { flex-wrap: wrap; margin-top: 24px; gap: 10px; }
  .hero-visual { max-width: 100%; margin: 0; aspect-ratio: 1 / 1.08; }
  .hero-card.float-1 {
    top: 10px;
    right: 10px;
    width: min(148px, 42%);
    padding: 14px 12px;
    transform: rotate(4deg);
  }
  .hero-card.float-1 .num { font-size: clamp(32px, 9vw, 44px); }
  .hero-card.float-1 .lbl { font-size: 11px; line-height: 1.25; }
  .hero-card.float-2 {
    bottom: 10px;
    left: 10px;
    right: auto;
    width: min(200px, 58%);
    padding: 12px 14px;
    transform: rotate(-2deg);
  }
  .hero-card.float-2 .text { font-size: 13px; }
  .hero-card.float-1.float-bob { animation: none; }
}

@media (max-width: 380px) {
  .hero-card.float-1 { width: min(130px, 44%); padding: 12px 10px; }
  .hero-card.float-2 { width: min(175px, 62%); }
}

/* ============================================
   MARQUEE / TICKER
   ============================================ */
.ticker {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 56px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(17px, 4.5vw, 28px);
  font-style: italic;
  letter-spacing: -0.01em;
}

.ticker-track span { display: inline-flex; align-items: center; gap: clamp(24px, 6vw, 56px); }

@media (max-width: 640px) {
  .ticker { padding: 14px 0; }
}

.ticker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sun);
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================
   BENEFIT CARDS GRID
   ============================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head .eyebrow { display: inline-flex; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { margin: 0 auto; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 980px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefit-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.benefit-card.c1 { background: var(--sky-soft); }
.benefit-card.c1 .ico { background: var(--sky); color: white; }
.benefit-card.c2 { background: var(--sun-soft); }
.benefit-card.c2 .ico { background: var(--sun); color: var(--ink); }
.benefit-card.c3 { background: var(--coral-soft); }
.benefit-card.c3 .ico { background: var(--coral); color: white; }
.benefit-card.c4 { background: var(--leaf-soft); }
.benefit-card.c4 .ico { background: var(--leaf); color: white; }

.benefit-card h4 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.benefit-card .ico svg { width: 28px; height: 28px; }

/* ============================================
   PILLARS / MISSION
   ============================================ */
.pillars-section {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-xl);
  margin: 0 28px;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.pillars-section h2 { color: var(--cream); }
.pillars-section .lead { color: rgba(250, 247, 242, 0.7); }

.pillars-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 184, 232, 0.2), transparent 70%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

@media (max-width: 880px) { .pillars-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .pillars-section { padding: 72px 28px; margin: 0 12px; } }

@media (max-width: 480px) {
  .pillars-section { padding: 48px 18px; margin: 0 8px; border-radius: var(--radius-lg); }
  .pillars-grid { margin-top: 36px; gap: 16px; }
  .pillar { padding: 24px 20px; }
  .pillar .num { font-size: clamp(40px, 11vw, 52px); margin-bottom: 14px; }
  .pillar h3 { font-size: clamp(20px, 5vw, 24px); }
}

.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all 0.3s ease;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.pillar .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--sun);
  margin-bottom: 20px;
}

.pillar h3 {
  color: var(--cream);
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pillar p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  position: relative;
}

.step .step-num {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--sky-deep);
  border: 1.5px solid var(--sky);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-bottom: 24px;
}

.step h4 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   QUOTE / TESTIMONIAL
   ============================================ */
.quote-section {
  text-align: center;
  padding: 130px 0;
}

@media (max-width: 640px) {
  .quote-section { padding: 64px 0; }
}

.quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 120px;
  line-height: 0.5;
  color: var(--sun);
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .quote-mark { font-size: clamp(48px, 18vw, 88px); line-height: 0.65; margin-bottom: 16px; }
}

.quote-text {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 880px;
  margin: 0 auto 36px;
}

.quote-text em { color: var(--sky-deep); font-style: italic; }

.quote-author {
  font-size: 15px;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  background: linear-gradient(135deg, var(--sun) 0%, var(--coral) 100%);
  border-radius: var(--radius-xl);
  margin: 0 28px;
  padding: 80px 60px;
  text-align: center;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta-block::before, .cta-block::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.cta-block::before { width: 300px; height: 300px; top: -150px; left: -150px; }
.cta-block::after { width: 240px; height: 240px; bottom: -120px; right: -120px; }

.cta-block > * { position: relative; z-index: 2; }

.cta-block h2 { color: var(--ink); margin-bottom: 18px; }
.cta-block p { color: var(--ink); opacity: 0.85; max-width: 620px; margin: 0 auto 36px; font-size: 18px; }

@media (max-width: 720px) { .cta-block { padding: 64px 28px; margin: 0 12px; } }

@media (max-width: 480px) {
  .cta-block { padding: 44px 20px; margin: 0 8px; border-radius: var(--radius-lg); }
  .cta-block p { font-size: 16px; }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}

@media (max-width: 640px) {
  footer { padding: 56px 0 28px; }
  .footer-grid { padding-bottom: 40px; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand { color: var(--cream); margin-bottom: 18px; }
.footer-brand p { color: rgba(250, 247, 242, 0.7); font-size: 15px; max-width: 320px; }

footer h5 {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 18px;
  font-weight: 600;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(250, 247, 242, 0.75); font-size: 15px; transition: color 0.2s; }
footer ul a:hover { color: var(--cream); }

.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .scripture {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--sun);
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, var(--sky-soft) 0%, transparent 60%);
  z-index: 0;
}

.page-header > * { position: relative; z-index: 1; }

.page-header h1 { margin-bottom: 18px; }
.page-header .lead { margin: 0 auto; }

@media (max-width: 640px) {
  .page-header { padding: 56px 0 40px; }
}

/* ============================================
   ABOUT / CONTENT BLOCKS
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 48px; } }

.split.reverse > div:first-child { order: 2; }
@media (max-width: 880px) { .split.reverse > div:first-child { order: 0; } }

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sky-soft);
  aspect-ratio: 4/5;
  position: relative;
}

.image-card.gradient-1 { background: linear-gradient(160deg, var(--sky) 0%, var(--sky-deep) 100%); }
.image-card.gradient-2 { background: linear-gradient(160deg, var(--sun) 0%, var(--coral) 100%); }
.image-card.gradient-3 { background: linear-gradient(160deg, var(--leaf) 0%, var(--sky-deep) 100%); }

.image-card .label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  font-family: var(--display);
  font-size: clamp(22px, 5.5vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (max-width: 480px) {
  .image-card .label { bottom: 16px; left: 16px; right: 16px; }
}

.image-card .label em { font-style: italic; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  font-family: var(--body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  gap: 16px;
}

@media (max-width: 640px) {
  .faq-q {
    padding: 18px 16px;
    font-size: clamp(15px, 4.2vw, 17px);
    gap: 12px;
  }
  .faq-a { padding: 0 16px; }
  .faq-item.open .faq-a { padding: 0 16px 20px; }
}

.faq-q .toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-q .toggle {
  transform: rotate(45deg);
  background: var(--sun);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: min(2000px, 85vh);
  padding: 0 28px 24px;
}

.faq-a p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
}

@media (max-width: 720px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: none; }

@media (max-width: 720px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 480px) {
  .stat { padding: 28px 12px; }
  .stat .lbl { font-size: 11px; letter-spacing: 0.03em; }
}

.stat .num {
  font-family: var(--display);
  font-size: clamp(40px, 11vw, 64px);
  line-height: 1;
  color: var(--sky-deep);
  font-style: italic;
  margin-bottom: 8px;
}

.stat .lbl {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================
   FORM (PAGE & MODAL SHARED)
   ============================================ */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group label .req { color: var(--coral); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 4px var(--sky-soft);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip-radio {
  position: relative;
  cursor: pointer;
}

.chip-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-radio span {
  display: inline-block;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.15s ease;
}

.chip-radio input:checked + span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.chip-radio:hover span { border-color: var(--ink); }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 34, 56, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-head {
  padding: 36px 36px 12px;
  position: relative;
}

@media (max-width: 540px) { .modal-head { padding: 28px 24px 8px; } }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
}

.modal-close:hover { background: var(--coral-soft); transform: rotate(90deg); }

.modal-head .eyebrow { display: inline-flex; }

.modal-head h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 6px 0 8px;
}

.modal-head p { font-size: 15px; color: var(--ink-soft); }

.modal-body {
  padding: 24px 36px 36px;
}

@media (max-width: 540px) { .modal-body { padding: 20px 24px 28px; } }

.modal-body .btn-primary { width: 100%; }

.success-state {
  text-align: center;
  padding: 24px 0;
}

.success-state .check-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

.success-state .check-big svg { width: 40px; height: 40px; }

.success-state h3 { font-size: 28px; margin-bottom: 12px; }
.success-state p { font-size: 16px; max-width: 380px; margin: 0 auto; }

/* ============================================
   GUARANTEE PAGE BIG CARDS
   ============================================ */
.guarantee-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.guarantee-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 880px) {
  .guarantee-card { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; text-align: center; }
}

.guarantee-card .badge {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 880px) { .guarantee-card .badge { margin: 0 auto; } }

.guarantee-card.g1 .badge { background: var(--sky-soft); color: var(--sky-deep); }
.guarantee-card.g2 .badge { background: var(--sun-soft); color: #8a6a10; }
.guarantee-card.g3 .badge { background: var(--coral-soft); color: var(--coral); }
.guarantee-card.g4 .badge { background: var(--leaf-soft); color: var(--leaf); }

.guarantee-card .badge svg { width: 44px; height: 44px; }

.guarantee-card .text h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.guarantee-card .text p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.guarantee-card .price {
  font-family: var(--display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 880px) { .guarantee-card .price { font-size: 44px; } }

@media (max-width: 480px) {
  .guarantee-card .price { font-size: clamp(30px, 10vw, 40px); white-space: normal; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .fade-up.d1 { animation-delay: 0.1s; }
  .fade-up.d2 { animation-delay: 0.2s; }
  .fade-up.d3 { animation-delay: 0.3s; }
  .fade-up.d4 { animation-delay: 0.4s; }
  .fade-up.d5 { animation-delay: 0.5s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .float-bob {
    animation: bob 4s ease-in-out infinite;
  }

  @keyframes bob {
    0%, 100% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
  }
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream-2);
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  .menu-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 200;
  padding: 80px 28px 40px;
  overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-menu .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream-2);
  display: grid;
  place-items: center;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu ul a {
  display: block;
  padding: 18px 0;
  font-family: var(--display);
  font-size: clamp(24px, 7.5vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.mobile-menu .btn { margin-top: 24px; width: 100%; white-space: normal; }

@media (max-width: 480px) {
  .mobile-menu { padding: 72px 20px 32px; }
}

/* ============================================
   MOBILE POLISH (typography, CTAs, touch)
   ============================================ */
@media (max-width: 640px) {
  .hero .hero-title {
    font-size: clamp(32px, 9.5vw, 46px);
    line-height: 1.08;
  }
  .lead { font-size: clamp(16px, 4vw, 18px); max-width: none; }
  .page-header h1 { font-size: clamp(30px, 8.5vw, 44px); }
  h2 { font-size: clamp(26px, 7vw, 40px); }
  .modal-head h2 { font-size: clamp(24px, 6vw, 32px); }
}

@media (max-width: 480px) {
  .hero-cta-row .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .hero-cta-row .btn-lg { padding: 16px 20px; }
  .benefit-card { padding: 22px 18px; }
  .step { padding: 22px 18px 28px; }
  .guarantee-card { padding: 24px 18px; }
  .chip-radio span { padding: 8px 12px; font-size: 13px; }
  .modal-overlay { padding: 12px; }
  .modal { max-height: min(92vh, 100dvh - 24px); }
}

button,
.btn,
.menu-toggle,
.modal-close,
.faq-q {
  touch-action: manipulation;
}
