/* =============================================================
   S&R CLIPPING PRODUCTIONS — DESIGN SYSTEM
   Black / White / Gold · premium · mobile-first
   ============================================================= */

:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --panel: #151515;
  --panel-2: #1c1c1c;
  --line: #262626;
  --white: #f7f7f5;
  --muted: #a3a3a0;
  --muted-2: #757572;
  --gold: #d4af37;
  --gold-bright: #f0cf6b;
  --gold-deep: #b8942a;
  --grad-gold: linear-gradient(135deg, #f0cf6b 0%, #d4af37 45%, #b8942a 100%);
  --shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-gold: 0 20px 50px -18px rgba(212,175,55,.35);
  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Sora", var(--font);
}

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

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

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #000; }

/* ---------- Ambient background glow ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% -10%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(212,175,55,.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Layout ---------- */
.container { width: min(var(--maxw), 92%); margin-inline: auto; position: relative; z-index: 1; }
section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; z-index: 1; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--muted); font-size: clamp(1rem, 1.15vw, 1.08rem); }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.35rem); color: #cfcfca; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font); font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .8; }

.section-head { max-width: 760px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font); font-weight: 600; font-size: .98rem;
  padding: .95rem 1.7rem; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--grad-gold); color: #1a1400; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -16px rgba(212,175,55,.5); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-dark { background: #000; color: var(--white); border-color: var(--line); }
