:root {
  --paper: #fbfbff;
  --paper-strong: #ffffff;
  --ink: #061232;
  --ink-soft: #30384f;
  --muted: #6a7187;
  --line: rgba(6, 18, 50, 0.11);
  --line-strong: rgba(99, 63, 255, 0.34);
  --blue: #633fff;
  --blue-dark: #4424d6;
  --teal: #00b894;
  --gold: #b98642;
  --green: #16845f;
  --danger: #b4342e;
  --radius: 8px;
  --shadow: 0 34px 95px rgba(35, 28, 92, 0.13);
  --shadow-soft: 0 20px 54px rgba(35, 28, 92, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 78px, rgba(99, 63, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 10% 82%, rgba(99, 63, 255, 0.1), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 58%, #f4f2ff 100%);
  font-family: Avenir Next, Avenir, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.75rem, 5.4vw, 5.8rem);
  font-weight: 880;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero h1 {
  max-width: 860px;
  font-size: 2.9rem;
  font-weight: 820;
  line-height: 1.1;
}

h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2rem, 3.65vw, 3.95rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-weight: 850;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 40px));
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
}

.brand img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(99, 63, 255, 0.18));
}

.brand span {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
}

nav a,
footer a,
.text-link {
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

nav a:hover,
footer a:hover,
.text-link:hover {
  color: var(--blue);
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

nav > a:first-child {
  position: relative;
  color: var(--ink);
}

nav > a:first-child::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown > a::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 238px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.dropdown-menu::before {
  position: absolute;
  top: -19px;
  left: 0;
  right: 0;
  height: 19px;
  content: "";
}

.dropdown-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--blue);
  background: rgba(10, 85, 255, 0.07);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.nav-cta {
  min-width: 132px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(35, 28, 92, 0.06);
}

.nav-cta:hover {
  color: var(--blue);
  background: #ffffff;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 700px;
  padding: 170px 40px 108px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.42) 61%, rgba(255, 255, 255, 0.04) 100%),
    url("assets/agence-marketing-digital-maroc-1280.jpg");
  background-position: center;
  background-size: cover;
  --mx: 72%;
  --my: 38%;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(99, 63, 255, 0.18), transparent 18rem),
    linear-gradient(115deg, transparent 0 46%, rgba(99, 63, 255, 0.08) 47%, transparent 61%);
  opacity: 0.9;
  transition: opacity 180ms ease;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 24%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(244, 242, 255, 0.92));
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(860px, 100%);
  text-align: center;
}

.hero-copy h1,
.hero-text {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 720px;
  margin-bottom: 34px;
  color: #5e6578;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.58;
}

.hero-proof,
.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.hero-proof span,
.founder-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 10px 28px rgba(42, 53, 66, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.primary-btn {
  min-width: 196px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #6d35ff, #4b32f0);
  box-shadow: 0 18px 42px rgba(99, 63, 255, 0.28);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(99, 63, 255, 0.34);
}

.secondary-btn {
  min-width: 176px;
  padding: 0 22px;
  border: 1px solid rgba(99, 63, 255, 0.58);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px);
}

.secondary-btn:hover {
  border-color: rgba(99, 63, 255, 0.72);
  color: var(--blue-dark);
}

.hero-system-line {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(720px, calc(100% - 80px));
  transform: translateX(-50%);
}

.hero-system-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(99, 63, 255, 0.13);
  border-radius: 999px;
  color: #30384f;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 26px rgba(35, 28, 92, 0.07);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.1;
}

.hero-system-line span::before {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(99, 63, 255, 0.1);
}

.compact-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.offer-section,
.fit-section,
.faq-section {
  padding-top: clamp(44px, 6vw, 72px);
}

.offer-section {
  position: relative;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(62px, 7vw, 98px);
  padding-bottom: clamp(62px, 8vw, 106px);
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(99, 63, 255, 0.08), transparent 24rem);
}

.offer-section::before {
  position: absolute;
  top: 48px;
  right: max(20px, calc((100vw - 1220px) / 2));
  width: min(360px, 34vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(99, 63, 255, 0.42));
}

.offer-section .section-heading h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.04;
}

.offer-section .section-heading > p {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-heading p {
  max-width: 760px;
  margin-bottom: 0;
}

.text-link {
  color: var(--blue);
  font-weight: 850;
  white-space: nowrap;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(460px, 1.14fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
}

.offer-copy-card,
.solution-link,
.method-steps div,
.contact-card,
.solution-panel-grid div,
.solution-list li,
.faq-grid details {
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.offer-copy-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(6, 18, 50, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(99, 63, 255, 0.12), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 255, 0.78));
  box-shadow: 0 18px 54px rgba(35, 28, 92, 0.08);
  overflow: hidden;
}

.offer-copy-card::after {
  position: absolute;
  left: 0;
  top: 28px;
  width: 3px;
  height: calc(100% - 56px);
  border: 0;
  border-radius: 0;
  content: "";
  background: linear-gradient(180deg, var(--blue), rgba(6, 18, 50, 0.62));
  box-shadow: none;
}

.offer-copy-card .solution-index {
  color: var(--blue);
}

.offer-copy-card h3 {
  margin: 0 0 16px;
  max-width: 430px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  line-height: 1.08;
}

.offer-copy-card p {
  max-width: 460px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.offer-copy-card .primary-btn {
  width: fit-content;
}

.offer-build-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: visible;
  padding: 0;
  border-top: 1px solid rgba(6, 18, 50, 0.1);
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.offer-build-card::before {
  display: none;
}

.offer-build-card div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(82px, 0.3fr) minmax(150px, 0.48fr) minmax(220px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 104px;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.offer-build-card div:hover {
  border-color: rgba(99, 63, 255, 0.22);
  background: linear-gradient(90deg, rgba(99, 63, 255, 0.07), transparent 48%);
  transform: translateX(8px);
}

.offer-build-card span,
.pipeline span,
.solution-index,
.method-steps span,
.leak-board span,
.solution-panel-grid span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-build-card div > span {
  width: fit-content;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-build-card strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.38vw, 1.2rem);
  line-height: 1.1;
}

.offer-build-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.offer-build-card p,
.leak-board p,
.method-steps p,
.solution-link p,
.solution-panel-grid p {
  margin-bottom: 0;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(99, 63, 255, 0.08), transparent 1px) 0 0 / 26px 26px,
    transparent;
}

.fit-section .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 22px;
  margin-bottom: 0;
}

