:root {
  --bg: #080808;
  --surface: #111111;
  --surface2: #161616;
  --accent: #ff2d55;
  --accent2: #ff6b35;
  --text: #f0ece4;
  --muted: #6b6b6b;
  --border: #1e1e1e;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,45,85,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
}
body:hover .cursor { transform: scale(1); }

/* 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  backdrop-filter: blur(12px);
  background: rgba(8,8,8,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 10px 24px;
  transition: all 0.25s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* Hamburger (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 499;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--text); padding-left: 8px; }

/* ─── HERO ─────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 40px) 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 20vw, 280px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  white-space: nowrap;
  user-select: none;
  letter-spacing: -2px;
  pointer-events: none;
}

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -1px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title .accent { color: var(--accent); }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.hero-sub {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-desc {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}
.hero-desc strong { color: var(--text); font-weight: 500; }

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform 0.3s ease;
  mix-blend-mode: overlay;
}
.hero-btn:hover::after { transform: translateX(0); }
.hero-btn svg { transition: transform 0.25s; }
.hero-btn:hover svg { transform: translateX(4px); }

.hero-scroll-line {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-line span {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line::before {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: lineGrow 1.5s 1s ease forwards;
  transform-origin: top;
  transform: scaleY(0);
}

@keyframes lineGrow {
  to { transform: scaleY(1); }
}

/* ─── MARQUEE ──────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}
.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─────────────────────────────────────────── */
section { position: relative; z-index: 1; }

.section-pad { padding: 120px 60px; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── ABOUT ────────────────────────────────────────────── */
#about {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  margin-bottom: 12px;
}
.about-left h2 em {
  font-style: normal;
  color: var(--accent);
}

/* Location flag under heading */
.about-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.about-location .flag { font-size: 14px; }
.about-location span.dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-left p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-left p strong { color: var(--text); font-weight: 500; }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Photo sticker card */
.about-photo-wrap {
  position: relative;
  background: var(--surface2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  height: 320px;
  transition: border-color 0.3s;
}
.about-photo-wrap:hover { border-color: var(--accent); }

.about-photo {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 105%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  filter: drop-shadow(0 0 32px rgba(255,45,85,0.08));
}

.about-photo-label {
  position: relative;
  z-index: 2;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-photo-label span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1;
}
.about-photo-sub {
  font-family: 'Space Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent) !important;
}

.about-photo-accent {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-top: 48px solid var(--accent);
  border-left: 48px solid transparent;
  z-index: 2;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-box {
  background: var(--bg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.stat-box:hover { border-color: var(--accent); }
.stat-box .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* ─── SERVICES ─────────────────────────────────────────── */
#services { background: var(--bg); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 80px;
}
.services-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
}
.services-header p {
  max-width: 360px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.service-item {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 48px;
  transition: padding-left 0.3s;
  cursor: default;
}
.service-item:hover { padding-left: 20px; }
.service-item:hover .service-num { color: var(--accent); }
.service-item:last-child { border-bottom: 1px solid var(--border); }

.service-num {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  transition: color 0.3s;
}

.service-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-item:hover .service-content h3 { color: var(--accent); }

.service-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 2px;
}

.service-arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
  flex-shrink: 0;
}
.service-item:hover .service-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

/* CTA Service item variant */
.service-item.service-cta-item {
  cursor: pointer;
}
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 12px 24px;
  transition: all 0.25s;
  margin-top: 20px;
  width: fit-content;
}
.service-cta-link:hover {
  background: var(--accent);
  color: #fff;
}

/* ─── PROCESS ──────────────────────────────────────────── */
#process { background: var(--surface2); }
#process h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  margin-bottom: 80px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process-step {
  background: var(--surface);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.process-step:hover { border-color: var(--accent); }
.process-step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s ease;
}
.process-step:hover::after { width: 100%; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(255,45,85,0.15); }

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── WHY ──────────────────────────────────────────────── */
#why {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

