/* ============================================================
   BINARY & BRICKS — design system
   ============================================================ */

:root {
  /* Brand */
  --navy-950: #07101f;
  --navy-900: #0a1628;
  --navy-850: #0e1c34;
  --navy-800: #142847;
  --navy-700: #1c365e;
  --navy-600: #284a7e;

  --blue-500: #2563eb;
  --cyan-500: #06b6d4;
  --purple-500: #7c3aed;
  --gold-500: #f59e0b;
  --orange-500: #ff7a45;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Brand gradient (from logo) */
  --grad-brand: linear-gradient(135deg, #7c3aed 0%, #2563eb 30%, #06b6d4 65%, #f59e0b 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(124, 58, 237, .14) 0%, rgba(37, 99, 235, .14) 30%, rgba(6, 182, 212, .14) 65%, rgba(245, 158, 11, .14) 100%);
  --grad-warm: linear-gradient(135deg, #f59e0b 0%, #ff7a45 100%);
  --grad-cool: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #06b6d4 100%);

  /* Type */
  --font-head: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shadow-sm: 0 4px 12px rgba(10, 22, 40, .06);
  --shadow: 0 14px 40px rgba(10, 22, 40, .08);
  --shadow-lg: 0 30px 80px rgba(10, 22, 40, .14);
  --shadow-xl: 0 40px 100px rgba(10, 22, 40, .18);

  --easing: cubic-bezier(.22, 1, .36, 1);
  --easing-bounce: cubic-bezier(.34, 1.56, .64, 1);

  --nav-h: 76px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--easing);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--navy-900);
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

::selection { background: rgba(124, 58, 237, .2); color: var(--navy-950); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}

.section__title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  margin-bottom: .5em;
}

.section__sub {
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--purple-500);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(124, 58, 237, .2);
  border-radius: 999px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s var(--easing-bounce), box-shadow .25s var(--easing), background .25s var(--easing), color .25s var(--easing);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(124, 58, 237, .35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(124, 58, 237, .45);
}

.btn--ghost {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px);
}
/* Ghost on light bg */
.section .btn--ghost,
.cta-strip .btn--ghost {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--navy-900);
}
.section .btn--ghost:hover,
.cta-strip .btn--ghost:hover {
  border-color: var(--purple-500);
  color: var(--purple-500);
}

.btn--link {
  background: transparent;
  color: var(--white);
  padding-left: 8px;
  padding-right: 8px;
}
.btn--link:hover { color: var(--gold-500); }
.section .btn--link { color: var(--navy-900); }
.section .btn--link:hover { color: var(--purple-500); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--navy-950);
  color: var(--gray-300);
  font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.announce__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
}
.announce__text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.announce__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .2);
  animation: pulseDot 2.4s var(--easing) infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(52, 211, 153, .2); }
  50% { box-shadow: 0 0 0 8px rgba(52, 211, 153, .05); }
}
.announce__cta {
  color: var(--white);
  font-weight: 600;
}
.announce__cta:hover { color: var(--gold-500); }

