/* ============================================================
   TRADEWEBS — style.css
   Design: Light theme + vibrant orange. Clean professional feel.
   ============================================================ */

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

:root {
  /* Colors */
  --clr-bg:         #faf8f5;
  --clr-bg-2:       #f3f0eb;
  --clr-bg-card:    #faf8f5;
  --clr-surface:    #faf8f5;
  --clr-border:     rgba(0,0,0,0.09);
  --clr-shadow:     0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --clr-shadow-lg:  0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --clr-orange:     #f97316;
  --clr-orange-dim: #ea6c0a;
  --clr-orange-glow:rgba(249,115,22,0.18);
  --clr-text:       #0f172a;
  --clr-text-muted: #64748b;
  --clr-text-faint: #94a3b8;
  --clr-white:      #ffffff;

  /* Typography */
  --font-head: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 7rem;
  --container:   1180px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Scroll-driven animation support flag */
  --in-oklch: ;
  --in-oklab: ;
}

@supports (background: linear-gradient(in oklab, white, black)) {
  :root { --in-oklab: in oklab; --in-oklch: in oklch; }
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea, button { font: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }

.text-gradient {
  background: linear-gradient(135deg var(--in-oklch), var(--clr-orange) 0%, #facc15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  background: var(--clr-orange);
  color: #fff;
}
.btn:hover { background: var(--clr-orange-dim); transform: translateY(-1px); box-shadow: 0 8px 24px var(--clr-orange-glow); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--clr-orange); color: #fff; }
.btn--primary:hover { background: var(--clr-orange-dim); }

.btn--ghost {
  background: transparent;
  border-color: var(--clr-border);
  color: var(--clr-text);
}
.btn--ghost:hover { border-color: var(--clr-orange); color: var(--clr-orange); background: transparent; box-shadow: none; }

.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn--lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ── Reveal Animations (scroll-driven + JS fallback) ───────── */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 0.6s var(--ease), translate 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  translate: 0 0;
}

/* Stagger children if parent has .reveal-group */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: 0 0; transition: none; }
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--clr-border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.25rem;
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo — slightly larger since it has more space */
.footer__logo-img {
  height: 28px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-inline-start: auto;
  list-style: none;
}
.nav__links a {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--clr-text); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-inline-start: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav__mobile a {
  font-size: 1rem;
  color: var(--clr-text-muted);
}
.nav__mobile a:hover { color: var(--clr-white); }
.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav__links, .nav > .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__inner .btn { display: none; }
}

/* ── Hero — editorial 2-column split ────────────────────────── */
.hero {
  position: relative;
  padding-block: 8rem 6rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.09) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

/* 2-col editorial layout */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

/* Left column: all text */
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__heading {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--clr-text);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 44ch;
  line-height: 1.8;
}

/* Inline testimonial — pulled high, breaks the template pattern */
.hero__quote {
  border-left: 3px solid var(--clr-orange);
  padding-left: 1.25rem;
  margin: 0;
}
.hero__quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.6;
}
.hero__quote cite {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  font-style: normal;
  margin-top: 0.35rem;
  display: block;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-block-start: 0.25rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--clr-text-faint);
  padding-top: 0.5rem;
}
.hero__trades {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hero__trades span {
  padding: 0.2rem 0.65rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

/* Right column: device mockup image */
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
  border: 1px solid var(--clr-border);
}
.hero__mockup {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__text { align-items: flex-start; }
  .hero__heading { font-size: clamp(2.2rem, 6vw, 3.2rem); }
}

/* ── Stats strip ────────────────────────────────────────────── */
.stats-strip {
  background: var(--clr-text);
  padding-block: 2.5rem;
}
.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat__number {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--clr-orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.stat__divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 640px) {
  .stat__divider { display: none; }
  .stats-strip__inner { gap: 1.5rem; }
}

/* ── Problem Strip ──────────────────────────────────────────── */
.problem {
  padding-block: 6rem;
  background: linear-gradient(160deg, rgba(249,115,22,0.05) 0%, var(--clr-bg) 60%);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 5rem;
}

.problem__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--clr-shadow-lg);
  display: block;
}

