/* ═══════════════════════════════════════════════════
   NUNYA BUNYA v2 — Dark Premium Design System
   Matching Founder Package aesthetic
   ═══════════════════════════════════════════════════ */

/* ═══════════ VARIABLES ═══════════ */
:root {
  --teal: #00E5CC;
  --teal-glow: rgba(0,229,204,0.15);
  --teal-dark: #00c4af;
  --magenta: #FF4DDD;
  --magenta-glow: rgba(255,77,221,0.15);
  --chartreuse: #7FFF00;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1A1A1A;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.45);
  --subtle: rgba(255,255,255,0.07);
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* ═══════════ CUSTOM CURSOR ═══════════ */
.cursor {
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(0,229,204,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.4s ease, width 0.3s, height 0.3s, border-color 0.2s;
  transform: translate(-50%, -50%);
}
.cursor.hovering { transform: translate(-50%,-50%) scale(2.5); background: var(--magenta); }
.cursor-ring.hovering { width: 60px; height: 60px; border-color: rgba(255,77,221,0.3); }

/* ═══════════ NOISE OVERLAY ═══════════ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* ═══════════ NAVIGATION ═══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 22px; letter-spacing: 0.02em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s; cursor: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark) !important; background: var(--teal);
  padding: 10px 24px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; cursor: none;
}
.nav-cta:hover { background: var(--magenta); transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: 0.3s;
}

/* ═══════════ HERO (full viewport) ═══════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-orb-1 {
  position: absolute; top: -150px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,204,0.12) 0%, transparent 65%);
  pointer-events: none; animation: pulse 8s ease-in-out infinite;
}
.hero-orb-2 {
  position: absolute; bottom: -100px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,221,0.1) 0%, transparent 65%);
  pointer-events: none; animation: pulse 10s ease-in-out infinite reverse;
}
.hero-eyebrow {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--teal); }
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900; font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9; text-transform: uppercase;
  letter-spacing: -0.01em; margin-bottom: 32px;
  max-width: 900px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title .accent { color: var(--teal); display: block; }
.hero-title .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.2);
  color: transparent;
}
.hero-sub {
  font-size: 18px; font-weight: 300; color: var(--muted);
  line-height: 1.65; max-width: 520px; margin-bottom: 48px;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}

/* ═══════════ PAGE HERO (inner pages) ═══════════ */
.page-hero {
  padding: 180px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero .hero-orb-1,
.page-hero .hero-orb-2 { position: absolute; }
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 900; font-size: clamp(48px, 7vw, 80px);
  text-transform: uppercase; line-height: 0.92;
  letter-spacing: 0.01em; margin-bottom: 16px;
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.page-hero h1 span { color: var(--teal); }
.page-hero p {
  font-size: 16px; color: var(--muted); font-weight: 300;
  line-height: 1.7; max-width: 520px;
  opacity: 0; animation: fadeUp 0.8s 0.25s forwards;
}

/* ═══════════ SECTIONS ═══════════ */
section { position: relative; z-index: 2; }
.section-pad { padding: 100px 0; }
.section-dark { background: var(--dark2); border-top: 1px solid var(--subtle); border-bottom: 1px solid var(--subtle); }

.section-label {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--teal); }

.section-heading {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(36px, 5vw, 64px); text-transform: uppercase;
  line-height: 0.92; letter-spacing: 0.01em; margin-bottom: 20px;
}
.section-heading span { color: var(--teal); }

.section-sub {
  font-size: 15px; color: var(--muted); font-weight: 300;
  line-height: 1.8; max-width: 520px; margin-bottom: 48px;
}
.section-sub strong { color: var(--white); font-weight: 600; }

/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); background: var(--teal);
  padding: 18px 40px; text-decoration: none;
  display: inline-block; border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: none;
}
.btn-primary:hover { background: var(--magenta); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,77,221,0.3); }

.btn-magenta {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark); background: var(--magenta);
  padding: 18px 40px; text-decoration: none;
  display: inline-block; border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: none;
}
.btn-magenta:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,229,204,0.3); }