@media (max-width: 720px) {
  .announce__cta { display: none; }
  .announce__row { justify-content: center; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--easing), border-color .25s var(--easing);
}
.nav.is-stuck {
  box-shadow: 0 6px 24px rgba(10, 22, 40, .06);
  border-bottom-color: rgba(10, 22, 40, .06);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__menu {
  display: flex;
  gap: 4px;
}
.nav__menu a {
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: color .2s var(--easing), background .2s var(--easing);
}
.nav__menu a:hover {
  color: var(--purple-500);
  background: rgba(124, 58, 237, .06);
}
.nav__menu a.is-active {
  color: var(--navy-900);
  position: relative;
}
.nav__menu a.is-active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.nav__drawer a.is-active {
  background: var(--grad-brand-soft);
  color: var(--purple-500);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__phone {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  color: var(--navy-900);
  transition: all .2s var(--easing);
}
.nav__phone:hover {
  background: var(--grad-brand);
  color: var(--white);
  border-color: transparent;
  transform: rotate(-12deg);
}

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}
.nav__toggle span {
  width: 18px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .25s var(--easing), opacity .25s var(--easing);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__drawer {
  display: none;
  flex-direction: column;
  padding: 18px 24px 26px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  gap: 4px;
}
.nav__drawer a {
  padding: 14px 12px;
  border-radius: 10px;
  color: var(--navy-900);
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}
.nav__drawer a:last-child { border: 0; margin-top: 8px; }
.nav__drawer.is-open { display: flex; }

@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
}

@media (max-width: 480px) {
  .nav__actions .btn { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 9vw, 140px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .55;
  animation: glowFloat 12s ease-in-out infinite;
}
.hero__glow--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -120px; left: -100px;
}
.hero__glow--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -180px; right: -120px;
  animation-delay: -4s;
}
.hero__glow--3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  top: 40%; left: 50%;
  opacity: .25;
  animation-delay: -7s;
}
@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(40px, -30px); }
  66%      { transform: translate(-30px, 50px); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gray-100);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero__pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-brand);
}

