/* Video Wheeler — ViralCut-inspired light theme */
:root {
  --bg: #f4f4f1;
  --bg-soft: #ececea;
  --surface: #ffffff;
  --text: #111111;
  --muted: #5c5c5c;
  --muted-light: #8a8a8a;
  --accent: #f05a28;
  --accent-soft: rgba(240, 90, 40, 0.12);
  --green: #22c55e;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 1rem;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

#services .section-intro,
#projects .section-intro,
#pricing .section-intro,
#audience .section-intro,
#process .section-intro {
  margin-bottom: 2.5rem;
}

#benefits .section-title,
#testimonials .section-title,
#faq .section-title {
  margin-bottom: 2.5rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(244, 244, 241, 0.88);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--text);
  display: grid;
  place-items: center;
}

.logo-icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--text); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}

.header-cta:hover { transform: translateY(-1px); opacity: 0.92; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin-inline: auto;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 0.65rem 0;
  color: var(--muted);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-dark {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover { box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.btn-outline-light {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-outline-light:hover {
  background: var(--surface);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-metric {
  text-align: center;
}

.hero-metric strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.hero-metric--compact strong {
  font-size: 0.98rem;
}

.hero-metric--compact span {
  font-size: 0.7rem;
}

.hero-metric span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-bar {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.trust-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonials-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonials-head .section-title {
  margin-bottom: 0;
  max-width: 520px;
}

.testimonials-score {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.testimonials-score-num {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.testimonials-score p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.cta-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.contact-trust {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.contact-trust-item {
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-trust-item strong {
  color: var(--text);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-meta span {
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.footer-copy a {
  color: var(--muted);
  font-weight: 500;
}

.footer-copy a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 7.5rem 0 3rem;
  text-align: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  max-width: 780px;
}

.hero h1 .accent { color: var(--accent); }

.hero-lead {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta { margin-bottom: 2rem; }

.phone-showcase {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 0 0;
}

.phone-showcase-glow {
  position: absolute;
  inset: 4% 4% auto;
  height: 78%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(240, 90, 40, 0.24) 0%, transparent 58%),
    radial-gradient(ellipse at 20% 35%, rgba(255, 180, 120, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(255, 255, 255, 0.85) 0%, transparent 52%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.phone-showcase-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.phone-showcase-sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
  animation: sparkle 4s ease-in-out infinite;
}

.phone-showcase-sparkles span:nth-child(1) { top: 18%; left: 14%; animation-delay: 0s; }
.phone-showcase-sparkles span:nth-child(2) { top: 28%; right: 12%; width: 4px; height: 4px; animation-delay: 1.1s; }
.phone-showcase-sparkles span:nth-child(3) { bottom: 32%; left: 8%; width: 5px; height: 5px; animation-delay: 2s; }
.phone-showcase-sparkles span:nth-child(4) { bottom: 24%; right: 10%; animation-delay: 0.6s; }

@keyframes sparkle {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.6); opacity: 0.65; }
}

.phone-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4.75rem;
  width: min(92%, 620px);
  height: 48px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.18) 0%, transparent 72%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.hero-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2.25rem;
}

.hero-tags span,
.hero-tag {
  padding: 0.48rem 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.hero-tag {
  cursor: pointer;
  font-family: inherit;
}

.hero-tag:hover,
.hero-tag:focus-visible {
  color: var(--text);
}

/* Tag highlight — card OR tag hover */
.phone-showcase:not(:has(.phone-card:hover)):not(:has(.hero-tag:hover)) .hero-tag[data-hero-card="1"],
.phone-showcase:has(.phone-card-1:hover) .hero-tag[data-hero-card="1"],
.phone-showcase:has(.hero-tag[data-hero-card="1"]:hover) .hero-tag[data-hero-card="1"],
.phone-showcase:has(.hero-tag[data-hero-card="1"]:focus-visible) .hero-tag[data-hero-card="1"],
.phone-showcase:has(.phone-card-2:hover) .hero-tag[data-hero-card="2"],
.phone-showcase:has(.hero-tag[data-hero-card="2"]:hover) .hero-tag[data-hero-card="2"],
.phone-showcase:has(.hero-tag[data-hero-card="2"]:focus-visible) .hero-tag[data-hero-card="2"],
.phone-showcase:has(.phone-card-3:hover) .hero-tag[data-hero-card="3"],
.phone-showcase:has(.hero-tag[data-hero-card="3"]:hover) .hero-tag[data-hero-card="3"],
.phone-showcase:has(.hero-tag[data-hero-card="3"]:focus-visible) .hero-tag[data-hero-card="3"],
.phone-showcase:has(.phone-card-4:hover) .hero-tag[data-hero-card="4"],
.phone-showcase:has(.hero-tag[data-hero-card="4"]:hover) .hero-tag[data-hero-card="4"],
.phone-showcase:has(.hero-tag[data-hero-card="4"]:focus-visible) .hero-tag[data-hero-card="4"],
.phone-showcase:has(.phone-card-5:hover) .hero-tag[data-hero-card="5"],
.phone-showcase:has(.hero-tag[data-hero-card="5"]:hover) .hero-tag[data-hero-card="5"],
.phone-showcase:has(.hero-tag[data-hero-card="5"]:focus-visible) .hero-tag[data-hero-card="5"] {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 90, 40, 0.14);
  background: linear-gradient(135deg, rgba(240, 90, 40, 0.14), rgba(255, 255, 255, 0.95));
  border-color: rgba(240, 90, 40, 0.35);
  color: var(--accent);
  font-weight: 600;
}

.phone-stack {
  position: relative;
  height: 560px;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
  perspective: 1400px;
}

.phone-card {
  position: absolute;
  width: 248px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2a2a 0%, #111 100%);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  border: 6px solid #f8f8f8;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  transform-style: preserve-3d;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
  will-change: transform;
}

/* Lift card in place on card OR tag hover — no center jump */
.phone-showcase:has(.phone-card-1:hover) .phone-card-1,
.phone-showcase:has(.hero-tag[data-hero-card="1"]:hover) .phone-card-1,
.phone-showcase:has(.hero-tag[data-hero-card="1"]:focus-visible) .phone-card-1 {
  transform: translateX(-50%) rotate(-2deg) translateY(-16px) scale(1.06) translateZ(90px);
  z-index: 12;
  opacity: 1;
  filter: none;
  animation: none;
  box-shadow:
    0 44px 88px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 0 10px rgba(240, 90, 40, 0.12);
}

.phone-showcase:has(.phone-card-2:hover) .phone-card-2,
.phone-showcase:has(.hero-tag[data-hero-card="2"]:hover) .phone-card-2,
.phone-showcase:has(.hero-tag[data-hero-card="2"]:focus-visible) .phone-card-2 {
  transform: rotate(-24deg) translateY(-18px) scale(0.9) translateZ(60px);
  z-index: 12;
  opacity: 1;
  filter: saturate(1) brightness(1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.26), 0 0 0 8px rgba(240, 90, 40, 0.1);
}

.phone-showcase:has(.phone-card-3:hover) .phone-card-3,
.phone-showcase:has(.hero-tag[data-hero-card="3"]:hover) .phone-card-3,
.phone-showcase:has(.hero-tag[data-hero-card="3"]:focus-visible) .phone-card-3 {
  transform: rotate(24deg) translateY(-18px) scale(0.9) translateZ(60px);
  z-index: 12;
  opacity: 1;
  filter: saturate(1) brightness(1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.26), 0 0 0 8px rgba(240, 90, 40, 0.1);
}

.phone-showcase:has(.phone-card-4:hover) .phone-card-4,
.phone-showcase:has(.hero-tag[data-hero-card="4"]:hover) .phone-card-4,
.phone-showcase:has(.hero-tag[data-hero-card="4"]:focus-visible) .phone-card-4 {
  transform: rotate(-11deg) translateY(-16px) scale(0.96) translateZ(60px);
  z-index: 12;
  opacity: 1;
  filter: saturate(1) brightness(1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.26), 0 0 0 8px rgba(240, 90, 40, 0.1);
}

.phone-showcase:has(.phone-card-5:hover) .phone-card-5,
.phone-showcase:has(.hero-tag[data-hero-card="5"]:hover) .phone-card-5,
.phone-showcase:has(.hero-tag[data-hero-card="5"]:focus-visible) .phone-card-5 {
  transform: rotate(11deg) translateY(-16px) scale(0.96) translateZ(60px);
  z-index: 12;
  opacity: 1;
  filter: saturate(1) brightness(1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.26), 0 0 0 8px rgba(240, 90, 40, 0.1);
}

/* Dim other cards while one is highlighted */
.phone-showcase:has(.phone-card-1:hover) .phone-card:not(.phone-card-1),
.phone-showcase:has(.hero-tag[data-hero-card="1"]:hover) .phone-card:not(.phone-card-1),
.phone-showcase:has(.phone-card-2:hover) .phone-card:not(.phone-card-2),
.phone-showcase:has(.hero-tag[data-hero-card="2"]:hover) .phone-card:not(.phone-card-2),
.phone-showcase:has(.phone-card-3:hover) .phone-card:not(.phone-card-3),
.phone-showcase:has(.hero-tag[data-hero-card="3"]:hover) .phone-card:not(.phone-card-3),
.phone-showcase:has(.phone-card-4:hover) .phone-card:not(.phone-card-4),
.phone-showcase:has(.hero-tag[data-hero-card="4"]:hover) .phone-card:not(.phone-card-4),
.phone-showcase:has(.phone-card-5:hover) .phone-card:not(.phone-card-5),
.phone-showcase:has(.hero-tag[data-hero-card="5"]:hover) .phone-card:not(.phone-card-5) {
  opacity: 0.68;
  filter: saturate(0.82) brightness(0.95);
}

/* Play button on highlighted card */
.phone-showcase:not(:has(.phone-card:hover)):not(:has(.hero-tag:hover)) .phone-card-1 .play-circle,
.phone-showcase:has(.phone-card-1:hover) .phone-card-1 .play-circle,
.phone-showcase:has(.hero-tag[data-hero-card="1"]:hover) .phone-card-1 .play-circle,
.phone-showcase:has(.phone-card-2:hover) .phone-card-2 .play-circle,
.phone-showcase:has(.hero-tag[data-hero-card="2"]:hover) .phone-card-2 .play-circle,
.phone-showcase:has(.phone-card-3:hover) .phone-card-3 .play-circle,
.phone-showcase:has(.hero-tag[data-hero-card="3"]:hover) .phone-card-3 .play-circle,
.phone-showcase:has(.phone-card-4:hover) .phone-card-4 .play-circle,
.phone-showcase:has(.hero-tag[data-hero-card="4"]:hover) .phone-card-4 .play-circle,
.phone-showcase:has(.phone-card-5:hover) .phone-card-5 .play-circle,
.phone-showcase:has(.hero-tag[data-hero-card="5"]:hover) .phone-card-5 .play-circle {
  width: 64px;
  height: 64px;
  opacity: 1;
  background: linear-gradient(135deg, rgba(240, 90, 40, 0.9), rgba(255, 120, 70, 0.85));
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 32px rgba(240, 90, 40, 0.45), 0 0 0 8px rgba(240, 90, 40, 0.15);
}

.phone-showcase:not(:has(.phone-card:hover)):not(:has(.hero-tag:hover)) .phone-card-1 .play-circle svg,
.phone-showcase:has(.phone-card-1:hover) .phone-card-1 .play-circle svg,
.phone-showcase:has(.hero-tag[data-hero-card="1"]:hover) .phone-card-1 .play-circle svg,
.phone-showcase:has(.phone-card-2:hover) .phone-card-2 .play-circle svg,
.phone-showcase:has(.hero-tag[data-hero-card="2"]:hover) .phone-card-2 .play-circle svg,
.phone-showcase:has(.phone-card-3:hover) .phone-card-3 .play-circle svg,
.phone-showcase:has(.hero-tag[data-hero-card="3"]:hover) .phone-card-3 .play-circle svg,
.phone-showcase:has(.phone-card-4:hover) .phone-card-4 .play-circle svg,
.phone-showcase:has(.hero-tag[data-hero-card="4"]:hover) .phone-card-4 .play-circle svg,
.phone-showcase:has(.phone-card-5:hover) .phone-card-5 .play-circle svg,
.phone-showcase:has(.hero-tag[data-hero-card="5"]:hover) .phone-card-5 .play-circle svg {
  width: 24px;
  height: 24px;
}

.phone-shell {
  position: absolute;
  inset: -3px;
  border-radius: 39px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05) 40%, rgba(0, 0, 0, 0.15));
  z-index: -1;
  pointer-events: none;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  z-index: 4;
  pointer-events: none;
}

.phone-card-1 {
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotate(-2deg) translateZ(50px);
  z-index: 5;
  animation: featured-glow 3s ease-in-out infinite;
}

.phone-showcase:has(.phone-card:hover) .phone-card-1,
.phone-showcase:has(.hero-tag:hover) .phone-card-1 {
  animation: none;
}

@keyframes featured-glow {
  0%, 100% {
    box-shadow:
      0 40px 90px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.15) inset,
      0 0 0 10px rgba(240, 90, 40, 0.1);
  }
  50% {
    box-shadow:
      0 44px 96px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset,
      0 0 0 14px rgba(240, 90, 40, 0.16);
  }
}

.phone-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28) 0%, transparent 36%, transparent 64%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
  z-index: 4;
}

.phone-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.phone-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  padding: 0.28rem 0.62rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.phone-tag-featured {
  background: linear-gradient(135deg, var(--accent), #ff7a45);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 18px rgba(240, 90, 40, 0.45);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  border-radius: 999px;
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 5;
  pointer-events: none;
}

.phone-notch::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3a3a3a, #111);
}

.phone-card img,
.phone-card .phone-fill {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone-fill {
  background: linear-gradient(160deg, #2d2d2d, #1a1a1a);
}

.phone-progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 68px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  z-index: 5;
}

.phone-progress span {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ff9a6b);
  box-shadow: 0 0 10px rgba(240, 90, 40, 0.6);
}

.phone-card-1 .phone-progress span { width: 62%; }
.phone-card-3 .phone-progress span { width: 48%; }
.phone-card-4 .phone-progress span { width: 55%; }
.phone-card-5 .phone-progress span { width: 42%; }

.phone-card-2 {
  left: calc(50% - 392px);
  top: 52px;
  transform: rotate(-24deg) scale(0.8) translateZ(0px);
  z-index: 1;
  opacity: 0.78;
  filter: saturate(0.88) brightness(0.96);
}

.phone-card-4 {
  left: calc(50% - 248px);
  top: 38px;
  transform: rotate(-11deg) scale(0.88) translateZ(15px);
  z-index: 2;
  opacity: 0.86;
  filter: saturate(0.92);
}

.phone-card-3 {
  left: calc(50% + 144px);
  top: 52px;
  transform: rotate(24deg) scale(0.8) translateZ(0px);
  z-index: 1;
  opacity: 0.78;
  filter: saturate(0.88) brightness(0.96);
}

.phone-card-5 {
  left: calc(50% + 24px);
  top: 38px;
  transform: rotate(11deg) scale(0.88) translateZ(15px);
  z-index: 2;
  opacity: 0.86;
  filter: saturate(0.92);
}

.phone-showcase:has(.phone-card-1:hover) .phone-card-1 img,
.phone-showcase:has(.hero-tag[data-hero-card="1"]:hover) .phone-card-1 img,
.phone-showcase:has(.phone-card-2:hover) .phone-card-2 img,
.phone-showcase:has(.hero-tag[data-hero-card="2"]:hover) .phone-card-2 img,
.phone-showcase:has(.phone-card-3:hover) .phone-card-3 img,
.phone-showcase:has(.hero-tag[data-hero-card="3"]:hover) .phone-card-3 img,
.phone-showcase:has(.phone-card-4:hover) .phone-card-4 img,
.phone-showcase:has(.hero-tag[data-hero-card="4"]:hover) .phone-card-4 img,
.phone-showcase:has(.phone-card-5:hover) .phone-card-5 img,
.phone-showcase:has(.hero-tag[data-hero-card="5"]:hover) .phone-card-5 img {
  transform: scale(1.04);
}

.stat-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
  z-index: 6;
  animation: pill-float 5s ease-in-out infinite;
}

.stat-pill svg {
  width: 17px;
  height: 17px;
  fill: var(--accent);
  flex-shrink: 0;
}

.stat-pill-views {
  top: 6%;
  left: 0;
  animation-delay: 0s;
}

.stat-pill-likes {
  top: 12%;
  right: -1%;
  animation-delay: 1.4s;
}

@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.phone-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.1rem 1.1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
  color: #fff;
  text-align: left;
  z-index: 3;
  border-radius: 0 0 30px 30px;
}

.phone-handle {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.phone-metric {
  font-size: 0.76rem;
  opacity: 0.9;
  font-weight: 500;
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.35s ease, background 0.3s ease, box-shadow 0.35s ease;
}

.play-circle-lg {
  width: 64px;
  height: 64px;
  opacity: 1;
  background: linear-gradient(135deg, rgba(240, 90, 40, 0.9), rgba(255, 120, 70, 0.85));
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 12px 32px rgba(240, 90, 40, 0.45),
    0 0 0 8px rgba(240, 90, 40, 0.15);
  animation: play-pulse 2.4s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(240, 90, 40, 0.45), 0 0 0 8px rgba(240, 90, 40, 0.12); }
  50% { box-shadow: 0 16px 40px rgba(240, 90, 40, 0.55), 0 0 0 14px rgba(240, 90, 40, 0.06); }
}

.play-circle svg {
  width: 18px;
  height: 18px;
  fill: white;
  margin-left: 2px;
}

.play-circle-lg svg {
  width: 24px;
  height: 24px;
}

.phone-showcase:has(.phone-card-1:hover) .phone-card-1 .play-circle:hover,
.phone-showcase:has(.hero-tag[data-hero-card="1"]:hover) .phone-card-1 .play-circle:hover,
.phone-showcase:has(.phone-card-2:hover) .phone-card-2 .play-circle:hover,
.phone-showcase:has(.hero-tag[data-hero-card="2"]:hover) .phone-card-2 .play-circle:hover,
.phone-showcase:has(.phone-card-3:hover) .phone-card-3 .play-circle:hover,
.phone-showcase:has(.hero-tag[data-hero-card="3"]:hover) .phone-card-3 .play-circle:hover,
.phone-showcase:has(.phone-card-4:hover) .phone-card-4 .play-circle:hover,
.phone-showcase:has(.hero-tag[data-hero-card="4"]:hover) .phone-card-4 .play-circle:hover,
.phone-showcase:has(.phone-card-5:hover) .phone-card-5 .play-circle:hover,
.phone-showcase:has(.hero-tag[data-hero-card="5"]:hover) .phone-card-5 .play-circle:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .stat-pill,
  .phone-card-1,
  .play-circle-lg,
  .phone-showcase-sparkles span { animation: none; }
  .phone-card,
  .phone-card img,
  .play-circle,
  .hero-tags span,
  .hero-tag { transition: none; }
}

/* Sections */
section { padding: 4.5rem 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-includes,
.price-includes {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.service-includes li,
.price-includes li {
  margin-bottom: 0.2rem;
}

.price-includes {
  flex: 1;
  margin-bottom: 1.25rem;
}

.story-block {
  margin-top: 3.5rem;
  text-align: center;
}

.story-title {
  margin-bottom: 0.75rem;
}

.story-intro {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.story-visual {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: #111;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 1rem;
}

.story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual.is-playing .story-play,
.story-visual.is-playing .story-chip {
  opacity: 0;
  pointer-events: none;
}

.story-play {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s, opacity 0.25s, background 0.25s;
}

.story-play:hover {
  transform: scale(1.06);
  background: rgba(240, 90, 40, 0.85);
}

.story-play svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }

.story-chip {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.25s;
}

.story-card-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.story-card-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Benefits bento */
.benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.benefit-card.large {
  grid-row: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.benefit-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.benefit-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.benefit-big-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0;
}

.benefit-big-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.benefit-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Brands strip */
.brands-strip {
  text-align: center;
  padding: 2rem 0;
}

.brands-strip p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.brands-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}

.brand-chip img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-sm);
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #222;
  aspect-ratio: 9/14;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s;
  padding: 0;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
}