.fit-section .section-heading h2 {
  max-width: 540px;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.08;
}

.fit-section .section-heading > p {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.fit-grid div {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(112px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  padding: 24px 20px 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  overflow: visible;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 180ms ease;
}

.fit-grid div:last-child {
  border-bottom: 0;
}

.fit-section.is-visible .fit-grid div {
  opacity: 1;
  transform: translateY(0);
}

.fit-section.is-visible .fit-grid div:nth-child(2) {
  transition-delay: 90ms;
}

.fit-section.is-visible .fit-grid div:nth-child(3) {
  transition-delay: 180ms;
}

.fit-grid div:hover,
.fit-grid div:focus-visible {
  border-color: rgba(99, 63, 255, 0.2);
  background: linear-gradient(90deg, rgba(99, 63, 255, 0.07), transparent 72%);
  box-shadow: none;
  transform: translateY(-4px);
}

.fit-grid div:focus-visible {
  outline: 3px solid rgba(99, 63, 255, 0.18);
  outline-offset: 3px;
}

.fit-grid span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.fit-grid strong {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  line-height: 1.32;
  transition: color 180ms ease;
}

.fit-grid div:hover span,
.fit-grid div:focus-visible span {
  color: var(--blue);
}

.fit-grid div:hover strong,
.fit-grid div:focus-visible strong {
  color: var(--ink);
}

.clients-section {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: clamp(34px, 5vw, 54px);
  padding-bottom: clamp(36px, 5vw, 58px);
  border-top: 1px solid rgba(6, 18, 50, 0.08);
  background:
    linear-gradient(90deg, rgba(99, 63, 255, 0.05) 0 1px, transparent 1px 100%) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(99, 63, 255, 0.045), transparent 44%),
    #ffffff;
}

.clients-section .section-heading {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.clients-section .section-heading p:not(.eyebrow) {
  max-width: 440px;
}

.client-logo-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(6, 18, 50, 0.1);
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.client-logo-marquee::before,
.client-logo-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(46px, 9vw, 120px);
  content: "";
  pointer-events: none;
}

.client-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.client-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: logo-marquee 42s linear infinite;
  will-change: transform;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-group {
  display: flex;
  flex: 0 0 auto;
  gap: 0;
}

.client-logo-group figure {
  display: grid;
  flex: 0 0 172px;
  min-height: 96px;
  margin: 0;
  padding: 16px 22px;
  border-right: 1px solid rgba(6, 18, 50, 0.1);
  place-items: center;
  background: rgba(255, 255, 255, 0.58);
}

.client-logo-group img {
  width: min(100%, 126px);
  height: 54px;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.04);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.method-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 0.54fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(48px, 6vw, 72px) max(20px, calc((100vw - 1220px) / 2));
  border-top: 0;
  color: #ffffff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #11165a 0%, #0c1635 48%, #071126 100%);
  overflow: hidden;
}

.method-section.compact-section {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.method-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(99, 63, 255, 0.24), transparent 26rem),
    linear-gradient(90deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46% 47%, transparent 47% 100%);
  pointer-events: none;
}

.method-section > div:first-child {
  position: sticky;
  top: 92px;
  z-index: 1;
  max-width: 560px;
}

.method-section .eyebrow {
  color: #a690ff;
}

.method-section h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4.7vw, 5.2rem);
  line-height: 0.98;
}

.problem-section {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: clamp(56px, 7vw, 86px) max(20px, calc((100vw - 1220px) / 2));
  border-top: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(99, 63, 255, 0.3), transparent 24rem),
    linear-gradient(135deg, #061232 0%, #111a3a 54%, #17113a 100%);
  box-shadow: 0 28px 90px rgba(35, 28, 92, 0.18);
  color: #ffffff;
  overflow: hidden;
}

.problem-section .section-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  align-items: start;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 42px);
  text-align: left;
}

.problem-section .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 2px;
  color: #a690ff;
}

.problem-section .section-intro h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 640px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.04;
}

.problem-section .section-intro > p:not(.eyebrow) {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.section-intro p {
  max-width: 620px;
}

.leak-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1220px, 100%);
  margin: 0 auto;
  overflow: visible;
  padding: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.leak-board div {
  position: relative;
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 0;
  border-radius: 0;
  opacity: 0;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transform: translateY(16px);
  transition:
    opacity 540ms ease,
    transform 540ms ease,
    background 180ms ease;
}

.leak-board div::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(159, 141, 255, 0.9), rgba(255, 255, 255, 0));
}

.problem-section.is-visible .leak-board div {
  opacity: 1;
  transform: translateY(0);
}

.problem-section.is-visible .leak-board div:nth-child(2) {
  transition-delay: 90ms;
}

.problem-section.is-visible .leak-board div:nth-child(3) {
  transition-delay: 180ms;
}

.leak-board div:hover,
.leak-board div:focus-visible {
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-3px);
}

.leak-board div:focus-visible {
  outline: 3px solid rgba(159, 141, 255, 0.34);
  outline-offset: 3px;
}

.leak-board strong {
  color: #ffffff;
  font-size: clamp(1.02rem, 1.32vw, 1.16rem);
  line-height: 1.16;
}

.method-steps strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  line-height: 1.16;
}

.leak-board span {
  color: #9f8dff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leak-board p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.52;
}

.solutions-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(60px, 7vw, 92px);
}

