:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #687385;
  --line: #e6ebf2;
  --paper: #f7f9fc;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fbfcfe;
  --surface-tint: rgba(32, 87, 211, 0.06);
  --header-bg: rgba(255, 255, 255, 0.9);
  --header-inner: rgba(247, 249, 252, 0.88);
  --card-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
  --blue: #2057d3;
  --cyan: #10a4b8;
  --gold: #f5b942;
  --green: #20a35b;
  --red: #f05a47;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

body[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f8fafc;
  --muted: #b8c2d2;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #07111f;
  --white: #101b2d;
  --surface: #101b2d;
  --surface-soft: #0b1627;
  --surface-tint: rgba(32, 87, 211, 0.14);
  --header-bg: rgba(15, 23, 42, 0.88);
  --header-inner: rgba(8, 17, 31, 0.84);
  --card-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body[data-theme="light"] .hero {
  background:
    linear-gradient(rgba(32, 87, 211, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 87, 211, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 16% 12%, rgba(245, 185, 66, 0.34), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(16, 164, 184, 0.2), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef5ff 52%, #e7fbff 100%);
}

body[data-theme="light"] .hero::before {
  background: rgba(32, 87, 211, 0.13);
}

body[data-theme="light"] .hero::after {
  background: rgba(245, 185, 66, 0.22);
}

body[data-theme="light"] .hero-copy::before {
  border-color: rgba(32, 87, 211, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
}

body[data-theme="light"] .pill {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(32, 87, 211, 0.14);
}

body[data-theme="light"] h1 {
  color: var(--ink);
  text-shadow: none;
}

body[data-theme="light"] .hero-brand-lockup span {
  color: var(--ink);
  text-shadow: 0 10px 28px rgba(17, 24, 39, 0.14);
}

body[data-theme="light"] .hero h2 {
  color: var(--ink);
}

body[data-theme="light"] .hero-text {
  color: var(--muted);
}

body[data-theme="light"] .hero-tags span,
body[data-theme="light"] .hero-trust,
body[data-theme="light"] .hero-proof div {
  color: var(--muted);
  border-color: rgba(32, 87, 211, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

body[data-theme="light"] .hero-trust strong,
body[data-theme="light"] .hero-proof strong {
  color: var(--ink);
}

body[data-theme="light"] .hero-proof span,
body[data-theme="light"] .hero-trust span {
  color: var(--muted);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(247, 249, 252, 0)),
    var(--paper);
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 87, 211, 0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(16, 164, 184, 0.18), transparent 28%),
    var(--paper);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes glowShift {
  0%,
  100% {
    opacity: 0.55;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.9;
    transform: translate3d(16px, -12px, 0) scale(1.06);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(32, 163, 91, 0.13);
  }

  50% {
    box-shadow: 0 0 0 11px rgba(32, 163, 91, 0.04);
  }
}

@keyframes buttonSheen {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }

  to {
    transform: translateX(220%) skewX(-18deg);
  }
}

@keyframes premiumSweep {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(230, 235, 242, 0.95);
  border-radius: 999px;
  background: var(--header-bg);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(18px);
  animation: fadeUp 520ms ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--surface);
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.1);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: inset 0 -10px 20px rgba(17, 24, 39, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 5px;
  border: 1px solid rgba(230, 235, 242, 0.9);
  border-radius: 999px;
  background: var(--header-inner);
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.site-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle,
.language-select {
  min-height: 40px;
  border: 1px solid rgba(230, 235, 242, 0.9);
  border-radius: 999px;
  color: var(--ink);
  background: var(--header-inner);
  font-weight: 800;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  cursor: pointer;
}

.language-select {
  padding: 0 10px;
  cursor: pointer;
}

body[data-theme="dark"] .site-header,
body[data-theme="dark"] .nav-links,
body[data-theme="dark"] .theme-toggle,
body[data-theme="dark"] .language-select {
  border-color: rgba(255, 255, 255, 0.12);
}

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

.nav-cta,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta::after,
.button.primary::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover::after,
.button.primary:hover::after {
  opacity: 1;
  animation: buttonSheen 780ms ease;
}

.nav-cta,
.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan), #7c3aed);
  background-size: 180% 180%;
  box-shadow: 0 14px 28px rgba(32, 87, 211, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.button.ghost {
  color: var(--blue);
  background: rgba(32, 87, 211, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.82fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 94px);
  padding: 74px clamp(18px, 5vw, 78px) 48px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, rgba(245, 185, 66, 0.3), transparent 22%),
    radial-gradient(circle at 78% 16%, rgba(16, 164, 184, 0.38), transparent 28%),
    radial-gradient(circle at 70% 84%, rgba(32, 87, 211, 0.32), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #10213f 44%, #0f766e 100%);
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto,
    auto,
    auto;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  animation: glowShift 7s ease-in-out infinite;
}

.hero::before {
  right: 5%;
  top: 10%;
  width: 320px;
  height: 320px;
  background: rgba(125, 211, 252, 0.2);
}

.hero::after {
  left: 6%;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: rgba(245, 185, 66, 0.18);
  animation-delay: 1.8s;
}

.hero::before {
  z-index: 0;
}

.hero::after {
  z-index: 0;
}

.hero-copy::before {
  position: absolute;
  inset: -34px -28px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 2;
}

.pill,
.eyebrow,
.card-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(32, 87, 211, 0.14);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  animation: fadeUp 620ms 80ms ease both;
}

.pill > span:first-child {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(32, 163, 91, 0.13);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.pill > span:last-child {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-brand-lockup {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 18px;
  animation: fadeUp 680ms 140ms ease both;
}

.hero-brand-lockup img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero-brand-lockup span {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.42),
    0 14px 34px rgba(0, 0, 0, 0.28);
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}

.hero h2 {
  max-width: 860px;
  margin: 0;
  color: #eef6ff;
  font-size: clamp(2rem, 4.6vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
  animation: fadeUp 720ms 220ms ease both;
}

.hero h2 span {
  color: transparent;
  background: linear-gradient(90deg, #f5b942, #7dd3fc, #ffffff, #f5b942);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: premiumSweep 6s ease-in-out infinite;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.16rem;
}

.hero-text {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(239, 246, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  animation: fadeUp 760ms 300ms ease both;
}

.hero-tags,
.hero-actions,
.cta-tags,
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust {
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  animation: fadeUp 790ms 340ms ease both;
}

.hero-trust span,
.hero-trust strong {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-trust span {
  color: rgba(239, 246, 255, 0.62);
}

.hero-trust strong {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-tags {
  margin-top: 26px;
  animation: fadeUp 800ms 380ms ease both;
}

.hero-tags span,
.cta-tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(239, 246, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.hero-actions {
  margin-top: 30px;
  animation: fadeUp 840ms 460ms ease both;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 30px;
  animation: fadeUp 880ms 540ms ease both;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(239, 246, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  min-height: 610px;
}

.hero-video-showcase {
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(100%, 540px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #07111f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  animation: fadeUp 820ms 260ms ease both, softFloat 6.5s 1.2s ease-in-out infinite;
}

.hero-video-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 17, 31, 0.94);
}

.hero-video-browser span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.hero-video-browser span:nth-child(2) {
  background: var(--gold);
}

.hero-video-browser span:nth-child(3) {
  background: var(--green);
}

.hero-video-browser strong {
  margin-left: 8px;
  font-size: 0.8rem;
}

.hero-marketing-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  background: #07111f;
  transform: translateZ(0);
  will-change: transform;
}

.hero-video-mini-cta {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(15, 118, 110, 0.9));
}

.hero-video-mini-cta small {
  color: #f5b942;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-video-mini-cta strong {
  max-width: 420px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.hero-video-mini-cta a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
}

.website-preview-card {
  position: absolute;
  inset: 28px 0 auto auto;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  animation: fadeUp 820ms 260ms ease both, softFloat 6.5s 1.2s ease-in-out infinite;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #eef4ff;
}

.preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.preview-toolbar span:nth-child(2) {
  background: var(--gold);
}

.preview-toolbar span:nth-child(3) {
  background: var(--green);
}

.preview-toolbar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.preview-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 22px;
  min-height: 330px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.7), rgba(32, 87, 211, 0.42)),
    radial-gradient(circle at 85% 18%, rgba(245, 185, 66, 0.9), transparent 20%),
    linear-gradient(135deg, #0f172a, #0f766e);
}

.preview-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #ffffff;
}

.preview-copy small {
  font-weight: 800;
  text-transform: uppercase;
}

.preview-copy strong {
  max-width: 340px;
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.preview-copy a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 22px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
}

.preview-side {
  display: grid;
  gap: 12px;
  align-content: end;
}

.preview-side span {
  display: grid;
  height: 74px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: inset 0 -18px 30px rgba(32, 87, 211, 0.08);
}

.order-panel,
.status-card,
.mini-leads-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.order-panel {
  left: 0;
  bottom: 24px;
  width: min(88%, 360px);
  padding: 22px;
  animation: fadeUp 760ms 520ms ease both, softFloat 7.5s 1.6s ease-in-out infinite;
}

.order-panel p {
  margin: 0 0 9px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.order-panel h3 {
  font-size: 1.25rem;
}

.order-panel > strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
}

.order-panel ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.order-panel a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
}

.status-card {
  right: 18px;
  top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  animation: fadeUp 700ms 420ms ease both;
}

.status-card span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(32, 163, 91, 0.14);
}

.mini-leads-card {
  right: 4px;
  bottom: 86px;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 18px;
  animation: fadeUp 780ms 620ms ease both, softFloat 7s 2s ease-in-out infinite;
}

.mini-leads-card strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.mini-leads-card span {
  color: var(--blue);
  font-weight: 800;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 78px);
  background: var(--line);
}

.stats-section div {
  padding: 34px 22px;
  background: var(--surface);
}

body[data-theme="dark"] .logo-strip,
body[data-theme="dark"] .about-section,
body[data-theme="dark"] .work-section,
body[data-theme="dark"] .resources-section,
body[data-theme="dark"] .stats-section div,
body[data-theme="dark"] .feature-grid article,
body[data-theme="dark"] .small-gig-card,
body[data-theme="dark"] .testimonial-grid article,
body[data-theme="dark"] .resource-grid article,
body[data-theme="dark"] .article-shell,
body[data-theme="dark"] .article-body section,
body[data-theme="dark"] .article-checklist li,
body[data-theme="dark"] .contact-form,
body[data-theme="dark"] .single-cart,
body[data-theme="dark"] .small-gig-body select,
body[data-theme="dark"] .contact-form input,
body[data-theme="dark"] .contact-form select,
body[data-theme="dark"] .contact-form textarea,
body[data-theme="dark"] .logo-track span {
  background: #101b2d;
}

body[data-theme="dark"] .small-gig-footer button,
body[data-theme="dark"] .order-panel a {
  background: #020617;
}

body[data-theme="dark"] .preview-toolbar {
  background: #0b1627;
}

body[data-theme="dark"] .preview-side span,
body[data-theme="dark"] .button.secondary,
body[data-theme="dark"] .single-cart button {
  color: var(--ink);
  background: #17243a;
}

body[data-theme="dark"] .order-panel,
body[data-theme="dark"] .status-card,
body[data-theme="dark"] .mini-leads-card {
  color: var(--ink);
  background: rgba(16, 27, 45, 0.94);
}

body[data-theme="dark"] .small-gig-rating {
  color: #f5d27a;
}

body[data-theme="dark"] .contact-direct a {
  border-color: rgba(125, 211, 252, 0.18);
  color: #7dd3fc;
}

body[data-theme="dark"] .article-page,
body[data-theme="dark"] .article-checklist {
  background: #07111f;
}

body[data-theme="dark"] .cta-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(245, 185, 66, 0.12), transparent 30%),
    linear-gradient(135deg, #08111f, #101b2d);
}

.stats-section strong,
.stats-section span {
  display: block;
}

.stats-section strong {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.stats-section span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.logo-strip {
  overflow: hidden;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.logo-strip p {
  margin: 0 0 20px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.logo-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.logo-track span {
  display: grid;
  min-width: 170px;
  height: 88px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
}

.logo-track img {
  display: block;
  max-width: 116px;
  max-height: 48px;
  object-fit: contain;
}

.logo-track .ad-manager-logo {
  max-width: 150px;
}

.logo-track .adsense-logo,
.logo-track .admob-logo {
  max-width: 154px;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

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

.section {
  padding: 88px clamp(18px, 5vw, 78px);
}

.section-heading {
  max-width: 910px;
  margin-bottom: 34px;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  max-width: none;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  background: var(--surface);
}

.section-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid,
.work-grid,
.testimonial-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-grid article,
.small-gig-card,
.work-grid article,
.testimonial-grid article,
.resource-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 800;
}

.feature-grid p,
.small-gig-card p,
.work-grid p,
.testimonial-grid p,
.resource-grid p,
.cta-section p {
  color: var(--muted);
  line-height: 1.65;
}

.services-section {
  background: var(--paper);
}

.small-gig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 320px));
  gap: 22px;
  align-items: stretch;
  justify-content: center;
}

.small-gig-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.small-gig-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 87, 211, 0.28);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.1);
}

