/* =========================================================
   Wi-Fi Easy Connect — ThinkPalm landing (Hero + 4 sections)
   Rebuilt from Figma (frame 111:5925)
   Font: Poppins | Brand blue #1977f3 | Navy #001151
   ---------------------------------------------------------
   TABLE OF CONTENTS
   1. Tokens
   2. Reset & base
   3. Utilities (.container, .section-head, .reveal)
   4. Hero
   5. Section 2 — Client logos
   6. Section 3 — Problem
   7. Section 4 — How it works (steps)
   8. Section 5 — Feature cards
   9. Responsive breakpoints
   ========================================================= */

/* ============== 0. SELF-HOSTED FONTS (no Google Fonts dependency) ============== */
@font-face{font-family:"Poppins";font-style:normal;font-weight:400;font-display:swap;src:url("../../assets/fonts/poppins-400.woff2") format("woff2");}
@font-face{font-family:"Poppins";font-style:normal;font-weight:500;font-display:swap;src:url("../../assets/fonts/poppins-500.woff2") format("woff2");}
@font-face{font-family:"Poppins";font-style:normal;font-weight:600;font-display:swap;src:url("../../assets/fonts/poppins-600.woff2") format("woff2");}
@font-face{font-family:"Poppins";font-style:normal;font-weight:700;font-display:swap;src:url("../../assets/fonts/poppins-700.woff2") format("woff2");}
@font-face{font-family:"Manrope";font-style:normal;font-weight:700;font-display:swap;src:url("../../assets/fonts/manrope-700.woff2") format("woff2");}

/* ============== 1. TOKENS ============== */
:root {
  --blue: #1977f3;
  --blue-alt: #0d6efc;
  --blue-deep: #0d58e3;
  --blue-hover: #0f63d6;
  --navy: #001151;
  --navy-deep: #01163b;
  --navy-mid: #10387e;

  --ink: #080a0b;        /* headings */
  --body: #383838;       /* paragraphs */
  --body-2: #414141;     /* sub-headings */
  --section-light: #eef4fb;
  --card-border: #e3efff;
  --white: #ffffff;

  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1440px;        /* Figma canvas */
  --content: 1112px;     /* content container */
  --hero-h: 585px;
  --pad-x: 37px;         /* logo inset */
  --content-x: 164px;    /* hero content inset */
}

/* ============== 2. RESET & BASE ============== */
/* Scoped to .wecdpp-page so resets don't leak into WordPress theme elements */
.wecdpp-page *,
.wecdpp-page *::before,
.wecdpp-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

html:has(body.wecdpp-page) { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; margin: 0 !important; padding: 0 !important; }

.wecdpp-page {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

body.wecdpp-page.admin-bar,
body.wecdpp-page {
  top: 0 !important;
}

body.wecdpp-page #page,
body.wecdpp-page .site,
body.wecdpp-page .site-content,
body.wecdpp-page .content-area,
body.wecdpp-page main,
body.wecdpp-page .hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.wecdpp-page a:not(.nsf *, .nav-overlay *) { text-decoration: none; color: inherit; }
.wecdpp-page ul, .wecdpp-page ol { list-style: none; }
.wecdpp-page img { display: block; max-width: 100%; }
/* Force page font on form controls; explicit overrides still win via specificity */
.wecdpp-page button, .wecdpp-page input, .wecdpp-page select, .wecdpp-page textarea { font-family: inherit; }

/* ============== 3. UTILITIES ============== */
/* Scoped to avoid collision with Bootstrap's .container */
.wecdpp-page .container {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 24px);
}

.section-head {
  text-align: center;
  max-width: 965px;
  margin: 0 auto clamp(36px, 5vw, 50px);
}
.section-head__title {
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.28;            /* Figma: 46/36 = 127.8% */
  letter-spacing: -0.4px;
  text-wrap: balance;           /* even out the multi-line split */
  text-transform: capitalize;   /* Figma */
  color: var(--ink);            /* #080A0B */
  max-width: 911px;             /* Figma title width */
  margin-inline: auto;
}
.section-head__sub {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;           /* Figma: 26/16 */
  color: #383838;               /* Figma sub-heading color */
  max-width: 965px;             /* Figma sub width */
  margin: 18px auto 0;
}
/* Features section sub — Figma 111-6094 */
.features .section-head__sub {
  color: #414141;
  line-height: normal;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============== 4. HERO ============== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 585;   /* lock to Figma canvas (1440x585); height tracks width */
  min-height: var(--hero-h);  /* floor so content never clips below the design width */
  overflow: hidden;
  background-color: var(--navy-deep);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../../assets/images/wifi2026-image/hero-bg.png") no-repeat right center / cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(91.83deg, rgba(1, 22, 59, 0) 1%, rgba(16, 56, 126, 0) 40%, rgba(52, 108, 204, 0) 75%);
  transition: background 0.2s ease;
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  height: 100%;              /* fill the (ratio-grown) hero so content centers against real height */
  min-height: var(--hero-h);
  margin: 0 auto;
}

/* Nav */
.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px 0 var(--pad-x);
}
.site-nav__logo { flex: 0 0 auto; margin-right: auto; }
.site-nav__logo img { height: 38px; width: auto; }

.site-nav__right { display: flex; flex-direction: column; align-items: flex-end; position: relative; }
.site-nav__top { display: flex; align-items: center; gap: 14px; }
.site-nav__lang { display: inline-flex; align-items: center; gap: 8px; color: var(--white) !important; font-size: 15px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.site-nav__lang:hover { opacity: 0.85; }
.site-nav__flag { width: 21px; height: 14px; border-radius: 2px; overflow: hidden; display: inline-flex; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35); }
.site-nav__flag svg { width: 100%; height: 100%; display: block; }
.site-nav__call { position: absolute; top: calc(100% + 14px); right: 0; display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: rgba(0, 0, 0, 0.7); transition: background 0.18s ease, transform 0.18s ease; }
.site-nav__call:hover { background: rgba(0, 0, 0, 0.85); transform: translateY(-1px); }
.site-nav__call svg { width: 26px; height: 26px; fill: var(--white); }

.site-nav__badge { position: absolute; top: calc(100% + 88px); right: 0; }
.site-nav__badge img { width: 58px; height: auto; }