.problem__words {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.problem__text {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
  color: var(--clr-text);
}

.problem__author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.problem__solution {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .problem__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding-block: var(--section-gap);
}

.section--dark {
  background: var(--clr-bg-2);
  border-block: 1px solid var(--clr-border);
}

/* Centred header (default — kept for backwards compat) */
.section__header {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
  margin-block-end: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Left-aligned header variant — used on most sections now */
.section__header--left {
  text-align: left;
  margin-inline: 0;
  max-width: 38ch;
}

.section__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-orange);
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--clr-text);
  letter-spacing: -0.02em;
}

.section__sub {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* -- How it works - numbered editorial list ------------------- */
.how-works__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  align-items: start;
}

.how-works__header {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--clr-border);
}
.step-item:last-child { border-bottom: 1px solid var(--clr-border); }

.step-item__num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--clr-orange);
  text-transform: uppercase;
  padding-top: 0.3rem;
}

.step-item__body { display: flex; flex-direction: column; gap: 0.6rem; }

.step-item__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}

.step-item__desc {
  font-size: 0.975rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

@media (max-width: 800px) {
  .how-works__grid { grid-template-columns: 1fr; gap: 3rem; }
  .how-works__header { position: static; }
}

/* -- Features - asymmetric 2-large + 4-small grid ------------ */
.features-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--clr-shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.feature:hover {
  border-color: rgba(249,115,22,0.35);
  transform: translateY(-3px);
  box-shadow: var(--clr-shadow-lg);
}
.feature--large { padding: 2.5rem; }
.feature--small { padding: 1.5rem; }

.feature__tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-orange);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  width: fit-content;
}
.feature__title { font-size: 1.1rem; font-weight: 700; color: var(--clr-text); letter-spacing: -0.01em; }
.feature--small .feature__title { font-size: 0.95rem; }
.feature__desc { font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.65; }

@media (max-width: 640px) {
  .features-asymmetric { grid-template-columns: 1fr; }
}

/* -- FAQ grid layout ------------------------------------------ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 6rem;
  align-items: start;
}
.faq-header {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 800px) {
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-header { position: static; }
}

/* -- Footer logo smaller size ---------------------------------- */
.footer__logo-img {
  height: 60px;
}

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

.example-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--clr-shadow);
  transition: border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.example-card:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}

