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

:root {
  --bg:        #060608;
  --surface:   #0e0e12;
  --surface-2: #16161c;
  --accent:    #C8FF00;
  --accent-dim: rgba(200,255,0,0.12);
  --text:      #F0F0F4;
  --muted:     #a8a8b8;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);
  --radius:    14px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w:     1200px;
  --gutter:    1.5rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === BACKGROUND LAYERS === */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(200,255,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.bg-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,255,0,0.04) 0%, transparent 70%);
}

main, nav, footer { position: relative; z-index: 1; }

/* === PROGRESS BAR === */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--accent);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; font-weight: 700; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.section-eyebrow--center { justify-content: center; }
.section-eyebrow--center::before { display: none; }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
}
.section-title em { font-style: normal; color: var(--accent); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(200,255,0,0.2);
}
.btn--primary:hover {
  background: #d4ff1a;
  box-shadow: 0 0 30px rgba(200,255,0,0.35);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  border-color: rgba(200,255,0,0.4);
  color: var(--accent);
}
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; border-radius: 10px; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav__links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.nav__cta:hover { background: #d4ff1a !important; color: #000 !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform 0.3s; }
.nav__toggle.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero__inner { max-width: 860px; }

.hero__headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 1.75rem;
}
.hero__headline .accent { color: var(--accent); }
.hero__headline .word-reveal {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.hero__headline .word-reveal.in { opacity: 1; transform: translateY(0); }

.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--accent);
  opacity: 0.5;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { width: 40px; opacity: 0.5; }
  50%      { width: 70px; opacity: 1; }
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat__num {
  display: inline;
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__num-suffix {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* === SERVICES SHOWCASE === */
.services {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.services__header { margin-bottom: 4rem; }

.services-showcase {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: start;
}

.services-sticky {
  position: sticky;
  top: 6rem;
  height: calc(100vh - 12rem);
  display: flex;
  align-items: center;
  padding-right: 4rem;
}
.services-sticky__inner { width: 100%; }

.service-display {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  overflow: hidden;
  transition: border-color 0.4s;
}
.service-display:hover { border-color: rgba(200,255,0,0.2); }

.service-display__glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,255,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s;
}
.service-display__num {
  display: block;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.service-display__icon {
  color: rgba(200,255,0,0.6);
  width: 80px;
  height: 80px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.service-display__icon svg { width: 100%; height: 100%; }

.services-list { padding-left: 2rem; border-left: 1px solid var(--border); }

.service-item {
  padding: 4rem 0 4rem 3rem;
  border-bottom: 1px solid var(--border);
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.service-item:last-child { border-bottom: none; }
.service-item.active { opacity: 1; }

.service-item__title {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.service-item__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.service-item__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-item__features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}
.service-item__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* === PORTFOLIO === */
.work {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.frames-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.browser-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s;
}
.browser-frame:hover {
  border-color: rgba(200,255,0,0.25);
  transform: translateY(-3px);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-2);
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.browser-open {
  color: var(--muted);
  transition: color 0.2s;
  flex-shrink: 0;
  display: flex;
}
.browser-open:hover { color: var(--accent); }
.browser-open svg { width: 14px; height: 14px; }

.browser-body {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #fff;
}
.browser-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  position: relative;
  z-index: 1;
}
.browser-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--surface);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.browser-fallback.show { opacity: 1; pointer-events: all; }
.browser-fallback p {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
}

.frame-meta {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}
.frame-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid var(--border);
}
.frame-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.frame-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* Branding cards */
.work__subhead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}
.work-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.work-card:hover {
  border-color: rgba(200,255,0,0.2);
  transform: translateY(-2px);
}
.work-card__accent {
  height: 3px;
  background: var(--c, var(--accent));
  margin: -1.75rem -1.75rem 1.5rem;
  opacity: 0.7;
}
.work-card__tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.85rem; }
.work-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.work-card__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* === ABOUT === */
.about {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.about__wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.about__right p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about__lead { color: var(--text) !important; font-size: 1.05rem !important; font-weight: 500; }
.about__right .btn { margin-top: 0.75rem; }

/* === SCOPE & TIMELINE === */
.scope {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.scope__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 4rem;
  line-height: 1.75;
}
.scope__sub strong { color: var(--accent); font-weight: 600; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
}
.timeline__step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.timeline__node {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(200,255,0,0.15);
}
.timeline__line {
  position: absolute;
  top: 22px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(200,255,0,0.2) 100%);
}
.timeline__line.last { display: none; }

