:root {
      --dark: #0b0612;
      --dark-2: #140b22;
      --light: #f6f0ff;
      --light-2: #fffaf2;
      --text: #f7f3ff;
      --text-dark: #1a1126;
      --muted: #b9acd6;
      --muted-dark: #5f4e7a;
      --accent: #b56bff;
      --accent-2: #7b5cff;
      --accent-3: #ff8ad8;
      --border-dark: rgba(255, 255, 255, 0.08);
      --border-light: rgba(26, 17, 38, 0.12);
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
      --glow: 0 0 40px rgba(181, 107, 255, 0.35);
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: radial-gradient(1400px 900px at 10% 5%, rgba(123, 92, 255, 0.22), transparent 72%),
    radial-gradient(1600px 1100px at 85% 10%, rgba(255, 138, 216, 0.18), transparent 72%),
    radial-gradient(1800px 1200px at 50% 70%, rgba(123, 92, 255, 0.18), transparent 75%),
    radial-gradient(1400px 1000px at 90% 90%, rgba(181, 107, 255, 0.16), transparent 70%),
    var(--dark);
  color: var(--text);
  line-height: 1.6;
}

    [data-theme="light"] {
      --dark: #f7f8fb;
      --dark-2: #ffffff;
      --light: #f7f8fb;
      --light-2: #ffffff;
      --text: #0f172a;
      --text-dark: #0f172a;
      --muted: #6b7280;
      --muted-dark: #6b7280;
      --border-dark: #e5e7eb;
      --border-light: #e5e7eb;
      --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    }

[data-theme="light"] body {
  background: radial-gradient(1200px 900px at 10% 0%, rgba(181, 107, 255, 0.12), transparent 72%),
    radial-gradient(1400px 1000px at 85% 20%, rgba(123, 92, 255, 0.1), transparent 72%),
    var(--dark);
}

img {
  max-width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}

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

    .container {
      width: min(1200px, 92vw);
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(12px);
      background: rgba(11, 6, 18, 0.85);
      border-bottom: 1px solid var(--border-dark);
    }

    [data-theme="light"] .nav {
      background: rgba(255, 255, 255, 0.85);
      border-bottom: 1px solid var(--border-light);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
      gap: 16px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .brand img {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      box-shadow: var(--shadow);
    }

    .nav-links {
      display: flex;
      gap: 18px;
      font-size: 14px;
      color: var(--muted);
    }

.nav-links a.is-active {
  color: var(--text);
  position: relative;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--glow);
}

.lang-switch {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .lang-switch {
  border-color: var(--border-light);
  color: var(--text);
  background: #ffffff;
}

    [data-theme="light"] .nav-links {
      color: var(--muted);
    }

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

    .theme-toggle {
      width: 42px;
      height: 42px;
      padding: 0;
      border-radius: 999px;
      border: 1px solid var(--border-dark);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      display: grid;
      place-items: center;
    }

    [data-theme="light"] .theme-toggle {
      border-color: var(--border-light);
      color: var(--text);
      background: #ffffff;
    }

    .theme-toggle svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

section {
  padding: 70px 0;
}

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.75s ease, transform 0.75s ease;
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    .section-title {
      display: grid;
      gap: 10px;
      margin-bottom: 34px;
    }

    .section-title h2 {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      margin: 0;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      max-width: 720px;
    }

    .section-title.center {
      text-align: center;
      justify-items: center;
    }

    .muted {
      color: var(--muted-dark);
      font-size: 0.92rem;
    }

    .spark {
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1em;
      margin-left: 6px;
    }

    .pill {
      display: inline-flex;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(181, 107, 255, 0.2);
      color: var(--accent);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    .btn {
      padding: 12px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
    }

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #ffffff;
  box-shadow: var(--glow);
}

.btn-primary:visited {
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #ffffff;
}

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.18);
      color: var(--text);
      background: rgba(255, 255, 255, 0.03);
    }

    .hero {
      padding: 90px 0 50px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      align-items: center;
    }

    .hero h1 {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: clamp(2.5rem, 4vw, 4.2rem);
      line-height: 1.05;
      margin: 0 0 16px;
    }

    .hero p {
      margin: 0 0 24px;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-actions.center {
      justify-content: center;
    }


    .avatar-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .avatars {
      display: flex;
    }

    .avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(130deg, rgba(181, 107, 255, 0.8), rgba(255, 138, 216, 0.7));
      border: 2px solid var(--dark);
      margin-left: -8px;
      position: relative;
      overflow: hidden;
    }

    .avatar:first-child {
      margin-left: 0;
    }

    .avatar::before {
      content: "";
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      top: 7px;
      left: 50%;
      transform: translateX(-50%);
    }

    .avatar::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 10px;
      border-radius: 12px 12px 6px 6px;
      background: rgba(255, 255, 255, 0.9);
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
    }

    .hero-media {
      background: rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-dark);
      padding: 22px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 18px;
    }

    [data-theme="light"] .hero-media {
      background: #ffffff;
      border-color: var(--border-light);
    }