.hero__title {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.hero__sub {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
}
.hero__stats li {
  display: block;
}
.hero__stats strong {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
}
.hero__stats span {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
}
.hero__stats em {
  display: block;
  font-style: normal;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

/* Hero visual cards */
.hero__visual {
  position: relative;
  height: 540px;
}

.hero__card {
  position: absolute;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  color: var(--white);
}

.hero__card--main {
  top: 30px;
  left: 0;
  right: 40px;
  height: 380px;
  padding: 22px;
  animation: float 8s ease-in-out infinite;
}

.hero__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.hero__card-dots {
  display: flex; gap: 6px;
}
.hero__card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.hero__card-dots span:nth-child(1) { background: #ff5f57; }
.hero__card-dots span:nth-child(2) { background: #febc2e; }
.hero__card-dots span:nth-child(3) { background: #28c840; }
.hero__card-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

.hero__metric {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__metric span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.hero__metric strong {
  font-size: 1.7rem;
  font-weight: 800;
  font-family: var(--font-head);
}
.hero__metric .up { color: #34d399; font-style: normal; font-size: .8rem; font-weight: 600; }

.hero__chart {
  margin: 16px 0;
  height: 100px;
}
.hero__chart svg { width: 100%; height: 100%; }

.hero__pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__chip {
  font-size: .75rem;
  padding: 6px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.dot--blue { background: #2563eb; }
.dot--orange { background: #ff7a45; }
.dot--cyan { background: #06b6d4; }

.hero__card--leads {
  bottom: 60px;
  left: -20px;
  width: 280px;
  padding: 14px 16px;
  animation: float 7s ease-in-out infinite -2s;
}
.hero__leads-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.badge--green {
  font-size: .65rem;
  padding: 3px 8px;
  background: rgba(52, 211, 153, .15);
  color: #34d399;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
}
.hero__leads-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero__leads-row:last-child { border-bottom: 0; }
.hero__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
}
.hero__bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,255,255,.04);
  display: inline-block;
}
.hero__leads-row strong {
  font-size: .85rem;
  display: block;
}
.hero__leads-row em {
  font-style: normal;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}
.hero__time {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}

.hero__card--app {
  top: 0;
  right: -10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 9s ease-in-out infinite -4s;
}
.hero__app-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.hero__card--app strong {
  display: block;
  font-size: .9rem;
}
.hero__card--app em {
  font-style: normal;
  font-size: .76rem;
  color: rgba(255,255,255,.6);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--white);
  animation: scrollDot 1.8s var(--easing) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { height: 460px; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__visual { height: 420px; }
  .hero__card--main { right: 0; height: 320px; }
  .hero__card--leads { width: 240px; left: -10px; }
}
@media (max-width: 560px) {
  .hero__cta .btn--link { display: none; }
  .hero__visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }
  .hero__card,
  .hero__card--main,
  .hero__card--float,
  .hero__card--leads,
  .hero__card--app {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    animation: none;
  }
  .hero__card--main { padding: 18px; }
  .hero__chart { height: 90px; }
  .hero__metric {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: left;
  }
  .hero__metric strong { font-size: 1.5rem; }
  .hero__metric .up { justify-self: start; }
  .hero__card--app { padding: 14px 16px; }
}

/* ============================================================
   TRUST / MARQUEE
   ============================================================ */
.trust {
  background: var(--gray-50);
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-100);
}
.trust__label {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 36px;
  animation: marquee 35s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray-400);
}
.marquee__track span:nth-child(odd) {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about__media {
  position: relative;
  height: 540px;
}
.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about__img--1 {
  width: 70%;
  height: 70%;
  top: 0;
  right: 0;
}
.about__img--2 {
  width: 55%;
  height: 50%;
  bottom: 0;
  left: 0;
  border: 6px solid var(--white);
}
.about__badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.about__badge strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.about__badge span {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 36px;
}
.pillar {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), border-color .25s var(--easing);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.pillar__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pillar h4 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.pillar p {
  font-size: .9rem;
  color: var(--gray-600);
  margin: 0;
}

@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__media { height: 460px; max-width: 560px; }
}
@media (max-width: 640px) {
  .about__pillars { grid-template-columns: 1fr; }
  .about__media { height: 400px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--gray-50);
}

.services__group {
  margin-bottom: 70px;
}
.services__group:last-child { margin-bottom: 0; }

.services__group-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 6px 20px;
  margin-bottom: 32px;
  align-items: center;
}
.services__num {
  grid-row: 1 / 3;
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -.04em;
}
.services__group-head h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0;
}
.services__group-head p {
  color: var(--gray-600);
  margin: 0;
  font-size: 1rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.svc {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s var(--easing);
  overflow: hidden;
}
.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s var(--easing);
  pointer-events: none;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc:hover::before { opacity: 1; }

.svc__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(124, 58, 237, .25);
}
.svc h4 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.svc p {
  font-size: .92rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}
.svc--cta { background: var(--navy-900); color: var(--white); border-color: transparent; }
.svc--cta h4 { color: var(--white); }
.svc--cta p { color: rgba(255,255,255,.7); }
.svc__link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--gold-500);
  font-size: .9rem;
}
.svc__link:hover { color: var(--orange-500); }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__num { font-size: 2.5rem; }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: var(--white);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.product {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product__head {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.product__head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.15) 0, transparent 40%);
}
.product__head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.product__icon {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,.28), 0 0 0 4px rgba(255,255,255,.08);
  transition: transform .35s var(--easing);
  z-index: 1;
}
.product:hover .product__icon {
  transform: translateY(-4px) scale(1.03);
}
.product__icon--img {
  background: var(--white);
  border-color: transparent;
  padding: 10px;
}
.product__icon--img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.product__rating {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.product__body {
  padding: 26px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
}
.product__body > p {
  color: var(--gray-600);
  margin: 0 0 14px;
  font-size: .9rem;
}
.product__features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.product__features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  font-size: .9rem;
  color: var(--gray-700);
}
.product__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--grad-brand-soft);
  border-radius: 50%;
}
.product__features li::after {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--purple-500);
  border-bottom: 2px solid var(--purple-500);
  transform: rotate(-45deg);
}
.product__store {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  font-size: .82rem;
  transition: transform .2s var(--easing), background .2s var(--easing);
}
.store:hover {
  transform: translateY(-2px);
  background: var(--navy-700);
}
.store em {
  font-style: normal;
  display: block;
  font-size: .65rem;
  opacity: .8;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.store strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
}
.store--combined {
  flex: 1;
  justify-content: center;
  background: var(--navy-900);
  padding: 12px 18px;
}
.store--combined:hover {
  background: var(--navy-700);
}

.store--badges {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  height: 100px;
  transition: transform .2s var(--easing), box-shadow .2s var(--easing), border-color .2s var(--easing);
}
.store--badges img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.store--badges:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--purple-500);
}
.store__icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-right: 4px;
  border-right: 1px solid rgba(255,255,255,.18);
  margin-right: 4px;
}

