* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #060607;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── TOKENS ── */
:root {
  --blue: #3b82f6;
  --dark: #0a0a0a;
  --card: #1a1a1a;
  --card2: #111111;
  --border: rgba(255,255,255,0.05);
  --muted: #a3a3a3;
  --muted2: #737373;
  /* Spacing scale */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 24px;
  --sp-lg: 48px;
  --sp-xl: 80px;
  --sp-section: 96px;
  --sp-section-mobile: 64px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  padding-top: 16px;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-inner {
  display: flex; align-items: center;
  background: rgba(18,18,18,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 10px 14px 10px 28px;
  gap: 0;
  width: fit-content;
  min-width: 780px;
  max-width: calc(100vw - 48px);
  pointer-events: all;
}

.logo { display: flex; align-items: center; gap: 4px; text-decoration: none; white-space: nowrap; }
/* Base logo image size (was an inline style on index.html; mobile media queries
   below still override the height). */
.logo img { height: 32px; width: auto; display: block; }




.nav-right { display: flex; align-items: center; gap: 16px; margin-left: 56px; }
/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 20px;
  border: none;
  background: transparent;
  cursor: pointer; user-select: none;
  transition: background .2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.08); }
.lang-flag {
  width: 22px; height: 22px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1;
}
.lang-code {
  font-size: 14px; font-weight: 500; color: #d4d4d4;
  letter-spacing: .04em;
}
.lang-chevron {
  color: #a3a3a3; transition: transform .25s;
  display: flex; align-items: center;
}
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

/* dropdown */
.lang-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; overflow: hidden;
  min-width: 140px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(-8px) scale(.97);
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.16,1,.3,1), transform .22s cubic-bezier(.16,1,.3,1);
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; cursor: pointer;
  font-size: 14px; font-weight: 500; color: #d4d4d4;
  transition: background .15s;
}
.lang-option:hover { background: rgba(255,255,255,0.07); }
.lang-option.active { color: #3b82f6; }
.lang-option.active .lang-opt-code::after {
  content: ' ✓';
}
.lang-opt-flag {
  width: 22px; height: 22px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.lang-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0 12px; }
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff; border: none;
  padding: 14px 24px; border-radius: 9999px;
  font-size: 15px; font-weight: 600; line-height: 1; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  min-height: 48px;
  box-shadow: 0 0 20px rgba(37,99,235,0.25);
  transition: opacity .2s, transform .15s, box-shadow .2s;
}
.btn-cta:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 4px 24px rgba(37,99,235,0.4); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 96px 0 0;
  background: transparent;
  border-top: none;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  gap: 0;
}
.hero-glow {
  position: absolute;
  left: -100px; top: 0;
  width: 700px; height: 700px;
  background: #2563eb;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
/* Two-column hero layout matching Figma */
.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative; z-index: 1;
  width: 100%;
}

/* H1 — left column, ~49.5% of container width (Figma: 681.91/1376) */
.hero-title-block {
  flex: 0 0 49.5%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 0;
}
.hero-h1 { display: flex; flex-direction: column; gap: 4px; }
.hero-h1-line1 {
  display: block;
  font-size: 96px; font-weight: 600; color: #fff;
  letter-spacing: -2.4px; line-height: 96px;
  white-space: nowrap;
}
.hero-h1-row {
  display: flex; align-items: center;
  gap: 32px; margin: 0;
}
/* "Websites" — gradient text, Poppins Bold */
.hero-h1-italic {
  font-family: 'Poppins', sans-serif;
  font-style: normal; font-weight: 700;
  font-size: 96px; line-height: 96px;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-h1-that {
  font-size: 96px; font-weight: 600; color: #fff;
  letter-spacing: -2.4px; line-height: 96px;
  white-space: nowrap;
}
.hero-h1-line3 {
  display: block;
  font-size: 96px; font-weight: 600; color: #fff;
  letter-spacing: -2.4px; line-height: 96px;
  white-space: nowrap;
}
/* Divider hidden — not needed in single-col layout */
.hero-h1-divider { width: 96px; height: 4px; background: #fff; flex-shrink: 0; }
/* French H1 — 3-row layout on desktop (hidden row at tablet/mobile) */
html[lang="fr"] .hero-h1-row { display: none; }
@media (min-width: 1101px) {
  html[lang="fr"] .hero-h1-row    { display: flex; }
  html[lang="fr"] .hero-h1-line1  { font-size: 88px; line-height: 90px; letter-spacing: -2.2px; }
  html[lang="fr"] .hero-h1-italic { font-size: 88px; line-height: 90px; }
  html[lang="fr"] .hero-h1-that   { display: none; }
  html[lang="fr"] .hero-h1-line3  { font-size: 72px; line-height: 76px; letter-spacing: -1.8px; }
}

/* ── FRENCH SECTION HEADING OVERRIDES ── */
/* Hero H1: blue gradient on "des sites" */
html[lang="fr"] .hero-h1-line1 em {
  font-family: 'Poppins', sans-serif; font-style: normal; font-weight: 700;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Transformation: single line on desktop */
html[lang="fr"] .transformation-h { white-space: nowrap; max-width: none; }
/* Testimonials: <br> in HTML handles break, disable balance */
html[lang="fr"] .testimonials-heading { text-wrap: unset; max-width: 860px; }
/* Process: 52px fits FR text in 2 lines, <br> in HTML handles break */
html[lang="fr"] .process-h { font-size: 52px; text-wrap: unset; max-width: 800px; }
/* Pricing: FR line 1 ("Choisissez le bon site web") is longer — widen + disable balance */
html[lang="fr"] .pricing-h { max-width: 900px; text-wrap: unset; }
/* FAQ: 34px is the max that fits "On vous répond clairement." in the 600px left column */
html[lang="fr"] .faq-title { font-size: 52px; max-width: 1000px; text-wrap: unset; }

@media (max-width: 1100px) {
  html[lang="fr"] .transformation-h { white-space: normal; }
  html[lang="fr"] .process-h { font-size: 38px; line-height: 44px; }
  html[lang="fr"] .faq-title { font-size: 38px; line-height: 44px; }
}
@media (max-width: 768px) {
  html[lang="fr"] .process-h { font-size: 36px; line-height: 42px; }
  html[lang="fr"] .faq-title { font-size: 36px; line-height: 42px; }
}
@media (max-width: 480px) {
  html[lang="fr"] .process-h { font-size: 30px; line-height: 36px; }
  html[lang="fr"] .faq-title { font-size: 30px; line-height: 36px; }
}
@media (max-width: 400px) {
  html[lang="fr"] .process-h { font-size: 26px; line-height: 32px; }
  html[lang="fr"] .faq-title { font-size: 26px; line-height: 32px; }
}

/* Right side: ~48% of container width (Figma: 662.09/1376) */
.hero-right {
  flex: 0 0 48%;
  position: relative;
  height: 340px;
  padding-top: 160px;
  padding-right: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

  object-fit: cover;
  object-position: top;
  display: block;
}
.hero-desc {
  font-size: 18px; font-weight: 400;
  color: #f0f0f0;
  line-height: 29.25px;
  max-width: 484px;
  margin: 0;
}

/* Bottom row: CTA + avatar/trust inline */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Legacy btn-wa — now inherits primary style */
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  padding: 14px 28px; border-radius: 9999px;
  font-size: 15px; font-weight: 600; line-height: 1;
  min-height: 48px;
  text-decoration: none; transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap; cursor: pointer; border: none;
  box-shadow: 0 0 20px rgba(37,99,235,0.25);
}
.btn-wa:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 4px 24px rgba(37,99,235,0.4); }

/* Inline trust: avatars + count — sits next to CTA */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 24px;
}
.hero-trust-avatars {
  display: flex; align-items: center;
}
.hero-trust-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  overflow: hidden;
  margin-right: -8px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.hero-trust-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-trust-text { margin-left: 14px; }
.hero-trust-stars { display: none; } /* hidden — count is enough */
.hero-trust-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  white-space: nowrap;
}
.hero-trust-copy strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  display: block;
  font-size: 14px;
}

/* Trust line below CTA row */
.hero-trust-line {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: .06em;
  margin-top: 20px;
  line-height: 1.5;
}

/* Flower badge hidden — not in this layout */
.flower-badge {
  position: absolute;
  right: 64px;
  top: -32px;
  width: 144px; height: 144px;
  display: flex; align-items: center; justify-content: center;
}


/* ── GRID SYSTEM ── */
/* Single source of truth for all section widths */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

/* ── SECTION COMMON ── */
.section-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--blue); margin-bottom: 4px;
}
.section-label-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 9999px; flex-shrink: 0; }