.media-photo {
  min-height: 240px;
  border-radius: 20px;
  background: #f6f5fb;
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  padding: 18px;
  color: #111827;
}

[data-theme="light"] .media-photo {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
}

.chart-canvas {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: stretch;
  height: 220px;
  overflow: hidden;
}

.chart-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.55);
}

.chart-plot {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(248, 249, 255, 0.95) 0%, #ffffff 65%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.chart-plot::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.08) 0,
    rgba(15, 23, 42, 0.08) 1px,
    transparent 1px,
    transparent 44px
  );
  pointer-events: none;
}

.chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.chart-line {
  fill: none;
  stroke: #2563eb;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: chart-draw 1.6s ease forwards;
}

.chart-line.alt {
  stroke: #f97316;
  stroke-dasharray: 6 6;
  opacity: 0.85;
  animation: chart-draw 1.6s ease forwards;
  animation-delay: 0.2s;
}

.chart-fill {
  fill: rgba(59, 130, 246, 0.18);
  opacity: 0;
  animation: chart-fill 1.2s ease forwards;
  animation-delay: 0.6s;
}

.chart-dot {
  position: absolute;
  left: 45%;
  top: 38%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #111827;
  background: #ffffff;
  z-index: 3;
}

.chart-vline {
  position: absolute;
  left: calc(45% + 5px);
  top: 14%;
  bottom: 12%;
  width: 2px;
  background: rgba(17, 24, 39, 0.5);
  z-index: 2;
}

.chart-tooltip {
  position: absolute;
  top: 10%;
  left: 30%;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  font-size: 0.85rem;
  z-index: 4;
}

.chart-tooltip strong {
  display: block;
  color: #2563eb;
  margin-top: 2px;
}

.chart-tooltip,
.chart-dot,
.chart-vline,
.chart-legend {
  opacity: 0;
  transform: translateY(6px);
  animation: chart-pop 0.6s ease forwards;
  animation-delay: 0.9s;
}

.chart-legend {
  animation-delay: 1s;
}

@keyframes chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes chart-fill {
  to {
    opacity: 1;
  }
}

@keyframes chart-pop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .chart-line,
  .chart-fill,
  .chart-tooltip,
  .chart-dot,
  .chart-vline,
  .chart-legend {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .chart-line {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

.chart-legend {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.7);
  z-index: 4;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(6px);
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: currentColor;
}

.chart-legend .legend-before {
  color: #f97316;
}

.chart-legend .legend-after {
  color: #2563eb;
}

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 12px;
    }

    .stat-box {
      padding: 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-dark);
      text-align: left;
    }

    [data-theme="light"] .stat-box {
      background: #ffffff;
      border-color: var(--border-light);
    }

    .stat-box strong {
      font-size: 1.2rem;
      display: block;
    }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.city-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

[data-theme="light"] .city-tag {
  background: #ffffff;
  border-color: var(--border-light);
  color: var(--muted-dark);
}

