@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=Fraunces:ital,opsz,wght@0,9..144,700;0,9..144,900;1,9..144,700&display=swap');

/* ─────────────────────────────────────────
   PATCHLY — Full Stylesheet
   Naming: semantic kebab-case
   Layout: CSS Grid + Flexbox hybrid
   ───────────────────────────────────────── */

/* ── 0. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ── 1. TOKENS ── */
:root {
  --mint:       #2ecfa0;
  --mint-light: #d4f7ed;
  --mint-dark:  #1a9e77;
  --coral:      #ff6b6b;
  --coral-light:#ffe0e0;
  --yellow:     #ffd93d;
  --yellow-light:#fff8d6;
  --lavender:   #b48fe8;
  --lavender-light:#ede0ff;
  --sky:        #5bc4f5;
  --sky-light:  #ddf3ff;
  --white:      #ffffff;
  --off-white:  #f7faf9;
  --ink:        #1a2b26;
  --ink-mid:    #3d5249;
  --ink-soft:   #6b8c80;
  --border:     #d8ede8;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --radius-xl:  48px;
  --radius-pill:999px;

  --shadow-xs:  0 1px 4px rgba(30,80,60,.07);
  --shadow-sm:  0 3px 12px rgba(30,80,60,.10);
  --shadow-md:  0 8px 32px rgba(30,80,60,.13);
  --shadow-lg:  0 20px 60px rgba(30,80,60,.16);

  --space-1: clamp(.25rem,.5vw,.5rem);
  --space-2: clamp(.5rem,.8vw,.75rem);
  --space-3: clamp(.75rem,1.2vw,1rem);
  --space-4: clamp(1rem,2vw,1.5rem);
  --space-5: clamp(1.5rem,3vw,2.5rem);
  --space-6: clamp(2.5rem,5vw,4rem);
  --space-7: clamp(4rem,8vw,7rem);

  --font-body:  'Nunito', system-ui, sans-serif;
  --font-display:'Fraunces', Georgia, serif;

  --text-xs:  clamp(.7rem,.9vw,.8rem);
  --text-sm:  clamp(.85rem,1.1vw,.95rem);
  --text-base:clamp(.95rem,1.3vw,1.0625rem);
  --text-md:  clamp(1.05rem,1.5vw,1.2rem);
  --text-lg:  clamp(1.2rem,2vw,1.5rem);
  --text-xl:  clamp(1.5rem,3vw,2rem);
  --text-2xl: clamp(2rem,4vw,2.75rem);
  --text-3xl: clamp(2.5rem,5.5vw,3.75rem);
  --text-4xl: clamp(3rem,7vw,5rem);
}

/* ── 2. BASE ── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 900;
}
h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { max-width: 68ch; color: var(--ink-mid); }
p + p { margin-top: var(--space-3); }

strong { font-weight: 800; color: var(--ink); }
em { font-style: italic; }

a:hover { text-decoration: underline; }

/* ── 3. CONTAINER ── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── 4. HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--border);
  padding-block: var(--space-3);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-4);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-mid);
  padding: .3em .6em;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover {
  color: var(--mint-dark);
  background: var(--mint-light);
  text-decoration: none;
}
.nav-link.is-active {
  color: var(--mint-dark);
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; }

.logo-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.logo-wordmark span { color: var(--mint); }

.logo-patch-row {
  display: flex;
  gap: 4px;
}
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  display: inline-block;
}
.logo-dot:nth-child(1) { background: var(--yellow); }
.logo-dot:nth-child(2) { background: var(--coral); }
.logo-dot:nth-child(3) { background: var(--mint); }
.logo-dot:nth-child(4) { background: var(--lavender); }
.logo-dot:nth-child(5) { background: var(--sky); }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  background: var(--mint);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 800;
  padding: .55em 1.2em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 14px rgba(46,207,160,.35);
}
.nav-cta-btn:hover {
  background: var(--mint-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,207,160,.45);
  text-decoration: none;
  color: var(--white);
}

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4em;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--text-md);
  padding: .75em 1.8em;
  border-radius: var(--radius-pill);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(46,207,160,.38);
}
.btn-primary:hover {
  background: var(--mint-dark);
  box-shadow: 0 8px 28px rgba(46,207,160,.48);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
  background: var(--mint-light);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,107,107,.35);
}
.btn-coral:hover {
  background: #e85555;
  box-shadow: 0 8px 28px rgba(255,107,107,.45);
  color: var(--white);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(255,217,61,.38);
}
.btn-yellow:hover {
  background: #f0c800;
  box-shadow: 0 8px 28px rgba(255,217,61,.48);
  color: var(--ink);
}

.btn-sm {
  font-size: var(--text-sm);
  padding: .55em 1.3em;
}
.btn-lg {
  font-size: var(--text-lg);
  padding: .85em 2.2em;
}

/* ── 6. SECTIONS (generic) ── */
.section {
  padding-block: var(--space-7);
}
.section-sm {
  padding-block: var(--space-6);
}
.section-bg-off {
  background: var(--off-white);
}
.section-bg-ink {
  background: var(--ink);
}
.section-bg-mint {
  background: var(--mint);
}
.section-bg-yellow {
  background: var(--yellow-light);
}
.section-bg-lavender {
  background: var(--lavender-light);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mint-dark);
  background: var(--mint-light);
  padding: .35em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}