@media (max-width: 768px) {
  .products__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .product__head { height: 220px; padding: 22px; }
  .product__icon { width: 120px; height: 120px; border-radius: 24px; }
}

.products__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .products__grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products__grid--3col { grid-template-columns: 1fr; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.25), transparent 70%);
  filter: blur(80px);
  top: -200px; right: -200px;
  pointer-events: none;
}
.why .container { position: relative; z-index: 1; }
.why .section__title { color: var(--white); }
.why .section__sub { color: rgba(255,255,255,.7); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why__card {
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  transition: transform .3s var(--easing), background .3s var(--easing), border-color .3s var(--easing);
}
.why__card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  border-color: rgba(124, 58, 237, .4);
}
.why__num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.why__card h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 10px;
}
.why__card p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  background: var(--white);
}
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
}
.chip {
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
  transition: all .2s var(--easing);
}
.chip:hover {
  border-color: var(--purple-500);
  color: var(--purple-500);
}
.chip--active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  transition: transform .35s var(--easing);
}
.case:hover { transform: translateY(-6px); }
.case.is-hidden { display: none; }

.case__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--easing);
}
.case:hover .case__media { transform: scale(1.08); }
.case::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,16,31,.95) 100%);
  z-index: 1;
}
.case__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--white);
}
.case__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  margin-bottom: 12px;
}
.case__overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0 0 6px;
}
.case__overlay p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--easing), margin-top .35s var(--easing);
}
.case:hover .case__overlay p {
  max-height: 80px;
}

.case--feat {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

@media (max-width: 900px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .case { height: 280px; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  padding: clamp(60px, 7vw, 90px) 0;
  background: var(--grad-brand);
  color: var(--white);
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,0,0,.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,.18), transparent 60%);
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
}
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
}
.stat span {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  display: inline-block;
  vertical-align: baseline;
  line-height: 1;
}
.stat em {
  display: block;
  font-style: normal;
  margin-top: 10px;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .9;
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__grid .stat:nth-child(n+4) { grid-column: span 1; }
  .stats__grid .stat:last-child { grid-column: span 3; }
}
@media (max-width: 540px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid .stat:nth-child(n+4) { grid-column: span 1; }
  .stats__grid .stat:last-child { grid-column: span 2; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--gray-50);
}

.t-slider {
  max-width: 920px;
  margin: 0 auto;
}
.t-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.t-slider__track {
  display: flex;
  transition: transform .6s var(--easing);
}
.t-slide {
  flex: 0 0 100%;
  background: var(--white);
  padding: clamp(36px, 5vw, 56px);
  border-radius: var(--radius-lg);
  position: relative;
}
.t-slide::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-family: var(--font-head);
  font-size: 8rem;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  pointer-events: none;
}
.t-slide__quote {
  position: relative;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--navy-900);
  font-weight: 500;
  margin-bottom: 26px;
}
.t-slide__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-slide__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-head);
}
.t-slide__author strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  display: block;
  color: var(--navy-900);
}
.t-slide__author em {
  font-style: normal;
  font-size: .85rem;
  color: var(--gray-600);
}