.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

    .logo-badge {
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      color: var(--muted);
      font-weight: 600;
      min-height: 44px;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    }

    .logo-badge img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
    }

    .logo-slider {
      position: relative;
      overflow: hidden;
      padding: 4px 0;
    }

    .logo-slider::before,
    .logo-slider::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 32px;
      z-index: 2;
      pointer-events: none;
    }

    .logo-slider::before {
      left: 0;
      background: linear-gradient(90deg, rgba(11, 6, 18, 0.3) 0%, rgba(11, 6, 18, 0) 100%);
    }

    .logo-slider::after {
      right: 0;
      background: linear-gradient(270deg, rgba(11, 6, 18, 0.3) 0%, rgba(11, 6, 18, 0) 100%);
    }

    [data-theme="light"] .logo-slider::before {
      background: linear-gradient(90deg, rgba(247, 248, 251, 0.55) 0%, rgba(247, 248, 251, 0) 100%);
    }

    [data-theme="light"] .logo-slider::after {
      background: linear-gradient(270deg, rgba(247, 248, 251, 0.55) 0%, rgba(247, 248, 251, 0) 100%);
    }

    .logo-track {
      display: flex;
      gap: 14px;
      width: max-content;
      align-items: center;
      animation: marquee 28s linear infinite;
    }

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

    .logo-slider .logo-badge {
      min-width: 150px;
      white-space: nowrap;
    }


    [data-theme="light"] .logo-slider .logo-badge {
      background: #ffffff;
      border-color: var(--border-light);
      color: var(--muted);
    }

    .logo-badge--meta:hover,
    .logo-badge--meta:focus-visible {
      background: #1877f2;
      border-color: #1877f2;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .logo-badge--google:hover,
    .logo-badge--google:focus-visible {
      background: #34a853;
      border-color: #34a853;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .logo-badge--datastudio:hover,
    .logo-badge--datastudio:focus-visible {
      background: #f9ab00;
      border-color: #f9ab00;
      color: #1b1400;
      transform: translateY(-2px);
    }

.section-light {
  background: transparent;
  color: var(--text);
}

    .section-light .section-title p {
      color: var(--muted);
    }

    .section-light .pill {
      background: rgba(181, 107, 255, 0.2);
      color: var(--accent);
    }

    .section-light .btn-ghost {
      border-color: rgba(255, 255, 255, 0.18);
      color: var(--text);
      background: rgba(255, 255, 255, 0.03);
    }

    .section-light .stat-box {
      background: rgba(255, 255, 255, 0.04);
      border-color: var(--border-dark);
    }

    .section-light .logo-badge {
      background: rgba(255, 255, 255, 0.04);
      border-color: var(--border-dark);
      color: var(--muted);
    }

    .section-light .avatar {
      border-color: var(--dark);
    }

[data-theme="light"] .section-light {
  background: transparent;
  color: var(--text-dark);
}

    [data-theme="light"] .section-light .section-title p {
      color: var(--muted-dark);
    }

    [data-theme="light"] .section-light .pill {
      background: rgba(123, 92, 255, 0.16);
      color: #5a3d94;
    }

    [data-theme="light"] .section-light .btn-ghost {
      border-color: rgba(26, 17, 38, 0.2);
      color: var(--text-dark);
      background: transparent;
    }

    [data-theme="light"] .section-light .stat-box {
      background: #ffffff;
      border-color: var(--border-light);
    }

    [data-theme="light"] .section-light .logo-badge {
      background: #ffffff;
      border-color: var(--border-light);
      color: var(--muted-dark);
    }

    [data-theme="light"] .section-light .avatar {
      border-color: #ffffff;
    }

.growth-system {
  background: transparent;
}

[data-theme="light"] .growth-system {
  background: transparent;
}

    .growth-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 26px;
    }

    .step-card {
      --step-accent: rgba(123, 92, 255, 0.45);
      --step-accent-strong: rgba(123, 92, 255, 0.9);
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      border: 1px solid var(--border-dark);
      padding: 18px;
      display: grid;
      gap: 12px;
      min-height: 240px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .step-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(120% 120% at 0% 0%, var(--step-accent), transparent 60%);
      opacity: 0.7;
      pointer-events: none;
    }

    .step-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.08);
      color: var(--step-accent-strong);
      display: grid;
      place-items: center;
      position: relative;
      z-index: 2;
    }

    .step-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .step-card h3,
    .step-card p,
    .step-foot {
      position: relative;
      z-index: 2;
    }

    .step-card p {
      color: var(--muted);
    }

    .step-foot {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--step-accent-strong);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .step-foot::before {
      content: "✓";
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      display: grid;
      place-items: center;
      font-size: 0.85rem;
    }

    [data-theme="light"] .step-card {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    [data-theme="light"] .step-card p {
      color: var(--muted-dark);
    }


    .highlight-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
      align-items: center;
    }

    .photo-card {
      border-radius: var(--radius-lg);
      background: linear-gradient(140deg, rgba(123, 92, 255, 0.3), rgba(11, 6, 18, 0.8));
      min-height: 260px;
      position: relative;
      overflow: hidden;
    }

    .photo-card::after {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 18px;
      border: 1px dashed rgba(255, 255, 255, 0.3);
    }

    .mini-stats {
      display: grid;
      gap: 14px;
    }

    .mini-stat {
      padding: 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-dark);
      box-shadow: var(--shadow);
    }


    [data-theme="light"] .mini-stat {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 18px 40px rgba(26, 17, 38, 0.08);
    }

.projects {
  background: transparent;
}