.solutions-section::before {
  position: absolute;
  top: clamp(58px, 7vw, 86px);
  bottom: clamp(60px, 7vw, 92px);
  left: calc(38% + clamp(16px, 3vw, 34px));
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(99, 63, 255, 0), rgba(99, 63, 255, 0.3), rgba(99, 63, 255, 0));
}

.solutions-section .section-heading {
  position: sticky;
  top: 92px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 0;
}

.solutions-section .section-heading h2 {
  max-width: 410px;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.04;
}

.solutions-section .text-link {
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(99, 63, 255, 0.36);
}

.solutions-grid {
  counter-reset: solution-step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(6, 18, 50, 0.12);
}

.system-section {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.system-section .section-heading {
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.system-section .section-heading h2 {
  max-width: 610px;
  font-size: clamp(2rem, 3.35vw, 3.5rem);
  line-height: 1.04;
}

.system-section .section-heading > p {
  max-width: 440px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.system-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
}

.system-map::before {
  display: none;
}

.map-node {
  position: relative;
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px clamp(14px, 2vw, 22px) 26px;
  border: 0;
  border-top: 1px solid rgba(6, 18, 50, 0.1);
  border-right: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: 0;
  background: transparent;
  transition: transform 170ms ease;
}

.map-node:last-child {
  border-right: 0;
}

.map-node::before {
  display: none;
}

.map-node::after {
  position: absolute;
  left: 0;
  top: 24px;
  width: 2px;
  height: 42px;
  content: "";
  background: linear-gradient(180deg, var(--blue), rgba(99, 63, 255, 0));
}

.map-node:last-child::after {
  content: "";
}

.map-node span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-node strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.35vw, 1.18rem);
  line-height: 1.12;
}

.map-node p {
  max-width: 205px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.map-node:hover {
  transform: translateY(-2px);
}

.solution-link {
  position: relative;
  counter-increment: solution-step;
  min-height: 116px;
  display: grid;
  grid-template-columns: minmax(126px, 0.3fr) minmax(120px, 0.23fr) minmax(220px, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  padding: 24px 0 24px 48px;
  border: 0;
  border-bottom: 1px solid rgba(6, 18, 50, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: padding 170ms ease, background 170ms ease;
}

.solution-link::before {
  position: absolute;
  left: 0;
  top: 25px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(99, 63, 255, 0.28);
  border-radius: 50%;
  content: counter(solution-step, decimal-leading-zero);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
}

.solution-link:hover {
  background: linear-gradient(90deg, rgba(99, 63, 255, 0.07), transparent 76%);
  box-shadow: none;
  transform: none;
  padding-left: 56px;
}

.solution-link strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.12;
}

.solution-link p {
  max-width: 420px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.solution-link > span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 64px;
  color: var(--blue);
  font-weight: 850;
}

.blog-preview-section {
  padding-top: clamp(58px, 7vw, 88px);
  padding-bottom: clamp(58px, 7vw, 88px);
}

.blog-preview-section .section-heading {
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.blog-preview-section .text-link {
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(99, 63, 255, 0.34);
  color: var(--blue);
  font-weight: 850;
}

.blog-card-grid,
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: var(--radius);
  background: rgba(6, 18, 50, 0.1);
  box-shadow: var(--shadow-soft);
}

.blog-card,
.blog-feature-card {
  display: grid;
  align-content: start;
  min-height: 268px;
  padding: clamp(24px, 3.4vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 247, 255, 0.88)),
    var(--paper-strong);
  transition: background 170ms ease, transform 170ms ease;
}

.blog-card:hover,
.blog-feature-card:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 236, 255, 0.94)),
    var(--paper-strong);
  transform: translateY(-2px);
}

.blog-card span,
.blog-feature-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(99, 63, 255, 0.2);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(99, 63, 255, 0.07);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card strong,
.blog-feature-card strong {
  max-width: 390px;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  font-weight: 850;
  line-height: 1.14;
}

.blog-card p,
.blog-feature-card p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.58;
}

.blog-detail {
  padding-bottom: 0;
}

.blog-hero {
  display: grid;
  gap: 20px;
  max-width: 920px;
  padding: clamp(150px, 16vw, 210px) 0 clamp(54px, 7vw, 86px);
}

.blog-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 4.8vw, 5rem);
  line-height: 1;
}

.blog-hero > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.blog-index-grid {
  margin-bottom: clamp(70px, 8vw, 110px);
}

.blog-feature-card {
  min-height: 330px;
}

.blog-feature-card em {
  align-self: end;
  margin-top: 32px;
  color: var(--blue);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.blog-article-detail {
  max-width: 980px;
}

.blog-article {
  display: block;
  padding: clamp(150px, 16vw, 210px) 0 clamp(72px, 8vw, 112px);
}

.article-header {
  position: static;
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.article-header h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1;
}

.article-header > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.65;
}

.article-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(99, 63, 255, 0.34);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.article-body {
  max-width: 760px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.article-body p {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.18rem);
  line-height: 1.82;
}

.article-body > p:first-child {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.75vw, 1.38rem);
  line-height: 1.72;
}

.article-body h2 {
  position: relative;
  margin: 58px 0 16px;
  padding-top: 0;
  border-top: 0;
  font-size: clamp(1.55rem, 2.25vw, 2.24rem);
  line-height: 1.08;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h2::before {
  position: absolute;
  top: -18px;
  left: 0;
  width: 46px;
  height: 2px;
  content: "";
  background: var(--blue);
}

.method-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(159, 141, 255, 0), rgba(159, 141, 255, 0.72), rgba(159, 141, 255, 0));
}

