:root {
  --bg: #0c0c0c;
  --bg-subtle: #111111;
  --card: #141414;
  --card-hover: #181818;
  --gold: #F59E0B;
  --gold-dim: rgba(245, 158, 11, 0.12);
  --gold-glow: rgba(245, 158, 11, 0.25);
  --text: #f5f1e8;
  --muted: #a8a29e;
  --border: rgba(245, 158, 11, 0.22);
  --line: #222222;
  --line-subtle: rgba(255, 255, 255, 0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: #000;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  padding: 96px 0;
  position: relative;
}

section[id] {
  scroll-margin-top: 110px;
}

/* Atmospheric subtle glows for section separation */
#why, #stack, #testimonials {
  background: radial-gradient(800px 320px at 50% 0%, rgba(245, 158, 11, 0.035), transparent);
}

/* Header & Typography Rhythm */
.eyebrow {
  letter-spacing: 3.5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

h2.title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.sub {
  color: var(--muted);
  max-width: 660px;
  font-size: 16px;
  line-height: 1.65;
  margin-top: 4px;
}

/* Partner Bar */
.partner-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.08);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .02em;
}

.partner-bar a {
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.partner-bar a:hover {
  text-decoration: underline;
}

/* Navigation */
nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-in {
  max-width: 1120px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.5px;
}

.logo span {
  color: var(--gold);
}

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

.links a {
  transition: color 0.2s ease;
}

.links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, filter .25s ease, background-color .25s ease;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--gold-glow);
}

.btn-ghost {
  border-color: #383838;
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.burger {
  display: none;
  background: none;
  border: 1px solid #444;
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 18px;
  cursor: pointer;
}

/* Accessibility focus styles */
.vcard:focus-visible, .btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Hero Section */
.hero {
  padding: 175px 24px 90px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  align-items: center;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 15% 15%, rgba(245,158,11,.08), transparent), radial-gradient(600px 380px at 85% 20%, rgba(245,158,11,.05), transparent);
  pointer-events: none;
}

.avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #d6d3d1;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: clamp(36px, 4.8vw, 62px);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hire-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
  font-size: 13.5px;
  color: var(--muted);
  flex-wrap: wrap;
}

.hire-row a {
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}

.hire-row a:hover {
  border-color: var(--gold);
}

.hero-proof {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-subtle);
  flex-wrap: wrap;
}

.hero-proof div b {
  font-size: 26px;
  line-height: 1.15;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.hero-proof div small {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.photo {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, #24201d, #0c0c0c);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-align: center;
  font-size: 15px;
  letter-spacing: 2px;
  position: relative;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.ai-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, .7);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 99px;
  color: var(--text);
  backdrop-filter: blur(8px);
}

.prompt-card {
  position: absolute;
  left: -20px;
  right: -12px;
  bottom: -24px;
  background: #111111;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .65);
}

.prompt-row {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12.5px;
  color: #d6d3d1;
  background: #090909;
  border: 1px solid #282828;
  border-radius: 10px;
  padding: 9px 12px;
}

.timeline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.tplay {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  flex-shrink: 0;
}

.tplay:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  border-left: 7px solid #000;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.tbar {
  flex: 1;
  height: 5px;
  background: #282828;
  border-radius: 99px;
  overflow: hidden;
}

.tfill {
  width: 42%;
  height: 100%;
  background: var(--gold);
}

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

.toolchips span {
  font-size: 11px;
  letter-spacing: 0.5px;
  border: 1px solid var(--border);
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: 99px;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  color: #78716c;
  font-size: 12.5px;
  letter-spacing: 3px;
  background: rgba(255, 255, 255, 0.015);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll 24s linear infinite;
}

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

/* Why Section */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.panel.gold {
  border-color: var(--border);
}

.panel h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: Inter, sans-serif;
  color: #fff;
}

ul.clean {
  list-style: none;
  display: grid;
  gap: 16px;
  color: #d6d3d1;
  font-size: 15px;
}

ul.clean li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
}

.dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.dot.no {
  background: rgba(255, 80, 80, .12);
  color: #ff8080;
  border: 1px solid rgba(255, 80, 80, .3);
}

.dot.yes {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border);
}

.stats4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat b {
  font-size: 28px;
  color: var(--gold);
  display: block;
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
  line-height: 1.15;
}

.stat small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Services */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svc:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.svc .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.svc h3 {
  font-family: Inter, sans-serif;
  font-size: 19px;
  margin-bottom: 10px;
  color: #fff;
}

.svc p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.svc ul {
  margin-top: 16px;
  padding-left: 20px;
  display: grid;
  gap: 9px;
}

.svc li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.svc .toolchips {
  margin-top: auto;
  padding-top: 18px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pills span {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  background: var(--gold-dim);
  transition: border-color .2s;
}

.pills span:hover {
  border-color: var(--gold);
}

/* Agencies Grid */
#agencyGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

#agencyGrid .svc {
  padding: 24px 20px;
}

#agencyGrid .svc p {
  font-size: 13.5px;
  line-height: 1.55;
}

/* Process (Steps) */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step b.num {
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: block;
}

.step h4 {
  font-size: 15px;
  margin: 6px 0 8px;
  color: #fff;
  line-height: 1.3;
}

.step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin-top: auto;
}

/* Work / Portfolio */
.filters {
  display: flex;
  gap: 10px;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}

.filters button {
  background: transparent;
  border: 1px solid #383838;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  transition: all .2s ease;
}

.filters button.active, .filters button:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

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

.vcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vcard:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.thumb {
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #24201d, #0c0c0c);
  overflow: hidden;
}

.thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.vcard:hover .thumb img {
  transform: scale(1.05);
}

.thumb .play {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  transition: transform .2s ease, background-color .2s ease;
}

.vcard:hover .thumb .play {
  transform: scale(1.1);
  background: rgba(0, 0, 0, .7);
}

.thumb .tlabel, .thumb .tdur {
  z-index: 2;
}

.thumb:after {
  content: "AI";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, .7);
  padding: 3px 8px;
  border-radius: 99px;
  z-index: 3;
}

.thumb.t1 { background: linear-gradient(135deg, #2a1245, #7C3AED); }
.thumb.t2 { background: linear-gradient(135deg, #3d0f2e, #EC4899); }
.thumb.t3 { background: linear-gradient(135deg, #0b2e2a, #0ea5e9); }
.thumb.t4 { background: linear-gradient(135deg, #2e200f, #F59E0B); }
.thumb.t5 { background: linear-gradient(135deg, #230f3d, #8b5cf6); }
.thumb.t6 { background: linear-gradient(135deg, #0f1f3d, #38bdf8); }

.thumb .tlabel {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.thumb .tdur {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: #fff;
  background: rgba(0, 0, 0, .65);
  padding: 2px 8px;
  border-radius: 6px;
}

.meta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tagb {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 99px;
  align-self: flex-start;
  margin-bottom: 10px;
}

.meta b {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 4px;
  color: #fff;
}

.meta small {
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
  padding-top: 6px;
}

.hint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 20px;
  opacity: 0.85;
}

/* Testimonials */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.t {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.t .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
  align-items: center;
}

.t p {
  font-size: 15px;
  color: #d6d3d1;
  line-height: 1.6;
  flex: 1;
}

.t footer {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1px solid var(--line-subtle);
  padding-top: 14px;
  font-weight: 500;
}

/* Results / Numbers that matter */
.rgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.r {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.r b {
  font-size: 34px;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 6px;
  line-height: 1.15;
}

.r small {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.4;
}

/* Pricing Section */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.price {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price.hot {
  border-color: var(--gold);
  background: #161310;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.08);
}

.price .pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  letter-spacing: 0.5px;
}

.price h3 {
  font-family: Inter, sans-serif;
  font-size: 20px;
  color: #fff;
}

.price .sub {
  font-size: 13.5px;
  margin-top: 4px;
}

.price .amt {
  font-size: 32px;
  margin: 16px 0 14px;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

.price ul {
  list-style: none;
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-size: 14.5px;
  margin: 16px 0 28px;
  flex: 1;
}

.price ul li:before {
  content: "— ";
  color: var(--gold);
}

.price .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* FAQ Section */
#faq .two {
  gap: 24px;
  margin-top: 40px;
}

#faq .panel {
  padding: 32px;
}

#faq .panel h3 {
  font-size: 20px;
  margin-bottom: 22px;
}

#faq ul.clean {
  display: grid;
  gap: 18px;
}

#faq ul.clean li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14.5px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line-subtle);
  padding-bottom: 14px;
}

#faq ul.clean li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Contact Section */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}

.cinfo {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.cinfo p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.cinfo-channels {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.cline {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14.5px;
  color: var(--muted);
  background: #0e0e0e;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #222;
}

.cline a {
  color: var(--gold);
  font-weight: 600;
}

.cline a:hover {
  text-decoration: underline;
}

.cinfo .hero-cta {
  margin-top: auto;
  margin-bottom: 0;
}

form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  display: grid;
  gap: 16px;
}

label {
  font-size: 13.5px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

input, select, textarea {
  background: #0e0e0e;
  border: 1px solid #333;
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  width: 100%;
  font-family: inherit;
  transition: border-color .2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  color: var(--muted);
  font-size: 13.5px;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.modal.open {
  display: flex;
}

.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 740px;
  width: 100%;
  padding: 24px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.modal-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 12px;
  background: #000;
}

.close {
  background: none;
  border: 1px solid #444;
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  cursor: pointer;
  float: right;
  transition: border-color .2s;
}

.close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Utilities */
.svc .icon svg, .dot svg {
  flex-shrink: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Responsive Media Queries */
@media (max-width: 1000px) {
  #agencyGrid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 145px 24px 60px;
    gap: 36px;
  }
  .two, .cards3, .tgrid, .pgrid, .contact, #agencyGrid {
    grid-template-columns: 1fr;
  }
  .rgrid, .stats4 {
    grid-template-columns: 1fr 1fr;
  }
  .prompt-card {
    left: 0;
    right: 0;
    position: relative;
    margin-top: 16px;
    bottom: auto;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps .step:last-child {
    grid-column: 1 / -1;
  }
  .links {
    display: none;
  }
  .links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0c0c0c;
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  .burger {
    display: flex;
  }
  section {
    padding: 64px 0;
  }
  .r {
    padding: 20px 14px;
  }
  .r b {
    font-size: 26px;
  }
  .stat {
    padding: 18px 12px;
  }
  .stat b {
    font-size: 24px;
  }
  .photo {
    aspect-ratio: 4/3;
  }
  .partner-bar {
    font-size: 11px;
    padding: 7px 10px;
  }
  .partner-bar span {
    display: none;
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .steps .step:last-child {
    grid-column: auto;
  }
  .rgrid, .stats4 {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  .pgrid .price {
    padding: 30px 20px;
  }
}