.t-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.t-slider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--easing);
}
.t-slider__btn:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: transparent;
}
.t-slider__dots {
  display: flex;
  gap: 8px;
}
.t-slider__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: all .2s var(--easing);
  padding: 0;
}
.t-slider__dots button.is-active {
  background: var(--grad-brand);
  width: 28px;
  border-radius: 4px;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--white);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.member {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing);
}
.member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.member__photo {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.member__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,16,31,.4) 100%);
}
.member__body {
  padding: 24px;
}
.member__body h4 {
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.member__body span {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.member__body p {
  margin: 0;
  font-size: .9rem;
  color: var(--gray-600);
}

@media (max-width: 900px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team__grid { grid-template-columns: 1fr; } }

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights {
  background: var(--gray-50);
}
.insights__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
}
.post {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post__media {
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.post__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post__cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.post h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  line-height: 1.35;
}
.post p {
  font-size: .9rem;
  color: var(--gray-600);
  margin: 0 0 14px;
}
.post__link {
  margin-top: auto;
  font-weight: 600;
  font-size: .9rem;
  color: var(--purple-500);
}
.post__link:hover { color: var(--orange-500); }

.post--feature {
  grid-row: 1 / 3;
}
.post--feature .post__media { height: 100%; min-height: 280px; flex: 1; }
.post--feature h3 { font-size: 1.5rem; }

@media (max-width: 1024px) {
  .insights__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .post--feature { grid-row: auto; grid-column: span 2; }
  .post--feature .post__media { height: 240px; min-height: 0; flex: 0 0 auto; }
}
@media (max-width: 600px) {
  .insights__grid { grid-template-columns: 1fr; }
  .post--feature { grid-column: span 1; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .3), transparent 70%);
  filter: blur(80px);
  top: -250px; left: -200px;
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, .18), transparent 70%);
  filter: blur(80px);
  bottom: -200px; right: -200px;
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info .section__title { color: var(--white); }
.contact__info .lead { color: rgba(255,255,255,.75); }

.contact__list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact__list em {
  display: block;
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}
.contact__list a, .contact__list span {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.contact__list a:hover { color: var(--gold-500); }

.contact__map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,.1);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg);
}

.contact__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.contact__form h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 0 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s var(--easing), background .2s var(--easing);
  resize: vertical;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field select option { background: var(--navy-900); color: var(--white); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple-500);
  background: rgba(255,255,255,.08);
}

.contact__success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(52, 211, 153, .15);
  border: 1px solid rgba(52, 211, 153, .3);
  color: #34d399;
  border-radius: 12px;
  font-size: .9rem;
}
.contact__success.is-show { display: block; }

.contact__fineprint {
  margin-top: 12px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}

@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--navy-900);
  padding: clamp(48px, 6vw, 70px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: .12;
}
.cta-strip__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 6px;
}
.cta-strip p {
  margin: 0;
  color: rgba(255,255,255,.7);
}
.cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.7);
  padding: clamp(60px, 7vw, 90px) 0 0;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
/* Logo with gradient — keep colors */
.footer__brand .footer__logo { filter: none; }
.footer__brand p {
  margin-bottom: 22px;
  line-height: 1.7;
  max-width: 380px;
}
.footer__certs {
  margin: 22px 0 24px;
}
.footer__certs-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__certs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: background .25s var(--easing), border-color .25s var(--easing), transform .25s var(--easing);
  white-space: nowrap;
}
.cert:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}
.cert__icon {
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 2px;
}
@media (max-width: 540px) {
  .cert { font-size: .76rem; padding: 7px 12px 7px 8px; }
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .2s var(--easing);
}
.footer__social a:hover {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.footer__col h5 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__col li {
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--gold-500); }
.footer__contact li { color: rgba(255,255,255,.7); line-height: 1.6; }

.footer__bottom {
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.footer__bottom ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 22px;
}
.footer__bottom a:hover { color: var(--white); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom-inner { flex-direction: column; }
}

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.float {
  position: fixed;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 90;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .25s var(--easing-bounce);
}
.float:hover { transform: scale(1.08); }
.float--wa {
  bottom: 24px;
  background: #25d366;
}
.float--wa::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: .6;
  animation: pulse 2s var(--easing) infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.float--call {
  bottom: 92px;
  background: var(--grad-brand);
  display: none;
}
@media (max-width: 768px) {
  .float--call { display: inline-flex; }
}

.back-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s var(--easing), transform .25s var(--easing), background .25s var(--easing);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  pointer-events: none;
}
.back-top.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover { background: var(--purple-500); }