.site-nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 auto;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.7); border: 0; cursor: pointer; padding: 0;
  transition: background 0.18s ease, transform 0.18s ease;
}
.site-nav__toggle:hover { background: #ffc107; transform: translateY(-1px); }
.site-nav__toggle span {
  display: block; height: 2px; width: 24px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.site-nav__toggle span + span { margin-top: 5px; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mega-menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgb(0 0 0 / 0.95);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-overlay__inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 132px 24px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
  transform: translateY(14px);
  transition: transform 0.4s ease;
}
.nav-overlay.is-open .nav-overlay__inner { transform: none; }
.nav-overlay__col h3 {
  font-weight: 600; font-size: 18px; color: var(--white); text-transform: uppercase; letter-spacing: 0.4px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.nav-overlay__col ul { display: flex; flex-direction: column; gap: 11px; }
.nav-overlay__col a {
  font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}
.nav-overlay__col a:hover { color: var(--white); }
body.nav-open { overflow: hidden; }

/* Hero content */
.hero__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: var(--content-x);
  width: 644px;
  max-width: calc(100% - var(--content-x) - 24px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero__title {
  font-weight: 700;
  font-size: 50px;
  line-height: 58px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  color: var(--white);
  word-break: break-word;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 8px 32px;
  border-radius: 30px;
  background: #1977F3;
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.4px;
/*  text-transform: capitalize;*/
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease;
}
.hero__cta:hover { background: var(--white); color: var(--ink) !important; transform: translateY(-1px); }
.hero__cta:active { transform: translateY(0); }

/* ============== 5. SECTION 2 — CLIENT LOGOS (marquee) ============== */
.logos { padding-top: clamp(36px, 5vw, 50px); }
.logos__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.logos__track { display: flex; justify-content: center; }
.logos__group { display: flex; gap: 14px; flex: 1 1 auto; min-width: 0; }
.logos__group--dup { display: none; }            /* desktop: one static row of 5 */
.logos__card {
  flex: 1 1 0;
  min-width: 0;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
}
.logos__card img {
  max-height: 52px;
  max-width: 80%;
  width: auto;
  object-fit: contain;
}

/* Desktop: paged fade carousel (5 logos per page) */
.logos__pages { display: none; }
.logos__page {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.logos__page.is-active { opacity: 1; pointer-events: auto; }
.logos__page .logos__card { flex: 1 1 0; min-width: 0; }
@media (min-width: 769px) {
  .logos.has-carousel .logos__track { display: none; }
  .logos.has-carousel .logos__pages { display: block; position: relative; height: 95px; }
  .logos.has-carousel .logos__viewport { -webkit-mask-image: none; mask-image: none; }
}

/* Mobile: continuous auto-scroll marquee (seamless via duplicated group) */
@media (max-width: 768px) {
  .logos__viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  }
  .logos__track { justify-content: flex-start; width: max-content; animation: logos-scroll 20s linear infinite; }
  .logos__group { flex: 0 0 auto; padding-right: 14px; }
  .logos__group--dup { display: flex; }
  .logos__card { flex: 0 0 158px; width: 158px; height: 84px; }
}
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos__track { animation: none !important; }
}

/* ============== 6. SECTION 3 — PROBLEM ============== */
.problem { padding-top: clamp(64px, 9vw, 100px); }

.problem__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  background: linear-gradient(264deg, #cce3ff 2%, #eef4fb 82%);
}

/* Left column — heading, sub only (illustration is absolute) */
.problem__intro { display: flex; flex-direction: column; }
.problem__title { font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.28; color: var(--ink); }
.problem__sub   { margin-top: 22px; font-size: 16px; line-height: 1.62; color: var(--body); max-width: 420px; }

/* Illustration — absolutely positioned at bottom-left of panel (Figma: left:24px, 24px from bottom, 303px size) */
.problem__visual {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: clamp(180px, 27vw, 303px);
}
.problem__visual img { width: 100%; height: auto; }

/* Right column — numbered cards */
.problem__cards { display: flex; flex-direction: column; gap: 12px; padding-left: 32px; }
.problem__card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 129px;
  padding: 20px 28px 20px 54px;            /* left pad clears the overlapping badge */
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(13, 88, 227, 0.07);
}
.problem__num {
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  background: var(--blue);
  border-radius: 16px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--white);
}
.problem__card-title { font-weight: 700; font-size: 20px; line-height: 1.3; color: var(--ink); }
.problem__card-desc  { margin-top: 10px; font-size: 16px; line-height: 1.5; color: var(--body); }

/* Decorative warning icon — overflows the panel top-right corner */
.problem__warning {
  position: absolute;
  right: 18px;
  top: -28px;
  width: 113px;
  height: auto;
  filter: drop-shadow(9px 11px 9.5px rgba(0, 0, 0, 0.12));
  pointer-events: none;
  z-index: 1;
}

/* ============== 7. SECTION 4 — HOW IT WORKS ============== */
.steps { padding: clamp(64px, 9vw, 100px) 0; }
.steps__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(20px, 4.5vw, 64px);
  row-gap: 40px;
}
.step {
  position: relative;
  border-radius: 24px;
  padding: 12px 10px 18px;
  transition: background 0.25s ease;
}
.step:hover,
.step:focus-within {
  background: transparent;
}
.step__head {
  position: relative;
  height: 142px;
  margin-bottom: 18px;
}
.step__num {
  position: absolute;
  top: 4px;
  left: -14px;
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  background: linear-gradient(165.14deg, #dbdbdb 4.65%, #ffffff 128.22%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 0;
  user-select: none;
}
.step__icon {
  position: absolute;
  top: 35px;
  left: 42px;
  z-index: 1;
  width: 107px;
  height: 107px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}
.step__icon::before {
  content: "";
  position: absolute;
  inset: 0px;
  z-index: 2;
  background-size: cover;
  background-position: center;
  mix-blend-mode: plus-lighter;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/* .step__icon--purple::before { background-image: url("../../assets/images/wifi2026-image/step-icon-hover-purple.png"); } */
/* .step__icon--blue::before   { background-image: url("../../assets/images/wifi2026-image/step-icon-hover-blue.png"); }
.step__icon--orange::before { background-image: url("../../assets/images/wifi2026-image/step-icon-hover-orange.png"); }
.step__icon--green::before  { background-image: url("../../assets/images/wifi2026-image/step-icon-hover-green.png"); } */
.step:hover .step__icon--purple,
.step:hover .step__icon--blue,
.step:hover .step__icon--orange,
.step:hover .step__icon--green {
  background-position-y: 100%;
}
.step:hover .step__icon--purple::before,
.step:focus-within .step__icon--purple::before,
.step:hover .step__icon--blue::before,
.step:focus-within .step__icon--blue::before {
  opacity: 1;
}
.step:hover .step__icon--orange::before,
.step:focus-within .step__icon--orange::before {
  opacity: 0.4;
}
.step:hover .step__icon--green::before,
.step:focus-within .step__icon--green::before {
  opacity: 0.39;
}
.step__icon img { position: relative; z-index: 1; width: 52px; height: 52px; object-fit: contain; }
.step__icon--purple { background: linear-gradient(180deg,rgba(151, 125, 255, 1) 0%, rgba(151, 125, 255, 1) 60%, rgba(154, 215, 255, 1) 100%);background-size: 100% 200%; background-position-y: 0%; transition: background-position 0.3s ease; }
.step__icon--blue   { background: linear-gradient(180deg,rgba(116, 208, 255, 1) 0%, rgba(116, 208, 255, 1) 60%, rgba(115, 255, 255, 1) 100%);background-size: 100% 200%; background-position-y: 0%; transition: background-position 0.3s ease; }
.step__icon--orange { background: linear-gradient(180deg,rgba(255, 194, 128, 1) 0%, rgba(255, 194, 128, 1) 60%, rgba(254, 229, 212, 1) 100%);background-size: 100% 200%; background-position-y: 0%; transition: background-position 0.3s ease; }
.step__icon--green  { background: linear-gradient(180deg,rgba(52, 234, 124, 1) 0%, rgba(52, 234, 124, 1) 60%, rgba(51, 255, 204, 1) 100%);background-size: 100% 200%; background-position-y: 0%; transition: background-position 0.3s ease; }

.step__arrow {
  position: absolute;
  top: 84px;
  right: -42px;
  width: 92px;
  height: auto;
  z-index: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.step:hover .step__arrow,
.step:focus-within .step__arrow {
  opacity: 1;
  transform: none;
}
.step__title {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  text-align: center;
  margin-bottom: 12px;
  max-width: none;
  margin-inline: auto;
  white-space: nowrap;
  width: max-content;
}
.step__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #383838;
  text-align: center;
}

/* ============== 8. SECTION 5 — FEATURE CARDS ============== */
.features {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--section-light);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(20, 60, 120, 0.06);
}
.feature-card__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
}
.feature-card__icon img { width: 40px; height: 40px; }
.feature-card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 14px;
}
.feature-card__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
}

