/* ─────────────────────────────────────────
   ANR Create — styles.css
   Warm cream editorial studio aesthetic
   ───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --bg:       #f8f5f0;
  --bg-2:     #f0e9df;
  --bg-3:     #e8dfd3;
  --surface:  #e0d5c8;
  --gold:     #a07830;
  --gold-lt:  #8a6820;
  --white:    #1a1612;
  --muted:    rgba(26,22,18,0.55);
  --border:   rgba(26,22,18,0.10);
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --radius:   12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }
em { font-style: italic; color: var(--gold); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: var(--bg);
  padding: .5rem 1rem; border-radius: 4px;
  font-size: .875rem; font-weight: 600;
  transition: top .2s;
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── CUSTOM CURSOR ── */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
  .cursor-dot {
    position: fixed; width: 5px; height: 5px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .1s var(--ease), opacity .2s;
    will-change: transform;
  }
  .cursor-ring {
    position: fixed; width: 32px; height: 32px;
    border: 1px solid rgba(201,169,110,0.5);
    border-radius: 50%;
    pointer-events: none; z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform .18s var(--ease), width .3s var(--ease), height .3s var(--ease), opacity .2s;
    will-change: transform;
  }
  body.cursor-hover .cursor-ring { width: 48px; height: 48px; border-color: var(--gold); }
  body.cursor-hidden .cursor-dot,
  body.cursor-hidden .cursor-ring { opacity: 0; }
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important; transform: none !important; filter: none !important;
    transition: none !important;
  }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── FOCUS STYLES ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  background: rgba(248,245,240,0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
}
.navbar.scrolled {
  background: rgba(248,245,240,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  height: 72px; gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex; align-items: center;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex; gap: 2.5rem; margin-left: auto;
}
.nav-links a {
  font-size: .8rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex; align-items: center; gap: 1.25rem;
}
.lang-switcher {
  display: flex; align-items: center; gap: .5rem;
}
.lang-btn {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  background: none; border: none;
  color: var(--muted); padding: .2rem .4rem;
  transition: color .3s;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover  { color: var(--white); }
.lang-sep { color: var(--border); font-size: .8rem; }

.btn-cta {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--gold); color: var(--bg);
  padding: .6rem 1.25rem; border-radius: 9999px;
  transition: background .3s, transform .3s var(--ease);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.hamburger {
  display: none;
  width: 2rem; height: 2rem;
  background: none; border: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span {
  display: block; width: 1.25rem; height: 1px;
  background: var(--white);
  transition: all .35s var(--ease);
}
.hamburger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:last-child  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(248,245,240,0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu ul { text-align: center; display: flex; flex-direction: column; gap: 1.5rem; }
.mob-menu ul li { opacity: 0; transform: translateY(16px); transition: opacity .4s, transform .4s var(--ease); }
.mob-menu.open ul li { opacity: 1; transform: none; }
.mob-menu.open ul li:nth-child(1){transition-delay:.05s}
.mob-menu.open ul li:nth-child(2){transition-delay:.10s}
.mob-menu.open ul li:nth-child(3){transition-delay:.15s}
.mob-menu.open ul li:nth-child(4){transition-delay:.20s}
.mob-menu ul li a {
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 4rem);
  font-style: italic; color: var(--white);
  transition: color .3s;
}
.mob-menu ul li a:hover { color: var(--gold); }
.mob-lang { display: flex; align-items: center; gap: .75rem; }
.mob-lang .lang-btn { font-size: .9rem; }

/* ── SECTION COMMONS ── */
section {
  padding: 7rem 2rem;
}
.section-container {
  max-width: 1280px; margin: 0 auto;
}
.section-label {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.section-label::before {
  content: ''; display: block;
  width: 2rem; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 3rem;
}

/* ── HERO ── */
#inicio {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  overflow: hidden;
}
#particles-js {
  position: absolute; inset: 0; z-index: 0;
}
.hero-logo-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 55vw, 620px);
  height: auto;
  opacity: 0.07;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  padding-top: 96px;
}
.hero-eyebrow {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  display: inline-flex; align-items: center; gap: .75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); opacity: .5;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -.02em; color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted); font-weight: 300;
  max-width: 540px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--bg);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .875rem 2rem; border-radius: 9999px;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .875rem 2rem; border-radius: 9999px;
  border: 1px solid var(--border);
  transition: border-color .3s, transform .3s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.scroll-line {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50%       { opacity: 1;  transform: scaleY(1); }
}

/* ── ABOUT ── */
#nosotros {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.about-body {
  font-size: 1.0625rem; color: var(--muted);
  line-height: 1.9; max-width: 780px;
  margin-bottom: 4rem;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color .4s, transform .4s var(--ease);
}
.feature:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-4px);
}
.feature-icon {
  width: 2.25rem; height: 2.25rem;
  color: var(--gold); opacity: .8;
  margin-bottom: 1.25rem;
}
.feature h3 {
  font-family: var(--serif); font-size: 1.25rem;
  font-weight: 500; color: var(--white);
  margin-bottom: .75rem;
}
.feature p { font-size: .9rem; color: var(--muted); line-height: 1.75; }

/* ── PROCESS ── */
#proceso { background: var(--bg); }
.process-timeline {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
  margin-top: 1rem;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 1rem;
}
.step-number {
  font-family: var(--serif); font-style: italic;
  font-size: 3rem; font-weight: 400;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color .4s;
}
.process-step:hover .step-number { color: rgba(201,169,110,0.4); }
.step-content h3 {
  font-family: var(--serif); font-size: 1.375rem;
  font-weight: 500; color: var(--white);
  margin-bottom: .75rem;
}
.step-content p { font-size: .875rem; color: var(--muted); line-height: 1.8; }
.process-connector {
  width: 1px; background: var(--border);
  align-self: stretch; min-height: 60px;
  position: relative; top: 2.5rem;
}