.method-steps div {
  position: relative;
  min-height: 108px;
  display: grid;
  grid-template-columns: minmax(104px, 0.25fr) minmax(190px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  max-width: none;
  padding: 22px 0 22px 28px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.method-steps div:last-child {
  border-bottom: 0;
}

.method-steps div::before {
  position: absolute;
  left: 0;
  top: 24px;
  display: grid;
  place-items: center;
  width: 2px;
  height: 38px;
  border: 0;
  border-radius: 0;
  content: "";
  background: linear-gradient(180deg, #a690ff, rgba(166, 144, 255, 0));
  box-shadow: none;
}

.method-steps div:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, rgba(159, 141, 255, 0.11), transparent 70%);
  box-shadow: none;
  transform: translateX(4px);
}

.method-steps span {
  color: #a690ff;
}

.method-steps strong {
  color: #ffffff;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.16;
}

.method-steps p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.48;
}

.founder-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: clamp(66px, 8vw, 108px);
}

.founder-section::before {
  position: absolute;
  left: min(36vw, 440px);
  top: clamp(70px, 8vw, 110px);
  bottom: clamp(66px, 8vw, 108px);
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(6, 18, 50, 0.16), transparent);
}

.founder-portrait {
  position: relative;
  width: min(470px, 100%);
  min-height: clamp(420px, 48vw, 590px);
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 237, 249, 0.86));
  box-shadow: none;
  isolation: isolate;
}

.founder-portrait::before {
  position: absolute;
  inset: 28px -28px -28px 28px;
  z-index: -1;
  border: 1px solid rgba(99, 63, 255, 0.2);
  border-radius: var(--radius);
  content: "";
  background:
    linear-gradient(135deg, rgba(99, 63, 255, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.44);
}

.founder-portrait::after {
  position: absolute;
  left: -20px;
  bottom: 34px;
  width: min(210px, 56%);
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(99, 63, 255, 0));
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 32px 88px rgba(35, 28, 92, 0.14);
}

.founder-copy {
  position: relative;
  max-width: 720px;
  padding-left: clamp(0px, 2vw, 28px);
}

.founder-copy h2 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.05rem, 3.4vw, 3.65rem);
  line-height: 1.03;
}

.founder-copy p {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.72;
}

.founder-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin: 34px 0 0;
  border-top: 1px solid rgba(6, 18, 50, 0.12);
  border-bottom: 1px solid rgba(6, 18, 50, 0.12);
}

.founder-points span {
  min-height: 78px;
  justify-content: flex-start;
  padding: 18px clamp(12px, 2vw, 20px);
  border: 0;
  border-right: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-points span:last-child {
  border-right: 0;
}

.faq-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(60px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(6, 18, 50, 0.08), transparent 1px) 0 0 / 42px 42px,
    transparent;
}

.faq-section .section-heading {
  position: sticky;
  top: 92px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 0;
}

.faq-section .section-heading h2 {
  max-width: 500px;
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  line-height: 1.04;
}

.faq-section .section-heading > p {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.faq-grid {
  counter-reset: faq-item;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(6, 18, 50, 0.14);
  border-bottom: 1px solid rgba(6, 18, 50, 0.14);
}

.faq-grid details {
  counter-increment: faq-item;
  position: relative;
  border-bottom: 1px solid rgba(6, 18, 50, 0.11);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.faq-grid details:last-child {
  border-bottom: 0;
}

.faq-grid details::before {
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--blue);
  content: counter(faq-item, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.faq-grid summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  padding: 20px 0 20px 54px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  font-weight: 850;
  line-height: 1.22;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(99, 63, 255, 0.22);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.68);
  content: "+";
  font-size: 1rem;
  line-height: 1;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.faq-grid details[open] summary::after {
  content: "-";
  border-color: rgba(99, 63, 255, 0.34);
  background: rgba(99, 63, 255, 0.08);
  transform: rotate(180deg);
}

.faq-grid p {
  max-width: 680px;
  margin: -6px 54px 24px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.contact-section {
  border-top: 0;
  padding-top: 24px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(34px, 7vw, 72px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 85, 255, 0.11), transparent 36%),
    linear-gradient(315deg, rgba(0, 143, 134, 0.1), transparent 32%),
    rgba(255, 253, 248, 0.9);
}

.contact-card h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.contact-copy p {
  max-width: 720px;
  margin-bottom: 0;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form textarea {
  min-height: 116px;
  padding-top: 13px;
  resize: vertical;
}

.lead-form select {
  appearance: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(10, 85, 255, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(10, 85, 255, 0.1);
}

.lead-form button {
  border: 0;
  cursor: pointer;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) repeat(4, minmax(116px, 0.68fr)) auto;
  gap: 26px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-logo {
  display: block;
  width: 148px;
  margin-bottom: 12px;
}

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 850;
}

.site-footer a,
.footer-muted {
  display: block;
  margin: 7px 0;
}

.footer-seo-copy {
  grid-column: 1 / -1;
  max-width: 880px;
  padding-top: 22px;
  border-top: 1px solid rgba(6, 18, 50, 0.08);
}

.footer-seo-copy p {
  max-width: 820px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.footer-seo-copy p:last-child {
  margin-bottom: 0;
}

.copyright {
  align-self: end;
  margin: 0;
  white-space: nowrap;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(22, 132, 95, 0.26);
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #16845f, #25d366);
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.solution-page {
  min-height: 100vh;
}

.solution-detail {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.solution-hero {
  min-height: calc(82vh - 82px);
  display: grid;
  align-content: center;
  padding: clamp(110px, 12vw, 150px) 0 clamp(52px, 7vw, 82px);
}

.solution-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.5vw, 7.2rem);
  line-height: 0.9;
}

.solution-hero p {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.65;
}

.solution-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(54px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.solution-copy-block h2,
.solution-split h2 {
  margin-bottom: 18px;
}

.solution-copy-block p {
  max-width: 640px;
}

.solution-panel-grid {
  display: grid;
  gap: 12px;
}

.solution-panel-grid div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: var(--radius);
}

.solution-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-list li {
  position: relative;
  min-height: 70px;
  display: grid;
  align-items: center;
  padding: 18px 18px 18px 48px;
  border-radius: var(--radius);
  color: var(--ink-soft);
}

.solution-list li::before {
  position: absolute;
  left: 18px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  content: "";
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0, 143, 134, 0.11);
}

.solution-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(36px, 6vw, 58px) 0 76px;
  border-top: 1px solid var(--line);
}

.solution-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.city-detail {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.city-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: end;
  min-height: 620px;
  padding: clamp(116px, 13vw, 156px) 0 clamp(48px, 7vw, 78px);
  border-bottom: 1px solid var(--line);
}

.city-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.3vw, 5.7rem);
  line-height: 0.96;
}