.btn-ghost {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s; cursor: none;
  background: none; border: none; padding: 0;
}
.btn-ghost:hover { color: var(--teal); }

.btn-outline {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 36px; text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: none;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ═══════════ CARDS ═══════════ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2px; }
.card {
  background: var(--dark2); border: 1px solid var(--subtle);
  padding: 32px; transition: background 0.2s, border-color 0.2s;
  cursor: none;
}
.card:hover { background: rgba(0,229,204,0.04); border-color: rgba(0,229,204,0.2); }
.card-icon {
  font-size: 2rem; margin-bottom: 20px; display: block;
}
.card h3 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 18px; text-transform: uppercase; color: var(--white);
  letter-spacing: 0.04em; margin-bottom: 10px;
}
.card p { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; }

.card-featured { border-color: var(--magenta); position: relative; }
.card-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--magenta); color: var(--dark);
  font-family: var(--font-heading); font-weight: 900;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 6px 14px;
}

/* ═══════════ SERVICE PACKAGES ═══════════ */
.package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.package {
  background: var(--dark2); border: 1px solid var(--subtle);
  padding: 40px; transition: background 0.2s, border-color 0.2s;
}
.package:hover { border-color: rgba(0,229,204,0.15); }
.package-featured { border-color: var(--magenta); position: relative; }
.package-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--teal));
}
.package h3 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 24px; text-transform: uppercase; color: var(--white);
  letter-spacing: 0.02em; margin-bottom: 8px;
}
.package-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 24px; }
.package-list { list-style: none; margin-bottom: 28px; }
.package-list li {
  padding: 8px 0; font-size: 13px; color: var(--muted); font-weight: 300;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--subtle);
}
.package-list li::before { content: '\2713'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.package-price {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 36px; color: var(--white); margin-bottom: 4px;
}
.package-price .accent { color: var(--teal); }
.package-note { font-size: 12px; color: var(--muted); font-weight: 300; margin-bottom: 24px; }

/* ═══════════ PORTFOLIO ═══════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2px; }
.portfolio-item {
  background: var(--dark2); border: 1px solid var(--subtle);
  overflow: hidden; transition: border-color 0.2s;
}
.portfolio-item:hover { border-color: rgba(0,229,204,0.2); }
.portfolio-thumb {
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.portfolio-thumb:nth-child(1) { background: linear-gradient(135deg, var(--dark3), var(--dark2)); }
.portfolio-item:nth-child(1) .portfolio-thumb { background: linear-gradient(135deg, rgba(0,229,204,0.1), var(--dark2)); }
.portfolio-item:nth-child(2) .portfolio-thumb { background: linear-gradient(135deg, rgba(255,77,221,0.1), var(--dark2)); }
.portfolio-item:nth-child(3) .portfolio-thumb { background: linear-gradient(135deg, rgba(127,255,0,0.08), var(--dark2)); }
.portfolio-info { padding: 28px 32px; }
.portfolio-info h3 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 18px; text-transform: uppercase; color: var(--white);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.portfolio-info p { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; }
.portfolio-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.portfolio-tags span {
  background: rgba(0,229,204,0.1); color: var(--teal);
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px;
}

/* ═══════════ STATS ═══════════ */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2px; }
.stat-card {
  background: var(--dark3); border: 1px solid var(--subtle);
  padding: 28px 32px; position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
}
.stat-num {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 48px; line-height: 1; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.stat-num span { color: var(--teal); }
.stat-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.5; }

/* ═══════════ PROCESS STEPS ═══════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.process-step {
  background: var(--dark2); border: 1px solid var(--subtle);
  padding: 32px 24px; text-align: center;
}
.step-num {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 48px; color: rgba(0,229,204,0.15); line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 16px; text-transform: uppercase; color: var(--white);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ═══════════ FORMS ═══════════ */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-input, .form-select, .form-textarea {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font-body);
  font-size: 14px; font-weight: 300; padding: 14px 16px;
  outline: none; transition: border-color 0.2s, background 0.2s;
  cursor: none; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal); background: rgba(0,229,204,0.04);
}
.form-select { color: rgba(255,255,255,0.6); }
.form-select option { background: var(--dark3); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark); background: var(--teal);
  padding: 18px 40px; border: none; cursor: none;
  width: 100%; margin-top: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-submit:hover { background: var(--magenta); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,77,221,0.3); }