[data-theme="light"] .projects {
  background: transparent;
}

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
    }

    .project-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-dark);
      padding: 16px;
      min-height: 200px;
      display: grid;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    [data-theme="light"] .project-card {
      background: #ffffff;
      border-color: var(--border-light);
    }

    .project-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(123, 92, 255, 0.35), rgba(11, 6, 18, 0.65));
      opacity: 0.7;
    }

    [data-theme="light"] .project-card::after {
      opacity: 0;
    }

    .project-card h4,
    .project-card p {
      position: relative;
      z-index: 2;
    }

    .project-card p {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .social-proof-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
    }

    .social-proof-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 18px;
      border: 1px solid var(--border-dark);
      padding: 10px;
      box-shadow: var(--shadow);
    }

    .social-proof-card img {
      width: 100%;
      height: auto;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      border-radius: 14px;
      display: block;
    }

    [data-theme="light"] .social-proof-card {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

.work-slider {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.work-track {
  display: inline-flex;
  gap: 16px;
  width: max-content;
  align-items: center;
  animation: work-marquee 34s linear infinite;
}

.work-slider::-webkit-scrollbar {
  display: none;
}

.work-slider {
  scrollbar-width: none;
}

.work-slider:hover .work-track {
  animation-play-state: paused;
}

.work-slider.is-dragging .work-track {
  animation-play-state: paused;
}

.work-slider.is-dragging {
  cursor: grabbing;
}


@keyframes work-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.work-card {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border-dark);
      background: rgba(255, 255, 255, 0.03);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
      aspect-ratio: 9 / 16;
      width: clamp(180px, 22vw, 260px);
  transition: transform 0.25s ease, border-color 0.25s ease;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

    .work-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .work-card:hover {
      transform: translateY(-4px);
      border-color: rgba(181, 107, 255, 0.5);
    }

    [data-theme="light"] .work-card {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 16px 40px rgba(26, 17, 38, 0.08);
    }


.ads-section {
  background: transparent;
}

[data-theme="light"] .ads-section {
  background: transparent;
}

    .ads-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      align-items: center;
    }

    .ads-image {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 18px;
      border: 1px solid var(--border-dark);
      padding: 12px;
      box-shadow: var(--shadow);
    }

    .ads-image img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
    }

    [data-theme="light"] .ads-image {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

.special-section {
  background: transparent;
  text-align: center;
}

[data-theme="light"] .special-section {
  background: transparent;
}

    .special-wrap {
      display: grid;
      gap: 24px;
      align-items: center;
      justify-items: center;
    }

    .special-title {
      max-width: 820px;
      margin: 0 auto;
    }

    .special-title h2 {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      margin: 10px 0 12px;
    }

    .special-title p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .special-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 18px;
      width: 100%;
    }

    .special-card {
      background: rgba(255, 255, 255, 0.06);
      border-radius: 18px;
      border: 1px solid var(--border-dark);
      padding: 18px;
      display: grid;
      gap: 10px;
      align-items: center;
      justify-items: center;
      min-height: 140px;
      box-shadow: var(--shadow);
      text-align: center;
    }

    [data-theme="light"] .special-card {
      background: #ffffff;
      border-color: var(--border-light);
    }

    .special-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .special-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-weight: 700;
      color: var(--accent);
      background: rgba(181, 107, 255, 0.2);
      font-size: 0.75rem;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }

    .special-cta {
      margin-top: 8px;
    }

    .people-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    [data-theme="light"] .people-row {
      color: var(--muted-dark);
    }

    .process-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      position: relative;
      padding-top: 22px;
    }

    .confetti {
      position: absolute;
      inset: -16px;
      pointer-events: none;
      z-index: 2;
    }

    .confetti span {
      position: absolute;
      width: 8px;
      height: 14px;
      border-radius: 4px;
      opacity: 0;
      animation: confetti-burst 10s ease-in-out infinite;
    }

    .confetti span:nth-child(1) { --x: -40px; --y: -30px; background: var(--accent); left: 50%; top: 20%; }
    .confetti span:nth-child(2) { --x: 10px; --y: -36px; background: var(--accent-2); left: 58%; top: 18%; }
    .confetti span:nth-child(3) { --x: 36px; --y: -20px; background: var(--accent-3); left: 62%; top: 26%; }
    .confetti span:nth-child(4) { --x: -30px; --y: 22px; background: var(--accent-2); left: 46%; top: 34%; }
    .confetti span:nth-child(5) { --x: 26px; --y: 28px; background: var(--accent); left: 60%; top: 38%; }
    .confetti span:nth-child(6) { --x: -18px; --y: -6px; background: var(--accent-3); left: 44%; top: 22%; }

    @keyframes confetti-burst {
      0%, 70% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.6);
      }
      78% {
        opacity: 1;
      }
      86% {
        opacity: 0;
        transform: translate(var(--x), var(--y)) rotate(120deg) scale(1);
      }
      100% {
        opacity: 0;
      }
    }

    .testimonial-slider {
      position: relative;
      overflow: hidden;
    }

    .testimonial-slider::before,
    .testimonial-slider::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .testimonial-slider::before {
      left: 0;
      background: linear-gradient(90deg, rgba(20, 11, 34, 1) 0%, rgba(20, 11, 34, 0) 100%);
    }

    .testimonial-slider::after {
      right: 0;
      background: linear-gradient(270deg, rgba(20, 11, 34, 1) 0%, rgba(20, 11, 34, 0) 100%);
    }

    [data-theme="light"] .testimonial-slider::before {
      background: linear-gradient(90deg, rgba(247, 248, 251, 1) 0%, rgba(247, 248, 251, 0) 100%);
    }

    [data-theme="light"] .testimonial-slider::after {
      background: linear-gradient(270deg, rgba(247, 248, 251, 1) 0%, rgba(247, 248, 251, 0) 100%);
    }

    .testimonial-track {
      display: flex;
      gap: 18px;
      width: max-content;
      animation: marquee 40s linear infinite;
    }

    .testimonial {
      padding: 20px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-dark);
      box-shadow: var(--shadow);
      min-width: 260px;
      max-width: 320px;
      flex: 0 0 auto;
    }

    .testimonial p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .testimonial h4 {
      margin: 14px 0 4px;
      font-size: 1rem;
      color: var(--text);
    }

    [data-theme="light"] .testimonial {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 16px 36px rgba(26, 17, 38, 0.08);
    }

    [data-theme="light"] .testimonial p {
      color: var(--muted-dark);
    }

    [data-theme="light"] .testimonial h4 {
      color: var(--text-dark);
    }

    .testimonial-slider:hover .testimonial-track {
      animation-play-state: paused;
    }

    .faq-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .faq-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border-dark);
      border-radius: 18px;
      padding: 16px 18px;
      transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .faq-item:hover {
      background: rgba(181, 107, 255, 0.12);
      border-color: rgba(181, 107, 255, 0.4);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

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

    .faq-item summary::after {
      content: "+";
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--border-dark);
      color: var(--text);
      font-weight: 700;
      flex-shrink: 0;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .faq-item[open] summary::after {
      content: "–";
      background: rgba(181, 107, 255, 0.2);
      transform: rotate(180deg);
    }

    .faq-item p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    [data-theme="light"] .faq-item {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
    }

    [data-theme="light"] .faq-item:hover {
      background: rgba(123, 92, 255, 0.08);
      border-color: rgba(123, 92, 255, 0.25);
    }

    [data-theme="light"] .faq-item summary::after {
      background: #ffffff;
      border-color: var(--border-light);
      color: var(--text);
    }

    [data-theme="light"] .faq-item[open] summary::after {
      background: rgba(123, 92, 255, 0.14);
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .testimonial-track {
        animation: none;
      }

      .logo-track {
        animation: none;
      }

      .work-track {
        animation: none;
      }

      .confetti span {
        animation: none;
        opacity: 0;
      }
    }

 

.contact {
  background: transparent;
}

[data-theme="light"] .contact {
  background: transparent;
}

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
      margin-top: 24px;
    }

    .contact-card {
      padding: 18px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-dark);
    }

    [data-theme="light"] .contact-card {
      background: #ffffff;
      border-color: var(--border-light);
    }

    .contact-actions {
      display: grid;
      gap: 12px;
      margin-top: 16px;
    }

    .contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 12px;
      border: 1px solid var(--border-dark);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      font-weight: 600;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
      justify-content: center;
      text-align: center;
    }

    .contact-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    [data-theme="light"] .contact-btn {
      background: #ffffff;
      border-color: var(--border-light);
      color: var(--text);
    }

    .contact-btn:hover,
    .contact-btn:focus-visible {
      transform: translateY(-2px);
    }

    .contact-btn--phone:hover,
    .contact-btn--phone:focus-visible {
      background: #4f9dff;
      border-color: #4f9dff;
      color: #0b0f1a;
    }

    .contact-btn--whatsapp:hover,
    .contact-btn--whatsapp:focus-visible {
      background: #25d366;
      border-color: #25d366;
      color: #0b120b;
    }

    .contact-btn--instagram:hover,
    .contact-btn--instagram:focus-visible {
      background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
      border-color: transparent;
      color: #ffffff;
    }

    form {
      display: grid;
      gap: 12px;
    }

    input,
    textarea,
    select {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 12px 14px;
      background: rgba(12, 9, 18, 0.8);
      color: var(--text);
      font-family: inherit;
    }

    [data-theme="light"] input,
    [data-theme="light"] textarea,
    [data-theme="light"] select {
      background: #ffffff;
      color: var(--text);
      border: 1px solid var(--border-light);
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    body.lightbox-open {
      overflow: hidden;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(8, 6, 12, 0.86);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
      z-index: 120;
      padding: 32px 24px;
      overflow-y: auto;
    }

    .lightbox.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .lightbox img {
      width: min(92vw, 1200px);
      max-width: 100%;
      max-height: none;
      border-radius: 18px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
      background: #0b0612;
      margin-bottom: 32px;
    }

    .home-page .lightbox {
      align-items: center;
      overflow: hidden;
    }

    .home-page .lightbox img {
      width: min(92vw, 1080px);
      max-height: 88vh;
      margin-bottom: 0;
      object-fit: contain;
    }

    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 140;
      width: min(92vw, 760px);
      background: rgba(12, 9, 18, 0.92);
      border: 1px solid var(--border-dark);
      border-radius: 16px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .cookie-banner p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.4;
    }

    .cookie-banner .cookie-btn {
      border: none;
      border-radius: 999px;
      padding: 8px 16px;
      font-weight: 600;
      cursor: pointer;
      background: linear-gradient(120deg, var(--accent), var(--accent-2));
      color: #0b0612;
      white-space: nowrap;
      min-width: 110px;
      text-align: center;
    }

    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cookie-btn--reject {
      background: transparent;
      border: 1px solid var(--border-dark);
      color: var(--text);
    }

    .cookie-btn--accept {
      background: #25d366 !important;
      color: #0b120b;
    }

    .cookie-banner.is-hidden {
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 10px);
    }

    .cookie-settings {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 130;
      border-radius: 999px;
      border: 1px solid var(--border-dark);
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
      padding: 8px 14px;
      font-size: 0.85rem;
      cursor: pointer;
      opacity: 0.85;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .cookie-settings:hover {
      opacity: 1;
      transform: translateY(-2px);
    }

    [data-theme="light"] .cookie-banner {
      background: rgba(255, 255, 255, 0.95);
      border-color: var(--border-light);
    }

    [data-theme="light"] .cookie-btn--reject {
      border-color: var(--border-light);
      color: var(--text-dark);
    }

    [data-theme="light"] .cookie-settings {
      border-color: var(--border-light);
      background: #ffffff;
      color: var(--text-dark);
    }

    footer {
      padding: 30px 0 40px;
      color: var(--muted);
      font-size: 0.9rem;
      border-top: 1px solid var(--border-dark);
    }

    [data-theme="light"] footer {
      border-top: 1px solid var(--border-light);
    }

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

    .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.4;
      animation: float 12s ease-in-out infinite;
    }

    .shape.one {
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(181, 107, 255, 0.6), transparent 70%);
      top: 10%;
      right: 8%;
    }

    .shape.two {
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(123, 92, 255, 0.5), transparent 70%);
      bottom: 8%;
      left: 6%;
      animation-delay: -4s;
    }

    .shape.three {
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255, 138, 216, 0.38), transparent 70%);
      top: 40%;
      left: 40%;
      animation-delay: -8s;
    }

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

    .portfolio-hero {
      padding: 90px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .portfolio-header {
      display: grid;
      grid-template-columns: 1fr;
      gap: 36px;
      align-items: start;
    }

    .portfolio-kicker {
      text-transform: uppercase;
      letter-spacing: 0.35em;
      font-size: 0.75rem;
      font-weight: 700;
      color: #f4c16a;
    }

    .portfolio-copy h1 {
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: clamp(2.2rem, 3.6vw, 3.5rem);
      line-height: 1.1;
      margin: 10px 0 16px;
    }

    .portfolio-copy p {
      margin: 0;
      color: var(--muted);
      max-width: 640px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 40px;
      width: 100%;
    }

    .portfolio-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      border: 1px solid var(--border-dark);
      padding: 16px;
      display: grid;
      gap: 14px;
      min-height: 320px;
      min-width: 0;
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .portfolio-card:hover {
      transform: translateY(-4px);
      border-color: rgba(181, 107, 255, 0.45);
    }

    [data-theme="light"] .portfolio-card {
      background: #ffffff;
      border-color: var(--border-light);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    }

    .portfolio-media {
      position: relative;
      border-radius: 18px;
      min-height: 160px;
      padding: 14px;
      overflow: hidden;
      background: linear-gradient(155deg, rgba(15, 23, 42, 0.72), rgba(11, 6, 18, 0.92));
      border: 1px solid rgba(255, 255, 255, 0.08);
      width: 100%;
      max-width: 100%;
    }

    .portfolio-media--image {
      padding: 0;
      background: transparent;
      aspect-ratio: 16 / 10;
    }

    .portfolio-media--image::before,
    .portfolio-media--image::after {
      display: none;
    }

    .portfolio-media--image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      max-width: 100%;
      display: block;
    }

    .portfolio-media::before {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, var(--media-accent, rgba(181, 107, 255, 0.6)), transparent 70%);
      top: -40px;
      left: -40px;
      opacity: 0.9;
    }

    .portfolio-media::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      right: 18px;
      bottom: 20px;
      background: rgba(255, 255, 255, 0.03);
    }

    [data-theme="light"] .portfolio-media {
      background: #f6f7fb;
      border-color: var(--border-light);
    }

    [data-theme="light"] .portfolio-media::after {
      border-color: rgba(15, 23, 42, 0.12);
      background: rgba(15, 23, 42, 0.04);
    }

    .portfolio-lines {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 8px;
      margin-top: 14px;
    }

    .portfolio-lines span {
      height: 6px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.3);
      display: block;
    }

    .portfolio-lines span:nth-child(1) { width: 70%; }
    .portfolio-lines span:nth-child(2) { width: 52%; }
    .portfolio-lines span:nth-child(3) { width: 64%; }

    [data-theme="light"] .portfolio-lines span {
      background: rgba(15, 23, 42, 0.2);
    }

    .portfolio-mini {
      position: relative;
      z-index: 1;
      margin-top: 16px;
      width: 70%;
      height: 48px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 10px;
    }

    .portfolio-mini::after {
      content: "";
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--media-accent, rgba(181, 107, 255, 0.6));
    }

    [data-theme="light"] .portfolio-mini {
      background: rgba(15, 23, 42, 0.06);
      border-color: rgba(15, 23, 42, 0.12);
    }

    .portfolio-body h3 {
      margin: 0 0 6px;
      font-size: 1.2rem;
    }

    .portfolio-body p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .portfolio-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .portfolio-tag {
      border: 1px solid var(--border-dark);
      background: rgba(255, 255, 255, 0.04);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.75rem;
      color: var(--muted);
    }

    [data-theme="light"] .portfolio-tag {
      background: #ffffff;
      border-color: var(--border-light);
      color: var(--muted-dark);
    }


    .policy-content {
      max-width: 860px;
      margin: 0 auto;
      display: grid;
      gap: 16px;
      color: var(--muted);
    }

    .policy-content h3 {
      margin: 16px 0 0;
      font-size: 1.1rem;
      color: var(--text);
    }

    .policy-content ul {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 6px;
    }

    [data-theme="light"] .policy-content {
      color: var(--muted-dark);
    }

    [data-theme="light"] .policy-content h3 {
      color: var(--text-dark);
    }

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

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

      .hero-grid > div:first-child {
        text-align: center;
      }

      .hero-actions {
        justify-content: center;
      }

      .portfolio-header {
        grid-template-columns: 1fr;
      }

      .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }

      .growth-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
      }

      .growth-grid .step-card {
        min-width: min(86vw, 320px);
        flex: 0 0 min(86vw, 320px);
        scroll-snap-align: start;
      }

      .social-proof-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
      }

      .social-proof-card {
        width: min(70vw, 240px);
        flex: 0 0 min(70vw, 240px);
        scroll-snap-align: start;
      }

      .process-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        cursor: grab;
      }

      .process-cards::-webkit-scrollbar {
        display: none;
      }

      .process-cards {
        scrollbar-width: none;
      }

      .process-cards .step-card {
        min-width: min(86vw, 320px);
        flex: 0 0 auto;
        scroll-snap-align: start;
      }

      .ads-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .ads-grid .section-title {
        justify-items: center;
        text-align: center;
      }

      .ads-grid .hero-actions {
        justify-content: center;
      }

      .testimonial-slider::before,
      .testimonial-slider::after {
        display: none;
      }

      .work-card {
        width: min(70vw, 240px);
      }

      .work-slider {
        -webkit-mask-image: none;
        mask-image: none;
      }

      .work-track {
        animation: none;
        transform: translateX(0);
      }

      .confetti {
        display: none;
      }

      .logo-slider::before,
      .logo-slider::after {
        display: none;
      }
    }

    @media (hover: none) and (pointer: coarse) {
      .work-slider {
        -webkit-mask-image: none;
        mask-image: none;
      }

      .work-track {
        animation: none;
        transform: translateX(0);
      }
    }