.btn-dark:hover { border-color: var(--gold); transform: translateY(-3px); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px; display: block; object-fit: cover;
  box-shadow: var(--shadow-gold);
}
.logo span.amp { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--muted); position: relative; transition: color .25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: .3s var(--ease); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(9rem, 16vh, 12rem); padding-bottom: clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: center; }
.hero h1 span { display: inline-block; }
.hero .lead { margin: 1.6rem 0 2.3rem; max-width: 34ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 2.6rem; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; color: var(--muted-2); font-size: .85rem; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -12px; border: 2px solid var(--black);
  background: var(--grad-gold); display: grid; place-items: center; color: #000; font-weight: 700; font-size: .8rem;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Hero visual — stacked phone mock */
.hero-visual { position: relative; height: 100%; min-height: 420px; display: grid; place-items: center; }
.phone {
  width: 250px; aspect-ratio: 9/19; border-radius: 34px; background: linear-gradient(160deg, #1d1d1d, #0d0d0d);
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.phone::before { content: ""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 70px; height: 6px; border-radius: 6px; background: #000; z-index: 3; }
.phone-caption { position: absolute; inset: auto 14px 16px 14px; z-index: 2; }
.phone-caption b { font-family: var(--display); font-size: 1.05rem; display: block; }
.phone-caption small { color: var(--gold); font-weight: 600; }
.phone-fill { position: absolute; inset: 0; background:
  radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,.28), transparent 55%),
  linear-gradient(180deg, #232323, #0a0a0a); }
.phone-badge { position: absolute; top: 42px; left: 14px; background: rgba(0,0,0,.55); border: 1px solid var(--line); color: var(--gold); font-size: .7rem; font-weight: 700; padding: .3rem .6rem; border-radius: 999px; z-index: 2; letter-spacing: .05em; }
.phone.p-back { position: absolute; transform: rotate(-9deg) translateX(-58px) scale(.86); opacity: .55; filter: blur(.4px); }
.phone.p-front { transform: rotate(5deg) translateX(46px); z-index: 2; }
.play-btn { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%); width: 58px; height: 58px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; z-index: 3; box-shadow: var(--shadow-gold); }
.play-btn svg { width: 22px; height: 22px; color: #000; margin-left: 3px; }

/* ---------- Marquee (logos / platforms) ---------- */
.marquee { border-block: 1px solid var(--line); padding: 1.6rem 0; overflow: hidden; background: var(--black-soft); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: scroll-x 26s linear infinite; align-items: center; }
.marquee-track span { color: var(--muted-2); font-family: var(--display); font-weight: 600; font-size: 1.1rem; white-space: nowrap; letter-spacing: .02em; display: inline-flex; align-items: center; gap: .6rem; }
.marquee-track span::before { content: "◆"; color: var(--gold); font-size: .7rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 2rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--panel), transparent); }
.stat b { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.9rem); display: block; color: var(--white); }
.stat b em { font-style: normal; color: var(--gold); }
.stat span { font-size: .85rem; color: var(--muted); letter-spacing: .04em; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--panel), var(--black-soft));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(180deg, rgba(212,175,55,.35), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; }
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.4); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }
.card .icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.3rem;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.28); color: var(--gold);
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .96rem; }
.card .card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; color: var(--gold); font-weight: 600; font-size: .9rem; }
.card .card-link svg { width: 15px; height: 15px; transition: transform .3s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ba-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); transition: transform .4s var(--ease), border-color .4s; }
.ba-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.4); }
.ba-visual { display: grid; grid-template-columns: 1fr 1fr; }
.ba-half { padding: 2.2rem 1.2rem; min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; }
.ba-before { background: linear-gradient(180deg, #1a1a1a, #101010); }
.ba-after { background: radial-gradient(120% 90% at 50% 0%, rgba(212,175,55,.25), transparent 60%), linear-gradient(180deg, #201d12, #0d0d0d); }
.ba-tag { position: absolute; top: 12px; left: 12px; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .25rem .55rem; border-radius: 999px; }
.ba-before .ba-tag { background: #000; color: var(--muted); border: 1px solid var(--line); }
.ba-after .ba-tag { background: var(--gold); color: #000; }
.ba-half b { font-family: var(--display); font-size: 1.6rem; }
.ba-half small { color: var(--muted); font-size: .78rem; }
.ba-after b { color: var(--gold); }
.ba-meta { padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
.ba-meta span { font-size: .85rem; color: var(--muted); }
.ba-meta b { font-family: var(--display); color: var(--gold); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; counter-reset: step; }
.step { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--panel); position: relative; }
.step .num { font-family: var(--display); font-size: 2.6rem; color: rgba(212,175,55,.35); font-weight: 800; line-height: 1; margin-bottom: 1rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { font-size: .92rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--panel), var(--black-soft)); display: flex; flex-direction: column; gap: 1.2rem; }
.testi .stars { font-size: 1rem; }
.testi p { color: #dcdcd7; font-size: 1rem; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #000; font-weight: 700; }
.testi .who b { font-family: var(--display); font-size: .95rem; display: block; }
.testi .who small { color: var(--muted); font-size: .82rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.price {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem 2rem;
  background: linear-gradient(180deg, var(--panel), var(--black-soft)); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s;
}
.price:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.35); }
.price.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); position: relative; }
.price.featured::before { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: #000; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 999px; }
.price h3 { font-size: 1.3rem; }
.price .tier-sub { color: var(--muted); font-size: .9rem; margin: .3rem 0 1.4rem; }
.price .amount { font-family: var(--display); font-size: 3rem; font-weight: 800; line-height: 1; }
.price .amount small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price .per { color: var(--muted); font-size: .85rem; margin-bottom: 1.6rem; }
.price ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin: 0 0 2rem; }
.price li { display: flex; gap: .7rem; font-size: .92rem; color: #d7d7d2; }
.price li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.price .btn { margin-top: auto; width: 100%; }

/* ---------- FAQ (accordion) ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--white); font-family: var(--display); font-weight: 600; font-size: 1.12rem; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .pm { width: 26px; height: 26px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold); transition: transform .3s var(--ease), background .3s; font-size: 1.2rem; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--gold); color: #000; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding-bottom: 1.5rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; border-radius: var(--radius-lg); padding: clamp(3rem, 6vw, 5rem); background: radial-gradient(90% 120% at 50% 0%, rgba(212,175,55,.16), transparent 60%), linear-gradient(180deg, var(--panel), var(--black-soft)); border: 1px solid rgba(212,175,55,.28); position: relative; overflow: hidden; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 52ch; margin: 1.1rem auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--white); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--black-soft); border: 1px solid var(--line); border-radius: 12px;
  color: var(--white); padding: .95rem 1rem; font-family: var(--font); font-size: .97rem; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: .82rem; color: var(--muted-2); }
.form-status { font-size: .92rem; padding: .8rem 1rem; border-radius: 10px; display: none; }
.form-status.ok { display: block; background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.4); color: var(--gold); }
.form-status.err { display: block; background: rgba(200,60,60,.12); border: 1px solid rgba(200,60,60,.4); color: #f0a0a0; }
.contact-aside { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; background: var(--panel); display: flex; gap: 1rem; align-items: flex-start; }
.info-card .icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.28); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.info-card .icon svg { width: 20px; height: 20px; }
.info-card b { font-family: var(--display); display: block; font-size: .98rem; }
.info-card a, .info-card span { color: var(--muted); font-size: .92rem; }
.calendly-wrap { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); min-height: 640px; }
.calendly-inline-widget { min-height: 640px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 4rem 0 2rem; background: var(--black-soft); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { margin: 1rem 0 1.4rem; font-size: .92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .7rem; }
.footer-col a { color: var(--muted); font-size: .92rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.socials { display: flex; gap: .7rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: .3s var(--ease); }
.socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: .85rem; color: var(--muted-2); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(9rem, 16vh, 12rem); padding-bottom: clamp(3rem, 6vw, 5rem); text-align: center; }
.page-hero .container { max-width: 800px; }
.page-hero p { margin-top: 1.1rem; }
.breadcrumb { color: var(--muted-2); font-size: .85rem; margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Portfolio filter ---------- */
.filters { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { background: var(--panel); border: 1px solid var(--line); color: var(--muted); padding: .6rem 1.2rem; border-radius: 999px; cursor: pointer; font-size: .88rem; font-weight: 500; transition: .3s var(--ease); }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pf-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--panel); transition: transform .4s var(--ease), border-color .4s; }
.pf-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.4); }
.pf-thumb { aspect-ratio: 9/13; position: relative; display: grid; place-items: center; background: radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,.22), transparent 55%), linear-gradient(180deg, #232323, #0c0c0c); }
.pf-thumb .play-btn { position: static; transform: none; }
.pf-thumb .tagpill { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.6); border: 1px solid var(--line); color: var(--gold); font-size: .68rem; font-weight: 700; padding: .3rem .6rem; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase; }
.pf-thumb .views { position: absolute; bottom: 12px; left: 12px; background: rgba(0,0,0,.6); color: var(--white); font-size: .78rem; font-weight: 600; padding: .3rem .6rem; border-radius: 999px; }
.pf-body { padding: 1.3rem 1.4rem; }
.pf-body b { font-family: var(--display); font-size: 1.02rem; }
.pf-body span { color: var(--muted); font-size: .85rem; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.portrait { border: 1px solid var(--line); border-radius: var(--radius-lg); aspect-ratio: 4/5; background: radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,.2), transparent 55%), linear-gradient(180deg, #242424, #0c0c0c); display: grid; place-items: center; position: relative; }
.portrait .badge-lg { font-family: var(--display); font-size: 4rem; font-weight: 800; color: rgba(255,255,255,.06); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; margin-top: 1rem; }
  .grid-3, .grid-4, .testi-grid, .ba-grid, .price-grid, .steps, .value-grid, .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: rgba(10,10,10,.97); backdrop-filter: blur(14px); padding: 1.5rem 6%; gap: 1.4rem; border-bottom: 1px solid var(--line);
  }
  .grid-3, .grid-4, .testi-grid, .ba-grid, .price-grid, .steps, .value-grid, .portfolio-grid, .footer-grid, .stats { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .price.featured { order: -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