/* ── PROJECTS ── */
#proyectos {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.card-visual {
  position: relative; height: 260px;
  overflow: hidden;
}
/* Apex — dark blue/electric */
.card-visual.apex {
  background: linear-gradient(135deg, #07070D 0%, #0D0D1C 50%, #0a1628 100%);
}
.card-visual.apex::before {
  content: 'APEX';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', var(--sans);
  font-size: 5rem; font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(0,85,255,0.12);
  pointer-events: none;
}
/* Forma — warm linen */
.card-visual.forma {
  background: linear-gradient(135deg, #1C1A17 0%, #2A2620 50%, #1C1A17 100%);
}
.card-visual.forma::before {
  content: 'FORMA';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', var(--serif);
  font-size: 4rem; font-weight: 300; font-style: italic;
  letter-spacing: .1em;
  color: rgba(139,115,85,0.18);
  pointer-events: none;
}
/* Luna — blush/green */
.card-visual.luna {
  background: linear-gradient(135deg, #1A1714 0%, #221C18 50%, #1D2018 100%);
}
.card-visual.luna::before {
  content: '✿';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  color: rgba(200,154,140,0.15);
  pointer-events: none;
}
.card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.card-tag {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .4rem;
}
.card-name {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 500;
  color: var(--white); line-height: 1; margin-bottom: .25rem;
}
.card-sub { font-size: .75rem; color: rgba(26,22,18,0.55); }
.card-visual { transition: transform .6s var(--ease); }
.project-card:hover .card-visual { transform: scale(1.03); }

.card-info { padding: 1.5rem; }
.card-desc { font-size: .875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.card-tags {
  display: flex; gap: .5rem; margin-bottom: 1.25rem;
}
.card-tags span {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--surface); color: var(--muted);
  padding: .25rem .625rem; border-radius: 9999px;
  border: 1px solid var(--border);
}
.card-link {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .375rem;
  transition: gap .3s var(--ease);
}
.card-link:hover { gap: .625rem; }


/* ── CONTACT ── */
#contacto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: start;
}
.contact-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.contact-channels {
  display: flex; flex-direction: column; gap: .875rem;
}
.channel-btn {
  display: inline-flex; align-items: center; gap: .875rem;
  padding: .875rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: .85rem; font-weight: 500;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
  max-width: 280px;
}
.channel-btn svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.channel-btn.email { color: var(--white); }
.channel-btn.email:hover { border-color: var(--gold); color: var(--gold); }
.channel-btn.whatsapp { color: #25D366; border-color: rgba(37,211,102,0.2); }
.channel-btn.whatsapp:hover { background: rgba(37,211,102,0.06); border-color: #25D366; }

/* Form */
form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: .75rem; padding: .875rem 1rem;
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  color: var(--white); outline: none; width: 100%;
  transition: border-color .3s, box-shadow .3s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(26,22,18,0.25); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.btn-submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--gold); color: var(--bg);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .875rem 1.75rem; border-radius: 9999px;
  border: none; cursor: pointer;
  transition: background .3s, transform .3s var(--ease), box-shadow .3s;
  margin-top: .5rem;
}
.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-arrow { font-size: 1rem; transition: transform .3s var(--ease); }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }
.form-feedback {
  font-size: .875rem; padding: .75rem 1rem;
  border-radius: .5rem; min-height: 1rem;
}
.form-feedback.success {
  background: rgba(37,211,102,0.08);
  color: #25D366; border: 1px solid rgba(37,211,102,0.2);
}
.form-feedback.error {
  background: rgba(255,80,80,0.08);
  color: #ff5050; border: 1px solid rgba(255,80,80,0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
  position: relative;
}
.footer-container {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-tagline {
  font-size: .8rem; color: var(--muted);
  font-style: italic; margin-top: .35rem;
}
.footer-nav {
  display: flex; gap: 2rem; align-items: center;
}
.footer-nav a {
  font-size: .72rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-social {
  display: flex; gap: 1rem; justify-content: flex-end;
}
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .3s;
}
.footer-social a svg { width: 1rem; height: 1rem; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.footer-address {
  font-size: .78rem; color: var(--muted);
  font-style: normal;
}
.footer-address a { color: var(--muted); transition: color .3s; }
.footer-address a:hover { color: var(--gold); }
.footer-copy {
  font-size: .72rem; color: rgba(26,22,18,0.35);
}
.scroll-top {
  position: absolute; bottom: 2rem; right: 2rem;
  width: 2.5rem; height: 2.5rem;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 9999px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; opacity: 0; pointer-events: none;
}
.scroll-top svg { width: 1rem; height: 1rem; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  transform: translateY(100%);
  transition: transform .45s var(--ease);
  box-shadow: 0 -4px 24px rgba(26,22,18,0.06);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  font-size: .82rem; color: var(--muted); line-height: 1.6;
}
.cookie-btn {
  background: var(--gold); color: var(--bg);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .55rem 1.4rem; border-radius: 9999px; border: none;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .3s, transform .3s var(--ease);
}
.cookie-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.5rem; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-connector { display: none; }
  .process-step { align-items: flex-start; text-align: left; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .features-grid, .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 768px) {
  section { padding: 5rem 1.5rem; }
  .nav-links, .btn-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: clamp(2rem, 9vw, 3.5rem); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