@media (max-width: 600px) {
      .container {
        width: min(1200px, 94vw);
      }

      section {
        padding: 56px 0;
      }

      .hero {
        padding-top: 70px;
      }

      .hero p {
        font-size: 1rem;
      }

      .portfolio-hero {
        padding-top: 80px;
      }

      .portfolio-header {
        gap: 24px;
      }

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

      .portfolio-card {
        min-height: auto;
      }

      .portfolio-media {
        min-height: 150px;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .stat-box {
        text-align: center;
      }

      .nav-inner {
        flex-wrap: nowrap;
        gap: 10px;
      }

      .nav-actions {
        width: auto;
        justify-content: flex-end;
        gap: 8px;
      }

      .brand img {
        width: 34px;
        height: 34px;
        border-radius: 10px;
      }

      .brand span {
        font-size: 0.95rem;
      }

      .theme-toggle {
        width: 36px;
        height: 36px;
      }

      .lang-switch {
        padding: 6px 10px;
        font-size: 0.7rem;
      }

      .nav-cta {
        padding: 8px 14px;
        font-size: 0.9rem;
      }

      .logo-badge {
        min-width: 120px;
        font-size: 0.9rem;
      }

      .testimonial {
        min-width: 220px;
        max-width: 260px;
      }

      .work-card {
        width: min(75vw, 240px);
      }

      .social-proof-card {
        width: min(66vw, 210px);
        flex: 0 0 min(66vw, 210px);
      }

      .growth-grid,
      .process-cards {
        gap: 12px;
        padding-bottom: 6px;
        scroll-padding: 4vw;
      }

      .growth-grid .step-card,
      .process-cards .step-card {
        min-width: min(92vw, 360px);
        flex: 0 0 min(92vw, 360px);
        padding: 16px;
        min-height: auto;
      }

      .step-card h3 {
        font-size: 1.05rem;
      }

      .step-card p {
        font-size: 0.95rem;
      }

      .step-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
      }

      footer .nav-inner {
        flex-wrap: nowrap;
        gap: 12px;
      }

      footer .nav-inner > div:last-child {
        font-size: 0.75rem;
        text-align: right;
        flex: 1;
      }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner p {
    font-size: 0.85rem;
  }
}

    @media (max-width: 420px) {
      .brand span {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .nav-cta {
        font-size: 0.85rem;
        padding: 8px 12px;
      }
}

/* ── FORM STATES ─────────────────────────────────────────────────────────── */

.form-success {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: rgba(101, 255, 180, 0.08);
  border: 1px solid rgba(101, 255, 180, 0.3);
  color: #6effc0;
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

.form-error {
  margin: 8px 0 0;
  color: #ff6b6b;
  font-size: 0.88rem;
  text-align: center;
}

.lead-form button[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── FORM SECTION (index.html) ──────────────────────────────────────────── */

.form-section {
  background: transparent;
}

.form-section .form-shell {
  padding: 36px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  box-shadow: 0 24px 56px rgba(8, 6, 12, 0.32);
}

[data-theme="light"] .form-section .form-shell {
  background: #ffffff;
  border-color: var(--border-light);
  box-shadow: 0 24px 56px rgba(18, 25, 38, 0.08);
}

.form-section .form-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.form-section .form-copy h2 {
  margin: 0;
}

.form-section .form-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-section .form-copy p strong {
  color: var(--text);
}

.form-section .form-note {
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(127, 97, 255, 0.12);
  border: 1px solid rgba(127, 97, 255, 0.28);
  color: var(--text);
  font-weight: 600;
}

[data-theme="light"] .form-section .form-note {
  background: rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.25);
}

.form-section .lead-form {
  display: grid;
  gap: 14px;
}

.form-section .lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-section .lead-form input,
.form-section .lead-form select,
.form-section .lead-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 12px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-section .lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-section .lead-form input:focus,
.form-section .lead-form select:focus,
.form-section .lead-form textarea:focus {
  border-color: rgba(127, 97, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(127, 97, 255, 0.16);
}

.form-section .lead-form button {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
}

.form-section .form-disclaimer {
  margin: 2px 0 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 860px) {
  .form-section .form-shell {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 24px;
  }
}