.city-hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.city-hero-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 248, 255, 0.76));
  box-shadow: 0 18px 52px rgba(35, 28, 92, 0.08);
}

.city-hero-panel strong {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.15;
}

.city-hero-panel ul,
.city-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-hero-panel li,
.city-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.city-hero-panel li::before,
.city-checklist li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.city-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(26px, 4vw, 44px) 0;
  border: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: var(--radius);
  background: rgba(6, 18, 50, 0.1);
  overflow: hidden;
}

.city-band div {
  min-height: 116px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.city-band span,
.city-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-band strong,
.city-card strong {
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.2;
}

.city-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(50px, 7vw, 86px) 0;
  border-top: 1px solid var(--line);
}

.city-section h2 {
  max-width: 540px;
  font-size: clamp(2rem, 3.25vw, 3.45rem);
  line-height: 1.04;
}

.city-section p {
  max-width: 680px;
  color: var(--ink-soft);
}

.city-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-card {
  min-height: 176px;
  display: block;
  padding: 24px;
  border: 1px solid rgba(6, 18, 50, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(35, 28, 92, 0.06);
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

a.city-card:hover {
  border-color: rgba(99, 63, 255, 0.22);
  box-shadow: 0 18px 48px rgba(35, 28, 92, 0.1);
  transform: translateY(-2px);
}

.city-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

.city-nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-nearby a,
.city-nearby span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(99, 63, 255, 0.18);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  font-weight: 820;
}

.city-nearby a:hover {
  color: var(--blue);
  background: #ffffff;
}

.city-page .faq-section {
  width: 100%;
}

.city-page .faq-section .section-heading {
  align-items: start;
}

.city-page .solution-cta h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
}

.production-detail {
  width: min(1220px, calc(100% - 40px));
}

.production-hero {
  display: block;
  min-height: 680px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(136px, 14vw, 178px) max(20px, calc((100vw - 1220px) / 2)) clamp(74px, 8vw, 104px);
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  background:
    linear-gradient(90deg, rgba(6, 18, 50, 0.9) 0%, rgba(6, 18, 50, 0.72) 34%, rgba(6, 18, 50, 0.2) 70%),
    linear-gradient(180deg, rgba(6, 18, 50, 0.28), rgba(6, 18, 50, 0.42)),
    url("assets/production/boite-production-video-rabat-tournage-maroc-hero.jpg");
  background-position: center;
  background-size: cover;
}

.production-hero-copy h1 {
  max-width: 800px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
  line-height: 0.98;
}

.production-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.production-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.production-steps span {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-band strong {
  font-size: 1rem;
}

.production-steps {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: var(--radius);
  background: rgba(6, 18, 50, 0.1);
}

.production-steps div {
  display: grid;
  grid-template-columns: 58px minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 118px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.production-steps span {
  color: var(--blue);
}

.production-steps strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.22;
}

.production-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.56;
}

.production-showcase {
  overflow: hidden;
  padding: clamp(54px, 8vw, 94px) 0;
  border-top: 1px solid var(--line);
}

.production-showcase .section-heading {
  margin-bottom: 26px;
}

.production-carousel {
  display: grid;
  gap: 14px;
}

.production-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
}

.production-carousel-head span,
.production-carousel-head small {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 820;
}

.production-carousel-head small {
  color: var(--muted);
}

.production-media-strip {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 18px;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.production-media-slide {
  position: relative;
  flex: 0 0 min(76vw, 340px) !important;
  flex-shrink: 0 !important;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(6, 18, 50, 0.1);
  border-radius: var(--radius);
  color: #ffffff;
  background: #111a34;
  box-shadow: 0 18px 48px rgba(35, 28, 92, 0.1);
  cursor: pointer;
  direction: ltr;
  scroll-snap-align: end;
  text-align: left;
}

.production-media-slide.is-wide {
  flex-basis: min(86vw, 610px) !important;
  aspect-ratio: 16 / 9;
}

.production-media-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.production-media-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgba(6, 18, 50, 0.86));
}

.production-media-slide.is-video::before {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  content: "▶";
  color: #ffffff;
  background: rgba(99, 63, 255, 0.92);
  box-shadow: 0 12px 34px rgba(6, 18, 50, 0.32);
}

.production-media-slide span,
.production-media-slide strong {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 1;
}

.production-media-slide span {
  bottom: 52px;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-media-slide strong {
  bottom: 20px;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  line-height: 1.12;
}

.production-media-slide:hover img,
.production-media-slide:focus-visible img {
  transform: scale(1.035);
}

.production-media-slide:focus-visible {
  outline: 3px solid rgba(99, 63, 255, 0.45);
  outline-offset: 3px;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 34px);
  background: rgba(3, 8, 24, 0.92);
}

.media-lightbox.is-open {
  display: flex;
}

body.is-lightbox-open {
  overflow: hidden;
}

.media-lightbox-frame {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 44px);
}

.media-lightbox-content {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050914;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
}

.media-lightbox-content img,
.media-lightbox-content iframe {
  display: block;
  width: 100%;
  max-height: calc(100vh - 132px);
  border: 0;
  object-fit: contain;
}

.media-lightbox-content iframe {
  aspect-ratio: 16 / 9;
}

.media-lightbox-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  color: #ffffff;
}

.media-lightbox-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-lightbox-caption strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.media-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.legal-detail {
  max-width: 920px;
}

