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

/* ============================================================
   HOSTKIT — Complete Stylesheet
   Naming: semantic kebab-case, layout: CSS Grid + Flex mixed
   ============================================================ */

/* ── 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; }

/* ── Design Tokens ── */
:root {
  --hue-primary: 288;

  /* Brand palette */
  --coral:   #FF5C4D;
  --yellow:  #FFD23F;
  --teal:    #00C9A7;
  --indigo:  #1B0A4F;
  --violet:  hsl(var(--hue-primary), 72%, 52%);   /* #9B3DD8 */
  --violet-light: hsl(var(--hue-primary), 80%, 96%);
  --violet-mid:   hsl(var(--hue-primary), 60%, 88%);
  --white:   #FFFFFF;
  --off-white: #F7F5FF;
  --ink:     #12032E;
  --ink-soft:#3D2B6B;
  --muted:   #7B6B9A;
  --border:  #E4DCFA;

  /* Surfaces */
  --surface-1: var(--white);
  --surface-2: var(--off-white);
  --surface-card: #FFFFFF;

  /* Spacing scale (fluid) */
  --sp-1:  clamp(0.25rem, 0.5vw, 0.5rem);
  --sp-2:  clamp(0.5rem,  1vw,   0.75rem);
  --sp-3:  clamp(0.75rem, 1.5vw, 1rem);
  --sp-4:  clamp(1rem,    2vw,   1.5rem);
  --sp-5:  clamp(1.5rem,  3vw,   2rem);
  --sp-6:  clamp(2rem,    4vw,   3rem);
  --sp-7:  clamp(3rem,    6vw,   5rem);
  --sp-8:  clamp(4rem,    8vw,   7rem);

  /* Typography */
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --text-xs:   clamp(0.7rem,  1.2vw, 0.8rem);
  --text-sm:   clamp(0.85rem, 1.5vw, 0.95rem);
  --text-base: clamp(1rem,    1.8vw, 1.0625rem);
  --text-lg:   clamp(1.1rem,  2vw,   1.25rem);
  --text-xl:   clamp(1.25rem, 2.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem,  3vw,   2rem);
  --text-3xl:  clamp(2rem,    4vw,   2.75rem);
  --text-4xl:  clamp(2.5rem,  5.5vw, 3.75rem);
  --text-hero: clamp(2.8rem,  7vw,   5rem);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill:9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(27,10,79,.07), 0 1px 2px rgba(27,10,79,.04);
  --shadow-sm: 0 4px 12px rgba(27,10,79,.09), 0 1px 3px rgba(27,10,79,.06);
  --shadow-md: 0 8px 28px rgba(27,10,79,.13), 0 2px 6px rgba(27,10,79,.07);
  --shadow-lg: 0 20px 60px rgba(27,10,79,.18), 0 4px 12px rgba(27,10,79,.09);
  --shadow-glow-violet: 0 0 0 4px hsl(var(--hue-primary), 72%, 52%, 0.22);
  --shadow-glow-coral:  0 0 0 4px rgba(255,92,77,.22);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 220ms;
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface-1);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: var(--text-hero); font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.025em; }
h3 { font-size: var(--text-xl); letter-spacing: -0.015em; }
h4 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 700; }
h5 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 700; }
h6 { font-size: var(--text-sm); font-family: var(--font-body); font-weight: 600; }

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

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

.lead {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet);
  background: var(--violet-light);
  padding: 0.35em 0.9em;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.eyebrow--coral { color: #C62A1E; background: #FFE8E6; }
.eyebrow--teal  { color: #007A65; background: #D4FFF6; }
.eyebrow--yellow{ color: #7A5B00; background: #FFF7D1; }

/* ── Links ── */
a:not([class]) {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease-out);
}
a:not([class]):hover { color: var(--coral); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.75em 1.6em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease-spring),
              box-shadow var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out);
  text-decoration: none;
  line-height: 1;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(155,61,216,.35);
}
.btn-primary:hover {
  background: hsl(var(--hue-primary), 72%, 44%);
  box-shadow: 0 8px 28px rgba(155,61,216,.45);
}

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

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: var(--shadow-glow-violet);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.6);
}

.btn-sm { font-size: var(--text-xs); padding: 0.6em 1.2em; }
.btn-lg { font-size: var(--text-base); padding: 0.9em 2em; }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: 60px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand__mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav-brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.nav-brand__name span { color: var(--violet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.4em 0.75em;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--violet);
  background: var(--violet-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: background var(--dur);
}
.nav-hamburger:hover { background: var(--violet-light); }
.nav-hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-3) 0 var(--sp-4);
  border-top: 1px solid var(--border);
}
.nav-drawer.is-open { display: flex; }
.nav-drawer a {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.6em 0.75em;
  border-radius: var(--r-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-drawer a:hover { color: var(--violet); background: var(--violet-light); }
.nav-drawer .btn { align-self: flex-start; margin-top: var(--sp-2); }

/* ── Footer ── */
.site-footer {
  background: var(--indigo);
  color: rgba(255,255,255,.75);
  padding-block: var(--sp-7) var(--sp-5);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 10% 0%, hsl(var(--hue-primary), 72%, 25%) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 90% 100%, rgba(0,201,167,.15) 0%, transparent 55%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.footer-brand { }
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--sp-3);
}
.footer-brand__logo-mark {
  width: 36px;
  height: 36px;
}
.footer-brand__logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}
.footer-brand__logo-name span { color: var(--yellow); }
.footer-brand__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  margin-bottom: var(--sp-4);
  max-width: 28ch;
}
.footer-brand__tagline strong { color: rgba(255,255,255,.85); font-weight: 600; }