.small-gig-thumb {
  position: relative;
  display: flex;
  height: 190px;
  min-height: 190px;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #2057d3);
}

.website-thumb {
  padding: 0;
  background: #05070b;
}

.design-thumb {
  padding: 0;
  background: #05070b;
}

.review-thumb {
  padding: 0;
  align-items: center;
  justify-content: center;
  background: #05070b;
}

.small-gig-card:has(.website-thumb),
.small-gig-card:has(.design-thumb),
.small-gig-card:has(.review-thumb) {
  grid-column: auto;
  grid-template-rows: 190px 1fr;
}

.website-thumb,
.design-thumb,
.review-thumb {
  height: 190px;
  min-height: 190px;
}

.website-thumb img,
.design-thumb img,
.review-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.website-thumb::after,
.design-thumb::after,
.review-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.32));
}

.small-gig-thumb::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 76px;
  height: 76px;
  content: "";
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.small-gig-thumb span {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.small-gig-thumb strong {
  position: relative;
  z-index: 2;
  max-width: 260px;
  margin-top: 54px;
  font-size: 1.65rem;
  line-height: 1;
}

.small-gig-body {
  display: grid;
  grid-template-rows: auto minmax(82px, auto) auto auto auto auto;
  gap: 12px;
  padding: 18px;
}

.small-gig-body h3 {
  min-height: 82px;
  font-size: 1.05rem;
  line-height: 1.32;
}

.small-gig-rating {
  color: #7a4a00;
  font-size: 0.84rem;
  font-weight: 800;
}

.gig-type-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.gig-type-toggle label {
  cursor: pointer;
}

.gig-type-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gig-type-toggle span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.gig-type-toggle input:checked + span {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 22px rgba(32, 87, 211, 0.18);
}

.small-gig-body select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--ink);
  padding: 11px;
  font-size: 0.88rem;
  font-weight: 700;
}

