/* ─────────────────────────────────────────────────────────────
   Bright Star Web Studios — main.css
   Exact design system from brightstarweb.com
───────────────────────────────────────────────────────────── */

/* ─── TOKENS ─── */
:root {
  --white: #ffffff;
  --off:   #f7f5f2;
  --rule:  #e8e3dc;
  --mist:  #c8c0b8;
  --mid:   #8a8278;
  --ink:   #1a1814;
  --green: #2d4a3e;
  --gl:    #3d6454;
  --gp:    #eef3f0;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── CUSTOM CURSOR ─── */
#cd {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 5px; height: 5px;
  background: var(--ink); border-radius: 50%;
  transform: translate(-50%, -50%);
}
#cr {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 28px; height: 28px;
  border: 1px solid rgba(26,24,20,0.2); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
#cr.on { width: 44px; height: 44px; border-color: var(--green); }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  transition: background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
nav.on {
  background: rgba(255,255,255,0.97);
  border-color: var(--rule);
  backdrop-filter: blur(20px);
}
.n-logo {
  font-family: var(--serif); font-size: 15px;
  color: var(--ink); text-decoration: none; letter-spacing: 0.01em;
}
.n-logo i { font-style: italic; color: var(--green); }
.n-nav { display: flex; align-items: center; gap: 40px; list-style: none; }
.n-nav a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mid);
  text-decoration: none; transition: color .2s;
}
.n-nav a:hover { color: var(--ink); }
.n-book {
  font-size: 10px !important; font-weight: 500 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important;
  color: var(--white) !important;
  background: var(--ink);
  padding: 10px 22px;
  text-decoration: none;
  transition: background .2s;
}
.n-book:hover { background: var(--green) !important; color: var(--white) !important; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 64px 72px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.hero-wheel {
  position: absolute; top: 50%; right: 80px;
  transform: translateY(-50%);
  width: 130px; height: 130px;
  border: 1px solid var(--rule); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: spin 20s linear infinite;
  opacity: 0.5;
}
.hw-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; text-align: center;
  animation: spin 20s linear infinite reverse;
}
.hw-inner span {
  font-size: 8px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mid); white-space: nowrap;
}
.hw-dot { color: var(--green) !important; font-size: 7px !important; }
@keyframes spin { to { transform: rotate(360deg); } }

.h1 {
  font-family: var(--serif);
  font-size: clamp(68px, 11vw, 160px);
  line-height: 0.87;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-weight: 400;
  max-width: 13ch;
  padding-top: 140px;
  opacity: 0;
  animation: rise 1.2s var(--ease) forwards 0.1s;
}
.h1 i { font-style: italic; color: var(--green); }

.h-row {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: fade .9s forwards .9s;
}
.h-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.7; color: var(--mid);
  max-width: 380px; font-weight: 300;
}
.h-sub b, .h-sub strong { color: var(--ink); font-weight: 400; }
.h-actions { display: flex; gap: 12px; align-items: center; margin-left: 32px; flex-shrink: 0; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--white);
  padding: 14px 36px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--green); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--mid);
  padding: 13px 28px;
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--rule);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--green);
  padding: 14px 36px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, transform .2s;
}
.btn-white:hover { background: var(--off); transform: translateY(-1px); }
.btn-ghost-w {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.5);
  padding: 13px 24px;
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  transition: all .2s;
}
.btn-ghost-w:hover { color: var(--white); border-color: rgba(255,255,255,0.55); }

/* ─── SHARED ─── */
.sec { padding: 120px 64px; }
.sec-alt { background: var(--off); }
.eyebrow {
  font-size: 9px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green); display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--green); }