.footer-social {
  display: flex;
  gap: var(--sp-2);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: background var(--dur), color var(--dur), transform var(--dur) var(--ease-spring);
}
.footer-social a:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
  position: relative;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
  max-width: none;
}
.footer-bottom-links {
  display: flex;
  gap: var(--sp-4);
}
.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.35);
  transition: color var(--dur);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Sections (generic) ── */
.section {
  padding-block: var(--sp-7);
}
.section--sm { padding-block: var(--sp-6); }
.section--lg { padding-block: var(--sp-8); }
.section--alt { background: var(--surface-2); }
.section--indigo { background: var(--indigo); }
.section--violet { background: hsl(var(--hue-primary), 72%, 52%); }
.section--coral  { background: var(--coral); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
.section-header h2 { margin-bottom: var(--sp-3); }
.section-header .lead { margin-inline: auto; }

/* ── Hero ── */
.hero-section {
  padding-block: clamp(4rem, 10vw, 7rem) clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(ellipse 70% 80% at 105% 10%, hsl(var(--hue-primary), 72%, 96%) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at -10% 90%, rgba(0,201,167,.12) 0%, transparent 50%),
    var(--surface-1);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.hero-content { }
.hero-content .eyebrow { margin-bottom: var(--sp-3); }
.hero-title {
  margin-bottom: var(--sp-4);
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--violet);
}
.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  margin-bottom: var(--sp-5);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}
.hero-trust {
  margin-top: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--muted);
}
.hero-trust-dots {
  display: flex;
  gap: -4px;
}
.hero-trust-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--violet-mid);
  margin-left: -6px;
}
.hero-trust-dot:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
}
.hero-visual__frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--violet-light);
  aspect-ratio: 4/3;
  position: relative;
}
.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.hero-badge--tl {
  top: -14px;
  left: -20px;
}
.hero-badge--br {
  bottom: -14px;
  right: -20px;
}
.hero-badge__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

/* ── Cards / Feature Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-4);
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease-spring),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet-mid);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
}
.card__icon--violet { background: var(--violet-light); }
.card__icon--coral  { background: #FFE8E6; }
.card__icon--teal   { background: #D4FFF6; }
.card__icon--yellow { background: #FFF7D1; }

.card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.card__body {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-4);
  text-align: center;
}

.stat-item { padding: var(--sp-4); }
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--violet);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-number--coral  { color: var(--coral); }
.stat-number--teal   { color: var(--teal); }
.stat-number--yellow { color: #C18C00; }
.stat-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-soft);
}
.stat-sub {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: var(--sp-1);
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, hsl(var(--hue-primary), 72%, 48%) 0%, hsl(var(--hue-primary), 80%, 38%) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 10%, rgba(255,210,63,.18) 0%, transparent 60%),
              radial-gradient(ellipse 50% 60% at 20% 90%, rgba(0,201,167,.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 680px; margin-inline: auto; }
.cta-band h2 { color: var(--white); margin-bottom: var(--sp-3); }
.cta-band p  { color: rgba(255,255,255,.8); margin-inline: auto; margin-bottom: var(--sp-5); }
.cta-band .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); max-width: 760px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--dur);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-4);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--dur);
}
.faq-question:hover { color: var(--violet); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--dur) var(--ease-out);
}
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 var(--sp-4) var(--sp-4);
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.7;
  display: none;
}
.faq-item.is-open .faq-answer { display: block; }

/* ── Content Section ── */
.content-section .content-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-6);
  align-items: start;
}
.content-section .content-inner h2 { font-size: var(--text-2xl); }

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--sp-4);
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  position: relative;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured {
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3em 1em;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-card__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.pricing-price sup { font-size: 0.45em; vertical-align: top; margin-top: 0.3em; }
.pricing-period { font-size: var(--text-xs); color: var(--muted); margin-bottom: var(--sp-4); }
.pricing-features { margin-bottom: var(--sp-5); }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  padding-block: 0.4em;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Team / Author Card ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}
.team-card {
  text-align: center;
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: var(--sp-3);
  border: 3px solid var(--violet-light);
}
.team-card__name { font-size: var(--text-base); font-weight: 700; color: var(--ink); margin-bottom: 0.2em; }
.team-card__role { font-size: var(--text-xs); color: var(--muted); font-weight: 600; }

/* ── Testimonial ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-xs);
}
.testimonial-card__quote {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--violet-mid);
  object-fit: cover;
}
.testimonial-card__meta { }
.testimonial-card__name { font-size: var(--text-sm); font-weight: 700; color: var(--ink); }
.testimonial-card__handle { font-size: var(--text-xs); color: var(--muted); }

/* ── Forms ── */
.form-group { margin-bottom: var(--sp-4); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  font-size: var(--text-base);
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--violet);
  box-shadow: var(--shadow-glow-violet);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: var(--text-xs); color: var(--muted); margin-top: var(--sp-1); }

.subscribe-row {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  max-width: 480px;
}
.subscribe-row .form-input { flex: 1; min-width: 200px; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.color-violet { color: var(--violet); }
.color-coral  { color: var(--coral); }
.color-teal   { color: var(--teal); }
.color-yellow { color: #C18C00; }
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.gap-2 { gap: var(--sp-2); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: var(--sp-5);
}

/* ── Pill tag ── */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.3em 0.8em;
  border-radius: var(--r-pill);
  background: var(--violet-light);
  color: var(--violet);
}
.tag--coral  { background: #FFE8E6; color: #C62A1E; }
.tag--teal   { background: #D4FFF6; color: #007A65; }
.tag--yellow { background: #FFF7D1; color: #7A5B00; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }

  .content-section .content-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band {
    padding: var(--sp-6) var(--sp-4);
  }
  .nav-actions .btn { display: none; }
}
img,svg,video{max-width:100%;height:auto}
*{box-sizing:border-box}