.small-gig-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.small-gig-footer span,
.single-cart span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.small-gig-footer strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 1.2rem;
}

.small-gig-footer button,
.small-request,
.single-cart button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.small-gig-footer button {
  min-width: 82px;
  color: #ffffff;
  background: var(--ink);
}

.small-request {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.single-cart {
  min-height: 76px;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.single-cart p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.single-cart.filled {
  border-style: solid;
  border-color: rgba(32, 87, 211, 0.22);
  background: var(--surface-tint);
}

.single-cart strong {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  line-height: 1.25;
}

.single-cart button {
  margin-top: 8px;
  padding: 0 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

[data-gig-add].added {
  color: #ffffff;
  background: var(--green);
}

.work-section,
.resources-section {
  background: var(--surface);
}

.work-grid {
  grid-template-columns: repeat(4, 1fr);
}

.work-grid article {
  overflow: hidden;
}

.work-art {
  min-height: 210px;
}

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

.restaurant-art {
  background: #111827;
}

.dentist-art {
  background: linear-gradient(135deg, #10a4b8, #d8fbff);
}

.clinic-art {
  background: linear-gradient(135deg, #2057d3, #7ad7ff);
}

.business-art {
  background: linear-gradient(135deg, #111827, #f5b942);
}

.work-grid article p,
.work-grid article h3,
.work-grid article a {
  margin-left: 18px;
  margin-right: 18px;
}

.work-grid article p {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-grid article h3 {
  min-height: 72px;
}

.work-grid article a {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

.article-page {
  padding: 72px clamp(18px, 5vw, 78px) 92px;
  background:
    linear-gradient(180deg, rgba(32, 87, 211, 0.05), rgba(16, 164, 184, 0.04)),
    var(--paper);
}

.article-shell {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-page-hero {
  padding: clamp(28px, 6vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(32, 87, 211, 0.58)),
    radial-gradient(circle at 88% 18%, rgba(245, 185, 66, 0.72), transparent 22%),
    linear-gradient(135deg, #111827, #0f766e);
}

.article-page-hero .eyebrow {
  color: var(--gold);
}

.article-page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.article-page-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.article-body section {
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
}

.article-body h2,
.article-checklist h2,
.article-final-cta h2 {
  font-size: 1.2rem;
}

.article-body p,
.article-checklist li,
.article-final-cta p {
  color: var(--muted);
  line-height: 1.72;
}

.article-checklist {
  padding: clamp(24px, 5vw, 42px);
  border-top: 1px solid var(--line);
  background: var(--surface-tint);
}

.article-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid rgba(32, 87, 211, 0.12);
  border-radius: 14px;
  background: var(--surface);
  font-weight: 700;
}

.article-checklist li::before {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 163, 91, 0.12);
}

.article-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 42px);
  border-top: 1px solid var(--line);
}

.article-final-cta p {
  max-width: 660px;
  margin: 10px 0 0;
}

.testimonials {
  background: linear-gradient(135deg, #111827, #1a2e5f);
  color: #ffffff;
}

.testimonials .eyebrow {
  color: var(--gold);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonial-grid p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

.resource-grid article {
  padding: 26px;
}

.resource-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  padding: 92px clamp(18px, 5vw, 78px);
  background:
    radial-gradient(circle at 10% 15%, rgba(245, 185, 66, 0.24), transparent 30%),
    linear-gradient(135deg, #eef5ff, #ffffff);
}

.cta-section h2 {
  max-width: 760px;
}

.cta-section p {
  max-width: 650px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(32, 87, 211, 0.14);
  border-radius: 999px;
  color: var(--blue);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink);
  padding: 14px;
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 78%, transparent);
}

.quote-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(32, 87, 211, 0.15);
  border-radius: 18px;
  background: var(--surface-tint);
}

.quote-box span {
  color: var(--muted);
  font-weight: 800;
}

.quote-box strong {
  color: var(--blue);
  font-size: 1.65rem;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  padding: 54px clamp(18px, 5vw, 78px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #07111f;
}

.footer-brand {
  color: #ffffff;
}

.footer-brand .brand-logo {
  width: 38px;
  height: 38px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.site-footer p {
  max-width: 430px;
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: #ffffff;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  color: #ffffff;
  background: #20a35b;
  box-shadow: 0 18px 42px rgba(32, 163, 91, 0.34);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-chat::before {
  grid-row: 1 / span 2;
  width: 16px;
  height: 16px;
  margin-right: 0;
  content: "";
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.18);
}

.whatsapp-chat strong,
.whatsapp-chat span {
  line-height: 1.05;
}

.whatsapp-chat strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.whatsapp-chat span {
  font-size: 1rem;
}

.whatsapp-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(32, 163, 91, 0.42);
}

.copyright {
  grid-column: 1 / -1;
  max-width: none;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1060px) {
  .hero,
  .about-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 640px;
  }

  .hero-video-showcase,
  .website-preview-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .small-gig-grid,
  .testimonial-grid,
  .resource-grid,
  .article-body,
  .article-checklist ul {
    grid-template-columns: 1fr;
  }

  .small-gig-card {
    max-width: 340px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    top: 8px;
    width: min(100% - 20px, 560px);
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 20px;
    overflow: visible;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.98rem;
  }

  .brand > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .site-controls {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 6px;
  }

  .theme-toggle {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .theme-toggle span:last-child {
    display: none;
  }

  .language-select {
    min-height: 40px;
    max-width: 58px;
    padding: 0 7px;
  }

  .site-header.open {
    align-items: center;
    flex-wrap: nowrap;
  }

  .site-header.open .nav-cta {
    display: flex;
  }

  .site-header.open .nav-links {
    display: grid;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 25;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 8px;
    border-radius: 14px;
    background: var(--header-bg);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(18px);
  }

  .site-header.open .nav-links a {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 10px;
    text-align: center;
  }

  .site-header.open .nav-cta {
    position: absolute;
    top: calc(100% + 164px);
    left: 0;
    right: 0;
    z-index: 25;
    width: 100%;
    min-height: 44px;
    box-shadow: 0 16px 36px rgba(32, 87, 211, 0.24);
  }

  .menu-toggle {
    flex: 0 0 auto;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .hero {
    gap: 22px;
    padding: 34px 16px 32px;
  }

  .hero-copy::before {
    inset: -16px -10px;
    border-radius: 22px;
  }

  .pill {
    min-height: 32px;
    max-width: 100%;
    padding: 0 11px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-brand-lockup {
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 14px;
  }

  .hero-brand-lockup img {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }

  .hero-brand-lockup span {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .hero h2 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8.6vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-trust {
    display: none;
  }

  .hero-tags {
    display: none;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-proof {
    display: none;
  }

  .hero-card {
    display: block;
    min-height: auto;
  }

  .stats-section,
  .feature-grid,
  .small-gig-grid,
  .work-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .whatsapp-chat {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 7px 14px 7px 12px;
  }

  .whatsapp-chat strong {
    font-size: 0.72rem;
  }

  .whatsapp-chat span {
    font-size: 0.88rem;
  }

  .stats-section {
    padding: 0 16px;
  }

  .stats-section div {
    padding: 22px 18px;
  }

  .row-heading {
    display: block;
  }

  .row-heading .text-link {
    display: inline-block;
    margin-top: 18px;
  }

  .article-page {
    padding: 34px 14px 72px;
  }

  .article-shell {
    border-radius: 18px;
  }

  .article-page-hero {
    padding: 28px 18px;
  }

  .article-page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .article-page-hero p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .article-body section,
  .article-checklist,
  .article-final-cta {
    padding: 22px 18px;
  }

  .article-checklist li {
    padding-right: 14px;
  }

  .article-final-cta {
    display: grid;
  }

  .article-final-cta .button {
    width: 100%;
  }

  .hero-video-showcase {
    position: static;
    width: 100%;
    max-width: 430px;
    justify-self: center;
    transform: none;
    margin: 0 auto;
    border-radius: 22px;
    animation: fadeUp 760ms 320ms ease both;
  }

  .hero-video-browser,
  .hero-video-mini-cta,
  .order-panel,
  .status-card,
  .mini-leads-card {
    display: none;
  }

  .hero-marketing-video {
    max-height: none;
    border-radius: 22px;
  }

  .preview-side span {
    height: 54px;
  }

  .quote-box {
    display: grid;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 16px;
    padding-right: 16px;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.08;
  }

  .section-copy p,
  .feature-grid p,
  .small-gig-card p,
  .work-grid p,
  .testimonial-grid p,
  .resource-grid p,
  .cta-section p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .small-gig-grid {
    justify-items: center;
  }

  .small-gig-card {
    width: 100%;
    max-width: 420px;
  }

  .work-grid article,
  .resource-grid article,
  .testimonial-grid article,
  .feature-grid article {
    border-radius: 18px;
  }

  .work-art,
  .work-art img {
    height: 190px;
    min-height: 190px;
  }

  .work-grid article h3 {
    min-height: auto;
  }

  .work-grid article a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }

  .logo-strip {
    padding: 28px 0;
  }

  .logo-track span {
    min-width: 138px;
    height: 72px;
  }

  .logo-track img {
    max-width: 100px;
    max-height: 40px;
  }

  .contact-direct a {
    width: 100%;
    justify-content: center;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form .button {
    min-height: 48px;
  }

  .site-footer {
    gap: 20px;
    padding-bottom: 86px;
  }

}

@media (max-width: 520px) {
  .section,
  .cta-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .site-header {
    width: calc(100% - 14px);
    padding: 8px;
    gap: 6px;
  }

  .brand {
    gap: 8px;
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .theme-toggle,
  .language-select,
  .menu-toggle {
    min-height: 36px;
    width: 36px;
    height: 36px;
  }

  .site-header.open .nav-links {
    padding: 7px;
  }

  .site-header.open .nav-links a,
  .site-header.open .nav-cta {
    min-height: 42px;
  }

  .language-select {
    max-width: 52px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .preview-content {
    min-height: auto;
    padding: 18px;
  }

  .preview-copy strong {
    font-size: 1.48rem;
    line-height: 1.08;
  }

  .preview-copy a {
    width: 100%;
    justify-content: center;
  }

  .preview-side {
    gap: 8px;
  }

  .preview-side span {
    height: 46px;
    border-radius: 14px;
  }

  .small-gig-thumb {
    height: 180px;
    min-height: 180px;
  }

  .small-gig-card {
    max-width: none;
    min-height: auto;
    grid-template-rows: 180px 1fr;
  }

  .small-gig-body {
    padding: 16px;
  }

  .small-gig-body h3 {
    min-height: 72px;
    font-size: 1rem;
  }

  .small-gig-footer {
    align-items: center;
  }

  .small-gig-footer button {
    min-width: 74px;
  }

  .contact-section,
  .cta-section {
    gap: 24px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    padding-top: 42px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero h2 {
    font-size: clamp(1.58rem, 8vw, 2.1rem);
  }

  .hero-brand-lockup {
    align-items: center;
  }

  .hero-brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .hero-brand-lockup span {
    font-size: 1.72rem;
  }

  .small-gig-card {
    width: 100%;
    min-height: auto;
  }

  .small-gig-footer {
    display: grid;
  }

  .small-gig-footer button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