/* ── WORK SECTION ── */
.work-section {
  background: transparent;
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.work-section::before { display: none; }
.work-section > * { position: relative; z-index: 1; }
/* Two-col: label left, everything else right */
.work-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.work-header-left {
  padding-top: 8px;
}
.work-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
/* Heading: "See Our  Latest  Creative Websites" all on left, stacked naturally */
.work-heading {
  display: block;
  text-align: center;
  max-width: min(100%, 920px);
  margin: 0 auto;
  text-wrap: balance;
  white-space: nowrap;   /* keep the title on a single line */
}
.work-h-line1 {
  display: inline;
}
.work-h-see   { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 60px; letter-spacing: -1.2px; line-height: 1.1; color: #fff; }
.work-h-accent { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 60px; letter-spacing: -1.2px; line-height: 1.1; margin-inline-start: 0.25em; background: linear-gradient(to right, #2563eb, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.work-desc {
  font-size: 18px; color: #d4d4d8; line-height: 29.25px; max-width: 520px;
}

/* ── PORTFOLIO BENTO GRID ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 548px 548px;
  gap: 80px 24px;
  width: 100%;
}
.bento-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 17px;
  display: flex; flex-direction: column; gap: 24px;
  text-decoration: none;
  transition: border-color .3s;
  overflow: hidden;
}
.bento-card:hover { border-color: rgba(59,130,246,0.2); }
.bento-card.dark2 { background: #141414; }
.bento-card-1 { grid-column: 6 / span 7; grid-row: 1; align-self: start; }
.bento-card-2 { grid-column: 8 / span 5; grid-row: 2; align-self: start; }
.bento-card-3 { grid-column: 1 / span 5; grid-row: 1; align-self: start; }
.bento-card-4 { grid-column: 1 / span 7; grid-row: 2; align-self: start; }
.bento-thumb {
  background: #1a1f2e;
  border-radius: 16px;
  height: 420px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  width: 100%;
}
.bento-thumb img {
  position: absolute;
  width: 342px;
  height: auto;
  pointer-events: none;
  display: block;
}
.bento-thumb .bento-hover-img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.38s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.bento-card:hover .bento-hover-img {
  opacity: 1;
  transform: scale(1);
}
/* Project cards: keep the glow ring + lift, but drop the
   ::before layer — its dark fill at the card radius reads as a
   second rounded frame inside the card on hover. */
.bento-card.glow-card::before {
  display: none;
}
.bento-info {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  padding: 0 8px 8px; flex-shrink: 0;
}
.bento-cat { font-size: 16px; color: #a3a3a3; line-height: 24px; margin-bottom: 6px; }
.bento-title { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 24px; color: #fff; letter-spacing: -0.6px; line-height: 32px; }
.bento-btn {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  width: 44px; height: 44px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px -3px rgba(37,99,235,0.15);
  transition: transform .3s;
}
.bento-card:hover .bento-btn { transform: scale(1.08); }
.bento-btn-wide {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  width: 148px; height: 44px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 16px; font-weight: 600; color: #fff;
  flex-shrink: 0; opacity: 0.8;
  box-shadow: 0 0 15px -3px rgba(37,99,235,0.15);
}
.bento-btn-inactive {
  background: #0a0a0a;
  width: 44px; height: 44px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bento-result {
  font-size: 12px; color: #6b6b6f; font-weight: 400;
  letter-spacing: 0.1px; line-height: 1.4; margin-top: 3px;
}
/* Expand-on-hover button */
.bento-btn-expand {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  height: 44px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
  width: 44px;
  gap: 0;
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1), gap 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 15px -3px rgba(37,99,235,0.15);
}
.bento-btn-expand span {
  white-space: nowrap;
  font-size: 15px; font-weight: 600; color: #fff;
  max-width: 0; overflow: hidden;
  opacity: 0;
  transition: max-width 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s ease;
}
.bento-card:hover .bento-btn-expand {
  width: 148px; gap: 8px;
}
.bento-card:hover .bento-btn-expand span {
  max-width: 120px; opacity: 1;
}
/* Transformation section — image mockups */
.t-mock-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  width: 100%;
  flex-shrink: 0;
}
.t-mock-frame.old {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.05);
  filter: saturate(0.25) brightness(0.85);
}
.t-mock-frame.new {
  background: #171c29;
  border: 1px solid #2563eb;
}
/* legacy two-image layout (img-left/img-right) — no longer used in markup,
   scoped so it doesn't shrink the single full-bleed .compare-img */
.t-mock-frame img.img-left,
.t-mock-frame img.img-right {
  position: absolute;
  width: 55%;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.t-mock-frame img.img-left  { left: 10px; top: 20px; z-index: 2; }
.t-mock-frame img.img-right { right: 10px; top: 10px; z-index: 1; }

/* ── MARQUEE ── */
.marquee-section {
  background: rgba(6,6,7,0.3); padding: 28px 0;
  overflow: hidden; position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-inner { display: flex; width: max-content; animation: marquee 55s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 64px; padding-right: 80px; white-space: nowrap;
}
.marquee-text { font-size: 80px; font-weight: 600; color: #fff; letter-spacing: -2px; line-height: 80px; }
.marquee-text.outline {
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.marquee-star { font-size: 64px; color: var(--blue); line-height: 1; flex-shrink: 0; }
.marquee-fade-left {
  position: absolute; left: 0; top: 0; bottom: 0; width: 128px;
  background: linear-gradient(to right, var(--dark), transparent);
  pointer-events: none; z-index: 1;
}
.marquee-fade-right {
  position: absolute; right: 0; top: 0; bottom: 0; width: 128px;
  background: linear-gradient(to left, var(--dark), transparent);
  pointer-events: none; z-index: 1;
}
@keyframes marquee     { from { transform: translateX(0);    } to { transform: translateX(-50%); } }
@keyframes marquee-rtl { from { transform: translateX(-50%); } to { transform: translateX(0);    } }
/* Force LTR layout so RTL page direction doesn't reverse the flex order and break the loop */
.marquee-section, .marquee-inner, .marquee-item { direction: ltr; }
html[lang="ar"] .marquee-inner { animation-name: marquee-rtl; }
html[lang="ar"] .marquee-text  { font-family: 'Cairo', sans-serif; letter-spacing: 0; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: rgba(3,3,3,0.25); padding: 96px 0 128px;
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(6,6,7,0.15);
  pointer-events: none;
}
.testimonials-section > * { position: relative; z-index: 1; }
.testimonials-heading {
  font-family: 'Poppins', sans-serif; font-size: 60px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 1.1; text-align: center;
  max-width: 672px; margin: 0 auto 20px;
  text-wrap: balance;
}
.testimonials-heading em { font-family: 'Poppins', sans-serif; font-style: normal; font-weight: 600; background: linear-gradient(to right, #2563eb, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.testimonials-sub { font-size: 18px; color: #a1a1aa; line-height: 28px; text-align: center; margin: 0 auto 40px; }

/* carousel nav — arrows sit at the top-right, above the cards */
.testi-nav {
  display: flex; justify-content: flex-end; align-items: center;
  gap: 12px; margin-bottom: 28px;
}
.testi-arrow {
  width: 44px; height: 44px; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: #fff; cursor: pointer;
  transition: background .25s, border-color .25s, opacity .25s, transform .15s;
}
.testi-arrow svg { width: 20px; height: 20px; }
.testi-arrow:hover:not(:disabled) { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4); }
.testi-arrow:active:not(:disabled) { transform: scale(0.94); }
.testi-arrow:disabled { opacity: 0.35; cursor: default; }
html[dir="rtl"] .testi-nav { justify-content: flex-start; }

/* horizontal scroller: shows 3 cards, swipes/arrows reveal the rest */
.testimonial-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: 40px;
  margin-block: -40px;
}
.testimonial-grid::-webkit-scrollbar { display: none; }
.testimonial-card { scroll-snap-align: start; }
@media (max-width: 768px) {
  .testimonial-grid { grid-auto-columns: calc((100% - 16px) / 2); }
}
@media (max-width: 640px) {
  .testimonial-grid { grid-auto-columns: 88%; }
}
.testimonial-card {
  background: #111; border: 1px solid var(--border);
  border-radius: 24px; padding: 33px;
  display: flex; flex-direction: column; gap: 24px;
  transition: border-color .3s, transform .3s;
  opacity: 1 !important; transform: none !important;
}
.testimonial-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-3px) !important; }
.quote-icon { width: 24px; height: 24px; flex-shrink: 0; }
.testimonial-text { font-size: 16px; color: #a3a3a3; line-height: 26px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 16px; padding-top: 8px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 9999px;
  background: #262626; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--blue);
}
.author-name { font-size: 16px; font-weight: 500; color: #fff; letter-spacing: -0.4px; }
.author-role { font-size: 14px; color: var(--muted2); margin-top: 2px; }

/* Step card thumbnail — hidden on desktop, shown via mobile media query */
.step-card-img { display: none; }

/* ── PROCESS ── */
.process-section {
  background: rgba(3,3,3,0.2);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(6,6,7,0.12);
  pointer-events: none;
}
.process-section > * { position: relative; z-index: 1; }
.process-glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: #2563eb;
  filter: blur(180px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 64px;
  position: relative; z-index: 1;
}
/* left col: just the label */
.process-header-left { padding-top: 8px; }
/* right col: heading + subtitle + CTA stacked */
.process-header-right-col {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 24px;
}
.process-h { font-family: 'Poppins', sans-serif; font-size: 52px; font-weight: 600; color: #fff; letter-spacing: -1.2px; line-height: 1.15; margin: 0 auto; max-width: 1000px; text-align: center; text-wrap: balance; }
.process-h em { font-family: 'Poppins', sans-serif; font-style: normal; font-weight: 600; background: linear-gradient(to right, #2563eb, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.process-right-text { font-size: 18px; color: #a3a3a3; line-height: 29.25px; max-width: 560px; margin: 0 auto; text-align: center; }

/* ── PROCESS BODY: steps + image panel ── */
.process-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; position: relative; z-index: 1;
  align-items: center;
  width: 100%;
}

/* Steps list — height matches 80% of the image panel */
.process-steps {
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: calc((100% - 120px) * 0.8);
  min-height: 360px;
  max-height: 420px;
  gap: 0;
}

.process-step {
  border-radius: 16px; padding: 12px 16px 12px 24px;
  display: flex; align-items: center; gap: 20px;
  cursor: pointer;
  transition: background .25s;
  position: relative;
  flex-shrink: 0;
}
.process-step:hover { background: rgba(255,255,255,0.02); }

/* active state */
.process-step.active {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  flex-direction: column; align-items: flex-start; gap: 12px;
  flex: 1;
}
.process-step.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--blue);
  border-radius: 4px 0 0 4px;
}

/* progress bar at bottom of active step */
.step-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: rgba(255,255,255,0.06); border-radius: 0 0 16px 16px; overflow: hidden;
}
.step-progress-fill {
  height: 100%; width: 0%; background: var(--blue);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

.step-num-circle {
  width: 44px; height: 44px; border-radius: 9999px;
  border: 1px solid #404040;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--muted); flex-shrink: 0;
  transition: border-color .3s, color .3s;
}
.process-step.active .step-num-circle { border-color: var(--blue); color: #fff; }
.step-title-row { display: flex; align-items: center; gap: 24px; }
.step-title { font-size: 24px; font-weight: 500; color: #fff; letter-spacing: -0.6px; }
.step-body { font-size: 18px; color: var(--muted); line-height: 1.625; max-width: 383px; }

/* ── Image panel: stack of 4 images, crossfade ── */
.process-image-panel {
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  background: #171717;
  aspect-ratio: 1/1;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  width: 100%;
}
.process-img-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.process-img-slide.active { opacity: 1; }
.process-img-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
/* subtle zoom-in on active image */
.process-img-slide img {
  transform: scale(1.05);
  transition: transform 4s ease, opacity .7s ease;
}
.process-img-slide.active img { transform: scale(1); }

/* ── FAQ ── */
.faq-section {
  background: rgba(3,3,3,0.22);
  padding: 96px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.faq-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(6,6,7,0.15);
  pointer-events: none;
}
.faq-section > * { position: relative; z-index: 1; }
/* Centered, stacked layout to match the other section headers (process,
   pricing): centered header on top, accordion below — not the old 2-col split. */
.faq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
/* LEFT col */
.faq-left {
  position: sticky;
  top: 120px;
}
.faq-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--blue);
  margin-bottom: 24px;
}
.faq-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: 52px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 1.1;
  margin-bottom: 20px; max-width: 480px;
}
.faq-title em {
  font-family: 'Poppins', sans-serif;
  font-style: normal; font-weight: 600;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-subtitle {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; margin-bottom: 36px;
}
.faq-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  padding: 14px 28px; border-radius: 9999px;
  font-size: 15px; font-weight: 600; line-height: 1;
  min-height: 48px;
  text-decoration: none; cursor: pointer; border: none;
  box-shadow: 0 0 20px rgba(37,99,235,0.25);
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.faq-cta:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 4px 24px rgba(37,99,235,0.4); }
.faq-cta-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq-cta-arrow svg {
  width: 16px; height: 16px;
  transform: rotate(-45deg);
}
/* RIGHT col — accordion */
.faq-list {
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-question {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 0; cursor: pointer; user-select: none;
}
.faq-question:hover .faq-q-text { color: #fff; }
.faq-q-text {
  font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.8);
  line-height: 1.4; transition: color .2s;
}
.faq-item.open .faq-q-text { color: #fff; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
  color: var(--muted);
}
.faq-item.open .faq-icon {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.faq-icon svg {
  width: 13px; height: 13px;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  transform: rotate(0deg);
}
.faq-item.open .faq-icon svg { transform: rotate(90deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
}
.faq-answer-inner {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; padding-bottom: 22px;
}
.faq-item.open .faq-answer { max-height: 300px; }
/* ── PROCESS ── */
.process-section {
  background: rgba(3,3,3,0.2);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(6,6,7,0.12);
  pointer-events: none;
}
.process-section > * { position: relative; z-index: 1; }
.process-glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: #2563eb;
  filter: blur(180px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 64px;
  position: relative; z-index: 1;
}
/* left col: just the label */
.process-header-left { padding-top: 8px; }
/* right col: heading + subtitle + CTA stacked */
.process-header-right-col {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 24px;
}
.process-h { font-family: 'Poppins', sans-serif; font-size: 52px; font-weight: 600; color: #fff; letter-spacing: -1.2px; line-height: 1.15; margin: 0 auto; max-width: 1000px; text-align: center; text-wrap: balance; }
.process-h em { font-family: 'Poppins', sans-serif; font-style: normal; font-weight: 600; background: linear-gradient(to right, #2563eb, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.process-right-text { font-size: 18px; color: #a3a3a3; line-height: 29.25px; max-width: 560px; margin: 0 auto; text-align: center; }

/* ── PROCESS BODY: steps + image panel ── */
.process-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; position: relative; z-index: 1;
  align-items: center;
  width: 100%;
}

/* Steps list — height matches 80% of the image panel */
.process-steps {
  display: flex; flex-direction: column;
  justify-content: space-between;
  height: calc((100% - 120px) * 0.8);
  min-height: 360px;
  max-height: 420px;
  gap: 0;
}

.process-step {
  border-radius: 16px; padding: 12px 16px 12px 24px;
  display: flex; align-items: center; gap: 20px;
  cursor: pointer;
  transition: background .25s;
  position: relative;
  flex-shrink: 0;
}
.process-step:hover { background: rgba(255,255,255,0.02); }

/* active state */
.process-step.active {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px 32px;
  flex-direction: column; align-items: flex-start; gap: 12px;
  flex: 1;
}
.process-step.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--blue);
  border-radius: 4px 0 0 4px;
}

/* progress bar at bottom of active step */
.step-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: rgba(255,255,255,0.06); border-radius: 0 0 16px 16px; overflow: hidden;
}
.step-progress-fill {
  height: 100%; width: 0%; background: var(--blue);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

.step-num-circle {
  width: 44px; height: 44px; border-radius: 9999px;
  border: 1px solid #404040;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--muted); flex-shrink: 0;
  transition: border-color .3s, color .3s;
}
.process-step.active .step-num-circle { border-color: var(--blue); color: #fff; }
.step-title-row { display: flex; align-items: center; gap: 24px; }
.step-title { font-size: 24px; font-weight: 500; color: #fff; letter-spacing: -0.6px; }
.step-body { font-size: 18px; color: var(--muted); line-height: 1.625; max-width: 383px; }

/* ── Image panel: stack of 4 images, crossfade ── */
.process-image-panel {
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  background: #171717;
  aspect-ratio: 1/1;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  width: 100%;
}
.process-img-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.process-img-slide.active { opacity: 1; }
.process-img-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
/* subtle zoom-in on active image */
.process-img-slide img {
  transform: scale(1.05);
  transition: transform 4s ease, opacity .7s ease;
}
.process-img-slide.active img { transform: scale(1); }

/* ── FAQ (second definition, merged) ── */
/* Centered header, full width — mirrors .process-header / .pricing-header */
.faq-left {
  position: static;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  width: 100%;
}
.faq-label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--blue);
  margin-bottom: 24px;
}
.faq-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.faq-title {
  font-family: 'Poppins', sans-serif;
  font-size: 52px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 1.15;
  margin: 0 auto 20px; max-width: 1000px;
  text-align: center; text-wrap: balance;
}
.faq-title em {
  font-family: 'Poppins', sans-serif;
  font-style: normal; font-weight: 600;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-subtitle {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; margin: 0 auto;
  max-width: 560px; text-align: center;
}
/* accordion sits centered below the header, constrained like a content column */
.faq-list { width: 100%; max-width: 760px; margin: 0 auto; }
/* CTA always sits centered below the accordion (header CTA hidden) */
.faq-left .faq-cta { display: none; }
.faq-mobile-cta-wrap { display: flex; justify-content: center; margin-top: 40px; }
/* faq-cta styles defined above */

/* counter badge */

/* accordion list */
.faq-list {
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-question {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 0; cursor: pointer;
  user-select: none;
  transition: color .2s;
}
.faq-question:hover .faq-q-text { color: #fff; }
.faq-q-text {
  font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.8);
  line-height: 1.4; transition: color .2s;
}
.faq-item.open .faq-q-text { color: #fff; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
  color: var(--muted);
}
.faq-item.open .faq-icon {
  background: var(--blue); border-color: var(--blue);
  color: #fff;
}
/* arrow icon inside — forward by default, rotates to down when open */
.faq-icon svg {
  width: 13px; height: 13px;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  transform: rotate(0deg); /* pointing right → */
}
.faq-item.open .faq-icon svg {
  transform: rotate(90deg); /* pointing down ↓ */
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), padding .4s;
}
.faq-answer-inner {
  font-size: 15px; color: var(--muted);
  line-height: 1.75; padding-bottom: 22px;
  max-width: 560px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* responsive */
/* ── FOOTER ── */
footer {
  background: rgba(3,3,3,0.3); padding: 96px 0 0;
  position: relative; overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(6,6,7,0.2);
  pointer-events: none;
}
footer > * { position: relative; z-index: 1; }
.footer-top {
  border-bottom: 1px solid rgba(38,38,38,0.6);
  padding-bottom: 48px; margin-bottom: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  position: relative;
}
.footer-cta-small { font-size: 36px; font-weight: 500; color: var(--muted2); letter-spacing: -0.9px; }
.footer-cta-row { display: flex; align-items: center; gap: 16px; }
.footer-dot { width: 16px; height: 16px; background: var(--blue); border-radius: 9999px; flex-shrink: 0; }
.footer-phone { font-family: 'Poppins', sans-serif; font-size: 60px; font-weight: 600; color: #fff; letter-spacing: -1.5px; line-height: 60px; }
.footer-ctas { display: flex; gap: 8px; }
.footer-mid {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 40px; margin-bottom: 40px;
  flex-wrap: wrap; gap: 24px;
}
.footer-mid-actions { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 48px; height: 48px; border-radius: 9999px;
  border: 1px solid #262626; display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 14px;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--blue); color: var(--blue); }
.footer-social { color: #fff; text-decoration: none; transition: color .2s; }
.footer-social:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(38,38,38,.4);
  padding: 24px 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 16px; color: var(--muted2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 16px; color: var(--muted2); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* ══════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints:
   - 1100px : tablet landscape
   - 900px  : tablet portrait
   - 700px  : mobile large
   - 480px  : mobile small
══════════════════════════════════════════════ */

/* ── 1100px: tablet landscape ── */
@media (max-width: 1100px) {

  /* Grid */
  .container     { padding: 0 48px; }

  /* Nav */
  nav { padding: 0; }
  .nav-links { display: none; }

  /* Hero */
  .hero { padding: 120px 0 80px; gap: 56px; }
  .hero-h1-line1,
  .hero-h1-that,
  .hero-h1-line3 { font-size: 68px; line-height: 72px; letter-spacing: -1.8px; }
  .hero-h1-italic { font-size: 72px; line-height: 72px; }
  .hero-h1-divider { width: 72px; }
  .hero-right { padding-top: 100px; }

  /* Work */
  .work-header { grid-template-columns: 140px 1fr; gap: 40px; }
  .work-h-see { font-size: 60px; font-weight: 600; letter-spacing: -1.5px; line-height: 60px; color: #fff; }
  .work-h-accent { font-size: 60px; }
  .bento-grid { gap: 16px; }
  /* Process */
  .process-section { padding: 128px 0; }
  .process-header { grid-template-columns: 120px 1fr; gap: 40px; }
  .process-h { font-size: 38px; line-height: 44px; }
  .process-body { gap: 48px; }
  .step-title { font-size: 20px; }
  .step-body  { font-size: 16px; }

  /* Testimonials */
  .testimonials-heading {
  font-size: 48px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 53px; text-align: center;
  max-width: 672px; margin: 0 auto 48px;
}
  .testimonial-grid { gap: 16px; }

  /* FAQ */
  .faq-section { padding: 96px 0; }
  .faq-inner   { gap: 56px; }
  .faq-title   { font-size: 38px; }

  /* Footer */
  .footer-tagline-h { font-size: 30px; }
  .footer-phone     { font-size: 28px; }
}

/* ── 900px: tablet portrait ── */
@media (max-width: 900px) {

  /* Grid */
  .container { padding: 0 28px; }

  /* Nav */
  .nav-links { display: none; }

  /* Hero */
  .hero { padding: 120px 0 64px; gap: 40px; }
  .hero-h1-line1, .hero-h1-that, .hero-h1-line3 { font-size: 52px; letter-spacing: -1.5px; }
  .hero-h1-italic { font-size: 52px; }
  .hero-ctas { gap: 12px; }
  .hero-trust { display: none; }

  /* Carousel cards */
  .c-card { width: 480px; height: 290px; }

  /* Work */
  .work-header { grid-template-columns: 1fr; gap: 16px; }
  .work-header-left { display: none; } /* label moves inline below */
  .work-h-see { font-size: 60px; font-weight: 600; letter-spacing: -1.5px; line-height: 60px; color: #fff; }
  .work-h-accent { font-size: 60px; }
  .work-desc { font-size: 16px; }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-card-1 { grid-column: 1 / 3; grid-row: auto; }
  .bento-card-2 { grid-column: 1 / 2; }
  .bento-card-3 { grid-column: 2 / 3; }
  .bento-card-4 { grid-column: 1 / 3; }
  .bento-thumb  { height: 200px; }
  /* Process */
  .process-header { grid-template-columns: 1fr; gap: 24px; }
  .process-header-right-col { gap: 16px; }
  .process-h { font-size: 36px; line-height: 42px; }
  .process-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-img-panel { aspect-ratio: 16/10; width: 100%; max-width: 100%; }
  .process-steps { order: 2; }
  .process-img-panel { order: 1; }
  .process-steps { min-height: unset; max-height: unset; }

  /* Testimonials */
  .testimonials-heading {
  font-size: 48px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 53px; text-align: center;
  max-width: 672px; margin: 0 auto 48px;
}

  /* FAQ */
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left  { position: static; text-align: center; }
  .faq-label { justify-content: center; }
  .faq-title { font-size: 34px; margin-left: auto; margin-right: auto; }
  .faq-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }

  /* Footer */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-mid { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-tagline-h { font-size: 26px; }
  .footer-phone     { font-size: 26px; }
  .footer-nav { flex-wrap: wrap; gap: 16px 24px; }
}

/* ── 700px: mobile large ── */
@media (max-width: 700px) {

  /* Grid */
  .container { padding: 0 20px; }

  .nav-links { display: none; }

  /* Hero */
  .hero { padding: 88px 0 20px; gap: 24px; }
  .hero-h1-line1, .hero-h1-that, .hero-h1-line3 { font-size: 32px; letter-spacing: -0.8px; line-height: 36px; }
  .hero-h1-italic { font-size: 32px; line-height: 36px; }
  .hero-desc { font-size: 15px; }
  .hero-ctas { flex-wrap: wrap; gap: 10px; }
  .btn-primary, .btn-secondary, .btn-outline { font-size: 14px; padding: 12px 20px; }
  .hero-trust { display: none; }

  /* Marquee */
  .marquee-section { padding: 20px 0; }
  .marquee-text    { font-size: 28px; line-height: 28px; }
  .marquee-star    { font-size: 22px; }

  /* Carousel */
  .c-card { width: 300px; height: 200px; }
  .hero-carousel { margin-top: 32px; }

  /* Work */
  .work-section { padding: 128px 0; }
  .work-h-see { font-size: 34px; line-height: 38px; }
  .work-h-accent { font-size: 34px; line-height: 38px; }
  .work-desc       { font-size: 15px; }
  .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .bento-card-1,
  .bento-card-2,
  .bento-card-3,
  .bento-card-4 { grid-column: 1; grid-row: auto; }
  .bento-thumb { height: 220px; }
  .bento-info  { padding: 14px 16px; }
  .bento-title { font-size: 15px; }
  .bento-cat   { font-size: 11px; }
  /* Process */
  .process-section { padding: 128px 0; }
  .process-h { font-size: 30px; line-height: 36px; }
  .process-right-text { font-size: 15px; }
  .process-step { padding: 12px 12px 12px 16px; }
  .process-step.active { padding: 20px 20px; }
  .step-title  { font-size: 18px; }
  .step-body   { font-size: 14px; }
  .step-num-circle { width: 36px; height: 36px; font-size: 12px; }
  .process-img-panel { aspect-ratio: 16/9; border-radius: 14px; }

  /* Testimonials */
  .testimonials-section { padding: 72px 0 80px; }
  .testimonials-heading {
  font-size: 34px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 40px; text-align: center;
  max-width: 672px; margin: 0 auto 48px;
}
  .testimonial-card { padding: 24px; }
  .testimonial-text { font-size: 14px; line-height: 1.65; }
  .author-name  { font-size: 14px; }
  .author-role  { font-size: 12px; }

  /* FAQ */
  .faq-section { padding: 72px 0; }
  .faq-title   { font-size: 28px; line-height: 34px; }
  .faq-subtitle { font-size: 14px; }
  .faq-q-text  { font-size: 14px; }
  .faq-ans-inner { font-size: 13px; }
  .faq-question { padding: 16px 0; }
  .faq-q       { padding: 16px 0; }

  /* Footer */
  .footer-section { padding: 56px 0 0; }
  .footer-tagline-h  { font-size: 22px; }
  .footer-phone      { font-size: 20px; gap: 8px; }
  .footer-phone-dot  { width: 7px; height: 7px; }
  .footer-nav        { gap: 12px 20px; }
  .footer-nav a      { font-size: 13px; }
  .footer-copy       { font-size: 12px; }
  .footer-legal a    { font-size: 12px; }
  .footer-socials    { gap: 8px; }
  .footer-social     { width: 34px; height: 34px; font-size: 11px; }
}

/* ── 480px: mobile small ── */
@media (max-width: 480px) {

  /* Container */
  .container { padding: 0 16px; }

  .logo img { height: 22px; }
  .btn-cta  { font-size: 13px; padding: 6px 14px; }

  /* Hero */
  .hero { padding: 84px 0 48px; }
  .hero-h1-line1,
  .hero-h1-that,
  .hero-h1-line3 { font-size: 36px; line-height: 40px; }
  .hero-h1-italic { font-size: 40px; line-height: 40px; }

  /* Work */
  .work-h-see,
  .work-h-accent { font-size: 28px; line-height: 32px; }

  /* Process */
  .process-h { font-size: 26px; line-height: 32px; }
  .step-title { font-size: 16px; }

  /* Testimonials */
  .testimonials-heading {
  font-size: 28px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 34px; text-align: center;
  max-width: 672px; margin: 0 auto 48px;
}

  /* FAQ */
  .faq-title { font-size: 24px; }
  .faq-q-text { font-size: 13px; }

  /* Carousel */
  .c-card { width: 260px; height: 175px; }

  /* Footer */
  .footer-tagline-h { font-size: 20px; }
  .footer-phone     { font-size: 18px; }
}

/* ── TRANSFORMATION SECTION ── */
.transformation-section {
  background: rgba(6,6,7,0.2);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.transformation-section .section-label { margin-bottom: 16px; }
.transformation-header {
  text-align: center;
  margin-bottom: 64px;
}
.transformation-h {
  font-family: 'Poppins', sans-serif;
  font-size: 60px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 1.1;
  margin: 0 auto 24px;
  max-width: 640px; text-align: center;
  text-wrap: balance;
}
.transformation-h em {
  font-family: 'Poppins', sans-serif;
  font-style: normal; font-weight: 600;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.transformation-sub {
  font-size: 18px; color: #a1a1aa; line-height: 28px;
  max-width: 560px; margin: 0 auto;
}
.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.transformation-arrow {
  display: none;
}
.transformation-arrow svg {
  width: 40px; height: 40px;
  color: var(--blue); flex-shrink: 0;
}
.t-card {
  border-radius: 16px; padding: 33px;
  display: flex; flex-direction: column; gap: 32px;
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: relative; /* anchor the glow-card ring */
}
/* Results cards: glow ring only — drop the dark ::before frame */
.t-card.glow-card::before {
  display: none;
}
.t-card.before {
  background: rgba(9,9,11,0.5);
  border-color: rgba(255,255,255,0.05);
}
.t-card.after {
  background: rgba(9,9,11,0.9);
  border-color: #2563eb;
  box-shadow: 0 0 30px -15px rgba(6,182,212,0.2);
}
.t-card-badge {
  width: 40px; height: 40px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-card.before .t-card-badge { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); }
.t-card.after  .t-card-badge { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.3); }
.t-card-header {
  display: flex; align-items: flex-start; gap: 16px;
}
.t-card-title {
  font-size: 24px; font-weight: 600; color: #fff;
  letter-spacing: -0.6px; line-height: 1.2;
}
.t-card-desc {
  font-size: 16px; color: var(--muted); line-height: 1.65;
}
.t-card-visual {
  width: 100%;
  position: relative;
}
.t-card.after .t-card-visual { background: rgba(59,130,246,0.04); border-color: rgba(59,130,246,0.15); }
/* wireframe lines for "before" visual */
.t-wireframe { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.t-wire-line { background: rgba(255,255,255,0.07); border-radius: 4px; }
/* mock site preview for "after" visual */
.t-mock-bar { height: 8px; border-radius: 4px; background: rgba(59,130,246,0.35); }
.t-mock-block { flex: 1; background: rgba(59,130,246,0.08); border-radius: 8px; border: 1px solid rgba(59,130,246,0.15); }
.t-list { display: flex; flex-direction: column; gap: 14px; }
.t-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.4;
}
.t-list-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.t-card.before .t-list-icon { background: rgba(239,68,68,0.12); }
.t-card.after  .t-list-icon { background: rgba(59,130,246,0.15); }
.t-card.before .t-list-icon svg { color: #f87171; }
.t-card.after  .t-list-icon svg { color: var(--blue); }

@media (max-width: 900px) {
  .transformation-grid { grid-template-columns: 1fr; gap: 16px; }
  .transformation-arrow { transform: rotate(90deg); padding: 0; }
  .transformation-h { font-size: 36px; }
}
@media (max-width: 700px) {
  .transformation-h { font-size: 28px; }
  .t-card { padding: 28px 24px; }
}

/* ── PRICING SECTION ── */
.pricing-section {
  background: rgba(3,3,3,0.22);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(6,6,7,0.15);
  pointer-events: none;
}
.pricing-section > * { position: relative; z-index: 1; }
.pricing-glow {
  position: absolute; left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  border-radius: 50%;
  background: #2563eb;
  filter: blur(160px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* ── AMBIENT GLOW CIRCLES ── */
.glow-circle {
  position: absolute;
  border-radius: 50%;
  background: #2563eb;
  filter: blur(160px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.glow-tl { width: 500px; height: 500px; top: -100px; left: -80px; }
.glow-tr { width: 400px; height: 400px; top: -60px; right: -60px; opacity: 0.12; }
.glow-c  { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.15; }
.glow-br { width: 450px; height: 450px; bottom: -80px; right: -60px; opacity: 0.13; }
.glow-bl { width: 450px; height: 450px; bottom: -80px; left: -60px; opacity: 0.13; }

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing-h {
  font-family: 'Poppins', sans-serif;
  font-size: 60px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 1.1;
  margin: 0 auto 16px;
  max-width: 760px; text-wrap: balance;
}
.pricing-h em {
  font-family: 'Poppins', sans-serif;
  font-style: normal; font-weight: 600;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-sub {
  font-size: 18px; color: var(--muted); line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.pricing-card {
  background: rgba(9,9,11,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 33px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color .3s, transform .3s;
}
.pricing-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
.pricing-card.featured {
  background: rgba(9,9,11,0.9);
  border-color: #2563eb;
  box-shadow: 0 0 40px -15px rgba(6,182,212,0.3);
}

/* ════ BORDER GLOW (brand-blue) — cursor-driven edge glow on pricing cards ════ */
.glow-card {
  /* live values set by JS on pointermove */
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  --edge-sensitivity: 30;
  --color-sensitivity: 50;
  --cone-spread: 25;
  /* keep the cursor glow on the card — a positive padding pushed the outer
     ring up to 40px beyond every edge, so it bled into the gaps between cards
     (esp. the 24px portfolio column gap) and read as a glitchy glow in the
     empty space. 0 keeps the ring on the card's own border. */
  --glow-padding: 0px;

  /* brand blue ≈ #3b82f6 → hsl(217 91% 62%) */
  --glow-color:    hsl(217deg 91% 62% / 100%);
  --glow-color-60: hsl(217deg 91% 62% / 60%);
  --glow-color-50: hsl(217deg 91% 62% / 50%);
  --glow-color-40: hsl(217deg 91% 62% / 40%);
  --glow-color-30: hsl(217deg 91% 62% / 30%);
  --glow-color-20: hsl(217deg 91% 62% / 20%);
  --glow-color-10: hsl(217deg 91% 62% / 10%);

  overflow: visible;   /* let the outer glow spill beyond the card */
  isolation: isolate;
  transition: border-color .3s, transform .3s;
}
/* unified lift on hover (matches the pricing cards) */
.glow-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-4px); }
/* keep the card's content above the glow layers and clickable */
.glow-card > *:not(.edge-light) {
  position: relative;
  z-index: 2;
}
.glow-card::before,
.glow-card > .edge-light {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity .25s ease-out;
}
/* fade the glow out when the card isn't hovered */
.glow-card:not(:hover)::before,
.glow-card:not(:hover) > .edge-light {
  opacity: 0;
  transition: opacity .6s ease-in-out;
}
/* blue mesh-gradient border, revealed as a cone pointing at the cursor */
.glow-card::before {
  z-index: -1;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(9,9,11,0.85) 0 100%) padding-box,
    radial-gradient(at 80% 55%, #60a5fa 0px, transparent 50%) border-box,
    radial-gradient(at 69% 34%, #3b82f6 0px, transparent 50%) border-box,
    radial-gradient(at 8% 6%,   #2563eb 0px, transparent 50%) border-box,
    radial-gradient(at 41% 38%, #60a5fa 0px, transparent 50%) border-box,
    radial-gradient(at 86% 85%, #3b82f6 0px, transparent 50%) border-box,
    radial-gradient(at 82% 18%, #2563eb 0px, transparent 50%) border-box,
    radial-gradient(at 51% 4%,  #3b82f6 0px, transparent 50%) border-box,
    linear-gradient(#2563eb 0 100%) border-box;
  opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
  -webkit-mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black calc(var(--cone-spread) * 1%),
    transparent calc((var(--cone-spread) + 15) * 1%),
    transparent calc((100 - var(--cone-spread) - 15) * 1%),
    black calc((100 - var(--cone-spread)) * 1%));
  mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black calc(var(--cone-spread) * 1%),
    transparent calc((var(--cone-spread) + 15) * 1%),
    transparent calc((100 - var(--cone-spread) - 15) * 1%),
    black calc((100 - var(--cone-spread)) * 1%));
}
/* outer glow ring that trails the cursor around the border */
.glow-card > .edge-light {
  inset: calc(var(--glow-padding) * -1);
  z-index: 1;
  mix-blend-mode: plus-lighter;
  opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
  -webkit-mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black 2.5%, transparent 10%, transparent 90%, black 97.5%);
  mask-image: conic-gradient(
    from var(--cursor-angle) at center,
    black 2.5%, transparent 10%, transparent 90%, black 97.5%);
}
.glow-card > .edge-light::before {
  content: "";
  position: absolute;
  inset: var(--glow-padding);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px var(--glow-color),
    inset 0 0 1px 0 var(--glow-color-60),
    inset 0 0 3px 0 var(--glow-color-50),
    inset 0 0 6px 0 var(--glow-color-40),
    inset 0 0 15px 0 var(--glow-color-30),
    inset 0 0 25px 2px var(--glow-color-20),
    inset 0 0 50px 2px var(--glow-color-10),
    /* outer glow kept tight (≤6px) so it hugs the card edge and can't bleed
       across the inter-card gap onto a neighbour — the wide 15/25/50px outer
       layers were what spilled into the padding between cards. */
    0 0 1px 0 var(--glow-color-60),
    0 0 3px 0 var(--glow-color-50),
    0 0 6px 0 var(--glow-color-40);
}
/* pricing cards: dial the cursor glow down a bit — it was too shiny */
.pricing-card.glow-card {
  --glow-color:    hsl(217deg 91% 62% / 55%);
  --glow-color-60: hsl(217deg 91% 62% / 34%);
  --glow-color-50: hsl(217deg 91% 62% / 28%);
  --glow-color-40: hsl(217deg 91% 62% / 22%);
  --glow-color-30: hsl(217deg 91% 62% / 16%);
  --glow-color-20: hsl(217deg 91% 62% / 11%);
  --glow-color-10: hsl(217deg 91% 62% / 5%);
}
.pricing-badge {
  display: inline-flex; align-items: center;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 9999px;
  margin-bottom: 16px;
}
.pricing-name {
  font-size: 22px; font-weight: 600; color: #fff;
  letter-spacing: -0.5px; margin-bottom: 4px;
  display: flex; align-items: center; gap: 12px;
}
.pricing-tag {
  font-size: 11px; color: var(--muted2); font-weight: 400;
  letter-spacing: 0.2px; margin-bottom: 12px;
}
.pricing-desc {
  font-size: 15px; color: var(--muted);
  line-height: 1.65; margin-bottom: 28px;
  min-height: 50px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 28px;
}
.pricing-from {
  font-size: 15px; color: var(--muted2); font-weight: 400;
}
.pricing-amount {
  font-size: 52px; font-weight: 700; color: #fff;
  letter-spacing: -2px; line-height: 1;
}
.pricing-currency {
  font-size: 18px; font-weight: 500; color: var(--muted);
  align-self: flex-end; padding-bottom: 6px;
}
.pricing-divider {
  height: 1px; background: var(--border);
  margin-bottom: 24px;
}
.pricing-features-label {
  font-size: 12px; font-weight: 600; color: var(--muted2);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px; flex: 1;
}
.pricing-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: rgba(255,255,255,0.75);
}
.pricing-feature-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(59,130,246,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-feature-icon svg { color: var(--blue); }
.pricing-card .btn-primary,
.pricing-card .btn-wa,
.pricing-card .btn-outline {
  width: 100%; justify-content: center;
}
/* Legacy alias */

@media (max-width: 1100px) {
  .pricing-grid { gap: 16px; }
  .pricing-h { font-size: 38px; }
  .pricing-amount { font-size: 44px; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { order: -1; }
}
@media (max-width: 700px) {
  .pricing-h { font-size: 30px; }
  .pricing-section { padding: 80px 0; }
  .transformation-section { padding: 80px 0; }
}

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  animation: waPop .5s cubic-bezier(.16,1,.3,1) 1.5s both;
}
@keyframes waPop {
  from { opacity: 0; transform: scale(.6) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.wa-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out 2s infinite;
  transition: transform .2s;
  flex-shrink: 0;
}
.wa-float-btn:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%   { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  60%  { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float-btn svg { width: 30px; height: 30px; }
.wa-float-label {
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 700px) {
  .wa-float { bottom: 20px; right: 20px; }
  .wa-float-label { display: none; }
  .wa-float-btn { width: 52px; height: 52px; }
}

/* ── HERO TRUST SIGNAL ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  margin-bottom: 24px;
}
.hero-trust-avatars {
  display: flex;
  align-items: center;
}
.hero-trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  overflow: hidden;
  margin-right: -8px;
  background: #1a1a1a;
  flex-shrink: 0;
}
.hero-trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-trust-text { margin-left: 16px; }
.hero-trust-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 2px;
}
.hero-trust-stars span { color: #f59e0b; font-size: 13px; }
.hero-trust-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
}
.hero-trust-copy strong { color: rgba(255,255,255,0.8); font-weight: 500; }

/* ── HERO TRUST STRIP ── */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: .02em;
}
.hero-trust-item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 11px;
}
/* ── SECTION CTA BAR ── */
.section-cta-bar {
  text-align: center;
  margin-top: 56px;
}
.section-cta-bar .urgency-line {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  letter-spacing: .04em;
}

@media (max-width: 900px) {
  .whyus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .whyus-section { padding: 72px 0; }
  .whyus-inner { padding: 0 20px; }
  .whyus-grid { grid-template-columns: 1fr; gap: 12px; }
}

.hero-trust-line {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: .06em;
  margin-top: 22px;
  line-height: 1.5;
}

/* ══ SERVICES SECTION ══ */
.services-section {
  background: var(--dark);
  padding: 128px 0;
  border-top: 1px solid #18181b;
}
.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 128px;
}
.services-label {
  display: flex; align-items: center; gap: 8px;
  padding-top: 8px; flex-shrink: 0;
  font-size: 14px; font-weight: 500;
  color: var(--blue); letter-spacing: .35px;
}
.services-label-plus { font-size: 20px; color: var(--blue); }
.services-h {
  max-width: 768px;
}
.services-h-top {
  font-size: 48px; line-height: 48px;
  letter-spacing: -1.2px;
  margin-bottom: 0;
}
.services-h-italic { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue); font-weight: 500; }
.services-h-dash { color: var(--blue); }
.services-h-bold { font-weight: 600; color: #fff; }
.services-h-bottom { font-size: 48px; font-weight: 600; color: #fff; line-height: 48px; letter-spacing: -1.2px; }

/* Each service row: 3 columns */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 64px;
  padding: 64px 0;
  border-top: 1px solid #18181b;
  position: relative;
}
.service-num {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 16px; font-weight: 600; color: #fff;
  flex-shrink: 0; margin-bottom: 32px;
}
.service-num.filled  { background: var(--blue); }
.service-num.outline { border: 1px solid var(--blue); }
.service-name {
  font-size: 48px; font-weight: 600; color: #fff;
  letter-spacing: -1.2px; line-height: 48px;
}
.service-img {
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 493/370;
  background: #111;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.8;
}
.service-col3 {
  display: flex; flex-direction: column;
  gap: 32px; padding-top: 85px;
}
.service-sub-title {
  font-size: 24px; color: #fff;
  letter-spacing: -0.4px; font-weight: 500;
}
.service-list {
  display: flex; flex-direction: column; gap: 16px;
  list-style: none; padding: 0; margin: 0;
}
.service-list li {
  display: flex; align-items: center; gap: 16px;
  color: #a1a1aa; font-size: 16px;
}
.service-list li::before {
  content: ''; width: 4px; height: 4px;
  background: #52525b; border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .service-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-col3 { display: none; }
}
@media (max-width: 700px) {
  .services-section { padding: 72px 0; }
  .services-header { flex-direction: column; gap: 24px; }
  .service-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .service-name { font-size: 36px; }
  .services-h-top, .services-h-bottom { font-size: 36px; line-height: 40px; }
}

/* ── NAV LINKS ── */
.nav-links { display: flex; gap: 36px; align-items: center; padding: 0; margin-left: 56px; }
.nav-link { color: rgba(255,255,255,0.55); font-size: 14px; text-decoration: none; transition: color .2s; white-space: nowrap; }
.nav-link:hover { color: rgba(255,255,255,0.90); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ── CIRCLE BADGE ── */
.circle-badge {
  position: absolute;
  top: -20px;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.circle-badge-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.circle-badge-label {
  font-size: 11px;
  color: #a3a3a3;
  line-height: 1.3;
  margin-top: 4px;
}

/* ── HERO BOTTOM MOCKUPS — infinite scroll strip ── */
.hero-bottom-mockups {
  overflow: hidden;
  width: 100%;
  height: 384px;
  margin-top: 80px;
  position: relative; z-index: 1;
}
.hero-bottom-mockups::before,
.hero-bottom-mockups::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 260px; z-index: 2; pointer-events: none;
}
.hero-bottom-mockups::before {
  left: 0;
  background: linear-gradient(to right, #030303 0%, transparent 100%);
}
.hero-bottom-mockups::after {
  right: 0;
  background: linear-gradient(to left, #030303 0%, transparent 100%);
}
.hero-bmock-track {
  display: flex;
  width: max-content;
  animation: hero-strip 36s linear infinite;
}
/* 5 cards × (648 + 24) = 3360px per set; 2 sets total → animate by 1 set */
@keyframes hero-strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-3360px); }
}
@keyframes hero-strip-rtl {
  from { transform: translateX(-3360px); }
  to   { transform: translateX(0); }
}
html[dir="rtl"] .hero-bottom-mockups {
  direction: ltr;          /* prevent RTL overflow from anchoring content at right edge */
}
html[dir="rtl"] .hero-bmock-track {
  direction: ltr;
  animation-name: hero-strip-rtl;
}
.hero-bmock-item {
  flex-shrink: 0;
  width: 648px;
  height: 363.63px;
  margin-right: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.3);
}
.hero-bmock-item:nth-child(even) {
  margin-top: 20px;
}
.hero-bmock-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
@media (max-width: 900px) {
  .hero-bottom-mockups { height: 220px; }
  .hero-bmock-item { width: 390px; height: 220px; }
}
@media (max-width: 600px) {
  .hero-bottom-mockups { height: 160px; margin-top: 40px; }
  .hero-bmock-item { width: 280px; height: 160px; margin-right: 12px; }
  .hero-bmock-track { animation-duration: 60s !important; }
}

/* ── WORK HEADER CENTERED ── */
.work-header--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 64px;
}
.work-header--centered .work-heading { text-align: center; }
.work-header--centered .work-h-line1 { justify-content: center; }
.work-header--centered .work-desc { text-align: center; max-width: 560px; margin: 0 auto; }

/* ── UNIFIED BUTTON SYSTEM ── */

/* Primary — blue gradient */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 14px 28px; border-radius: 9999px;
  font-size: 15px; font-weight: 600; line-height: 1;
  min-height: 48px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(37,99,235,0.25);
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 24px rgba(37,99,235,0.4); }

/* Secondary — white/light */
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fafafa; color: #111;
  padding: 14px 28px; border-radius: 9999px;
  font-size: 15px; font-weight: 600; line-height: 1;
  min-height: 48px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn-secondary:hover { opacity: 0.92; transform: translateY(-2px); }

/* Outline — transparent border */
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 14px 28px; border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 15px; font-weight: 600; line-height: 1;
  min-height: 48px;
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.05); }

/* ── FLOWER BADGE (Figma exact) ── */
.flower-badge {
  position: absolute;
  right: 80px; top: 110px;
  width: 144px; height: 144px;
  display: flex; align-items: center; justify-content: center;
}
.flower-rings {
  position: absolute; inset: 0;
  opacity: 0.4;
}
.flower-rings .ring {
  position: absolute;
  width: 129.6px; height: 129.6px;
  border-radius: 45.36px;
  border: 1px solid #52525b;
  top: 7.2px; left: 7.2px;
}
.flower-rings .ring2 {
  top: -16.52px; left: -16.52px;
  width: 177px; height: 177px;
  border-radius: 0; border: none;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.flower-rings .ring2::before {
  content: '';
  display: block;
  width: 129.6px; height: 129.6px;
  border-radius: 45.36px;
  border: 1px solid #52525b;
  transform: rotate(60deg);
}
.flower-rings .ring3 {
  top: -16.52px; left: -16.52px;
  width: 177px; height: 177px;
  border-radius: 0; border: none;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.flower-rings .ring3::before {
  content: '';
  display: block;
  width: 129.6px; height: 129.6px;
  border-radius: 45.36px;
  border: 1px solid #52525b;
  transform: rotate(120deg);
}
.flower-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 6px;
}
.flower-num {
  font-family: 'Inter', sans-serif;
  font-size: 36px; font-weight: 600;
  line-height: 40px; letter-spacing: -0.9px;
  color: #fff;
}
.flower-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 400;
  line-height: 13.75px;
  color: #a1a1aa;
  text-align: center;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   MOBILE CONVERSION IMPROVEMENTS
   Scope: max-width 700px / 480px only
   Does NOT affect desktop (> 700px)
═══════════════════════════════════════════ */

/* ── HERO: layout + hierarchy ── */
@media (max-width: 700px) {

  /* Full-width single-column layout */
  .hero-top {
    flex-direction: column;
  }
  .hero-title-block {
    flex: 1 1 100%;
    width: 100%;
    gap: 0;
    align-items: center;
    text-align: center;
  }
  .hero-right { display: none; }

  /* More breathing room top + bottom */
  .hero { padding-top: 100px; padding-bottom: 60px; }

  /* H1 → desc spacing */
  .hero-h1 { margin-bottom: 24px; text-align: center; }

  /* Desc: slightly larger, centered */
  .hero-desc {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }

  /* CTA: full-width, larger, more dominant */
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .hero-ctas .btn-wa {
    width: 100%;
    justify-content: center;
  }

  /* Reassurance line */
  .hero-reassurance {
    margin-top: 14px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.3);
    letter-spacing: .06em;
    text-align: center;
    line-height: 1.5;
  }

  /* More scroll room before next section */
  .hero-bottom-mockups { margin-top: 56px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 96px; padding-bottom: 64px; }
  .hero-desc { font-size: 15px; }
}

/* ── WORK / PORTFOLIO (Services section): scan clarity ── */
@media (max-width: 700px) {

  /* More space between cards */
  .bento-grid { gap: 20px; }

  /* More breathing inside each card */
  .bento-card { padding: 20px; gap: 18px; }

  /* Slightly taller thumbnails for more visual weight */
  .bento-thumb { height: 240px; }

  /* Larger, clearer title */
  .bento-title { font-size: 17px; line-height: 1.3; }
  .bento-cat   { font-size: 12px; margin-bottom: 4px; }

  /* Info area: better breathing */
  .bento-info { padding: 6px 4px 4px; }

  /* Section CTA: more vertical space */
  .section-cta-bar { margin-top: 48px; }

  /* Work section: add bottom breathing room */
  .work-section { padding-bottom: 96px; }
}

/* ── TRANSFORMATION (Before/After): visual impact ── */
@media (max-width: 700px) {

  /* Key moment — bigger vertical breathing */
  .transformation-section { padding: 96px 0 96px; }

  /* Reduce side padding so images feel wider */
  .transformation-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* More gap between before/after cards */
  .transformation-grid { gap: 24px; }

  /* Header: more space below */
  .transformation-header { margin-bottom: 48px; }

  /* Taller mock frames — images more present */
  .t-mock-frame { height: 290px; }

  /* "Avant" / "Après" labels */
  .t-mock-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 9999px;
    pointer-events: none;
  }
  .t-mock-label.label-before {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
  }
  .t-mock-label.label-after {
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.35);
    color: #60a5fa;
  }

  /* Slightly more padding inside cards */
  .t-card { padding: 28px 20px; gap: 24px; }

  /* List items: breathe */
  .t-list { gap: 12px; }

  /* Heading: clean size */
  .transformation-h { font-size: 30px; line-height: 1.15; }
}

@media (max-width: 480px) {
  .transformation-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .t-card { padding: 24px 16px; }
  .t-mock-frame { height: 240px; }
}

/* ─────────────────────────────────────────────
   MOBILE NAV — HAMBURGER MENU
   Visible: ≤ 900px only
───────────────────────────────────────────── */
.hamburger-btn {
  display: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  transition: background .2s;
  padding: 0;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.1); }
.hamburger-bar {
  display: block;
  width: 17px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: transform .32s cubic-bezier(.16,1,.3,1), opacity .22s;
  transform-origin: center;
}
.hamburger-btn.open .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer — slides in from right */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: 60vw; max-width: 280px;
  z-index: 200;
  background: #0d0d0f;
  border-left: 1px solid rgba(255,255,255,0.07);
  padding: 16px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(calc(100% + 20px));
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
/* ── Sections ── */
.menu-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 48px;
  flex-shrink: 0;
}
.menu-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.menu-bottom {
  display: flex;
  justify-content: center;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  flex-shrink: 0;
}
/* ── Close button ── */
.mobile-menu-close {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.1); }
/* ── Nav links ── */
.mobile-menu-link {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 0;
  width: 100%;
  font-size: 20px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  text-align: center;
  transition: color .2s;
}
.mobile-menu-link:active,
.mobile-menu-link:hover { color: #fff; }
/* ── CTA ── */
.mobile-menu-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 220px;
  background: var(--blue); color: #fff;
  padding: 14px 20px; border-radius: 9999px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.mobile-menu-cta:hover { opacity: .88; }
.mobile-menu-cta::after { content: ' ↗'; font-weight: 400; opacity: 0.8; }
/* ── Staggered entrance ── */
.mobile-menu-link,
.mobile-menu-cta {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .28s ease, transform .3s cubic-bezier(.16,1,.3,1), color .2s;
}
.mobile-menu.open .menu-center .mobile-menu-link:nth-child(1) { opacity:1; transform:none; transition-delay:.09s; }
.mobile-menu.open .menu-center .mobile-menu-link:nth-child(2) { opacity:1; transform:none; transition-delay:.14s; }
.mobile-menu.open .menu-center .mobile-menu-link:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
.mobile-menu.open .menu-center .mobile-menu-link:nth-child(4) { opacity:1; transform:none; transition-delay:.24s; }
.mobile-menu.open .mobile-menu-cta { opacity:1; transform:none; transition-delay:.31s; }

@media (max-width: 768px) {
  .hamburger-btn { display: flex; }
  .mobile-menu { display: flex; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 480px) {
  .mobile-menu-link { font-size: 18px; }
}

/* ── MOBILE NAVBAR ≤ 767px ─────────────────────
   Full-width flat bar + dropdown (no pill, no drawer)
───────────────────────────────────────────── */
@media (max-width: 767px) {
  /* 1. Strip pill — flat full-width bar */
  nav {
    padding-top: 0;
    background: rgba(14,14,14,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 20px !important;
    height: 60px;
  }
  .nav-right { margin-left: auto; gap: 16px; }

  /* Logo */
  .logo img { height: 16px; width: auto; }

  /* Language switcher */
  .lang-btn { font-size: 12px; padding: 4px 8px; gap: 4px; }
  .lang-flag { width: 16px; height: 16px; font-size: 16px; }
  .lang-code { font-size: 12px; }
  .lang-chevron { display: none; }

  /* 2. Hide nav CTA */
  .btn-cta { display: none !important; }
  .nav-right .btn-primary { display: none !important; }

  /* 3. Hamburger — 22px bars, no border/bg */
  .hamburger-btn {
    border: none !important;
    background: transparent !important;
    width: 36px !important;
    height: 36px !important;
  }
  .hamburger-bar {
    width: 22px !important;
    height: 2px !important;
  }

  /* 4. Hide backdrop overlay (menu is fullscreen) */
  .mobile-menu-overlay { display: none !important; }

  /* 5. Fullscreen overlay */
  .mobile-menu {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    border-left: none !important;
    border-top: none !important;
    background: rgba(14,14,14,0.98);
    padding: 0 24px 40px 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 300ms cubic-bezier(0.4,0,0.2,1), transform 300ms cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  /* Top bar: logo left, × right */
  .menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    min-height: 60px;
    padding: 0;
    flex-shrink: 0;
  }
  .mob-overlay-logo img { height: 20px; width: auto; display: block; }
  .mobile-menu-close {
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 22px !important;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
  }

  /* Links */
  .menu-center { flex: unset; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; }
  .mobile-menu-link {
    display: block !important;
    padding: 18px 0 !important;
    font-size: 17px !important;
    color: rgba(255,255,255,0.75);
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    text-align: left;
  }
  .menu-center .mobile-menu-link:first-child { margin-top: 8px; }
  .mobile-menu-link:hover { color: #fff; }

  /* CTA pinned to bottom */
  .menu-bottom { padding: 0; margin-top: auto; justify-content: stretch; }
  .mobile-menu-cta {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: #0e0e0e !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    justify-content: center;
  }
  .mobile-menu-cta::after { display: none !important; }

  /* Stagger — vertical slide */
  .mobile-menu-link,
  .mobile-menu-cta { transform: translateY(8px); }
}

/* ─────────────────────────────────────────────
   HERO H1 FIX — "Websites" visibility
   (mobile only)
───────────────────────────────────────────── */
@media (max-width: 700px) {
  /* Hide the horizontal divider — wastes width */
  .hero-h1-divider { display: none; }

  /* Allow "Websites that" to wrap cleanly */
  .hero-h1-row {
    flex-wrap: wrap;
    gap: 0 10px;
    align-items: baseline;
  }

  /* "Websites" — keep large and prominent */
  .hero-h1-italic { font-size: 42px; line-height: 48px; }

  /* "that" — same baseline, smaller than "Websites" */
  .hero-h1-that  { font-size: 38px; line-height: 48px; }

  /* "We Build" / "Bring You Clients" */
  .hero-h1-line1,
  .hero-h1-line3 { font-size: 38px; line-height: 44px; letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .hero-h1-italic { font-size: 36px; line-height: 42px; }
  .hero-h1-that  { font-size: 32px; line-height: 42px; }
  .hero-h1-line1,
  .hero-h1-line3 { font-size: 34px; line-height: 40px; }
}

/* ─────────────────────────────────────────────
   HERO MOCKUP STRIP — fix gradient + card size
───────────────────────────────────────────── */
@media (max-width: 700px) {
  /* Narrow the fade so cards are actually visible */
  .hero-bottom-mockups::before,
  .hero-bottom-mockups::after { width: 48px; }
}
@media (max-width: 600px) {
  /* Taller, wider cards for readable previews */
  .hero-bottom-mockups { height: 210px; }
  .hero-bmock-item {
    width: 310px;
    height: 210px;
    margin-right: 14px;
  }
  /* Keep fades tight */
  .hero-bottom-mockups::before,
  .hero-bottom-mockups::after { width: 36px; }
}
@media (max-width: 420px) {
  .hero-bottom-mockups { height: 190px; }
  .hero-bmock-item { width: 280px; height: 190px; margin-right: 12px; }
}

/* ══════════════════════════════════════════════
   MOBILE UX IMPROVEMENTS  — max-width: 768px
   Scope: mobile only. No desktop changes.
══════════════════════════════════════════════ */

/* ─── 1. GLOBAL SPACING ─── */
@media (max-width: 768px) {
  .nav-inner { width: 90%; max-width: 90%; justify-content: space-between; }
  .work-section          { padding-top: 64px !important; padding-bottom: 64px !important; }
  .transformation-section{ padding-top: 64px !important; padding-bottom: 64px !important; }
  .testimonials-section  { padding-top: 64px !important; padding-bottom: 64px !important; }
  .process-section       { padding-top: 64px !important; padding-bottom: 64px !important; }
  .pricing-section       { padding-top: 64px !important; padding-bottom: 64px !important; }
  .faq-section           { padding-top: 64px !important; padding-bottom: 64px !important; }
  footer.footer-section  { padding-top: 64px !important; }
  .container             { padding-left: 20px !important; padding-right: 20px !important; }
}

/* ─── 2. HERO ─── */
@media (max-width: 768px) {
  /* Vertically center the hero text block in the space between the navbar
     and the cards. The cards are taken out of flow (absolute) so the freed
     vertical space lets justify-content center the text; the padding defines
     the centering region: top = navbar height, bottom = card peek zone. */
  .hero {
    justify-content: center !important;
    padding-top: 60px !important;        /* navbar height — region starts at navbar bottom */
    /* Reserve the FULL card zone below the text (card height + stagger + buffer)
       instead of a flat 18vh. The cards sit at top:82vh, so the hero box must
       extend past 82vh + card height; otherwise overflow:hidden crops their
       bottoms on every phone (82vh + ~220px > 100vh). Pairing this padding with
       a matching min-height keeps the text centring region exactly [60px, 82vh],
       so the text position is unchanged — only the clipped zone is freed. */
    padding-bottom: 260px !important;
    min-height: calc(82vh + 260px) !important;
  }
  /* Pin the cards strip so its top lands at 82% of the viewport, peeking in
     from the bottom (matches desktop). vh keeps it consistent across heights. */
  .hero .hero-bottom-mockups {
    position: absolute;
    left: 0; right: 0;
    top: 82vh;
    width: 100%;
    margin-top: 0 !important;
    /* Container must be taller than the card by the even-card stagger (20px),
       matching desktop (384px container vs 363.6px card). The per-breakpoint
       mobile rules set this equal to the card height, which cropped every other
       card's bottom 20px. 240px clears the tallest mobile card (220) + stagger. */
    height: 240px !important;
  }

  /* Larger H1 for strong visual hierarchy */
  .hero-h1-line1,
  .hero-h1-that,
  .hero-h1-line3 { font-size: 38px !important; line-height: 1.15 !important; letter-spacing: -1px !important; }
  .hero-h1-italic { font-size: 40px !important; line-height: 1.15 !important; }

  /* FR: show "des sites" row on mobile — hidden globally by html[lang="fr"] rule */
  html[lang="fr"] .hero-h1-row {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0 8px;
    align-items: baseline;
  }
  html[lang="fr"] .hero-h1-divider { display: none !important; }
  html[lang="fr"] .hero-h1-that { display: none !important; }

  /* CTA: centered column, NOT full width */
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .hero-ctas .btn-wa {
    width: 280px !important; max-width: 100%;
    justify-content: center;
  }
  /* Hero CTA mobile text swap */
  .hero-cta-desktop { display: none !important; }
  .hero-cta-mobile-only { display: inline-flex !important; }
}
@media (max-width: 480px) {
  .hero-h1-line1,
  .hero-h1-that,
  .hero-h1-line3 { font-size: 34px !important; }
  .hero-h1-italic { font-size: 36px !important; }
}

/* ─── 3. PORTFOLIO CARDS ─── */
@media (max-width: 768px) {
  .bento-grid { gap: 16px !important; }
  .bento-thumb { height: 260px !important; }
  .bento-card { padding: 16px !important; gap: 14px !important; }
}

/* ─── 4. BEFORE/AFTER SWIPE SLIDER (mobile only) ─── */
.ba-slider-wrap { display: none; } /* hidden on desktop */

/* ─── 4b. TRANSFORMATION MOBILE TEXT (mobile only) ─── */
.transformation-mobile-text { display: none; } /* hidden on desktop */

/* ─── 4c-CTA. TRANSFORMATION MOBILE CTA (mobile only) ─── */
.transformation-mobile-cta { display: none; }

/* ─── 1b. HERO CTA MOBILE SWAP ─── */
.hero-cta-mobile-only { display: none; }

@media (max-width: 768px) {
  .ba-slider-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-y;
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .ba-before, .ba-after {
    position: absolute;
    inset: 0;
  }
  .ba-before img, .ba-after img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .ba-before img { filter: saturate(0.55) brightness(0.93); }
  .ba-after { clip-path: inset(0 50% 0 0); transition: clip-path 0s; }
  .ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    gap: 4px;
  }
  .ba-handle-line {
    width: 2px;
    flex: 1;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
  }
  .ba-handle-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }
  .ba-handle-icon svg { width: 20px; height: 20px; }
  .ba-labels {
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 5;
    pointer-events: none;
  }
  .ba-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 9999px;
  }
  .ba-label-before {
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.3);
    color: #f87171;
  }
  .ba-label-after {
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.35);
    color: #60a5fa;
  }
}

/* ─── 4c. TRANSFORMATION GRID — hide on mobile, show mobile text block ─── */
@media (max-width: 768px) {
  .transformation-grid { display: none !important; }

  .transformation-mobile-text {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    margin-top: 8px;
  }

  /* CTA block after transformation */
  .transformation-mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 40px;
    gap: 18px;
    background: #0a0a0a;
  }
  .tmc-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    max-width: 300px;
  }
  .tmt-block {
    background: #111;
    border-radius: 14px;
    padding: 20px;
  }
  .tmt-block.tmt-before { border: 1px solid rgba(239,68,68,0.18); }
  .tmt-block.tmt-after  { border: 1px solid rgba(59,130,246,0.18); }
  .tmt-block-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .tmt-badge {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .tmt-badge-before { background: rgba(239,68,68,0.12); }
  .tmt-badge-after  { background: rgba(59,130,246,0.12); }
  .tmt-block-title {
    font-size: 11px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
  }
  .tmt-block.tmt-before .tmt-block-title { color: #f87171; }
  .tmt-block.tmt-after  .tmt-block-title { color: #60a5fa; }
  .tmt-list {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
  }
  .tmt-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #d4d4d4; line-height: 1.5;
  }
  .tmt-icon {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
  }
  .tmt-before .tmt-icon { background: rgba(239,68,68,0.12); }
  .tmt-after  .tmt-icon { background: rgba(59,130,246,0.15); }
}

/* ─── 5. TESTIMONIALS ─── */
@media (max-width: 768px) {
  /* Remove glow to ensure pure #030303 background */
  .testimonials-section .glow-circle { display: none; }
  .testimonials-sub { margin-bottom: 48px !important; }
  .testimonial-card { padding: 20px !important; }
  .testimonial-grid { gap: 20px !important; }
  .wa-float-label { display: none; }
}

/* ─── 6. PROCESS ─── */
@media (max-width: 768px) {
  .process-image-panel { display: none !important; }
  .process-body { grid-template-columns: 1fr !important; gap: 0 !important; }
  .process-steps {
    gap: 8px !important;
    justify-content: flex-start !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
  }
  .process-step.active { flex: none !important; }
  .process-header { margin-bottom: 36px !important; }

  /* Step card image — mobile only */
  .step-card-img {
    display: block;
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin: 8px 0 12px;
    opacity: 0;
    transform: translateY(6px);
    animation: stepImgIn .35s ease forwards;
  }
  @keyframes stepImgIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* FR heading: clamp size so "créer un site" stays on same line, max 2 lines */
  html[lang="fr"] .process-h {
    font-size: clamp(22px, 5.5vw, 32px) !important;
    line-height: 1.25 !important;
    text-wrap: balance;
  }

  /* CTA: clear separation from step 4 */
  .process-cta-wrap { margin-top: 32px !important; }
}

/* ─── 7. PRICING ─── */
@media (max-width: 768px) {
  .pricing-card { padding: 24px 20px !important; }
  .pricing-grid { gap: 20px !important; }
  .pricing-h { font-size: 26px !important; line-height: 32px !important; }
  .pricing-amount { font-size: 40px !important; }
  .pricing-desc { font-size: 14px !important; }
  .pricing-features { gap: 10px !important; margin-bottom: 24px !important; }
}

/* ─── 8. FAQ ─── */
/* CTA sits centered below the accordion at all sizes (centered header layout) */
.faq-mobile-cta-wrap { display: flex; justify-content: center; }

@media (max-width: 768px) {
  /* Hide the CTA inside faq-left on mobile */
  .faq-left .faq-cta { display: none !important; }

  /* Show the CTA block after the accordion */
  .faq-mobile-cta-wrap {
    display: flex;
    justify-content: flex-start;
    margin-top: 32px;
  }

  /* Bigger tap area per FAQ question */
  .faq-question { min-height: 52px; padding: 18px 0 !important; }

  /* Space between items */
  .faq-item { padding-bottom: 4px; }
  .faq-section .faq-inner { gap: 32px !important; }
}

/* ─── 9. FOOTER ─── */
@media (max-width: 768px) {
  .footer-mid {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }
  .footer-mid > div { margin-left: 0 !important; }
}

/* Class added to phone anchor for targeting */
.footer-phone-link {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .footer-phone-link {
    font-size: 32px !important;
    letter-spacing: -0.8px !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 480px) {
  .footer-phone-link {
    font-size: 24px !important;
    letter-spacing: -0.3px !important;
  }
}
@media (max-width: 360px) {
  .footer-phone-link {
    font-size: 20px !important;
    letter-spacing: -0.1px !important;
  }
}

/* ─── 10. TOUCH & USABILITY ─── */
@media (max-width: 768px) {
  .btn-wa,
  .btn-primary,
  .btn-secondary,
  .btn-outline { min-height: 48px; }
  .faq-cta, .faq-mobile-cta-wrap .faq-cta { min-height: 48px; }
  .hamburger-btn { min-width: 44px; min-height: 44px; }
}

/* ═══════════════════════════════════════════════════
   MOBILE-ONLY PATCH — April 2025
   Scope: ≤ 900px / ≤ 768px. Zero desktop changes.
═══════════════════════════════════════════════════ */



/* ── 2. PORTFOLIO CARDS: navy panel + contained top preview ── */
/* Section: "Des sites qui génèrent des clients"           */
/* Match desktop: the screenshot floats on the navy thumb   */
/* as a partial top preview, with navy visible around it.   */
@media (max-width: 768px) {
  .bento-thumb {
    aspect-ratio: 16 / 10;
    height: auto !important;
    border-radius: 16px;
    background: #1a1f2e;   /* navy panel stays visible around the image */
    overflow: hidden;
  }
  /* Override desktop absolute+fixed-width image: inset on the navy   */
  /* panel (navy frame on all sides) and crop to the top section.     */
  .bento-thumb img:not(.bento-hover-img) {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    width: calc(100% - 28px) !important;
    height: calc(100% - 28px) !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 8px;
  }
  /* Standardise card radius to match thumb */
  .bento-card { border-radius: 16px !important; }
}

/* ── 3. MOBILE CTA CONSISTENCY ── */
@media (max-width: 768px) {
  .faq-cta,
  .faq-mobile-cta-wrap .faq-cta {
    min-height: 48px !important;
  }
  .btn-wa,
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    min-height: 48px !important;
  }
  /* Section CTA bar: full width on mobile */
  .section-cta-bar .btn-primary,
  .section-cta-bar .btn-wa {
    width: 100%;
    max-width: 320px;
  }
}

/* ── 4. PER-SECTION MOBILE SPACING ── */
@media (max-width: 767px) {
  /* Hero */
  .hero { padding: 80px 0 0; }
  .hero-title-block { gap: 24px; }
  .hero-ctas { flex-direction: column; gap: 12px; width: 100%; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary { width: 100%; }

  /* Work / Portfolio */
  .work-section { padding-block: 32px 64px; }
  .bento-grid { gap: 16px; }
  .bento-card { padding: 20px; }

  /* Transformation */
  .transformation-section { padding-block: 64px; }

  /* Process */
  .process-section { padding-block: 64px; }
  .process-steps { gap: 24px; }
  .process-step { padding: 20px; }

  /* Testimonials */
  .testimonials { padding-block: 64px; }
  .testimonial-card { padding: 28px 20px; }

  /* Pricing */
  .pricing-section { padding-block: 64px; }
  .pricing-grid { gap: 20px; }
  .pricing-card { padding: 28px 20px; }
  .pricing-card .btn-primary,
  .pricing-card .btn-outline { width: 100%; }

  /* FAQ */
  .faq-section { padding-block: 64px; }
  .faq-inner { gap: 32px; flex-direction: column; }
  .faq-item { padding: 20px 0; }
  .faq-mobile-cta-wrap .faq-cta { width: auto; }

  /* Footer */
  footer { padding: 64px 0 40px; }
  .footer-inner { gap: 40px; }
  .footer-bottom { padding-top: 24px; margin-top: 24px; }

  /* Footer CTA: stack title + button, align to text start
     (flex-start follows text direction → left in LTR, right in RTL/AR) */
  .footer-top {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  /* Marquee */
  .marquee-section { padding-block: 40px; }
}

/* Marquee reduced-motion pause */
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation-play-state: paused; }
}

/* ---- ARABIC FONT ---- */
html[lang="ar"] body,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] .hero-h1-line1,
html[lang="ar"] .hero-h1-italic,
html[lang="ar"] .hero-h1-that,
html[lang="ar"] .hero-h1-line3 {
  font-family: 'Cairo', sans-serif;
}
html[lang="ar"] { font-family: 'Cairo', sans-serif; }

/* ---- AR HERO SIZE OVERRIDES ---- */
html[lang="ar"] .hero-h1-line1  { font-size: 80px; line-height: 86px; letter-spacing: -1.5px; }
html[lang="ar"] .hero-h1-italic { font-size: 80px; line-height: 86px; }
html[lang="ar"] .hero-h1-that   { font-size: 80px; line-height: 86px; letter-spacing: -1.5px; }
html[lang="ar"] .hero-h1-line3  { font-size: 72px; line-height: 80px; letter-spacing: -1.2px; }
html[lang="ar"] .hero-h1-row    { display: flex; }
html[lang="ar"] .hero-h1-divider { display: none; }

/* ---- AR SECTION HEADING OVERRIDES ---- */
html[lang="ar"] .process-h { font-size: 52px; text-wrap: unset; max-width: 800px; }
html[lang="ar"] .faq-title  { font-size: 52px; max-width: 800px; text-wrap: unset; }

@media (max-width: 1100px) {
  html[lang="ar"] .process-h { font-size: 38px; line-height: 44px; }
  html[lang="ar"] .faq-title  { font-size: 38px; line-height: 44px; }
}
@media (max-width: 768px) {
  html[lang="ar"] .hero-h1-line1  { font-size: 56px; line-height: 62px; }
  html[lang="ar"] .hero-h1-italic { font-size: 56px; line-height: 62px; }
  html[lang="ar"] .hero-h1-that   { font-size: 56px; line-height: 62px; }
  html[lang="ar"] .hero-h1-line3  { font-size: 50px; line-height: 58px; }
  html[lang="ar"] .process-h { font-size: 36px; line-height: 42px; }
  html[lang="ar"] .faq-title  { font-size: 36px; line-height: 42px; }
}
@media (max-width: 480px) {
  html[lang="ar"] .hero-h1-line1  { font-size: 44px; line-height: 50px; }
  html[lang="ar"] .hero-h1-italic { font-size: 44px; line-height: 50px; }
  html[lang="ar"] .hero-h1-that   { font-size: 44px; line-height: 50px; }
  html[lang="ar"] .hero-h1-line3  { font-size: 40px; line-height: 48px; }
  html[lang="ar"] .process-h { font-size: 30px; line-height: 36px; }
  html[lang="ar"] .faq-title  { font-size: 30px; line-height: 36px; }
}
@media (max-width: 400px) {
  html[lang="ar"] .process-h { font-size: 26px; line-height: 32px; }
  html[lang="ar"] .faq-title  { font-size: 26px; line-height: 32px; }
}

/* ---- RTL LAYOUT OVERRIDES ---- */
html[dir="rtl"] .nav-inner { padding: 10px 28px 10px 14px; }
html[dir="rtl"] .nav-links  { margin-left: 0; margin-right: 56px; }
html[dir="rtl"] .nav-right  { margin-left: 0; margin-right: 56px; }
html[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
html[dir="rtl"] .hero-right {
  padding-right: 0;
  padding-left: 48px;
  justify-content: flex-start;
}
html[dir="rtl"] .hero-reassurance { text-align: right; }
/* Keep hero desc centered in AR — hero-right uses absolute so badge stays right */
html[dir="rtl"] .hero .hero-desc { text-align: center; }
html[dir="rtl"] .hero .hero-right { right: 0; left: auto; }
html[dir="rtl"] .hero-trust-text { margin-left: 0; margin-right: 14px; }
html[dir="rtl"] .section-label  { flex-direction: row-reverse; }
html[dir="rtl"] .hero-ctas      { flex-direction: row-reverse; }
html[dir="rtl"] .hero-trust     { flex-direction: row-reverse; }
html[dir="rtl"] .hero-trust-avatars { flex-direction: row-reverse; }
html[dir="rtl"] .section-cta-bar    { flex-direction: row-reverse; }
html[dir="rtl"] .tmt-block { text-align: right; }
/* centered stacked layout: keep the column direction & centered header in RTL too */
html[dir="rtl"] .faq-inner { flex-direction: column; }
html[dir="rtl"] .faq-left  { text-align: center; }
html[dir="rtl"] .faq-label { flex-direction: row-reverse; }
html[dir="rtl"] .faq-cta   { flex-direction: row-reverse; }
html[dir="rtl"] .faq-question { flex-direction: row-reverse; }
html[dir="rtl"] .faq-q-text,
html[dir="rtl"] .faq-answer-inner,
html[dir="rtl"] .faq-subtitle { text-align: right; }
html[dir="rtl"] .footer-top  { text-align: right; }
html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
html[dir="rtl"] .footer-legal  { flex-direction: row-reverse; }
html[dir="rtl"] .footer-copy   { text-align: right; }
html[dir="rtl"] .lang-option { flex-direction: row-reverse; }
html[dir="rtl"] .lang-btn    { flex-direction: row-reverse; }
html[dir="rtl"] .pricing-h,
html[dir="rtl"] .pricing-sub { text-align: center; }
html[dir="rtl"] .pricing-card        { text-align: right; }
html[dir="rtl"] .pricing-feature     { flex-direction: row; text-align: right; }
html[dir="rtl"] .pricing-features-label { text-align: right; }
html[dir="rtl"] .pricing-tag { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
html[dir="rtl"] .bento-info  { text-align: right; }
html[dir="rtl"] .bento-btn-expand { flex-direction: row-reverse; }
html[dir="rtl"] .t-card  { text-align: right; }
html[dir="rtl"] .t-card-header { flex-direction: row-reverse; }
html[dir="rtl"] .t-mock-items { text-align: right; }
html[dir="rtl"] .t-mock-item  { flex-direction: row-reverse; }
html[dir="rtl"] .testimonial-card { text-align: right; }
html[dir="rtl"] .testi-author { flex-direction: row-reverse; }
html[dir="rtl"] .flower-label { text-align: right; }
html[dir="rtl"] .work-desc { text-align: right; }
html[dir="rtl"] .process-h,
html[dir="rtl"] .process-right-text { text-align: center; }
html[dir="rtl"] .testimonials-heading { text-align: center; }

/* ════════════════════════════════════════════════════════════════════════
   HERO (moved out of the inline <style> block in index.html for CSP).
   BlurText animation port of React Bits <BlurText/>: each word blurs/fades/
   slides in with a stagger, on the hero <h1> and on section headings.
   ════════════════════════════════════════════════════════════════════════ */
.hero { padding-top: 230px; }
.hero .hero-bottom-mockups { margin-top: 128px; }
.hero .hero-top { position: relative; }
.hero .hero-title-block { flex: 1 1 100%; max-width: 100%; align-items: center; width: 100%; }
.hero .hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  padding: 0;
  flex: none;
  pointer-events: none;
}
.hero .hero-right .flower-badge { pointer-events: auto; }
.hero .hero-h1 {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 72px);
  line-height: 1.333;
  letter-spacing: -0.033em;
  color: #fff;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  display: block;
  gap: 0;
}
.hero .hero-h1 .hero-h1-line1,
.hero .hero-h1 .hero-h1-line3,
.hero .hero-h1 .hero-h1-blue {
  display: inline;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  white-space: normal;
}
.hero .hero-h1 .hero-h1-blue {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .hero-h1 .hero-h1-line3 { display: block; }
.blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-32px);
  will-change: transform, filter, opacity;
}
.blur-word.animate {
  animation: blurTextIn 0.6s cubic-bezier(.2, .65, .3, 1) forwards;
}
@keyframes blurTextIn {
  0%   { filter: blur(10px); opacity: 0;   transform: translateY(-32px); }
  50%  { filter: blur(5px);  opacity: 0.5; transform: translateY(4px); }
  100% { filter: blur(0);    opacity: 1;   transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .blur-word,
  .blur-word.animate {
    animation: none; opacity: 1; filter: none; transform: none;
  }
}
/* On mobile the hero <h1> wraps to more lines; collapse the stagger so the
   whole headline blurs in together. JS sets animation-delay inline per word,
   so !important is needed to override it. */
@media (max-width: 768px) {
  .hero .hero-h1 .blur-word { animation-delay: 0s !important; }
}
/* FR headline: capped at 58px so both lines stay on one row each. */
html[lang="fr"] .hero .hero-h1 {
  font-size: clamp(26px, 4.5vw, 58px);
}
.hero .hero-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #d4d4d8;
  text-align: center;
  max-width: 495px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .hero .hero-desc { font-size: 15px; line-height: 1.65; }
  .hero .hero-ctas { margin-top: 36px; }
}
.hero .hero-ctas {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero .hero-ctas .btn-primary,
.hero .hero-ctas .btn-secondary {
  width: auto;
  height: auto;
  min-width: 0;
  font-family: 'Inter', sans-serif;
}

/* ════════════════════════════════════════════════════════════════════════
   CSP hardening: de-inlined index.html style="" attributes.
   These replace former inline styles so index.html runs under a CSP without
   'unsafe-inline'. Each maps 1:1 to the original inline declarations.
   ════════════════════════════════════════════════════════════════════════ */
#global-starfield {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none; display: block;
}
.flag-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mob-logo-img { width: auto; height: 20px; }
.hero-container { flex: 0 0 auto; }
.section-label.section-label--center { justify-content: center; }
/* Project bento thumbnail offsets (desktop). The mobile media query for
   `.bento-thumb img:not(.bento-hover-img)` resets these with !important. */
.bento-pos-1 { left: 166.67px; top: 36px; }
.bento-pos-2 { left: 61.33px;  top: 46px; }
.bento-pos-3 { left: 62px;     top: 35px; }
.bento-pos-4 { left: 166px;    top: 39px; }
.glow-tl-soft  { opacity: 0.12; filter: blur(180px); }
.glow-c-soft   { opacity: 0.15; filter: blur(150px); }
.glow-c-footer { opacity: 0.13; filter: blur(200px); width: 800px; height: 800px; }
.compare-img {
  position: absolute; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; top: 0; left: 0;
}
.process-cta-wrap {
  display: flex; justify-content: center; margin-top: 64px;
  position: relative; z-index: 1;
}
.pricing-currency.pc-unit { font-size: 0.6em; opacity: 0.7; }
.btn-primary.btn-block { width: 100%; justify-content: center; }
.footer-cta-h {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 700; color: #fff;
  letter-spacing: -0.033em; line-height: 1.333;
}
.testi-avatar-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; display: block;
}
.bento-hover-img.is-static { opacity: 1; transform: none; }