/* =========================================================
   9. RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Large laptops */
@media (max-width: 1200px) {
  .hero__title { font-size: 44px; line-height: 52px; }
  .hero__content { left: 96px; max-width: calc(100% - 96px - 24px); }
}

/* Small laptops / large tablets */
@media (max-width: 1024px) {
  .hero__content { left: 64px; max-width: calc(100% - 64px - 24px); }
}

/* ---- Collapse nav to hamburger + flow hero; reflow grids ---- */
@media (max-width: 900px) {
  :root { --hero-h: 560px; }

  .hero { aspect-ratio: auto; }   /* mobile: content-driven height, not the wide ratio */
  .hero__bg { background-position: 72% center; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(1, 22, 59, 0.86) 0%, rgba(1, 22, 59, 0.66) 42%, rgba(1, 22, 59, 0.5) 100%);
  }
  .hero__inner { min-height: var(--hero-h); }

  .site-nav { padding: 18px 24px; }
  .site-nav__logo img { height: 34px; }
  .site-nav__badge img { width: 42px; }

  .hero__content {
    position: static; width: 100%; max-width: 640px;
    padding: clamp(218px, calc(16vw + 100px), 232px) 24px clamp(56px, 12vw, 110px);
    gap: 28px;
    transform: none;   /* cancel desktop vertical-centering when content reflows */
  }
  .hero__title { font-size: clamp(30px, 5.4vw, 42px); line-height: 1.18; }

  /* Steps: 2 x 2, arrows hidden */
  .steps__row { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .step__arrow { display: none; }

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

/* Tablets / phablets */
@media (max-width: 1099px) {
  .problem__warning { display: none; }

  /* Problem panel stacks: intro on top, cards below */
  .problem__panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
    border-radius: 28px;
  }
  .problem__sub { max-width: none; }
  .problem__visual { position: static; width: 220px; margin-inline: auto; }
}