@media (max-width: 540px) {
  .float { width: 50px; height: 50px; right: 16px; }
  .float--call { bottom: 80px; }
  .float--wa { bottom: 16px; }
  .back-top { display: none; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--easing), transform .8s var(--easing);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   PAGE BANNER (used on every interior page)
   ============================================================ */
.page-banner {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 90px);
  overflow: hidden;
  text-align: center;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
.page-banner__glow1,
.page-banner__glow2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .45;
  pointer-events: none;
  animation: glowFloat 14s ease-in-out infinite;
}
.page-banner__glow1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -100px; left: -80px;
}
.page-banner__glow2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -160px; right: -100px;
  animation-delay: -5s;
}
.page-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.page-banner .eyebrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
}
.page-banner__title {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -.025em;
}
.page-banner__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.72);
  max-width: 660px;
  margin: 0 auto 22px;
  line-height: 1.65;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb__sep {
  color: rgba(255,255,255,.3);
}
.breadcrumb__current {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* ============================================================
   PROCESS / TIMELINE
   ============================================================ */
.process {
  background: var(--white);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .25), rgba(6, 182, 212, .25), rgba(245, 158, 11, .25), transparent);
}
.step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.step__num {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy-900);
  z-index: 1;
  transition: transform .25s var(--easing), border-color .25s var(--easing);
}
.step:hover .step__num {
  transform: scale(1.08);
  border-color: transparent;
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(124, 58, 237, .35);
}
.step h4 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.step p {
  font-size: .9rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
}
@media (max-width: 480px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VALUES (about page)
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s var(--easing);
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(124, 58, 237, .25);
}
.value h4 { font-size: 1.2rem; margin: 0 0 10px; }
.value p { color: var(--gray-600); margin: 0; }
@media (max-width: 900px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ (contact page)
   ============================================================ */
.faq {
  background: var(--gray-50);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s var(--easing), box-shadow .25s var(--easing);
}
.faq__item[open] {
  border-color: transparent;
  box-shadow: var(--shadow);
}
.faq__q {
  padding: 22px 24px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform .25s var(--easing);
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 24px 22px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   INSIGHTS — premium SaaS-style article grid
   ============================================================ */
.insights-pro {
  background: var(--white);
  padding: clamp(72px, 9vw, 130px) 0;
}
.insights-pro__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}
.insights-pro__title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  margin-bottom: .6em;
  letter-spacing: -.025em;
}
.insights-pro__sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Filter chips */
.insights-pro__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 56px);
  padding: 6px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
}
.i-chip {
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--gray-600);
  white-space: nowrap;
  transition: color .25s var(--easing), background .25s var(--easing), box-shadow .25s var(--easing);
}
.i-chip:hover {
  color: var(--navy-900);
}
.i-chip--active {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 6px 16px rgba(10, 22, 40, .18);
}
@media (max-width: 720px) {
  .insights-pro__filters {
    max-width: 100%;
    padding: 6px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border-radius: 16px;
  }
  .i-chip { flex-shrink: 0; }
}

/* Grid */
.insights-pro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Article card */
.i-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition:
    transform .4s var(--easing),
    box-shadow .4s var(--easing),
    border-color .4s var(--easing);
}
.i-card.is-hidden { display: none; }
.i-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 22, 40, .10), 0 6px 14px rgba(10, 22, 40, .06);
  border-color: transparent;
}

.i-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  flex-shrink: 0;
}
.i-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(7,16,31,.65) 100%);
  z-index: 1;
}
.i-card__cat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: var(--grad-brand);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(124, 58, 237, .35);
  backdrop-filter: blur(8px);
}

.i-card__body {
  padding: 26px 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.i-card__body h3 {
  font-size: 1.12rem;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--navy-900);
  letter-spacing: -.01em;
  transition: color .25s var(--easing);
}
.i-card:hover .i-card__body h3 {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.i-card__body p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.i-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.i-card__time {
  font-size: .78rem;
  color: var(--gray-500);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.i-card__time::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
}
.i-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy-900);
  transition: gap .25s var(--easing), color .25s var(--easing);
}
.i-card__cta:hover {
  gap: 10px;
  color: var(--purple-500);
}
.i-card__cta-arrow {
  transition: transform .25s var(--easing);
}
.i-card:hover .i-card__cta-arrow {
  transform: translateX(4px);
}