.project-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.project-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card:hover { transform: translateY(-4px); }

.project-card .play-circle { opacity: 0.9; z-index: 2; }

.project-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  z-index: 2;
}

.project-handle {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-views {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 0.65rem;
}

.project-result {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.audience-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.price-badge {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--muted);
}

.price-badge-accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.price-card.popular {
  border-color: rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(240, 90, 40, 0.12);
  isolation: isolate;
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(120deg, var(--accent), #ff9a6b, #ffc4a8, var(--accent));
  background-size: 300% 100%;
  animation: price-border-flow 4s linear infinite;
  z-index: -2;
}

.price-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--surface);
  z-index: -1;
}

.price-card.featured:hover {
  box-shadow: 0 18px 48px rgba(240, 90, 40, 0.18);
}

@keyframes price-border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .price-card.featured::before { animation: none; }
  .price-card { transition: none; }
}

.price-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.price-card .desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 1.25rem;
  flex: 1;
}

.price-amount {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-amount span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: 0.2rem;
}

.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 1.5rem;
}

/* Process */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.process-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}

.process-num {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--bg-soft);
  -webkit-text-stroke: 1px var(--border);
  margin-bottom: 1rem;
  line-height: 1;
}

.process-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.testimonial-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--bg-soft);
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  color: var(--text);
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-item.open .faq-answer { max-height: 280px; }