.timeline__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.timeline__week {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.timeline__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Packages */
.scope__packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.scope__package {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s;
}
.scope__package:hover { border-color: var(--border-2); }
.scope__package--featured {
  border-color: rgba(200,255,0,0.3);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(200,255,0,0.04) 100%);
  box-shadow: 0 0 30px rgba(200,255,0,0.06);
}
.scope__package-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.scope__package--featured .scope__package-label { color: var(--accent); }
.scope__package-price {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.scope__package ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.scope__package li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.scope__package li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }

.rush-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(200,255,0,0.06) 0%, rgba(200,255,0,0.02) 100%);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.rush-banner__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(200,255,0,0.4));
}
.rush-banner strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--accent);
}
.rush-banner p { font-size: 0.88rem; color: var(--muted); }

/* === CARE PLAN === */
.care {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.care__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.care-card {
  max-width: 480px;
  background: var(--surface);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 0 60px rgba(200,255,0,0.06), 0 0 120px rgba(200,255,0,0.03);
  position: relative;
  overflow: hidden;
}
.care-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,255,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.care-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.care-card__amount {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.care-card__per {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 500;
}
.care-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}
.care-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.care-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.care-card__list svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.care-card__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* === CONTACT === */
.contact {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,255,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.contact__headline {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.contact__sub {
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
}
.contact__email {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.contact__email:hover { color: var(--accent); border-color: var(--accent); }
.contact__cta { margin-top: 2.5rem; }

/* === FOOTER === */
.footer { padding: 2rem 0; border-top: 1px solid var(--border); }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.footer__logo span { color: var(--accent); }
.footer__copy { font-size: 0.8rem; color: var(--muted); }
.footer__links { display: flex; gap: 1.5rem; list-style: none; }
.footer__links a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }

/* === SCROLL ANIMATIONS === */
.reveal, .reveal-fade, .reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-fade { transform: none; }
.reveal.in, .reveal-fade.in, .reveal-up.in { opacity: 1; transform: none; }
[style*="--delay"] { transition-delay: var(--delay, 0s); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .services-showcase { grid-template-columns: 300px 1fr; }
  .services-sticky { padding-right: 2.5rem; }
  .work-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .services-showcase { grid-template-columns: 1fr; }
  .services-sticky { display: none; }
  .services-list { border-left: none; padding-left: 0; }
  .service-item { opacity: 1; padding: 2.5rem 0; }
  .frames-grid { grid-template-columns: 1fr; }
  .about__wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .scope__packages { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 2rem; }
  .timeline__step { text-align: left; display: flex; flex-direction: column; align-items: flex-start; padding-left: 0; }
  .timeline__node { margin: 0 0 0.75rem; }
  .timeline__line { display: none; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
    list-style: none;
  }
  .nav__links.open { display: flex; }
  .nav__links.open a { font-size: 1.3rem; color: var(--text); }
  .nav__links.open .nav__cta { font-size: 1.1rem !important; padding: 0.75rem 1.75rem !important; }
  .nav__toggle { display: flex; }
  .work-cards-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 2rem; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --gutter: 1.1rem; }
  .services, .work, .about, .scope, .care, .contact { padding: 5rem 0; }
  .hero { padding-top: 6rem; padding-bottom: 4rem; }
  .care-card { padding: 2rem; }
}