/* Featured card — spans 2 cols x 2 rows, dark theme */
.i-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--navy-950);
  color: var(--white);
  border-color: transparent;
}
.i-card--featured .i-card__media {
  aspect-ratio: 21 / 10;
}
.i-card--featured .i-card__media::before {
  background: linear-gradient(180deg, transparent 30%, rgba(7,16,31,.85) 100%);
}
.i-card--featured .i-card__cat {
  bottom: 24px;
  left: 24px;
  padding: 8px 18px;
  font-size: .72rem;
}
.i-card--featured .i-card__body {
  padding: 36px 36px 32px;
}
.i-card--featured .i-card__body h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.i-card--featured:hover .i-card__body h3 {
  -webkit-text-fill-color: transparent;
}
.i-card--featured .i-card__body p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.i-card--featured .i-card__meta {
  border-top-color: rgba(255,255,255,.1);
  padding-top: 22px;
}
.i-card--featured .i-card__time {
  color: rgba(255,255,255,.5);
}
.i-card--featured .i-card__cta {
  color: var(--white);
  font-size: 1rem;
}
.i-card--featured .i-card__cta:hover {
  color: var(--gold-500);
}

/* Responsive grid */
@media (max-width: 1024px) {
  .insights-pro__grid { grid-template-columns: repeat(2, 1fr); }
  .i-card--featured { grid-column: span 2; grid-row: span 1; }
  .i-card--featured .i-card__media { aspect-ratio: 21 / 9; }
}
@media (max-width: 640px) {
  .insights-pro__grid { grid-template-columns: 1fr; }
  .i-card--featured { grid-column: span 1; }
  .i-card--featured .i-card__body { padding: 26px 22px 22px; }
  .i-card--featured .i-card__body h3 { font-size: 1.35rem; }
  .i-card--featured .i-card__body p { font-size: .95rem; }
}

/* ============================================================
   NEWSLETTER (insights page)
   ============================================================ */
.newsletter {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: .12;
}
.newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}
.newsletter p {
  color: rgba(255,255,255,.75);
  margin-bottom: 22px;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: var(--white);
  outline: none;
  transition: border-color .2s var(--easing);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter__form input:focus {
  border-color: var(--purple-500);
  background: rgba(255,255,255,.1);
}
.newsletter__success {
  display: none;
  width: 100%;
  margin: 14px 0 0;
  padding: 12px 18px;
  background: rgba(52, 211, 153, .15);
  border: 1px solid rgba(52, 211, 153, .3);
  color: #34d399;
  border-radius: 999px;
  font-size: .9rem;
  text-align: center;
}
.newsletter__success.is-show { display: block; }

/* ============================================================
   PRODUCT DETAIL (products page)
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.product-detail:nth-child(even) {
  direction: rtl;
}
.product-detail:nth-child(even) > * { direction: ltr; }
.product-detail__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-detail__phone {
  position: relative;
  width: 70%;
  aspect-ratio: 9 / 18;
  background: var(--navy-950);
  border-radius: 36px;
  border: 8px solid #1a1f2e;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  overflow: hidden;
  padding: 12px;
}
.product-detail__phone-screen {
  width: 100%; height: 100%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 24px;
  text-align: center;
}
.product-detail__phone-screen svg {
  margin-bottom: 18px;
}
.product-detail__phone-screen strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.product-detail__phone-screen em {
  font-style: normal;
  font-size: .8rem;
  opacity: .85;
  margin-top: 4px;
}

.product-detail__content h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 14px;
}
.product-detail__content > p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.product-detail__features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-detail__features li {
  position: relative;
  padding-left: 30px;
  font-size: .92rem;
  color: var(--gray-700);
}
.product-detail__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  background: var(--grad-brand-soft);
  border-radius: 6px;
}
.product-detail__features li::after {
  content: '';
  position: absolute;
  left: 6px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--purple-500);
  border-bottom: 2px solid var(--purple-500);
  transform: rotate(-45deg);
}
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 36px; }
  .product-detail:nth-child(even) { direction: ltr; }
  .product-detail__phone { width: 60%; max-width: 280px; }
  .product-detail__features { grid-template-columns: 1fr; }
}

/* ============================================================
   ARTICLE (insights page extra grid)
   ============================================================ */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .articles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .articles__grid { grid-template-columns: 1fr; } }

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .announce { font-size: .78rem; }
  .nav__inner { gap: 10px; }
  .nav__logo img { height: 34px; }
  .hero__pill { font-size: .72rem; padding: 6px 12px; }
  .section__head { margin-bottom: 36px; }
  .btn { padding: 11px 18px; font-size: .88rem; }
  .btn--lg { padding: 14px 24px; font-size: .92rem; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 2.1rem; }
  .hero__stats { gap: 8px 14px; }
  .hero__stats em { font-size: .72rem; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__grid .stat:last-child { grid-column: span 1; }
}