.legal-back-link {
  display: inline-flex;
  margin-top: 108px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 850;
}

.legal-hero {
  min-height: auto;
  padding: 48px 0 34px;
}

.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.96;
}

.legal-hero p {
  max-width: 650px;
}

.legal-content {
  padding: 0 0 76px;
}

.legal-content h2 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.16;
}

.legal-content p {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-content a {
  color: var(--blue);
  font-weight: 780;
}

.legal-updated {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 18, 50, 0.1);
}

.about-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(99, 63, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 8% 30%, rgba(0, 143, 134, 0.08), transparent 22rem),
    var(--paper);
}

.about-detail {
  width: min(1180px, calc(100% - 40px));
}

.about-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(300px, 0.36fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: center;
  padding: clamp(112px, 10vw, 142px) 0 clamp(44px, 6vw, 64px);
}

.about-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5.6vw, 5.25rem);
  line-height: 0.94;
}

.about-hero-copy > p {
  max-width: 660px;
}

.about-hero-panel {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(6, 18, 50, 0.1);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(145deg, #10165b, #061232 58%, #071126);
  color: #ffffff;
}

.about-hero-panel span {
  margin-bottom: 14px;
  color: #a690ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero-panel strong {
  max-width: 330px;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
  line-height: 1.08;
}

.about-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(6, 18, 50, 0.1);
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  background: rgba(255, 255, 255, 0.48);
}

.about-proof-band div {
  min-height: 86px;
  padding: 18px 20px;
  border-right: 1px solid rgba(6, 18, 50, 0.1);
}

.about-proof-band div:last-child {
  border-right: 0;
}

.about-proof-band span,
.about-services-grid span,
.about-method-section span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-proof-band strong {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.12;
}

.about-intro {
  grid-template-columns: minmax(0, 0.54fr) minmax(320px, 0.46fr);
  align-items: stretch;
  gap: clamp(36px, 6vw, 86px);
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(58px, 7vw, 86px);
}

.about-intro h2 {
  max-width: 600px;
  font-size: clamp(2rem, 3.25vw, 3.3rem);
  line-height: 1.04;
}

.about-intro .solution-copy-block p:not(.eyebrow) {
  max-width: 620px;
}

.about-founder-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(6, 18, 50, 0.1);
  background:
    linear-gradient(180deg, transparent 24%, rgba(6, 18, 50, 0.82)),
    #101735;
  color: #ffffff;
}

.about-founder-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.92;
}

.about-founder-card div {
  position: relative;
  z-index: 1;
}

.about-founder-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.05;
}

.about-founder-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.about-services-section {
  padding: clamp(54px, 7vw, 82px) 0;
}

.about-services-section .section-heading {
  align-items: end;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.about-services-section .section-heading h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.35vw, 3.45rem);
  line-height: 1.04;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(6, 18, 50, 0.1);
  border-left: 1px solid rgba(6, 18, 50, 0.1);
}

.about-services-grid a {
  min-height: 188px;
  padding: 26px;
  border-right: 1px solid rgba(6, 18, 50, 0.1);
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  background: rgba(255, 255, 255, 0.54);
  transition: background 170ms ease, transform 170ms ease;
}

.about-services-grid a:hover,
.about-services-grid a:focus-visible {
  background: #ffffff;
  transform: translateY(-3px);
}

.about-services-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.about-services-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.58;
}

.about-location-section {
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: clamp(36px, 6vw, 84px);
  padding-top: clamp(54px, 7vw, 78px);
  padding-bottom: clamp(54px, 7vw, 78px);
  border-top: 1px solid rgba(6, 18, 50, 0.1);
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
}

.about-location-section h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.35vw, 3.45rem);
  line-height: 1.04;
}

.about-location-section > div:last-child {
  display: grid;
  gap: 14px;
}

.about-location-section p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.76;
}

.about-method-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: clamp(44px, 6vw, 68px) 0;
}

.about-method-section div {
  min-height: 230px;
  padding: 28px;
  border-top: 1px solid rgba(6, 18, 50, 0.1);
  border-right: 1px solid rgba(6, 18, 50, 0.1);
  border-bottom: 1px solid rgba(6, 18, 50, 0.1);
}

.about-method-section div:first-child {
  border-left: 1px solid rgba(6, 18, 50, 0.1);
}

.about-method-section strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.26rem, 2vw, 1.72rem);
  line-height: 1.08;
}

.about-method-section p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.about-faq-section {
  padding: 0 0 clamp(42px, 6vw, 70px);
}

.about-faq-section .section-heading {
  margin-bottom: clamp(18px, 3vw, 28px);
}