/* ═══════════ CONTACT GRID ═══════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--subtle);
}
.contact-icon {
  font-size: 1.3rem; width: 40px; height: 40px;
  background: rgba(0,229,204,0.08); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-family: var(--font-heading);
  font-weight: 700; font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white); margin-bottom: 2px;
}
.contact-detail-text span { font-size: 13px; color: var(--muted); font-weight: 300; }
.contact-detail-text a { color: var(--teal); transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--magenta); }

/* ═══════════ LEAD MAGNET ═══════════ */
.lead-magnet-section {
  background: var(--dark2); border-top: 1px solid var(--subtle);
  padding: 80px 0; text-align: center;
}
.lead-magnet-form {
  display: flex; gap: 0; max-width: 500px; margin: 0 auto;
}
.lead-magnet-form input {
  flex: 1; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--dark3); color: var(--white);
  font-size: 14px; font-family: var(--font-body); font-weight: 300;
  outline: none; transition: border-color 0.2s;
}
.lead-magnet-form input::placeholder { color: rgba(255,255,255,0.2); }
.lead-magnet-form input:focus { border-color: var(--teal); }
.lead-magnet-form button {
  padding: 14px 28px; background: var(--teal);
  color: var(--dark); border: none;
  font-family: var(--font-heading); font-weight: 900;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: none; white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.lead-magnet-form button:hover { background: var(--magenta); transform: translateY(-1px); }
.lead-magnet-privacy { color: rgba(255,255,255,0.2); font-size: 11px; margin-top: 12px; font-weight: 300; }

/* ═══════════ MARQUEE ═══════════ */
.marquee-strip {
  background: var(--teal); overflow: hidden;
  padding: 14px 0; position: relative; z-index: 2;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark); padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
.marquee-item::after { content: '\2605'; font-size: 10px; }

/* ═══════════ CTA SECTION ═══════════ */
.section-cta {
  text-align: center; padding: 100px 0;
  position: relative; overflow: hidden;
}
.section-cta .hero-orb-1 { opacity: 0.5; }
.section-cta .hero-orb-2 { opacity: 0.5; }

/* ═══════════ SUCCESS MESSAGE ═══════════ */
.form-success {
  display: none; text-align: center; padding: 40px;
  background: rgba(0,229,204,0.05); border: 1px solid rgba(0,229,204,0.2);
}
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 32px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.form-success-text { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ═══════════ FOOTER ═══════════ */
footer {
  padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--subtle);
  position: relative; z-index: 2;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo img { height: 28px; filter: brightness(0) invert(1); }
.footer-logo span {
  font-family: var(--font-heading); font-weight: 900;
  font-size: 16px; text-transform: uppercase; letter-spacing: 0.02em;
}
.footer-logo span em { color: var(--teal); font-style: normal; }
.footer-links {
  display: flex; gap: 28px; list-style: none;
}
.footer-links a {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s; cursor: none;
}
.footer-links a:hover { color: var(--teal); }
.footer-copy {
  font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300;
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.7; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ UTILITY ═══════════ */
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-magenta { color: var(--magenta); }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.muted-divider { border-top: 1px solid var(--subtle); padding-top: 40px; margin-top: 48px; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  nav { padding: 16px 24px; }

  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,13,13,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--subtle);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 24px 60px; }
  .hero-title { font-size: clamp(40px, 9vw, 72px); }
  .page-hero { padding: 140px 0 60px; }
  .page-hero h1 { font-size: clamp(36px, 7vw, 56px); }

  .package-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }

  .process-grid { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  footer { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  .lead-magnet-form { flex-direction: column; }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  section.section-pad { padding: 60px 0; }
  .section-heading { font-size: clamp(28px, 6vw, 42px); }

  /* Hide custom cursor on touch devices */
  .cursor, .cursor-ring { display: none; }
  body, a, button, input, select, textarea { cursor: auto; }
}
