/* FabConnect Landing components — load after main.css and tokens.css */
/* ═══════════════════════════════════════════════════════════════
   LANDING PAGE v2 — "Luminous" Design
   Cairo headings | Hanken Grotesk body
   #0A2540 navy | #0057C0 blue | #FE820E orange
   ═══════════════════════════════════════════════════════════════ */


/* ── Shared section primitives ── */
.lp-kicker {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
  display: block;
  margin-bottom: 10px;
}
.lp-kicker--primary { color: var(--color-primary); }

.lp-section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.12;
  color: var(--color-default);
  letter-spacing: -1.5px;
  margin: 0 0 12px;
}
.lp-section-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}


/* ─── Hero v2 ─── */
.hero-v2 {
  background: #fff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-v2__row {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-v2__text {
  flex: 1;
  min-width: 0;
}
.hero-v2__visual {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Badge pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0,87,192,.08);
  border: 1px solid rgba(0,87,192,.14);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: .25rem .85rem;
  margin-bottom: 1.2rem;
}
.hero-badge-pill .dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge-pill .tag-new { font-weight: 700; }

/* Heading */
.hero-v2__heading {
  font-family: var(--font-heading) !important;
  font-weight: 900;
  font-size: 66px;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--color-default);
  margin-bottom: .9rem;
}
.hero-v2__heading-accent { color: var(--color-primary); }

.hero-v2__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-body);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 2rem;
}

/* CTA row */
.hero-v2__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-hero-upload {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 26px;
  background: var(--color-accent);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(254,130,14,.32);
  transition: background .2s, transform .15s;
  min-height: 44px;
}
.btn-hero-upload:hover {
  background: var(--color-accent-deep);
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 26px;
  background: rgba(10,37,64,.07);
  color: var(--color-default) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: background .2s;
  min-height: 44px;
}
.btn-hero-ghost:hover {
  background: rgba(10,37,64,.13);
  color: var(--color-default) !important;
}

/* Hero image */
.hero-v2__img-wrap {
  position: relative;
}
.hero-v2__img-wrap > img {
  width: 108%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 72px rgba(0,87,192,.22));
}

/* Floating stat card */
.hero-stat-card {
  position: absolute;
  bottom: 24px;
  left: -10px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 13px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  border: 1px solid var(--color-neutral-high);
  z-index: 2;
}
.hero-stat-card__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1.1;
}
.hero-stat-card__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 2px;
}

/* Ambient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: .55;
}
.hero-blob--1 {
  width: 800px; height: 800px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(0,87,192,.18) 0%, transparent 70%);
  animation: blobFloat1 14s ease-in-out infinite;
}
.hero-blob--2 {
  width: 650px; height: 650px;
  top: 60px; right: -100px;
  background: radial-gradient(circle, rgba(254,130,14,.12) 0%, transparent 70%);
  animation: blobFloat2 16s ease-in-out infinite;
}
.hero-blob--3 {
  width: 500px; height: 500px;
  bottom: -80px; left: 38%;
  background: radial-gradient(circle, rgba(0,87,192,.12) 0%, transparent 70%);
  animation: blobFloat3 18s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(40px,30px) scale(1.05); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-30px,20px) scale(1.08); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(20px,-25px) scale(1.04); }
}


/* ─── Logos Strip ─── */
.logos-strip {
  background: #fff;
  border-top: 1px solid var(--color-neutral-high);
  border-bottom: 1px solid var(--color-neutral-high);
  padding: 32px 0;
  text-align: center;
}
.logos-strip__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 20px;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.logo-item {
  height: 30px;
  opacity: .38;
  filter: grayscale(1);
  object-fit: contain;
  transition: opacity .3s, filter .3s;
}
.logo-item:hover {
  opacity: .85;
  filter: grayscale(0);
}