.section-heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
  max-width: 18ch;
}
.section-heading-center {
  text-align: center;
  margin-inline: auto;
}
.section-lead {
  font-size: var(--text-md);
  color: var(--ink-mid);
  max-width: 58ch;
  line-height: 1.65;
}
.section-lead-center {
  text-align: center;
  margin-inline: auto;
}
.section-intro {
  text-align: center;
  margin-bottom: var(--space-6);
}

/* ── 7. HERO ── */
.hero-section {
  padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 7vw, 6rem);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 80% 40%, var(--mint-light) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 80%, var(--yellow-light) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 60% 95%, var(--lavender-light) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; gap: var(--space-4); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--coral);
  background: var(--coral-light);
  padding: .4em 1.1em;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.hero-title {
  font-size: var(--text-4xl);
  line-height: 1.08;
  color: var(--ink);
}
.hero-title .accent-mint   { color: var(--mint); }
.hero-title .accent-coral  { color: var(--coral); }
.hero-title .accent-yellow-bg {
  background: var(--yellow);
  padding: .05em .18em;
  border-radius: var(--radius-sm);
  color: var(--ink);
  display: inline-block;
}

.hero-subtitle {
  font-size: var(--text-md);
  color: var(--ink-mid);
  max-width: 46ch;
  line-height: 1.65;
}

.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.proof-avatars {
  display: flex;
}
.proof-avatars .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.proof-avatars .av:first-child { margin-left: 0; }
.av-a { background: var(--coral); }
.av-b { background: var(--mint); }
.av-c { background: var(--lavender); }
.av-d { background: var(--sky); }
.proof-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-mid);
}
.proof-text strong { color: var(--ink); }

.hero-image-slot {
  position: relative;
}
.hero-image-slot img,
.hero-image-slot .hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-img-placeholder {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--sky-light) 50%, var(--lavender-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Floating patch badges on hero image */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .6em 1em;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.hero-badge-top {
  top: -1.2rem;
  right: 1.5rem;
}
.hero-badge-bottom {
  bottom: 1.5rem;
  left: -1.5rem;
}
.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ── 8. CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-4);
}
.card-grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.card-icon-mint     { background: var(--mint-light);     }
.card-icon-coral    { background: var(--coral-light);    }
.card-icon-yellow   { background: var(--yellow-light);   }
.card-icon-lavender { background: var(--lavender-light); }
.card-icon-sky      { background: var(--sky-light);      }

.card-title {
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--ink);
  font-family: var(--font-display);
}
.card-text {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.65;
}

/* Patch-style card accent */
.card-patch {
  position: relative;
  overflow: hidden;
}
.card-patch::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  opacity: .18;
  transform: rotate(18deg);
}
.card-patch.patch-mint::before    { background: var(--mint); }
.card-patch.patch-coral::before   { background: var(--coral); }
.card-patch.patch-yellow::before  { background: var(--yellow); }
.card-patch.patch-lavender::before{ background: var(--lavender); }