/* Features → 1 column a touch earlier than the rest */
@media (max-width: 680px) {
  .features__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* Mobile — 425 / 375 */
@media (max-width: 480px) {
  :root { --hero-h: 480px; }
  .site-nav { padding: 14px 18px; }
  .site-nav__logo img { height: 30px; }
  .site-nav__badge { display: none; }
  .hero__content { padding: 204px 18px 64px; gap: 22px; }
  .hero__title { font-size: clamp(26px, 8vw, 32px); line-height: 1.2; }
  .hero__cta { height: 46px; padding: 8px 26px; font-size: 15px; }

  /* Steps: single column, vertical */
  .steps__row { grid-template-columns: 1fr; row-gap: 32px; max-width: 420px; margin-inline: auto; }
  .step__head { height: 122px; margin-bottom: 16px; }
  .step__num { font-size: 56px; top: 2px; }
  .step__icon { top: 28px; left: 34px; width: 92px; height: 92px; border-radius: 22px; }
  .step__icon img { width: 44px; height: 44px; }

  .problem__card-title { font-size: 18px; }

  .problem__warning {
    display: block;
    position: absolute;
    right: 18px;
    top: -58px;
    width: 113px;
    height: auto;
    filter: drop-shadow(9px 11px 9.5px rgba(0, 0, 0, 0.12));
    pointer-events: none;
    z-index: 1;
  }
}

/* Small mobile — 320 */
@media (max-width: 360px) {
  .site-nav__logo img { height: 28px; }
  .site-nav { gap: 12px; }
  .site-nav__top { gap: 10px; }
  .site-nav__right { gap: 10px; }
  .site-nav__toggle, .site-nav__call { width: 48px; height: 48px; }
  .site-nav__toggle span { width: 22px; }
  .site-nav__call svg { width: 22px; height: 22px; }
  .site-nav__lang { font-size: 13px; gap: 6px; }
  .site-nav__flag { width: 19px; height: 13px; }
  .hero__content { padding: 200px 16px 56px; }
  .hero__title { font-size: 25px; line-height: 1.22; }
  .problem__panel { padding: 22px; }
  .problem__cards { padding-left: 26px; }
  .problem__num   { width: 56px; height: 56px; left: -26px; font-size: 28px; }
  .problem__card  { padding-left: 46px; }
  .feature-card { padding: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   SECTIONS 6-14  (appended)
   ========================================================= */

.wecdpp-page .container--narrow { max-width: 1068px; } /* 1068 - 48px padding = 1020px content (Figma FAQ width) */

/* Shared pill button (Let's Connect / Explore the DPP Stack) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px 8px 8px;
  border-radius: 55px;
  border: 0;
  background: var(--blue-alt);
  color: var(--white) !important;
  font-family: "Manrope", "Poppins", -apple-system, sans-serif;
  /* font-weight: 700; */
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease;
}
.btn-pill:hover { background: #0b5ed7; transform: translateY(-1px); }
.btn-pill__ico {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-alt);
  flex-shrink: 0;
}

/* 6 / 8 · INTRO bands */
.intro { padding-top: clamp(64px, 9vw, 100px); }
.intro .section-head { margin-bottom: 0; }  /* intro = heading-only; no trailing gap */
.intro .section-head__title { text-transform: capitalize; }
@media (max-width: 768px) { .intro-title-br { display: none; } }  /* desktop-only forced break */
.tab-br { display: none; }
@media (min-width: 601px) and (max-width: 900px) { .tab-br { display: block; } }
.intro--bootstrap .section-head__title {
  line-height: 1.11;
  max-width: none;
  white-space: nowrap;
}
.intro--bootstrap .section-head__sub { max-width: 878px; margin-top: 32px; line-height: 1.45; }
@media (max-width: 900px) {
  .intro--bootstrap .section-head__title {
    max-width: 911px;
    white-space: normal;
  }
}

/* 7 · BUYER SEGMENTS */
.buyers { padding-top: clamp(28px, 4vw, 42px); }
.wecdpp-page .buyers .container { max-width: 1111px; }
.buyers__card {
  display: flex;
  gap: 0;
  background: #0e3c77;
  border-radius: 42px;
  padding: 20px;
  min-height: 583px;
}
.buyers__side {
  flex: 0 0 215px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 58px 0 24px 10px;
  position: relative;
  z-index: 2;
}
.buyers__tabs { min-width: 0; width: 287px; align-items: flex-start; }
.buyers__tabs { display: flex; flex-direction: column; gap: 40px; }
.buyers__tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  white-space: nowrap;
  width: 257px;
  height: 41px;
  padding: 10px 34px;
  border-radius: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease;
}
.buyers__tab-arrow { display: none; flex: 0 0 auto; }
.buyers__tab.is-active {
  background: #0e65ea;
  font-weight: 700;
  justify-content: space-between;
  width: 287px;
  height: 70px;
  padding: 13px 10px 13px 43px;
  gap: 10px;
}
.buyers__tab.is-active:hover { background: #0e65ea; }
.buyers__tab.is-active .buyers__tab-arrow {
  display: grid;
  place-items: center;
  width: 50.58px; height: 50.58px;
  border-radius: 50%;
  background: var(--white);
  color: #0e65ea;
  box-shadow: 0 0.843px 1.686px rgba(0, 0, 0, 0.12), 0 0 0.422px rgba(0, 0, 0, 0.08);
}
.buyers__tab.is-active .buyers__tab-arrow svg { width: 42px; height: 42px; }

.buyers__panels { flex: 1 1 auto; }
.buyers__content {
  display: none;
  background: var(--white);
  border-radius: 28px;
  padding: 72px 40px 40px 114px;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  min-height: 543px;
}
.buyers__content.is-active { display: flex; }
.buyers__title { font-weight: 700; font-size: 20px; line-height: 26px; color: var(--ink); }
.buyers__desc { font-size: 16px; line-height: 1.5; color: var(--body); }
.buyers__list { display: flex; flex-direction: column; gap: 16px; }
.buyers__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--body); }
.buyers__list li svg { flex: 0 0 auto; margin-top: 2px; }
.buyers__cta {
  align-self: flex-start;
  width: 174px;
  height: 44px;
  padding: 10px 28px 10px 17px;
  justify-content: center;
  flex-shrink: 0;
  background: #0D6EFC;
  backdrop-filter: blur(47.7px);
  line-height: 24px;
}
.buyers__visual {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 199px;
  height: 337px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.buyers__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.buyers__content[data-panel="smarthome"] .buyers__visual img {
  object-fit: cover;
  object-position: 88% center;
}

/* 9 · QR vs BLE */
.compare { padding-top: clamp(22px, 3vw, 32px); }
.compare__grid { display: flex; gap: 24px; align-items: stretch; max-width: 965px; margin-inline: auto; }
.compare__card {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 37px;
  border: 1px solid rgba(199, 209, 252, 0.55);
}
.compare__card--qr  { background: #e4f9ff; }
.compare__card--ble { background: linear-gradient(147.87deg, #e6e9ff 17.74%, #fafcff 100.12%); }
.compare__inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 254px;
  padding: 112px 24px 24px;
  background:
    url("../../assets/images/wifi2026-image/compare-swoosh.png") top right / cover no-repeat,
    linear-gradient(202.26deg, #f6f8fc 10%, #ffffff 79%);
}
.compare__ico { position: absolute; top: 49px; right: 54px; z-index: 2; display: block; }
.compare__ico img { display: block; height: auto; }
.compare__card--qr  .compare__ico img { width: 103px; }
.compare__card--ble .compare__ico { top: 24px; right: 24px; }
.compare__card--ble .compare__ico img { width: 132px; }
.compare__title { font-weight: 500; font-size: 24px; line-height: 1.2; color: var(--ink); margin-bottom: 12px; }
.compare__desc { font-size: 16px; line-height: 1.5; color: rgba(8, 10, 11, 0.5); }
.compare__deliver { padding: 40px 24px 12px; }
.compare__label { font-weight: 700; font-size: 14px; letter-spacing: 0.05em; color: var(--body); margin-bottom: 18px; }
.compare__list { display: flex; flex-direction: column; gap: 14px; }
.compare__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--body); }
.compare__list li svg { flex: 0 0 auto; margin-top: 1px; }

/* 10 · CTA BAND (full-bleed) */
.cta-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: clamp(64px, 9vw, 100px);
  min-height: 328px;
  padding: 64px 0 clamp(32px, 3vw, 44px);
  color: var(--white);
  background-image: url("../../assets/images/wifi2026-image/cta-band-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
}
.cta-band__text { display: flex; flex-direction: column; gap: 12px; max-width: 532px; width: 100%; }
.cta-band__title { font-weight: 700; font-size: 24px; line-height: normal; color: #FFF; max-width: 100%; }
.cta-band__sub { font-size: 16px; line-height: 1.5; color: var(--white); max-width: 429px; }
.cta-band__btn { align-self: flex-start; background: var(--blue-alt); margin-top: 12px; }
.cta-band__btn:hover { background: var(--white) !important; color: var(--ink) !important; transform: translateY(-1px); }
.cta-band__btn:hover .btn-pill__ico { background: var(--blue-alt); color: var(--white); transition: background 0.22s ease; }
.cta-band__grid {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  pointer-events: none;
  overflow: hidden;
}
.cta-band__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.cta-band__visual {
  position: absolute;
  right: max(24px, calc((100% - var(--content)) / 2));
  top: 36px;
  bottom: 36px;
  pointer-events: none;
}
.cta-band__visual img { height: 100%; width: auto; display: block; }

/* 11 · BLOGS */
.blogs { padding-top: clamp(64px, 9vw, 100px); }
.blogs__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: clamp(30px, 4vw, 42px); }
.blogs__title { font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); color: var(--ink); }
.blogs__tabs { display: flex; gap: 6px; padding: 7px; background: #e8f1ff; border-radius: 48px; }
.blogs__tab { border: 0; background: transparent; padding: 9px 22px; border-radius: 55px; font-weight: 600; font-size: 16px; color: #131313; cursor: pointer; transition: background 0.18s ease; }
.blogs__tab.is-active { background: var(--blue-alt); color: var(--white); font-weight: 700; }
.blogs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { border-radius: 0; overflow: hidden; background: #f4f4f4; display: flex; flex-direction: column; cursor: pointer; }
.blog-card__media { position: relative; aspect-ratio: 351 / 270; overflow: hidden; background: #f4f4f4; }
.blog-card__media-link { display: block; width: 100%; height: 100%; }
.blog-card__media img { width: 100%; height: 100%; object-fit: contain !important; object-position: center center !important; }
.blog-card__tag {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 37px;
  padding: 0 19px;
  background: var(--blue);
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  white-space: nowrap;
  border-radius: 0 0 25px 0;
}
.blog-card__body { padding: 24px 30px 30px; }
.blog-card__date { display: block; font-weight: 600; font-size: 17px; line-height: 28px; color: #5c5c5b; }
.blogs__grid.is-case-study .blog-card__date { display: none; }
.blog-card__title { font-weight: 600; font-size: 24px; line-height: 31px; margin: 12px 0 8px; color: #212121; text-transform: capitalize; }
.blog-card__title a { transition: color 0.15s ease; }
.blog-card__title a:hover { color: var(--blue); }
.blog-card__excerpt { font-size: 16px; line-height: 28px; color: #5c5c5b; }
.blogs__more { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
.blogs__line { flex: 1; height: 0.8px; background: #1977F3; }
.blogs__more-btn { flex: 0 0 auto; background: #1E1E1E; color: var(--white) !important; padding: 13px 32px; border-radius: 25px; font-weight: 500; font-size: 16px; transition: opacity 0.18s ease; }
.blogs__more-btn:hover { opacity: 0.85; }
/* Let the blogs content span the full 1112px (Figma node 111-6227) at desktop,
   without losing mobile gutters. At >=1160px the 1112 max-width already supplies
   a >=24px centering margin, so dropping the side padding is safe. */
@media (min-width: 1160px) { .blogs__inner { padding-inline: 0; } }

/* 12 · FAQ */
.faq { padding-top: clamp(64px, 9vw, 100px); }
.faq__title { text-align: center; font-weight: 700; font-size: clamp(28px, 3.6vw, 36px); line-height: 1.15; color: #000; text-transform: capitalize; margin-bottom: clamp(36px, 5vw, 60px); }
.faq__title-accent { color: var(--blue); }
.faq__item { border-bottom: 1px solid #9cb5c7; }
.faq__item:last-child { border-bottom: none; }
.faq__q { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) 48px; align-items: center; gap: 16px; padding: 25px 0 25px 10px; background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 500; font-size: 24px; line-height: 1.2; color: #131313; transition: background 0.15s ease; }
.faq__q:hover { background: rgba(0, 0, 0, 0.02); }
.faq__chev { justify-self: center; width: 36px; height: 36px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'%3E%3Cpath d='M6.18194 4.18185C6.35767 4.00611 6.6426 4.00611 6.81833 4.18185L9.81833 7.18185C9.90272 7.26624 9.95013 7.3807 9.95013 7.50005C9.95013 7.6194 9.90272 7.73386 9.81833 7.81825L6.81833 10.8182C6.6426 10.994 6.35767 10.994 6.18194 10.8182C6.0062 10.6425 6.0062 10.3576 6.18194 10.1819L8.86374 7.50005L6.18194 4.81825C6.0062 4.64251 6.0062 4.35759 6.18194 4.18185Z' fill='%23131313' fill-rule='evenodd' clip-rule='evenodd'/%3E%3C/svg%3E") center / 36px 36px no-repeat; transition: transform 0.25s ease; }
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a p { padding: 2px 10px 24px; font-size: 16px; line-height: 1.7; color: #5c5c5b; max-width: none; }

/* 13 · CONTACT */
.contact { position: relative; margin-top: clamp(64px, 9vw, 100px); padding: clamp(72px, 10vw, 110px) 0 clamp(64px, 9vw, 100px); background: url("../../assets/images/wifi2026-image/contact-bg.png") center / 100% 100% no-repeat, linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%); }
.contact__title { text-align: center; font-weight: 700; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.3; color: #000; /* max-width: 760px; */ margin: 0 auto clamp(40px, 6vw, 60px); }
.contact__form { max-width: 1112px; margin: 0 auto; }
.form-row { display: flex; gap: 42px; margin-bottom: 42px; }
.field { flex: 1 1 0; display: flex; flex-direction: column; }
.field > span { font-size: 16px; color: #818181; margin-bottom: 12px; }
.field i { color: inherit; font-style: normal; }
.field input, .field select { width: 100%; border: 0; border-bottom: 1px solid #cacaca; padding: 9px 0; font-family: var(--font); font-size: 16px; color: #222; background: transparent; }
.field input:focus, .field select:focus { outline: none; border-bottom-color: var(--blue); }
.field--full { flex-basis: 100%; }
.field--select { justify-content: flex-end; position: relative; }
.field--select::after { content: ""; position: absolute; right: 4px; bottom: 14px; width: 10px; height: 10px; border-right: 1.6px solid #818181; border-bottom: 1.6px solid #818181; transform: rotate(45deg); pointer-events: none; }
.field--select select { appearance: none; -webkit-appearance: none; color: #818181; cursor: pointer; }
.contact__verify { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; }
.form-turnstile { flex: 0 0 auto; }
.turnstile-error { display: none; color: #d93025; margin-top: 8px; font-size: 14px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 28px; }
.form-consent input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 3px; accent-color: var(--blue); cursor: pointer; }
.form-consent label { font-size: 15px; line-height: 1.5; color: #5c5c5b; }
.form-consent a { color: var(--blue); text-decoration: underline; }
.form-submit-wrap { text-align: center; margin-top: 8px; }
.contact__submit { background: var(--blue); color: var(--white); border: 0; padding: 14px 44px; border-radius: 25px; font-family: var(--font); font-weight: 500; font-size: 16px; cursor: pointer; transition: background 0.18s ease; }
.contact__submit:hover { background: var(--blue-hover); }
.contact__status { margin-top: 18px; font-weight: 500; font-size: 14px; min-height: 18px; }
.contact__status.is-error { color: #e23b3b; }
.contact__status.is-ok { color: #1aa251; }
.contact__thankyou { display: flex; justify-content: center; }
.contact__thankyou[hidden] { display: none; }
.thankyou-card { max-width: 560px; width: 100%; text-align: center; background: #fff; border: 1px solid #e6eefc; border-radius: 20px; padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px); box-shadow: 0 20px 60px rgba(13, 88, 227, 0.10); }
.thankyou-card__icon { width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; }
.thankyou-card__title { font-size: clamp(24px, 3vw, 28px); font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.thankyou-card__text { font-size: 16px; line-height: 1.7; color: #5c5c5b; margin-bottom: 28px; }
.thankyou-card__btn { background: var(--blue); color: #fff; border: 0; padding: 14px 40px; border-radius: 25px; font-family: var(--font); font-weight: 500; font-size: 16px; cursor: pointer; transition: background 0.18s ease; }
.thankyou-card__btn:hover { background: var(--blue-hover); }

/* 14 · FOOTER */
.site-footer { background: #1e2222; color: #8c9090; margin-top: 0; }
.site-footer__top { padding-block: 74px 34px; }
.site-footer__cols { column-count: 4; column-gap: 32px; margin-bottom: 21px; }
/* Full content width (no inner padding) only when the 1112 max-width already
   leaves a >=24px centering margin; below that, .container padding applies so the
   footer never touches the screen edge on laptop/tablet/mobile. */
@media (min-width: 1160px) { .site-footer__top .container, .site-footer__bar .container { padding-inline: 0; } }
.footer-group { display: flex; flex-direction: column; break-inside: avoid; }
/* Pad the first section in each column so second-tier headers align in a row (Figma: 310px). */
@media (min-width: 992px) { .footer-group > .footer-col:first-child { min-height: 310px; } }
.footer-col h4 { font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: -0.4px; color: #d9d9d9; margin-bottom: 11px; }
.footer-col ul { display: flex; flex-direction: column; }
.footer-col a { font-size: 12px; line-height: 24px; letter-spacing: -0.4px; color: #8c9090; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col--address address { font-style: normal; font-size: 12px; line-height: 24px; letter-spacing: -0.4px; color: #8c9090; }
.site-footer__follow { display: flex; align-items: center; gap: 12px; }
.site-footer__follow > span { color: #d9d9d9; font-weight: 500; font-size: 12px; letter-spacing: -0.4px; }
.site-footer__social { display: flex; align-items: center; gap: 27px; }
.site-footer__social a { color: #d9d9d9; display: grid; place-items: center; transition: color 0.15s ease; }
.site-footer__social a:hover { color: var(--white); }
.site-footer__bar { background: #000; }
.site-footer__bar-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; }
.site-footer__logo { display: flex; align-items: center; text-decoration: none; }
.site-footer__logo img { width: 56px; height: auto; display: block; }
.site-footer__copy { font-weight: 500; font-size: 12px; color: #d9d9d9; letter-spacing: -0.4px; }
.site-footer__copy a { color: #d9d9d9; text-decoration: underline; }
.site-footer__copy a:hover { color: var(--white); }

/* ---------- Responsive: sections 6-14 ---------- */
@media (max-width: 900px) {
  .buyers__card { flex-direction: column; }
  .buyers__side { flex: none; padding: 8px 12px; }
  .buyers__tab.is-active { width: 100%; }
  .buyers__content { padding: 28px; gap: 16px; }
  .buyers__visual { display: none; }

  .compare__grid { flex-direction: column; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .cta-band__visual { display: none; }  /* hidden on mobile */

  .blogs__head { flex-direction: column; align-items: flex-start; }
  .blogs__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .site-footer__bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-footer__follow { flex-wrap: wrap; }
  .site-footer__copy { width: 100%; }
}

@media (min-width: 601px) and (max-width: 900px) {
  /* Buyers tabs: 4 in a single row */
  .buyers__tabs { flex-direction: row; gap: 8px; }
  .buyers__tab { flex: 1; padding: 10px 10px; font-size: 14px; white-space: normal; text-align: center; justify-content: center; }
  .buyers__tab.is-active { width: auto; flex: 1; }

  /* Blogs: 2 columns on tablet */
  .blogs__grid { grid-template-columns: repeat(2, 1fr); max-width: none; margin-inline: 0; }
  .blogs__head { align-items: center; }
  .blogs__more { justify-content: center; }
  .blogs__line { display: block; }
}

@media (max-width: 768px) {
  .form-row { flex-direction: column; gap: 28px; margin-bottom: 28px; }
  .contact__verify { flex-direction: column; align-items: flex-start; gap: 22px; }
  .blogs__more { gap: 14px; }
  .blogs__line { display: none; }
}

/* Footer flows 4 -> 2 -> 1 columns gap-free (multi-column over the 4 wrappers) */
@media (max-width: 991px) { .site-footer__cols { column-count: 2; } }
@media (max-width: 559px) {
  .site-footer__top { padding-block: 56px 40px; }
  .site-footer__cols { column-count: 1; }
  .footer-group { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .buyers__content { padding: 22px; }
  .buyers__tab { font-size: 15px; padding: 9px 18px; }
  .compare__card { padding: 26px; }
  .compare__title { font-size: 21px; }
  .blog-card__body { padding: 22px; }
  .blog-card__title { font-size: 20px; }
  .faq__q { font-size: 18px; padding: 18px 4px; }
  .contact__submit { width: 100%; }
}

/* AI page matched Learn & Explore layout */
.wecdpp-page .blogs {
  position: relative;
  height: 779px;
  padding-top: 0;
  margin-top: 100px;
  overflow: hidden;
  background: #fff;
}

.wecdpp-page .blogs__inner {
  position: relative;
  height: 779px;
  padding-inline: 0;
}

.wecdpp-page .blogs__head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
}

.wecdpp-page .blogs__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #080a0b;
  text-transform: capitalize;
  white-space: nowrap;
}

.wecdpp-page .blogs__tabs {
  position: relative;
  width: 245px;
  height: 50px;
  display: flex;
  gap: 0;
  padding: 7px;
  flex-shrink: 0;
  background: #e8f1ff;
  border-radius: 48px;
}

.wecdpp-page .blogs__tab {
  flex: 1;
  height: 100%;
  padding: 0;
  border-radius: 55px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #131313;
  white-space: nowrap;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.wecdpp-page .blogs__tab.is-active {
  background: #0d6efd;
  color: #fff;
  font-weight: 700;
}

.wecdpp-page .blogs__grid {
  display: block;
  max-width: none;
  margin: 0;
}

.wecdpp-page .blog-card {
  position: absolute;
  top: 92px;
  width: 351px;
  height: 605px;
  display: block;
  overflow: visible;
  background: transparent;
  cursor: pointer;
}

.wecdpp-page .blog-card:nth-child(1) { left: 0; }
.wecdpp-page .blog-card:nth-child(2) { left: 380px; }
.wecdpp-page .blog-card:nth-child(3) { left: 761px; }

.wecdpp-page .blog-card__media {
  position: relative;
  width: 351px;
  height: 270px;
  aspect-ratio: auto;
  overflow: hidden;
  background: #f4f4f4;
}

.wecdpp-page .blog-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.wecdpp-page .blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
}

.wecdpp-page .blog-card__body {
  position: relative;
  width: 351px;
  height: 335px;
  padding: 0;
  overflow: hidden;
  background: #f4f4f4;
}

.wecdpp-page .blog-card__date {
  position: absolute;
  left: 30px;
  top: 24px;
  height: 28px;
  display: block;
  margin: 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  color: #5c5c5b;
  text-transform: capitalize;
}

.wecdpp-page .blog-card__title {
  position: absolute;
  left: 30px;
  top: 63px;
  width: 296px;
  height: 96px;
  margin: 0;
  overflow: hidden;
  font-family: var(--font);
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  color: #212121;
  text-transform: capitalize;
}

.wecdpp-page .blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.wecdpp-page .blog-card__excerpt {
  position: absolute;
  left: 30px;
  top: 164px;
  width: 301px;
  height: 150px;
  margin: 0;
  overflow: hidden;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #5c5c5b;
}

.wecdpp-page .blogs__more {
  position: absolute;
  left: 0;
  right: 0;
  top: 729px;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 0;
}

.wecdpp-page .blogs__line {
  flex: 1;
  height: 1px;
  background: #8bb8ff;
}

.wecdpp-page .blogs__more-btn {
  flex: 0 0 auto;
  min-width: 230px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border-radius: 25px;
  background: #000;
  color: #fff !important;
  box-sizing: border-box;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.4px;
  text-transform: capitalize;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .wecdpp-page .blogs {
    height: auto;
    padding: 60px 5%;
    margin-top: 60px;
    overflow: visible;
  }

  .wecdpp-page .blogs__inner {
    width: 100%;
    height: auto;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
    padding-inline: 0;
  }

  .wecdpp-page .blogs__head {
    grid-column: 1 / -1;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .wecdpp-page .blogs__grid {
    display: contents;
  }

  .wecdpp-page .blog-card {
    position: relative;
    top: auto;
    left: auto !important;
    width: 100%;
    height: auto;
  }

  .wecdpp-page .blog-card__media,
  .wecdpp-page .blog-card__body {
    width: 100%;
  }

  .wecdpp-page .blog-card__media {
    height: 180px;
  }

  .wecdpp-page .blog-card__body {
    height: auto;
    min-height: 180px;
    padding-bottom: 24px;
  }

  .wecdpp-page .blog-card__date,
  .wecdpp-page .blog-card__title,
  .wecdpp-page .blog-card__excerpt {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .wecdpp-page .blog-card__date { padding: 16px 20px 0; }
  .wecdpp-page .blog-card__title { padding: 8px 20px 0; }
  .wecdpp-page .blog-card__excerpt { padding: 8px 20px 0; }

  .wecdpp-page .blogs__more {
    grid-column: 1 / -1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 32px;
    gap: 24px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .wecdpp-page .blogs__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wecdpp-page .blogs {
    padding: 40px 24px;
    margin-top: 48px;
  }

  .wecdpp-page .blogs__inner {
    grid-template-columns: 1fr;
  }

  .wecdpp-page .blogs__title {
    font-size: 24px;
    line-height: 1.25;
  }

  .wecdpp-page .blogs__tabs {
    width: 100%;
    max-width: 245px;
  }

  .wecdpp-page .blogs__line {
    display: none;
  }
}


/* =========================================================
   LAZY RENDER — sections render on scroll (content-visibility)
   Off-screen sections skip layout/paint until scrolled near;
   contain-intrinsic-size reserves space so the scrollbar is stable.
   `auto` makes the browser remember each section's real size.
   ========================================================= */
.logos, .steps, .features, .intro, .buyers, .compare,
.blogs, .faq, .contact, .site-footer {
  content-visibility: auto;
}
/* .cta-band and .problem excluded: content-visibility:auto applies contain:paint,
   which clips images that intentionally overflow their section boundaries. */
.logos       { contain-intrinsic-size: auto 145px;  }
.problem     { contain-intrinsic-size: auto 782px;  }
.steps       { contain-intrinsic-size: auto 702px;  }
.features    { contain-intrinsic-size: auto 1120px; }
.intro       { contain-intrinsic-size: auto 270px;  }
.buyers      { contain-intrinsic-size: auto 743px;  }
.compare     { contain-intrinsic-size: auto 441px;  }
.blogs       { contain-intrinsic-size: auto 882px;  }
.faq         { contain-intrinsic-size: auto 639px;  }
.contact     { contain-intrinsic-size: auto 803px;  }
.site-footer { contain-intrinsic-size: auto 735px;  }

/* Mega-menu overlay — responsive columns */
@media (max-width: 992px) { .nav-overlay__inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .nav-overlay__inner { grid-template-columns: repeat(2, 1fr); padding-top: 108px; } }
@media (max-width: 480px) { .nav-overlay__inner { grid-template-columns: 1fr; gap: 26px; padding-top: 96px; max-width: 380px; } .nav-overlay__col h3 { margin-bottom: 12px; padding-bottom: 8px; } }

/* ============== DEMO MODAL ============== */
.wecdpp-page.modal-open { overflow: hidden; }

.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
  z-index: 99999;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-overlay .modal {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  max-height: calc(100vh - 12px);
  max-width: 560px;
  overflow: hidden;
  transform: translateY(12px);
  transition: transform 0.2s ease;
  width: min(560px, 100%);
}
.modal-overlay.is-open .modal { transform: translateY(0); }

.modal__header {
  align-items: flex-start;
  background: linear-gradient(145deg, #1678ff 0%, #0051c7 100%);
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 24px 24px;
}
.modal__title { color: #fff; font-size: 22px; font-weight: 400; line-height: 1.2; margin: 0; }
.modal__close { background: none; border: 0; color: rgba(255,255,255,.62); cursor: pointer; height: 36px; line-height: 0; padding: 0; width: 36px; }
.modal__close:hover,
.modal__close:focus-visible { color: #fff; outline: none; }
.modal__close svg { width: 36px; height: 36px; stroke-width: 1.8; }

.modal__body {
  border-radius: 30px;
  margin-top: -14px;
  background: #fff;
  padding: 20px 24px 30px;
  position: relative;
}

/* Fields */
.mfield { margin-bottom: 22px; position: relative; }
.mfield__label { background: #fff; color: #4d4b57; font-size: 13px; font-weight: 400; left: 16px; line-height: 1; margin: 0; padding: 0 4px; position: absolute; top: -8px; z-index: 2; }
.mfield__req { color: #e53e3e; }
.mfield__input,
.mfield__textarea {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 4px;
  box-sizing: border-box;
  color: #080a0b;
  font: inherit;
  font-size: 16px;
  outline: none;
  padding: 14px 16px 8px;
  transition: border-color .18s;
  width: 100%;
}
.mfield__input { height: 48px; }
.mfield__textarea { min-height: 64px; resize: vertical; }
.mfield__input:focus,
.mfield__textarea:focus { border-color: #1977f3; }
.mfield__input::placeholder,
.mfield__textarea::placeholder { color: #8f8f98; font-size: 16px; }
.mfield-row { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 22px; }
.mfield-row .mfield { margin-bottom: 0; }

/* Consent */
.modal__consent { align-items: flex-start; cursor: pointer; display: flex; gap: 11px; margin-bottom: 18px; }
.modal__consent input[type="checkbox"] { appearance: none; -webkit-appearance: none; position: relative; flex: 0 0 20px; width: 20px; height: 20px; margin: 0; border: 2px solid #e0e0e4; border-radius: 4px; background: #f8f8fa; cursor: pointer; }
.modal__consent input[type="checkbox"]:checked { background: #0d6efd; border-color: #0d6efd; }
.modal__consent input[type="checkbox"]:checked::after { content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.modal__consent-text { color: #151515; font-size: 15px; line-height: 1.25; }
.modal__policy-link { color: inherit; text-decoration: underline; }

.modal__verification { display: block; margin-bottom: 14px; }
.modal__cf-turnstile { height: 58px; margin-bottom: 0; transform: scale(.72); transform-origin: left top; }
.modal__cf-error,
.modal__status { color: #e53e3e; font-size: 13px; margin-top: 6px; }

/* Divider + submit */
.modal__divider { border: 0; border-top: 1px solid rgba(0,0,0,.08); margin: 0 0 12px; }
.modal__submit { background: #1975f7; border: 0; border-radius: 55px; color: #fff; cursor: pointer; font: inherit; font-size: 17px; font-weight: 700; height: 46px; padding: 0 32px; width: 100%; }
.modal__submit:hover,
.modal__submit:focus-visible { opacity: .9; outline: none; }
.modal__status { min-height: 0; text-align: center; }
.modal__status.is-ok { color: #38a169; }
.modal__thankyou { padding: 44px 20px; text-align: center; }

@media (max-width: 640px) {
  .modal-overlay { align-items: center; overflow-y: hidden; padding: 10px; }
  .modal-overlay .modal { border-radius: 24px; max-height: calc(100vh - 10px); min-height: 0; overflow: hidden; }
  .modal__header { border-radius: 24px 24px 0 0; min-height: 60px; padding: 14px 16px 20px; }
  .modal__title { font-size: 22px; font-weight: 700; line-height: 1.2; }
  .modal__body { border-radius: 24px; padding: 18px 14px 26px; }
  .mfield-row { gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
  .mfield { margin-bottom: 16px; }
  .modal__cf-turnstile { flex-basis: auto; height: 58px; transform: scale(.72); }
  .modal__verification { display: block; }
}