/* ─── How It Works ─── */
.section-process {
  background: var(--color-neutral-dim);
  padding: 100px 0;
}
.section-process__header {
  text-align: center;
  margin-bottom: 56px;
}
.section-process__header .lp-section-sub {
  margin-left: auto;
  margin-right: auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Process card v2 — dark gradient */
.process-card-v2 {
  border-radius: 18px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.process-card-v2--1 { background: linear-gradient(160deg, #1868d4 0%, #0A2540 100%); }
.process-card-v2--2 { background: linear-gradient(160deg, #0e5cc7 0%, #0A2540 100%); }
.process-card-v2--3 { background: linear-gradient(160deg, #0a4fa8 0%, #071929 100%); }
.process-card-v2--4 { background: linear-gradient(160deg, #0a4587 0%, #0a1f36 100%); }

.process-card-v2__mockup {
  flex: 1;
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* Mockup UI elements */
.mockup-dropzone {
  background: rgba(255,255,255,.08);
  border: 1.5px dashed rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}
.mockup-dropzone__icon { font-size: 1.4rem; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.mockup-dropzone__text { font-size: .72rem; color: rgba(255,255,255,.4); font-family: var(--font-body); }

.mockup-file-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .72rem;
  font-family: var(--font-body);
}
.mockup-file-row__icon  { color: rgba(255,255,255,.4); }
.mockup-file-row__name  { color: rgba(255,255,255,.7); flex: 1; }
.mockup-file-row__status { color: var(--color-accent); font-weight: 600; }

.mockup-quote-panel { padding: 4px 0; }
.mockup-quote-panel__badge {
  background: rgba(34,197,94,.2);
  color: #34D399;
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
}
.mockup-quote-panel__row {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,.55);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-quote-panel__row span:last-child { color: #fff; font-weight: 600; }
.mockup-price { font-family: var(--font-heading); font-weight: 700; }
.mockup-quote-panel__btn {
  margin-top: 14px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .75rem;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
}

.mockup-timeline { display: flex; flex-direction: column; gap: 8px; }
.mockup-timeline__step {
  font-size: .72rem;
  font-family: var(--font-body);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-timeline__step--done   { background: rgba(34,197,94,.12); color: #34D399; }
.mockup-timeline__step--active { background: rgba(254,130,14,.15); color: var(--color-accent); font-weight: 600; }
.mockup-timeline__step--dim    { color: rgba(255,255,255,.25); padding-left: 32px; }

.mockup-delivery__confirm {
  background: rgba(34,197,94,.12);
  color: #34D399;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-delivery__metrics { display: flex; gap: 8px; }
.mockup-metric {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.mockup-metric__val { display: block; font-family: var(--font-heading); font-weight: 700; font-size: .82rem; color: #fff; }
.mockup-metric__lbl { display: block; font-family: var(--font-body); font-size: .58rem; color: rgba(255,255,255,.4); margin-top: 2px; text-transform: uppercase; letter-spacing: .5px; }

.process-card-v2__body { padding: 0 20px 24px; }
.process-card-v2__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 6px;
}
.process-card-v2__desc {
  font-family: var(--font-body);
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
  margin: 0 0 10px;
}
.process-card-v2__link {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.process-card-v2__link:hover { color: rgba(255,255,255,.8); }


/* ─── Services Section ─── */
.section-services {
  background: #fff;
  padding: 100px 0;
}
.section-services__header {
  max-width: 600px;
  margin-bottom: 52px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--color-neutral-high);
  border-radius: 20px;
  padding: 24px 24px 0;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.svc-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-default);
  margin: 0;
}
.svc-card__arrow {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--color-neutral-dim);
  border: 1px solid var(--color-neutral-high);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-default);
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.svc-card__arrow:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.svc-card__desc {
  font-family: var(--font-body);
  font-size: .82rem;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}
.svc-card__img-area {
  flex: 1;
  margin: 16px -24px 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card__img-area img {
  max-height: 172px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.12));
}
.grad-a .svc-card__img-area { background: rgba(0,87,192,.06); }
.grad-b .svc-card__img-area { background: rgba(254,130,14,.06); }
.grad-c .svc-card__img-area { background: rgba(22,163,74,.06); }
.grad-d .svc-card__img-area { background: rgba(124,58,237,.06); }


/* ─── Quote Teaser ─── */
.section-quote-teaser {
  background: #fff;
  padding: 80px 0;
}
.quote-teaser-card {
  background: linear-gradient(135deg, #EEF4FF 0%, #E8EFFF 50%, #F0F7FF 100%);
  border-radius: 24px;
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-teaser-card__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.quote-teaser-card__circle--1 {
  width: 300px; height: 300px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(0,87,192,.08) 0%, transparent 70%);
}
.quote-teaser-card__circle--2 {
  width: 250px; height: 250px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, rgba(254,130,14,.06) 0%, transparent 70%);
}
.quote-teaser-card__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

/* Chips */
.quote-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0;
}
.quote-chip {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-neutral-high);
  background: #fff;
  color: var(--color-default);
  cursor: pointer;
  transition: all .15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.quote-chip:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.quote-chip--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.quote-chip--active:hover {
  background: var(--color-primary-deep);
  border-color: var(--color-primary-deep);
  color: #fff;
}

/* Stepper */
.quote-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.quote-stepper__btn {
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-default);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.quote-stepper__btn:hover { background: var(--color-neutral-dim); }
.quote-stepper__val {
  width: 52px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-default);
  border-left: 1.5px solid #CBD5E1;
  border-right: 1.5px solid #CBD5E1;
  line-height: 44px;
}


/* ─── Stats Section ─── */
.section-stats {
  background: var(--color-primary-dark);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.stats-grid__item { padding: 0 24px; }
.stats-grid__item--bordered { border-left: 1px solid rgba(255,255,255,.1); }
.stats-grid__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
}
.stats-grid__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .5rem;
}


/* ─── Why FabConnect (Trust) ─── */
.section-trust {
  background:
    radial-gradient(ellipse 60% 60% at 8% 50%, rgba(0,87,192,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 92% 30%, rgba(254,130,14,.05) 0%, transparent 70%),
    #F7FAFD;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-trust__bg-1 {
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; left: -150px;
  background: radial-gradient(ellipse 60% 60% at 8% 50%, rgba(0,87,192,.09) 0%, transparent 70%);
  pointer-events: none;
}
.section-trust__bg-2 {
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(ellipse 50% 50% at 92% 30%, rgba(254,130,14,.06) 0%, transparent 70%);
  pointer-events: none;
}

.trust-kicker-light {
  color: var(--color-primary);
}

.trust-row {
  display: flex;
  gap: 80px;
  align-items: center;
}
.trust-row__img {
  flex: 1;
  max-width: 520px;
}
.trust-row__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(10,37,64,.14);
  border: 1px solid rgba(230,235,241,.9);
  display: block;
}
.trust-row__content { flex: 1; }

.trust-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 42px;
  letter-spacing: -1.5px;
  color: var(--color-default);
  margin: 0 0 40px;
  line-height: 1.12;
}

.trust-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.trust-feature {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(10,37,64,.09);
  margin-bottom: 24px;
}
.trust-feature__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.trust-feature__kicker--blue   { color: var(--color-primary); }
.trust-feature__kicker--orange { color: var(--color-accent); }

.trust-feature__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-default);
  margin: 0 0 5px;
}
.trust-feature__desc {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

.trust-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(10,37,64,.14);
  border: 1px solid rgba(230,235,241,.9);
}
.trust-image-wrap img {
  width: 100%;
  display: block;
  height: 480px;
  object-fit: cover;
}
.trust-kicker {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.trust-kicker.blue { color: #0057C0; }
.trust-kicker.orange { color: #FE820E; }
.trust-feat-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-default);
  margin-bottom: 4px;
}
.trust-feat-body {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
}


/* ─── Testimonials ─── */
.section-testimonials {
  background: #F4F7FB;
  padding: 100px 0;
}
.section-testimonials__header {
  text-align: center;
  margin-bottom: 52px;
}
/* FIX: using .testi-grid not Bootstrap row */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1.5px solid var(--color-neutral-high);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  border-top: 4px solid var(--color-accent);
  transition: box-shadow .25s, transform .2s;
}
.testi-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.testi-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-default);
  line-height: 1.68;
  margin: 0 0 24px;
}
/* FIX: .testi-author class used in HTML */
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-neutral-high);
}
.testi-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  color: var(--color-default);
  margin: 0;
}
.testi-role {
  font-family: var(--font-body);
  font-size: .8rem;
  color: #6B7280;
  margin: 0;
}


/* ─── Newsletter ─── */
/* ══ 8. NEWSLETTER ══ */
.section-newsletter { padding:80px 0; background:#fff; min-height:60vh; display:flex; align-items:center; }
.newsletter-box { background:var(--color-primary-dark); border-radius:28px; padding:56px 60px; position:relative; overflow:hidden; box-shadow:0 25px 50px rgba(10,37,64,.25); }
.newsletter-box::before { content:''; position:absolute; width:600px; height:600px; background:radial-gradient(circle, rgba(0,87,192,.2), transparent 70%); top:-220px; right:-60px; border-radius:50%; pointer-events:none; }
.newsletter-box::after { content:''; position:absolute; width:600px; height:600px; background:radial-gradient(circle, rgba(254,130,14,.12), transparent 70%); bottom:-260px; left:-200px; border-radius:50%; pointer-events:none; }
.newsletter-box h2 { font-family:'Cairo',sans-serif !important; font-weight:700; font-size:clamp(1.8rem,4vw,2.6rem); letter-spacing:-.5px; color:#fff; line-height:1.15; position:relative; z-index:1; }
.newsletter-box p { font-family:'Hanken Grotesk',sans-serif; font-size:.97rem; color:rgba(255,255,255,.7); line-height:1.6; position:relative; z-index:1; }
.newsletter-form { display:flex; gap:.5rem; flex-wrap:wrap; position:relative; z-index:1; }
.newsletter-input { flex:1; min-width:220px; background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.22); border-radius:6px; padding:.7rem 1rem; color:#fff; font-family:'Hanken Grotesk',sans-serif; font-size:.95rem; outline:none; transition:border-color .2s; }
.newsletter-input::placeholder { color:rgba(255,255,255,.4); }
.newsletter-input:focus { border-color:var(--color-primary); }
.btn-subscribe { background:var(--color-primary); color:#fff; border:none; border-radius:6px; padding:.7rem 1.4rem; font-family:'Cairo',sans-serif; font-size:.95rem; font-weight:700; cursor:pointer; white-space:nowrap; transition:background .2s; }
.btn-subscribe:hover { background:var(--color-primary-deep); }
@media (max-width:600px){ .svc-grid { grid-template-columns: 1fr; } }
@media (max-width:575px){ .newsletter-box{ padding:36px 24px; } }


/* ══════════════════════════════════════════════════════
   RESPONSIVE — Landing Page v2
   ══════════════════════════════════════════════════════ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {

  /* Hero */
  .hero-v2 { padding: 80px 0 60px; min-height: auto; }
  .hero-v2__row { flex-direction: column; gap: 32px; }
  .hero-v2__visual { order: -1; width: 100%; }
  .hero-v2__img-wrap > img { width: 100%; }
  .hero-v2__heading { font-size: 42px; letter-spacing: -1.5px; }
  .hero-blob { opacity: .35; }

  /* How It Works */
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card-v2 { min-height: 360px; }

  /* Services */
  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  /* Quote teaser */
  .quote-teaser-card { padding: 48px 40px; }

  /* Why FabConnect */
  .section-trust { background:#fff; padding:80px 0; position:relative; overflow:hidden; min-height:75vh; display:flex; align-items:center; }
  .section-trust::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 60% 60% at 8% 50%, rgba(0,87,192,.07) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 92% 30%, rgba(254,130,14,.05) 0%, transparent 70%); pointer-events:none; }
  .trust-kicker { font-family:'Hanken Grotesk',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:3px; }
  .trust-kicker.blue { color:#0057C0; }
  .trust-kicker.orange { color:#FE820E; }
  .trust-feat-title { font-family:'Cairo',sans-serif; font-size:1.05rem; font-weight:800; color:var(--color-primary-dark); margin-bottom:4px; }
  .trust-feat-body { font-family:'Hanken Grotesk',sans-serif; font-size:.9rem; color:var(--color-text-muted); line-height:1.6; margin-bottom:2rem; }
  .trust-image-wrap { border-radius:24px; overflow:hidden; box-shadow:0 25px 50px rgba(0,0,0,.2); }
  .trust-image-wrap img { width:100%; display:block; height:480px; object-fit:cover; }
  /* Newsletter */
  .newsletter-row { flex-direction: column; gap: 40px; }
  .newsletter-row__form { max-width: 100%; width: 100%; }
  .newsletter-heading { font-size: 2rem; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid__number { font-size: 2.6rem; }
}

/* ── Mobile (≤ 575px) ── */
@media (max-width: 575px) {

  /* Hero */
  .hero-v2 { padding: 60px 0 48px; }
  .hero-v2__heading { font-size: 34px; letter-spacing: -1px; }
  .hero-v2__sub { font-size: .95rem; }
  .hero-v2__cta-row { flex-direction: column; }
  .btn-hero-upload,
  .btn-hero-ghost { width: 100%; justify-content: center; }
  .hero-stat-card { display: none; }

  /* Logos */
  .logos-row { gap: 28px; }
  .logo-item { height: 22px; }

  /* How It Works */
  .process-grid { grid-template-columns: 1fr; }
  .process-card-v2 { min-height: auto; }

  /* Services */
  .svc-grid { grid-template-columns: 1fr; }

  /* Quote teaser */
  .quote-teaser-card { padding: 40px 24px; }
  .quote-teaser-card .lp-section-title { font-size: 28px; }
  .quote-teaser-card .hero-v2__cta-row { flex-direction: column; }
  .quote-teaser-card .btn-hero-upload,
  .quote-teaser-card .btn-hero-ghost { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 24px 0; }
  .stats-grid__item--bordered {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
  }
  .stats-grid__number { font-size: 2.8rem; }
  .section-stats { padding: 48px 0; }

  /* Why FabConnect */
  .trust-features { grid-template-columns: 1fr; }
  .trust-row__img img { height: 240px; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .btn-subscribe { width: 100%; }

  /* Section padding mobile */
  .section-process,
  .section-services,
  .section-quote-teaser,
  .section-trust,
  .section-testimonials,
  .section-newsletter {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-process  { padding-top: 64px; padding-bottom: 64px; }
  .section-services { padding-top: 64px; padding-bottom: 64px; }
  .section-trust    { padding-top: 64px; padding-bottom: 64px; }
  .section-testimonials { padding-top: 64px; padding-bottom: 64px; }
  .section-newsletter   { padding-top: 64px; padding-bottom: 64px; }

  /* Section titles smaller on mobile */
  .lp-section-title { font-size: 32px; letter-spacing: -1px; }
}