/* Lazy background image placeholder */
[data-bg] {
  background-color: var(--gray-100);
  background-image: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);
}

/* ============================================================
   LEGAL / POLICY PAGES (privacy, terms, cookies)
   ============================================================ */
.policy {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--white);
}
.policy__doc {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
}
.policy__doc h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  margin: 2.4em 0 .5em;
  color: var(--navy-900);
  letter-spacing: -.01em;
}
.policy__doc h2:first-of-type { margin-top: 0; }
.policy__doc h3 {
  font-size: 1.1rem;
  margin: 1.6em 0 .4em;
  color: var(--navy-900);
}
.policy__doc p { margin: 0 0 1em; }
.policy__doc ul, .policy__doc ol {
  margin: 0 0 1.2em 1.2em;
  padding: 0;
}
.policy__doc li { margin-bottom: .45em; }
.policy__doc strong { color: var(--navy-900); }
.policy__doc a {
  color: var(--purple-500);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.policy__doc a:hover { color: var(--orange-500); }
.policy__meta {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: .8rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  font-weight: 500;
}

/* ============================================================
   GLOBAL RESPONSIVE SAFETY (no horizontal scroll, ultra-small screens)
   ============================================================ */
html, body { max-width: 100vw; overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; }
table { max-width: 100%; }

@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .nav__logo img { height: 30px; }
  .btn--sm { padding: 8px 14px; font-size: .78rem; }
  .nav__inner { gap: 8px; }
  .nav__actions { gap: 6px; }
  .hero__title { font-size: 1.8rem; }
  .hero__sub { font-size: .92rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__visual { height: 320px; }
  .hero__card--main { height: 240px; padding: 14px; }
  .hero__card--leads { width: 200px; left: -6px; padding: 12px; }
  .hero__card--app { padding: 10px 14px; gap: 10px; }
  .hero__app-icon { width: 38px; height: 38px; }
  .insights-pro__filters { padding: 4px; }
  .i-chip { padding: 8px 14px; font-size: .8rem; }
  .product__head { height: 140px; padding: 18px; }
  .product__icon { width: 56px; height: 56px; }
  .products__grid--3col .product__head { height: 200px; }
  .products__grid--3col .product__icon { width: 110px; height: 110px; }
  .store--badges { height: 80px; padding: 12px 14px; }
  .section__title { font-size: 1.7rem; }
  .insights-pro__title { font-size: 1.7rem; }
  .page-banner__title { font-size: 1.9rem; }
  .cta-strip h3 { font-size: 1.3rem; }
  .contact__form { padding: 22px; }
  .field input, .field select, .field textarea { padding: 11px 12px; font-size: .95rem; }
  .footer__brand p { font-size: .88rem; }
  .footer__col h5 { font-size: .92rem; }
  .float { width: 46px; height: 46px; right: 14px; }
  .float--call { bottom: 72px; }
  .float--wa { bottom: 14px; }
}
