/* ═══════════════════════════════════════════════════════════════
   ECAB13 SAAS THEME — v1.0.0
   Palette : teal/green (#0D9488) + indigo accent (#6366F1)
   Font    : Inter (Google Fonts)
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --teal:         #0D9488;
  --teal-dark:    #0F766E;
  --teal-darker:  #134E4A;
  --teal-light:   #CCFBF1;
  --teal-soft:    #F0FDFA;
  --indigo:       #6366F1;
  --indigo-dark:  #4F46E5;
  --gray-50:      #F8FAFC;
  --gray-100:     #F1F5F9;
  --gray-200:     #E2E8F0;
  --gray-300:     #CBD5E1;
  --gray-500:     #64748B;
  --gray-700:     #334155;
  --gray-900:     #0F172A;
  --white:        #FFFFFF;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --transition:   .2s ease;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--gray-500); line-height: 1.75; }

.text-teal    { color: var(--teal) !important; }
.text-indigo  { color: var(--indigo) !important; }
.text-white   { color: var(--white) !important; }
.text-muted   { color: var(--gray-500) !important; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm { max-width: 780px; }
.container-xs { max-width: 560px; }

/* ── Section ────────────────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
}

.text-center .section-desc { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,148,136,.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--teal-soft);
  border-color: var(--teal-light);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}

.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-sm { padding: .45rem 1rem; font-size: .82rem; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  padding: 0;
}

.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-900);
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  flex: 1;
}

.navbar__nav a {
  display: block;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--gray-700);
}

.navbar__toggle svg { display: block; }

/* Mobile nav */
.navbar__mobile {
  display: none;
  border-top: 1px solid var(--gray-100);
  padding: 1rem 0;
}

.navbar__mobile.is-open { display: block; }

.navbar__mobile a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background var(--transition);
}

.navbar__mobile a:hover { background: var(--gray-50); color: var(--teal); }

.navbar__mobile-actions {
  display: flex;
  gap: .75rem;
  padding: 1rem 1.5rem 0;
}

.navbar__mobile-actions .btn { flex: 1; justify-content: center; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--teal-soft) 60%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: var(--teal-soft);
  border: 1px solid var(--teal-light);
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
}

.hero__badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__title .highlight {
  color: var(--teal);
  position: relative;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .83rem;
  color: var(--gray-500);
}

.hero__trust .avatars {
  display: flex;
}

.hero__trust .avatars span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--teal-light);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.hero__trust .avatars span:first-child { margin-left: 0; }

.hero__visual {
  position: relative;
}