/* ── 9. STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: var(--space-4);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}
.stat-number-mint    { color: var(--mint-dark); }
.stat-number-coral   { color: var(--coral); }
.stat-number-lavender{ color: var(--lavender); }
.stat-number-yellow  { color: #c49a00; }

.stat-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── 10. CTA BAND ── */
.cta-band {
  padding-block: var(--space-7);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(46,207,160,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5% 30%, rgba(180,143,232,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.cta-band-title {
  font-size: var(--text-3xl);
  color: var(--white);
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band-title .accent-mint { color: var(--mint); }
.cta-band-subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,.75);
  max-width: 50ch;
  margin-inline: auto;
}
.cta-band-btns {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* Patch decorations inside cta */
.cta-patch {
  position: absolute;
  border-radius: var(--radius-md);
  opacity: .12;
  transform: rotate(25deg);
}
.cta-patch-1 { width:80px; height:80px; background:var(--yellow); top:-20px; left:8%; }
.cta-patch-2 { width:56px; height:56px; background:var(--coral); bottom:20px; left:15%; transform:rotate(-15deg); }
.cta-patch-3 { width:64px; height:64px; background:var(--mint); top:30px; right:10%; }
.cta-patch-4 { width:44px; height:44px; background:var(--lavender); bottom:10px; right:18%; transform:rotate(40deg); }

/* ── 11. FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover {
  border-color: var(--mint);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-4) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--ink);
  text-align: left;
}
.faq-question:hover { color: var(--mint-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--mint-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background .2s, transform .25s;
  font-weight: 700;
}
.faq-item.is-open .faq-icon {
  background: var(--mint);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-4) var(--space-4);
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { display: block; }

/* ── 12. PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--space-4);
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--border);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.is-featured {
  border-color: var(--mint);
  background: var(--mint-light);
  box-shadow: 0 0 0 4px rgba(46,207,160,.15), var(--shadow-md);
  transform: scale(1.025);
}
.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--mint);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3em .9em;
  border-radius: var(--radius-pill);
}
.pricing-plan { font-size: var(--text-sm); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: .15em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.price-period { font-size: var(--text-sm); color: var(--ink-soft); font-weight: 700; }
.pricing-desc { font-size: var(--text-sm); color: var(--ink-mid); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-2);
  border-top: 2px solid var(--border);
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .6em;
  font-size: var(--text-sm);
  color: var(--ink-mid);
  font-weight: 600;
}
.pricing-feature::before {
  content: '✓';
  color: var(--mint-dark);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: .05em;
}

/* ── 13. TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-4);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.testimonial-stars { color: var(--yellow); font-size: var(--text-md); letter-spacing: .1em; }
.testimonial-text { font-size: var(--text-base); color: var(--ink-mid); line-height: 1.7; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}
.author-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 800;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 800; color: var(--ink); font-size: var(--text-sm); }
.author-role { font-size: var(--text-xs); color: var(--ink-soft); }

/* ── 14. CONTENT / PROSE ── */
.prose h2 { margin-top: var(--space-6); margin-bottom: var(--space-3); }
.prose h3 { margin-top: var(--space-5); margin-bottom: var(--space-2); }
.prose p  { margin-bottom: var(--space-3); }
.prose ul, .prose ol { margin-left: 1.5em; margin-bottom: var(--space-3); list-style: disc; }
.prose li { margin-bottom: .4em; color: var(--ink-mid); }

/* ── 15. FORMS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-label {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--ink);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: .75em 1em;
  font-size: var(--text-base);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(46,207,160,.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-inline {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.form-inline .form-input { flex: 1 1 200px; }

/* ── 16. BADGE / TAG ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: .3em .9em;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tag-mint     { background: var(--mint-light);     color: var(--mint-dark); }
.tag-coral    { background: var(--coral-light);    color: #c03030; }
.tag-yellow   { background: var(--yellow-light);   color: #8a6800; }
.tag-lavender { background: var(--lavender-light); color: #6b3fa0; }
.tag-sky      { background: var(--sky-light);      color: #1a7db0; }

/* ── 17. DECORATIVE PATCHES ── */
.patch-scatter {
  position: relative;
}
.patch-blob {
  position: absolute;
  border-radius: var(--radius-md);
  pointer-events: none;
  opacity: .18;
  transform: rotate(var(--rot, 15deg));
}

/* ── 18. DIVIDER ── */
.divider {
  border: none;
  height: 2px;
  background: var(--border);
  margin-block: var(--space-5);
}

/* ── 19. FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding-top: var(--space-7);
  padding-bottom: var(--space-5);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(46,207,160,.1) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 0% 100%, rgba(180,143,232,.1) 0%, transparent 60%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
}

.footer-brand-col { display: flex; flex-direction: column; gap: var(--space-3); }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  letter-spacing: -.02em;
}
.footer-logo-text span { color: var(--mint); }

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  max-width: 26ch;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background .2s, border-color .2s, transform .15s;
  cursor: pointer;
  color: rgba(255,255,255,.75);
}
.social-btn:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-col-title {
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  transition: color .2s;
  font-weight: 600;
}
.footer-link:hover {
  color: var(--mint);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-top: var(--space-4);
  position: relative;
  z-index: 1;
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-4);
}
.footer-bottom-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-bottom-link:hover { color: var(--mint); text-decoration: none; }

.footer-patch-dec {
  position: absolute;
  border-radius: var(--radius-sm);
  opacity: .07;
  pointer-events: none;
}

/* ── 20. RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  .hero-image-slot {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }
  .nav-left { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-shell.is-open .nav-left,
  .nav-shell.is-open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: var(--space-2);
  }
  .nav-shell.is-open {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-btn-row { flex-direction: column; align-items: flex-start; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
body{margin:0}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
img,svg,video{max-width:100%;height:auto}