#why h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 40px;
}
#why h2 span { color: var(--accent); }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}
.why-item:hover { padding-left: 12px; }
.why-icon {
  width: 40px; height: 40px;
  background: rgba(255,45,85,0.1);
  border: 1px solid rgba(255,45,85,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
}
.why-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.why-visual {
  position: relative;
  height: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* CSS Mockup Browser */
.mockup-browser {
  width: 85%;
  height: 75%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.mockup-bar {
  height: 28px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27c93f; }
.mockup-url {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  margin: 0 auto;
  padding-right: 28px;
}
.mockup-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mockup-nav-line {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}
.mockup-nav-line .w40 { margin-right: auto; }
.mockup-block {
  background: var(--border);
  border-radius: 2px;
}
.mockup-block.bright { background: var(--muted); }
.mockup-block.accent-fill { background: var(--accent); }
.w20 { width: 20px; }
.w24 { width: 24px; }
.w32 { width: 32px; }
.w40 { width: 40px; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }
.h5 { height: 5px; }
.h6 { height: 6px; }
.h8 { height: 8px; }
.h10 { height: 10px; }
.h14 { height: 14px; }
.mt4 { margin-top: 4px; }
.mt6 { margin-top: 6px; }
.mt8 { margin-top: 8px; }
.mt12 { margin-top: 12px; }

.mockup-hero-area {
  display: flex;
  gap: 24px;
  align-items: center;
}
.mockup-hero-text { flex: 1; display: flex; flex-direction: column; }
.mockup-hero-img {
  width: 80px;
  height: 80px;
  background: var(--surface2);
  border-radius: 4px;
  border: 1px solid var(--border);
}
.mockup-cards-row {
  display: flex;
  gap: 12px;
}
.mockup-card-block {
  flex: 1;
  height: 60px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.why-badge {
  position: absolute;
  background: var(--accent);
  padding: 20px 28px;
  bottom: 40px;
  right: 40px;
}
.why-badge p {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ─── CONTACT ──────────────────────────────────────────── */
#contact {
  background: var(--surface);
  text-align: center;
}
#contact .section-label { justify-content: center; }
#contact .section-label::before { display: none; }
#contact .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

#contact h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  margin-bottom: 32px;
}
#contact h2 .outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}
#contact h2 .accent { color: var(--accent); }

#contact .contact-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 22px 48px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(37,211,102,0.25); }

.contact-note {
  margin-top: 32px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}

/* Additional contact links (phone + email) */
.contact-alt-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.contact-alt-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-alt-links a:hover { color: var(--text); }
.contact-alt-links .divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
footer .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--muted);
  text-decoration: none;
}
footer .footer-logo span { color: var(--accent); }
footer p {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

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

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

/* ─── RESPONSIVE ───────────────────────────────────────── */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }
  nav { padding: 0 32px; }
  .section-pad { padding: 100px 40px; }
  #hero { padding: calc(var(--nav-h) + 40px) 40px 80px; }
  #about { gap: 60px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-hamburger { display: flex; }

  #hero {
    padding: calc(var(--nav-h) + 28px) 20px 60px;
    justify-content: flex-start;
    min-height: auto;
  }
  .hero-title { font-size: clamp(48px, 13vw, 100px); }
  .hero-sub { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-desc { max-width: 100%; font-size: 15px; }
  .hero-btn { width: 100%; justify-content: center; }
  .hero-scroll-line { display: none; }

  .section-pad { padding: 72px 20px; }

  #about { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { height: 260px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-box { padding: 28px 20px; }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
  }
  .services-header p { max-width: 100%; }
  .service-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  .service-arrow { display: none; }
  .service-item:hover { padding-left: 8px; }
  .service-content h3 { font-size: clamp(24px, 6vw, 36px); }

  .process-grid { grid-template-columns: 1fr; gap: 2px; }
  #process h2 { margin-bottom: 48px; }
  .process-step { padding: 36px 24px; }

  #why {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-visual { display: none; }

  #contact h2 { font-size: clamp(40px, 12vw, 80px); }
  .contact-btn { padding: 18px 28px; font-size: 12px; width: 100%; justify-content: center; }
  .contact-alt-links { gap: 16px; flex-direction: column; }
  .contact-alt-links .divider { width: 32px; height: 1px; }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px 20px;
  }
}

/* Small phones (≤400px) */
@media (max-width: 400px) {
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { height: 220px; }
  .hero-title { font-size: clamp(44px, 14vw, 80px); }
}