.hero__mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .7rem 1rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.hero__mockup-bar .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.hero__mockup-bar .dot:nth-child(1) { background: #FF5F57; }
.hero__mockup-bar .dot:nth-child(2) { background: #FEBC2E; }
.hero__mockup-bar .dot:nth-child(3) { background: #28C840; }

.hero__mockup-bar .url {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: .25rem .75rem;
  font-size: .75rem;
  color: var(--gray-500);
  font-family: monospace;
}

.hero__mockup img {
  width: 100%;
}

.hero__floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
}

.hero__floating-card .icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__floating-card--teal .icon { background: var(--teal-soft); color: var(--teal); }
.hero__floating-card--indigo .icon { background: #EEF2FF; color: var(--indigo); }

.hero__floating-card .label { color: var(--gray-500); font-size: .75rem; }
.hero__floating-card .value { font-weight: 700; color: var(--gray-900); }

.hero__floating-card--1 { bottom: -1.5rem; left: -2rem; }
.hero__floating-card--2 { top: -1.5rem; right: -1rem; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats {
  background: var(--gray-900);
  padding: 3.5rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .35rem;
}

.stat__value span { color: var(--teal); }

.stat__label {
  font-size: .875rem;
  color: var(--gray-500);
}

/* ── Features grid ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--teal-light);
}

.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.feature-card__icon--teal   { background: var(--teal-soft);  color: var(--teal); }
.feature-card__icon--indigo { background: #EEF2FF; color: var(--indigo); }
.feature-card__icon--amber  { background: #FFFBEB; color: #D97706; }
.feature-card__icon--rose   { background: #FFF1F2; color: #E11D48; }
.feature-card__icon--sky    { background: #F0F9FF; color: #0284C7; }
.feature-card__icon--purple { background: #FAF5FF; color: #9333EA; }

.feature-card h3 {
  margin-bottom: .5rem;
  font-size: 1.05rem;
}

.feature-card p {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.feature-card__badge {
  display: inline-block;
  margin-top: .75rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.badge-done    { background: #DCFCE7; color: #15803D; }
.badge-soon    { background: #DBEAFE; color: #1D4ED8; }
.badge-coming  { background: var(--gray-100); color: var(--gray-500); }
.badge-beta    { background: #FEF3C7; color: #B45309; }

/* ── Roadmap ────────────────────────────────────────────────── */
.roadmap {
  position: relative;
  padding-left: 2.5rem;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.roadmap-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -2.9rem; top: .2rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--gray-300);
  box-shadow: 0 0 0 2px var(--gray-300);
}

.roadmap-item--done::before {
  background: var(--teal);
  box-shadow: 0 0 0 2px var(--teal-light);
}

.roadmap-item--soon::before {
  background: var(--indigo);
  box-shadow: 0 0 0 2px #EEF2FF;
}

.roadmap-item__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}

.roadmap-item__date {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.roadmap-item h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}

.roadmap-item p {
  font-size: .875rem;
}

/* ── Pricing ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  background: var(--white);
  padding: 2.25rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, var(--teal-soft) 0%, var(--white) 50%);
}

.pricing-card--featured::before {
  content: 'Populaire';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: 0 0 8px 8px;
}

.pricing-card__name {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: .5rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .35rem;
}

.pricing-card__amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gray-900);
}

.pricing-card__currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-700);
}

.pricing-card__period {
  font-size: .875rem;
  color: var(--gray-500);
}

.pricing-card__desc {
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .45rem 0;
  font-size: .875rem;
  color: var(--gray-700);
}

.pricing-card__features li .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #15803D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  margin-top: .1rem;
}

.pricing-card__features li.unavailable {
  color: var(--gray-300);
}

.pricing-card__features li.unavailable .check {
  background: var(--gray-100);
  color: var(--gray-300);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ── Signup / form ──────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-card__header {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--teal-darker), var(--teal));
  color: var(--white);
}

.form-card__step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-step {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
}

.form-step.active { color: var(--white); }
.form-step__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
}

.form-step.active .form-step__num {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}

.form-step-sep { color: rgba(255,255,255,.3); font-size: .7rem; }

.form-card__body { padding: 2.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}

.form-field .hint {
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: .25rem;
}

.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}

.form-control::placeholder { color: var(--gray-300); }

select.form-control { appearance: none; cursor: pointer; }

.domain-input-group {
  display: flex;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.domain-input-group:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
}

.domain-input-group input {
  flex: 1;
  padding: .7rem 1rem;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .9rem;
  color: var(--gray-900);
}

.domain-input-group .suffix {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: var(--gray-50);
  border-left: 1px solid var(--gray-200);
  font-size: .85rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── Checkout ───────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.order-summary {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  position: sticky;
  top: 5rem;
}

.order-summary h3 { margin-bottom: 1.5rem; font-size: 1rem; }

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .875rem;
}

.order-line:last-of-type { border-bottom: none; }

.order-line .name { color: var(--gray-700); }
.order-line .price { font-weight: 600; color: var(--gray-900); }

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid var(--gray-900);
  margin-top: .5rem;
}

.order-total .label { font-weight: 700; font-size: .9rem; }
.order-total .amount { font-size: 1.5rem; font-weight: 800; color: var(--teal-dark); }

.test-mode-banner {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  margin-bottom: 1.5rem;
  font-size: .875rem;
}

.test-mode-banner .icon { font-size: 1.25rem; }
.test-mode-banner strong { color: #92400E; }
.test-mode-banner span { color: #78350F; }

/* ── CTA section ────────────────────────────────────────────── */
.cta {
  background: linear-gradient(145deg, var(--teal-darker) 0%, var(--teal-dark) 50%, var(--teal) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.cta .container { position: relative; z-index: 1; }

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}

.testimonial-card__text {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--teal-dark);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-900);
}

.testimonial-card__role {
  font-size: .78rem;
  color: var(--gray-500);
}

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

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--gray-900);
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-item__q:hover { color: var(--teal); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  font-size: .75rem;
  color: var(--gray-500);
}

.faq-item.open .faq-item__icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__a {
  display: none;
  padding-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.faq-item.open .faq-item__a { display: block; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: var(--gray-500);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.footer__brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__desc {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links a {
  font-size: .875rem;
  color: var(--gray-500);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--teal-light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: .8rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--teal-soft) 100%);
  border-bottom: 1px solid var(--gray-200);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
  list-style: none;
}

.page-hero .breadcrumb a { color: var(--teal); }
.page-hero .breadcrumb .sep { color: var(--gray-300); }

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { padding-top: 7rem; padding-bottom: 3.5rem; }
  .navbar__nav { display: none; }
  .navbar__actions .btn { display: none; }
  .navbar__actions .btn:last-child { display: flex; }
  .navbar__toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