/* CTA block */
.cta-block {
  text-align: center;
  padding: 5rem 0;
}

.cta-block h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0 auto 1rem;
  max-width: 600px;
  font-weight: 700;
}

.cta-block p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* Contact */
.contact-section {
  padding: 4.5rem 0;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 15% 8% 10%;
  background: radial-gradient(ellipse at center, rgba(240, 90, 40, 0.08), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.contact-panel {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff9a6b, #ffc4a8, var(--accent));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.contact-info > p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.contact-detail {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.contact-detail strong { color: var(--text); }

.contact-detail a {
  color: var(--text);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.form-group { margin-bottom: 0.85rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea { min-height: 110px; resize: vertical; }

.form-success {
  display: none;
  margin-top: 0.85rem;
  padding: 0.85rem;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  font-size: 0.88rem;
}

.form-success.show { display: block; }

.btn-block { width: 100%; }

/* Footer */
.site-footer {
  background: var(--bg-soft);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 320px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.footer-email,
.footer-phone {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.footer-email:hover,
.footer-phone:hover {
  color: var(--text);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-light);
  font-size: 0.8rem;
  text-align: center;
}

/* Video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.video-modal[hidden] { display: none; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.video-modal-dialog {
  position: relative;
  width: min(100%, 900px);
  z-index: 1;
}

.video-modal-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.video-modal-player {
  width: 100%;
  border-radius: var(--radius-sm);
  background: #000;
  max-height: 80vh;
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover { background: rgba(255,255,255,0.25); }

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card.large { grid-row: span 1; min-height: auto; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .phone-stack { height: 500px; }
  .phone-card { width: 220px; }
  .phone-card-2 { left: calc(50% - 318px); top: 48px; }
  .phone-card-4 { left: calc(50% - 208px); top: 36px; }
  .phone-card-3 { left: calc(50% + 98px); top: 48px; }
  .phone-card-5 { left: calc(50% + 14px); top: 36px; }
  .hero-metrics { grid-template-columns: repeat(4, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding-top: 6rem; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); padding: 1rem; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .testimonials-head { flex-direction: column; align-items: flex-start; }
  .phone-showcase { padding-top: 1.5rem; max-width: 100%; overflow: hidden; }
  .phone-stack { height: 400px; max-width: 100%; }
  .phone-card { width: 168px; border-width: 5px; border-radius: 30px; }
  .phone-card-2 { left: calc(50% - 198px); top: 40px; transform: rotate(-22deg) scale(0.78); }
  .phone-card-4 { left: calc(50% - 118px); top: 28px; transform: rotate(-10deg) scale(0.86); }
  .phone-card-3 { left: calc(50% + 30px); top: 40px; transform: rotate(22deg) scale(0.78); }
  .phone-card-5 { left: calc(50% - 50px); top: 28px; transform: rotate(10deg) scale(0.86); }
  .phone-card-1 { transform: translateX(-50%) rotate(-2deg) scale(0.96); }
  .phone-stack:hover .phone-card-2 { transform: rotate(-24deg) scale(0.8); }
  .phone-stack:hover .phone-card-3 { transform: rotate(24deg) scale(0.8); }
  .phone-stack:hover .phone-card-4 { transform: rotate(-12deg) scale(0.88); }
  .phone-stack:hover .phone-card-5 { transform: rotate(12deg) scale(0.88); }
  .stat-pill { font-size: 0.74rem; padding: 0.45rem 0.75rem; }
  .stat-pill-views { left: 0; top: 6%; }
  .stat-pill-likes { right: -2%; top: 12%; }
  .phone-showcase-sparkles { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { align-items: flex-start; }
}