.example-card__preview {
  padding: 1.25rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.example-card__preview--plumber { background: linear-gradient(135deg, #1e3a5f, #0f2035); }
.example-card__preview--electrician { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.example-card__preview--builder { background: linear-gradient(135deg, #2d1a0a, #3d2210); }

/* Mock browser chrome */
.mock-browser {
  width: 100%;
  max-width: 260px;
  background: #1e2535;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.mock-browser__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #141927;
}
.mock-browser__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mock-browser__bar span:nth-child(1) { background: #ff5f57; }
.mock-browser__bar span:nth-child(2) { background: #febc2e; }
.mock-browser__bar span:nth-child(3) { background: #28c840; }

.mock-browser__content { padding: 0; }

.mock-site { height: 110px; position: relative; overflow: hidden; }
.mock-site--plumber .mock-hero { background: linear-gradient(135deg, #1e3a5f 0%, #0f2035 100%); }
.mock-site--electrician .mock-hero { background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1e 100%); }
.mock-site--builder .mock-hero { background: linear-gradient(135deg, #4a3000 0%, #2d1a00 100%); }

.mock-nav {
  height: 12px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 8px;
}
.mock-hero {
  flex: 1;
  padding: 10px;
}
.mock-h1 {
  height: 10px;
  border-radius: 3px;
  background: rgba(255,255,255,0.6);
  width: 70%;
  margin-bottom: 6px;
}
.mock-sub {
  height: 6px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  width: 55%;
  margin-bottom: 10px;
}
.mock-btn {
  height: 14px;
  border-radius: 3px;
  background: var(--clr-orange);
  width: 35%;
}

.example-card__info {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.example-card__trade { font-size: 0.8rem; color: var(--clr-orange); font-weight: 600; }
.example-card__title { font-size: 1.05rem; color: var(--clr-text); font-weight: 700; }
.example-card__desc { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.65; }

@media (max-width: 900px) { .examples { grid-template-columns: 1fr; } }

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

.pricing-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  box-shadow: var(--clr-shadow);
  transition: border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.pricing-card:hover { border-color: rgba(249,115,22,0.35); transform: translateY(-4px); box-shadow: var(--clr-shadow-lg); }

.pricing-card--featured {
  border-color: var(--clr-orange);
  background: linear-gradient(160deg, rgba(249,115,22,0.06) 0%, #fff 60%);
  box-shadow: 0 4px 24px rgba(249,115,22,0.15);
}
.pricing-card--featured:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(249,115,22,0.2); }

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  translate: -50% 0;
  background: var(--clr-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font-head);
}

.pricing-card__header { display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card__name { font-size: 1.1rem; font-weight: 700; color: var(--clr-text); }
.pricing-card__addon-desc { font-size: 0.85rem; color: var(--clr-text-muted); }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-block-start: 0.25rem;
}
.pricing-card__currency { font-size: 1.4rem; font-weight: 700; color: var(--clr-text); align-self: flex-start; padding-top: 6px; }
.pricing-card__amount { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; color: var(--clr-text); line-height: 1; }
.pricing-card__period { font-size: 0.9rem; color: var(--clr-text-muted); }

.pricing-card__setup { font-size: 0.8rem; color: var(--clr-text-faint); }
.pricing-card__saving {
  font-size: 0.8rem;
  color: #4ade80;
  font-weight: 600;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  display: inline-block;
  width: fit-content;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__features--addons li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--clr-border);
  gap: 0.5rem;
}
.pricing-card__features--addons li:last-child { border-bottom: none; }
.pricing-card__features--addons li strong { color: var(--clr-text); font-size: 0.85rem; }
.pricing-card__features--addons li span { color: var(--clr-orange); font-weight: 600; font-size: 0.85rem; white-space: nowrap; }

.badge-new {
  font-size: 0.7rem;
  background: rgba(249,115,22,0.15);
  color: var(--clr-orange);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  font-weight: 700;
}

@media (max-width: 900px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  width: 100%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--clr-shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: rgba(249,115,22,0.35); }
.faq-item:hover { border-color: rgba(249,115,22,0.25); }

.faq-item__question {
  list-style: none;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}
.faq-item__question::-webkit-details-marker { display: none; }

/* Chevron icon — CSS border, no extra characters */
.faq-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--clr-orange);
  border-bottom: 2px solid var(--clr-orange);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-bottom: 3px;
}
.faq-item[open] .faq-icon {
  transform: rotate(-135deg);
  margin-bottom: -3px;
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ── Contact / CTA ──────────────────────────────────────────── */
.section--cta { padding-block: var(--section-gap); }

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

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cta-content__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--clr-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-content__sub { font-size: 0.95rem; color: var(--clr-text-muted); line-height: 1.75; }
.cta-content__checklist { display: flex; flex-direction: column; gap: 0.5rem; }
.cta-content__checklist li { font-size: 0.9rem; color: var(--clr-text-muted); }

/* Form */
.contact-form {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--clr-shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fafc;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  color: var(--clr-text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group select { color: var(--clr-text-muted); }
.form-group select option { background: var(--clr-bg-card); color: var(--clr-text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px var(--clr-orange-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bec5; }
.form-group textarea { resize: vertical; min-height: 90px; }

@media (max-width: 768px) {
  .cta-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding-block: 3rem;
  border-top: 1px solid var(--clr-border);
  background: var(--clr-bg-2);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__tagline { font-size: 0.85rem; color: var(--clr-text-faint); }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__links a { font-size: 0.875rem; color: var(--clr-text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--clr-text); }

.footer__copy { font-size: 0.8rem; color: var(--clr-text-faint); width: 100%; }

@media (max-width: 640px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ── WhatsApp strip ──────────────────────────────────────────── */
.wa-strip {
  background: var(--clr-text);
  padding-block: 2.75rem;
}
.wa-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.wa-strip__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.wa-strip__heading {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.wa-strip__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 48ch;
  line-height: 1.6;
}
.wa-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.wa-strip__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}
@media (max-width: 640px) {
  .wa-strip__inner { flex-direction: column; align-items: flex-start; }
  .wa-strip__btn { width: 100%; justify-content: center; }
}

/* ── WhatsApp floating button ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.2rem 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: none;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.whatsapp-float svg {
  fill: #fff;
  display: block;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: none;
}
@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.85rem; bottom: 1.5rem; right: 1.5rem; }
}