.eyebrow.lt { color: rgba(240,236,228,0.65); }
.eyebrow.lt::before { background: rgba(240,236,228,0.45); }
.section-h {
  font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400; line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.section-h i { font-style: italic; color: var(--green); }

/* ─── SCROLL REVEAL ─── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ─── ABOUT ─── */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 70vh;
  border-bottom: 1px solid #222;
  background: var(--ink);
}
.about-left {
  padding: 100px 64px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.about-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); font-weight: 400; margin-bottom: 32px;
}
.about-headline i { font-style: italic; color: var(--green); }
.about-body {
  font-size: 16px; line-height: 1.85;
  color: var(--mid); font-weight: 300; max-width: 420px;
  margin-bottom: 40px;
}
.about-body b, .about-body strong { color: var(--ink); font-weight: 400; }
.about-right {
  background: var(--ink);
  padding: 100px 64px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.about-right::before {
  content: 'Z';
  font-family: var(--serif); font-size: 400px; font-weight: 400;
  color: rgba(255,255,255,0.04);
  position: absolute; bottom: -80px; right: -20px; line-height: 1;
  pointer-events: none;
}
.about-name {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: rgba(255,255,255,0.9); line-height: 1.1; position: relative; z-index: 1;
}
.about-name i { font-style: italic; color: rgba(255,255,255,0.5); }
.about-title {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 10px; position: relative; z-index: 1;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; position: relative; z-index: 1;
}
.astat { padding: 24px 0; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 24px; margin-right: 24px; }
.astat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.astat-n { font-family: var(--serif); font-size: 40px; color: rgba(255,255,255,0.9); line-height: 1; }
.astat-l { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ─── WORK ─── */
#work { background: var(--off); padding: 100px 64px 0; border-bottom: 1px solid var(--rule); }
.work-head { margin-bottom: 56px; }
.work-h {
  font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400; line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.work-h i { font-style: italic; color: var(--gl); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); }
.wi { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: none; }
.wi.wide { grid-column: 1/-1; aspect-ratio: 21/8; }
.wi-bg {
  position: absolute; inset: 0;
  transition: transform 1s var(--ease);
  background-size: cover !important;
  background-position: center !important;
}
.wi:hover .wi-bg { transform: scale(1.04); }

/* Default work gradient backgrounds */
.w1 .wi-bg, .wi:nth-child(1) .wi-bg { background: linear-gradient(145deg, #1a2e24, #0c1a10); }
.w2 .wi-bg, .wi:nth-child(2) .wi-bg { background: linear-gradient(145deg, #281a0c, #1a1008); }
.w3 .wi-bg, .wi:nth-child(3) .wi-bg { background: linear-gradient(145deg, #0e1420, #0a0e1a); }
.w4 .wi-bg, .wi:nth-child(4) .wi-bg { background: linear-gradient(145deg, #1c0c10, #12080c); }
.w5 .wi-bg, .w-cta .wi-bg { background: linear-gradient(145deg, #141408, #0e0e04); }

.wi-link { position: absolute; inset: 0; z-index: 10; }
.wi-num {
  position: absolute; top: 20px; right: 22px;
  font-family: var(--serif); font-size: 64px;
  color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none;
}
.wi-arrow {
  position: absolute; top: 20px; left: 20px;
  width: 36px; height: 36px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--white);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .3s, transform .3s;
}
.wi:hover .wi-arrow { opacity: 1; transform: translateY(0); }
.wi-arrow::after { content: '↗'; }
.wi-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,7,0.95) 0%, rgba(10,9,7,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  transform: translateY(4px); transition: transform .4s var(--ease);
}
.wi:hover .wi-scrim { transform: translateY(0); }
.wi-cat { font-size: 9px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(200,220,210,0.8); margin-bottom: 6px; }
.wi-name { font-family: var(--serif); font-size: clamp(22px, 3vw, 40px); font-weight: 400; color: rgba(247,245,242,0.92); line-height: 1; }
.wi-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s .05s, transform .3s .05s;
}
.wi:hover .wi-tags { opacity: 1; transform: translateY(0); }
.wi-tag { font-size: 8px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid rgba(200,220,210,0.3); color: rgba(200,220,210,0.7); padding: 3px 9px; }

/* ─── SERVICES ─── */
#services { border-bottom: 1px solid var(--rule); background: var(--white); }
.srv-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.srv-left-h {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 54px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; color: var(--ink);
}
.srv-left-h i { font-style: italic; color: var(--green); }
.srv-left-note { font-size: 14px; color: var(--mid); line-height: 1.7; margin-top: 20px; max-width: 260px; font-weight: 300; }
.srv-list { border-top: 1px solid var(--rule); }
.srv-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; border-bottom: 1px solid var(--rule);
  transition: padding-left .3s var(--ease);
  position: relative;
}
.srv-item:hover { padding-left: 16px; }
.srv-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--green);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease);
}
.srv-item:hover::before { transform: scaleY(1); }
.srv-item-left { display: flex; align-items: center; gap: 20px; }
.srv-n { font-size: 10px; color: var(--mist); font-weight: 400; letter-spacing: 0.1em; min-width: 24px; }
.srv-name { font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); font-weight: 400; color: var(--ink); }
.srv-arrow-r { font-size: 16px; color: var(--mist); transition: color .2s, transform .2s; }
.srv-item:hover .srv-arrow-r { color: var(--green); transform: translate(3px, -3px); }

/* ─── PRICING ─── */
#pricing { background: var(--ink); border-bottom: 1px solid #222; }
.pricing-intro { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; }
.pricing-h {
  font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400; line-height: 1; letter-spacing: -0.02em;
  color: rgba(247,245,242,0.92);
}
.pricing-h i { font-style: italic; color: var(--gl); }
.pricing-note { font-size: 13px; color: rgba(247,245,242,0.45); max-width: 220px; text-align: right; line-height: 1.65; font-weight: 300; }
.pricing-note a { color: var(--gl); text-decoration: none; border-bottom: 1px solid rgba(61,100,84,0.3); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.pc { background: #1e1c18; padding: 44px 28px; position: relative; transition: background .3s; }
.pc:hover { background: #252018; }
.pc.featured { background: var(--white); }
.pc.featured:hover { background: var(--off); }
.pc.speed { background: var(--green); }
.pc.speed:hover { background: var(--gl); }
.pc-badge {
  position: absolute; top: 0; left: 0; right: 0;
  text-align: center; padding: 7px;
  font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
}
.pc.featured .pc-badge { background: var(--ink); color: var(--white); }
.pc.speed .pc-badge { background: rgba(0,0,0,0.2); color: rgba(255,255,255,0.7); }
.pc-tier { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; margin-bottom: 14px; margin-top: 20px; color: rgba(247,245,242,0.5); }
.pc.featured .pc-tier { color: var(--green); }
.pc.speed .pc-tier { color: rgba(255,255,255,0.6); }
.pc-price { font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: 1; }
.pc .pc-price { color: rgba(247,245,242,0.92); }
.pc.featured .pc-price { color: var(--ink); }
.pc.speed .pc-price { color: var(--white); }
.pc-price sup { font-size: 18px; vertical-align: top; margin-top: 10px; display: inline-block; font-family: var(--sans); font-weight: 300; opacity: 0.45; }
.pc-note { font-size: 10px; margin-top: 4px; letter-spacing: 0.06em; font-weight: 300; }
.pc .pc-note { color: rgba(247,245,242,0.4); }
.pc.featured .pc-note { color: var(--mid); }
.pc.speed .pc-note { color: rgba(255,255,255,0.5); }
.pc-rule { height: 1px; margin: 20px 0; }
.pc .pc-rule { background: rgba(255,255,255,0.08); }
.pc.featured .pc-rule { background: var(--rule); }
.pc.speed .pc-rule { background: rgba(255,255,255,0.15); }
.pc-list { list-style: none; }
.pc-list li {
  font-size: 12px; font-weight: 300; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: flex-start; gap: 9px;
  color: rgba(247,245,242,0.55);
}
.pc.featured .pc-list li { color: var(--mid); border-color: var(--rule); }
.pc.speed .pc-list li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.1); }
.pc-list li::before { content: '✓'; font-size: 10px; margin-top: 1px; flex-shrink: 0; }
.pc.featured .pc-list li::before { color: var(--green); }
.pc .pc-list li::before { color: rgba(247,245,242,0.3); }
.pc.speed .pc-list li::before { color: rgba(255,255,255,0.5); }
.pc-list li.no::before { content: '—'; }
.pc-list li.no { opacity: 0.3; }
.pc-cta {
  display: block; text-align: center; margin-top: 28px; padding: 13px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; transition: all .25s;
}
.pc .pc-cta { border: 1px solid rgba(255,255,255,0.12); color: rgba(247,245,242,0.5); background: transparent; }
.pc .pc-cta:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.pc.featured .pc-cta { background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.pc.featured .pc-cta:hover { background: var(--green); border-color: var(--green); }
.pc.speed .pc-cta { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.pc.speed .pc-cta:hover { background: rgba(255,255,255,0.25); }

/* ─── REVIEWS ─── */
#reviews { border-bottom: 1px solid var(--rule); background: var(--off); }
.rev-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--rule); margin-top: 64px; }
.rc { background: var(--white); padding: 44px 36px; transition: background .3s; }
.rc:hover { background: var(--gp); }
.rc-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.rc-star { width: 12px; height: 12px; background: var(--green); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); flex-shrink: 0; }
.rc-q { font-family: var(--serif); font-size: 40px; color: var(--green); opacity: 0.12; line-height: .7; margin-bottom: 4px; }
.rc-body { font-size: 15px; line-height: 1.78; color: var(--mid); font-style: italic; font-weight: 300; margin-bottom: 28px; }
.rc-rule { height: 1px; background: var(--rule); margin-bottom: 18px; }
.rc-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.rc-co { font-size: 11px; color: var(--mist); margin-top: 2px; letter-spacing: 0.04em; }

/* ─── CTA ─── */
#cta {
  background: var(--green);
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 64px 80px;
  position: relative; overflow: hidden;
}
#cta::before {
  content: 'START';
  font-family: var(--serif); font-size: clamp(200px, 28vw, 380px); font-weight: 400;
  color: rgba(255,255,255,0.04); line-height: 1; letter-spacing: -0.04em;
  position: absolute; bottom: -40px; right: -20px; pointer-events: none;
}
.cta-eyebrow { opacity: 0; animation: fade 1s forwards .2s; }
.cta-h {
  font-family: var(--serif);
  font-size: clamp(60px, 9vw, 130px);
  line-height: 0.9; letter-spacing: -0.03em; font-weight: 400;
  color: rgba(255,255,255,0.92);
  max-width: 14ch;
  position: relative; z-index: 1;
  margin-top: 24px; margin-bottom: 0;
  opacity: 0; animation: rise 1.2s var(--ease) forwards .3s;
}
.cta-h i { font-style: italic; color: rgba(255,255,255,0.75); }
.cta-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 48px; margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative; z-index: 1;
  opacity: 0; animation: fade .9s forwards 1s;
}
.cta-note { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 340px; font-weight: 300; }
.cta-btns { display: flex; gap: 10px; align-items: center; margin-left: 32px; flex-shrink: 0; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink); padding: 32px 64px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #252018;
}
.f-logo { font-family: var(--serif); font-size: 15px; color: rgba(247,245,242,0.7); }
.f-logo i { font-style: italic; color: var(--gl); }
.f-links { display: flex; gap: 28px; list-style: none; }
.f-links a { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,245,242,0.3); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: rgba(247,245,242,0.7); }
.f-copy { font-size: 10px; color: rgba(247,245,242,0.25); letter-spacing: 0.06em; }

/* ─── ANIMATIONS ─── */
@keyframes rise { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .srv-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .n-nav { display: none; }
  #hero, .about-left, .about-right, .sec, #work, #pricing, #cta, footer {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .h1 { font-size: clamp(56px, 12vw, 100px); }
  .h-row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .h-actions { margin-left: 0; }
  #about { grid-template-columns: 1fr; }
  .about-left { padding: 80px 24px; }
  .about-right { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .wi.wide { grid-column: 1; aspect-ratio: 16/9; }
  .rev-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .pricing-intro { flex-direction: column; align-items: flex-start; gap: 20px; }
  .pricing-note { text-align: left; }
  .cta-row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-btns { margin-left: 0; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 24px; }
  .f-links { justify-content: center; }
  body { cursor: auto; }
  #cd, #cr { display: none; }
  .hero-wheel { display: none; }
}
@media (max-width: 600px) {
  .price-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
}