@media (max-width: 1080px) {
  .hero {
    min-height: 720px;
    padding-top: 170px;
    padding-bottom: 120px;
  }

  .method-section,
  .faq-section,
  .founder-section,
  .offer-grid,
  .fit-section,
  .about-hero,
  .about-intro,
  .about-location-section {
    grid-template-columns: 1fr;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-grid,
  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-feature-card {
    min-height: auto;
  }

  .blog-article {
    grid-template-columns: 1fr;
  }

  .article-header {
    position: static;
  }

  .about-hero-panel {
    min-height: 220px;
  }

  .method-section > div:first-child {
    position: static;
    max-width: 720px;
  }

  .fit-section .section-heading {
    grid-template-columns: 1fr;
  }

  .problem-section .section-intro {
    grid-template-columns: 1fr;
  }

  .leak-board {
    grid-template-columns: 1fr;
  }

  .leak-board div:nth-child(2) {
    border-right: 0;
  }

  .leak-board div:last-child {
    grid-column: auto;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid div,
  .fit-grid div:last-child {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  }

  .fit-grid div:last-child {
    border-bottom: 0;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .founder-portrait {
    width: min(520px, 100%);
  }

  .founder-section::before {
    display: none;
  }

  .founder-copy {
    padding-left: 0;
  }

  .solutions-section {
    grid-template-columns: 1fr;
  }

  .solutions-section::before {
    display: none;
  }

  .solutions-section .section-heading {
    position: static;
    max-width: 720px;
  }

  .faq-section .section-heading {
    position: static;
    max-width: 720px;
  }

  .system-map {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    padding-left: 0;
    border-top: 0;
    border-left: 0;
  }

  .system-map::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    top: 10px;
    width: min(1220px, calc(100% - 28px));
    height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  nav {
    display: none;
  }

  .site-header > .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    position: absolute;
    top: 10px;
    right: 0;
    left: auto;
    z-index: 42;
    display: grid !important;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: 0;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    box-shadow: 0 16px 36px rgba(99, 63, 255, 0.24);
    backdrop-filter: blur(16px);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 170ms ease;
  }

  .mobile-menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .mobile-menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: auto;
    z-index: 40;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(6, 18, 50, 0.11);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 64px rgba(35, 28, 92, 0.14);
    backdrop-filter: blur(20px);
    transform: translateY(-6px);
    transition: opacity 170ms ease, visibility 170ms ease, transform 170ms ease;
  }

  .site-header.is-menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 6px;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 820;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--blue);
    background: rgba(99, 63, 255, 0.07);
  }

  .mobile-solutions-dropdown {
    border-radius: 6px;
  }

  .mobile-solutions-dropdown summary {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 820;
    list-style: none;
  }

  .mobile-solutions-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .mobile-solutions-dropdown summary::after {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 170ms ease;
  }

  .mobile-solutions-dropdown[open] summary {
    color: var(--blue);
    background: rgba(99, 63, 255, 0.07);
    border-radius: 6px;
  }

  .mobile-solutions-dropdown[open] summary::after {
    transform: rotate(225deg);
  }

  .mobile-solutions-dropdown div {
    display: grid;
    gap: 2px;
    padding: 4px 0 8px 14px;
  }

  .mobile-solutions-dropdown div a {
    min-height: 36px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 760;
  }

  .hero,
  .compact-section,
  .site-footer,
  .solution-detail {
    width: min(1220px, calc(100% - 28px));
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding: 104px 14px 150px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0.28) 100%),
      url("assets/agence-marketing-digital-maroc-768.jpg");
    background-position: center;
    background-size: cover;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    margin-right: auto;
    margin-left: auto;
    max-width: 560px;
    font-size: 2.35rem;
    line-height: 1.12;
  }

  .hero-system-line {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: calc(100% - 28px);
    gap: 8px;
    transform: translateX(-50%);
  }

  .section-heading,
  .contact-card,
  .solution-content,
  .city-hero,
  .production-hero,
  .city-section,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
  }

  .city-hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 38px;
  }

  .production-hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 38px;
  }

  .production-media-slide {
    flex-basis: min(78vw, 330px) !important;
  }

  .production-media-slide.is-wide {
    flex-basis: min(86vw, 560px) !important;
  }

  .production-steps div {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .production-steps p {
    grid-column: 2;
  }

  .city-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    display: grid;
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 34px;
    gap: 18px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.15rem, 9vw, 3.05rem);
    line-height: 1;
  }

  .about-hero-panel {
    min-height: 142px;
    padding: 18px;
  }

  .about-hero-panel span {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .about-hero-panel strong {
    font-size: 1.08rem;
  }

  .about-proof-band,
  .about-services-grid,
  .about-method-section {
    grid-template-columns: 1fr;
  }

  .about-proof-band div,
  .about-method-section div,
  .about-method-section div:first-child {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-left: 0;
  }

  .about-proof-band div,
  .about-method-section div {
    border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  }

  .about-proof-band div:last-child {
    border-bottom: 0;
  }

  .about-founder-card {
    min-height: 390px;
    padding: 24px;
  }

  .about-services-section {
    padding: 42px 0;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .about-services-grid a {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    background: transparent;
  }

  .about-services-section .section-heading h2,
  .about-intro h2,
  .about-location-section h2 {
    font-size: clamp(1.85rem, 7vw, 2.45rem);
    line-height: 1.08;
  }

  .about-services-grid a:hover,
  .about-services-grid a:focus-visible {
    background: transparent;
    transform: none;
  }

  .clients-section {
    width: 100vw;
    padding: 34px 0 40px;
  }

  .clients-section .section-heading {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .client-logo-track {
    animation-duration: 34s;
  }

  .client-logo-group figure {
    flex-basis: 138px;
    min-height: 82px;
    padding: 12px 16px;
  }

  .client-logo-group img {
    width: min(100%, 104px);
    height: 44px;
  }

  .method-section {
    gap: 28px;
    padding: 44px 14px;
  }

  .method-section h2 {
    max-width: 620px;
    font-size: clamp(2.1rem, 7vw, 3.25rem);
    line-height: 1.02;
  }

  .method-steps div,
  .method-steps div:nth-child(2),
  .method-steps div:nth-child(3) {
    max-width: 100%;
    margin-left: 0;
  }

  .founder-section {
    gap: 34px;
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .founder-portrait {
    min-height: clamp(390px, 92vw, 540px);
  }

  .founder-portrait::before {
    inset: 18px -14px -18px 14px;
  }

  .founder-points {
    grid-template-columns: 1fr;
  }

  .founder-points span {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  }

  .founder-points span:last-child {
    border-bottom: 0;
  }

  .faq-section {
    gap: 26px;
    background: transparent;
  }

  .fit-section {
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 44px;
    background: transparent;
  }

  .fit-section .section-heading {
    gap: 14px;
  }

  .fit-section .section-heading h2 {
    max-width: 560px;
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.08;
  }

  .fit-section .section-heading > p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .fit-grid {
    border-top: 1px solid rgba(6, 18, 50, 0.12);
    border-bottom: 1px solid rgba(6, 18, 50, 0.12);
    background: transparent;
  }

  .fit-grid div,
  .fit-grid div:last-child {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 18, 50, 0.1);
  }

  .fit-grid div:hover,
  .fit-grid div:focus-visible {
    background: transparent;
    transform: translateY(0);
  }

  .fit-grid strong {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .offer-build-card {
    grid-template-columns: 1fr;
  }

  .offer-build-card::before {
    display: none;
  }

  .offer-build-card div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .offer-build-card div p {
    grid-column: auto;
  }

  .offer-build-card div > span {
    width: fit-content;
    height: auto;
  }

  .leak-board div {
    min-height: auto;
    gap: 14px;
    padding: 22px 18px;
  }

  .leak-board {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .leak-board div,
  .leak-board div:nth-child(2) {
    border-right: 0;
    border-bottom: 0;
  }

  .leak-board div:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .map-node {
    min-height: auto;
    gap: 8px;
    padding: 18px 0 18px 18px;
    border-right: 0;
    border-top: 1px solid rgba(6, 18, 50, 0.1);
  }

  .map-node::before {
    display: none;
  }

  .map-node::after {
    display: block;
    top: 18px;
    left: 0;
    width: 2px;
    height: 34px;
  }

  .map-node p {
    max-width: 520px;
  }

  .solution-link {
    grid-template-columns: minmax(112px, 0.3fr) minmax(120px, 0.23fr) minmax(0, 1fr) auto;
  }

  .copyright {
    align-self: start;
  }

  .solution-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.25rem);
    line-height: 1;
  }

  .hero h1 {
    font-size: 2.05rem;
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 0.98;
  }

  .hero-system-line,
  .system-map,
  .solutions-grid,
  .city-band,
  .city-card-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .city-detail {
    width: min(1220px, calc(100% - 28px));
  }

  .production-detail {
    width: min(1220px, calc(100% - 28px));
  }

  .city-hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    line-height: 1.04;
  }

  .production-hero-copy h1 {
    font-size: clamp(2.1rem, 9.6vw, 3.05rem);
    line-height: 1.05;
  }

  .city-hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .production-hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .city-section {
    gap: 18px;
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .city-section h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .city-card {
    min-height: auto;
    padding: 20px;
  }

  .production-steps div {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
  }

  .production-steps p {
    grid-column: auto;
  }

  .production-carousel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .production-media-strip {
    gap: 10px;
    margin-right: -14px;
    padding-right: 14px;
  }

  .production-media-slide,
  .production-media-slide.is-wide {
    flex-basis: min(82vw, 310px) !important;
    aspect-ratio: 4 / 5;
  }

  .media-lightbox {
    padding: 14px;
  }

  .media-lightbox-content img,
  .media-lightbox-content iframe {
    max-height: calc(100vh - 118px);
  }

  .hero {
    padding-bottom: 176px;
  }

  .problem-section {
    width: 100%;
    padding: 34px 14px;
    border-radius: 0;
  }

  .problem-section .section-intro {
    gap: 14px;
    margin-bottom: 22px;
  }

  .problem-section .section-intro h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .problem-section .section-intro > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .leak-board {
    border-radius: 7px;
  }

  .leak-board div:hover,
  .leak-board div:focus-visible {
    transform: translateY(0);
  }

  .system-section {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .system-section .section-heading {
    gap: 14px;
    margin-bottom: 26px;
  }

  .system-section .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.06;
  }

  .system-section .section-heading > p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .map-node strong {
    font-size: 1.12rem;
  }

  .map-node p {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .solutions-section {
    gap: 24px;
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .method-section {
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .method-section h2 {
    font-size: clamp(2rem, 8.5vw, 2.85rem);
    line-height: 1.04;
  }

  .founder-section {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .faq-section {
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .faq-section .section-heading {
    gap: 14px;
  }

  .faq-section .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .faq-section .section-heading > p {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .faq-grid details::before {
    top: 20px;
  }

  .faq-grid summary {
    min-height: 68px;
    padding: 18px 0 18px 42px;
    font-size: 1.02rem;
  }

  .faq-grid summary::after {
    width: 30px;
    height: 30px;
  }

  .faq-grid p {
    max-width: 100%;
    margin: -2px 0 20px 42px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .founder-portrait {
    min-height: clamp(360px, 118vw, 500px);
  }

  .founder-portrait::before {
    inset: 14px -8px -14px 8px;
  }

  .founder-portrait::after {
    left: -8px;
    bottom: 24px;
  }

  .founder-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .founder-copy p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .method-steps {
    gap: 0;
  }

  .method-steps::before {
    left: 0;
    top: 0;
    bottom: 0;
  }

  .method-steps div {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: auto;
    padding: 18px 0 18px 22px;
  }

  .method-steps div::before {
    left: 0;
    top: 18px;
    width: 2px;
    height: 34px;
  }

  .method-steps strong {
    font-size: 1.02rem;
  }

  .method-steps p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .method-steps div:hover {
    transform: none;
  }

  .solutions-section .section-heading {
    gap: 14px;
  }

  .solutions-section .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.06;
  }

  .solution-link {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: auto;
    padding: 18px 0 18px 42px;
  }

  .solution-link::before {
    top: 18px;
    width: 26px;
    height: 26px;
  }

  .solution-link:hover {
    padding-left: 42px;
    background: transparent;
  }

  .solution-link p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .solution-link > span:last-child {
    justify-content: flex-start;
    min-width: 0;
  }

  .hero-system-line span,
  .solution-link,
  .offer-copy-card,
  .method-steps div,
  .contact-card {
    min-height: auto;
  }

  .hero-system-line span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .contact-card {
    padding: 26px 18px;
  }

  .primary-btn,
  .secondary-btn,
  .offer-copy-card .primary-btn {
    width: 100%;
    min-width: 0;
  }

  .mobile-menu {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fit-grid div,
  .leak-board div {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .client-logo-track {
    animation: none;
    overflow-x: auto;
  }
}
