/* ============================================================
   SOYAL-SOLUTIONS — High-End Design System
   Black & White Luxury Agency Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700;900&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --off-black: #111111;
  --dark:    #1a1a1a;
  --mid:     #2e2e2e;
  --muted:   #6b6b6b;
  --light:   #c8c8c8;
  --off-white: #f5f5f3;
  --white:   #ffffff;
  --accent:  #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1280px;
  --pad: clamp(1.5rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Cookie Banner ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 2rem));
  background: var(--off-black);
  border: 1px solid var(--mid);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  backdrop-filter: blur(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
#cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(1rem);
}
#cookie-banner p { font-size: .85rem; color: var(--light); line-height: 1.5; flex: 1; }
#cookie-banner a { color: var(--white); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--white);
  color: var(--black);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .6rem 1.25rem;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.btn-cookie-accept:hover { background: var(--off-white); }
.btn-cookie-decline {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  padding: .6rem 1rem;
  border: 1px solid var(--mid);
  border-radius: 2px;
  transition: color .2s, border-color .2s;
}
.btn-cookie-decline:hover { color: var(--white); border-color: var(--muted); }

/* ─── Navigation ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-color: var(--mid);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  z-index: 2;
}
.nav-logo span { color: var(--muted); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border: 1px solid var(--white);
  border-radius: 2px;
  color: var(--white);
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--white); color: var(--black); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 2;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--muted); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12rem var(--pad) 6rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--muted);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 2.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--muted);
}
.hero-sub {
  font-size: 1rem;
  color: var(--light);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--white);
  color: var(--black);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  transition: background .2s, transform .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-ghost {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mid);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.btn-ghost svg { transition: transform .3s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
/* SVG Robot Placeholder */
.robot-figure {
  opacity: .15;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 40%);
  z-index: 1;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ─── Section Globals ────────────────────────────────────────── */
section { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.section-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--muted);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.section-title em { font-style: italic; color: var(--muted); }
.divider {
  border: none;
  border-top: 1px solid var(--mid);
}

/* ─── About / Stats ──────────────────────────────────────────── */
.about {
  background: var(--off-black);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mid);
}
.stat-item {
  background: var(--off-black);
  padding: 2.5rem 2rem;
  transition: background .3s;
}
.stat-item:hover { background: var(--dark); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Services ───────────────────────────────────────────────── */
.services { max-width: var(--max); margin: 0 auto; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.services-intro { font-size: 1rem; color: var(--light); line-height: 1.7; max-width: 44ch; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--mid);
}
.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .4s var(--ease);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--off-black);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  z-index: 0;
}
.service-card:hover { background: var(--off-black); }
.service-card:hover::before { transform: translateY(0); }
.service-card > * { position: relative; z-index: 1; }
.service-num {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  opacity: .6;
  transition: opacity .3s;
}
.service-card:hover .service-icon { opacity: 1; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-desc {
  font-size: .9rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-link {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s, gap .3s var(--ease);
}
.service-card:hover .service-link { color: var(--white); gap: .75rem; }

/* ─── Projects ───────────────────────────────────────────────── */
.projects-section {
  background: var(--off-black);
  max-width: 100%;
}
.projects-inner { max-width: var(--max); margin: 0 auto; }
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--mid);
  margin-top: 4rem;
}
.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.project-card:first-child { grid-column: span 2; aspect-ratio: 16/7; }
.project-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: background .4s;
}
.project-card:hover .project-placeholder { background: var(--mid); }
.project-robot { opacity: .08; transition: opacity .4s; }
.project-card:hover .project-robot { opacity: .12; }
.project-info {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.project-card:hover .project-info { opacity: 1; transform: translateY(0); }
.project-cat {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.project-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ─── Why Choose Us ──────────────────────────────────────────── */
.why { max-width: var(--max); margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--dark);
}
.why-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-items { display: flex; flex-direction: column; gap: 0; }
.why-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--mid);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: padding-left .3s var(--ease);
  cursor: default;
}
.why-item:hover { padding-left: .5rem; }
.why-item:first-child { border-top: 1px solid var(--mid); }
.why-icon-wrap {
  width: 40px; height: 40px;
  border: 1px solid var(--mid);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.why-item:hover .why-icon-wrap { border-color: var(--white); background: var(--white); }
.why-item:hover .why-icon-wrap svg { stroke: var(--black); }
.why-icon-wrap svg { stroke: var(--muted); transition: stroke .3s; }
.why-item-title {
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .35rem;
}
.why-item-desc { font-size: .875rem; color: var(--light); line-height: 1.6; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials {
  background: var(--off-black);
}
.testimonials-inner { max-width: var(--max); margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mid);
  margin-top: 4rem;
}
.testimonial-card {
  background: var(--off-black);
  padding: 3rem 2.5rem;
  transition: background .3s;
}
.testimonial-card:hover { background: var(--dark); }
.stars { display: flex; gap: 3px; margin-bottom: 1.5rem; }
.stars span { color: var(--white); font-size: 1rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; }
.author-role { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--white);
  color: var(--black);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  text-align: center;
}
.cta-banner .section-title { color: var(--black); }
.cta-banner .section-label { color: rgba(0,0,0,.4); justify-content: center; }
.cta-banner .section-label::before { background: rgba(0,0,0,.3); }
.cta-banner p { color: rgba(0,0,0,.6); max-width: 52ch; margin: 1.5rem auto 3rem; font-size: 1.05rem; }
.btn-dark {
  background: var(--black);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .2s var(--ease);
}
.btn-dark:hover { background: var(--off-black); transform: translateY(-2px); }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  margin-top: 4rem;
}
.contact-info p {
  font-size: .95rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--mid);
  border-radius: 2px;
  transition: border-color .2s, background .2s;
}
.contact-item:hover { border-color: var(--muted); background: var(--off-black); }
.contact-item svg { stroke: var(--muted); flex-shrink: 0; margin-top: 2px; }
.contact-item-text { font-size: .875rem; color: var(--light); line-height: 1.5; }
.contact-item-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }

/* ─── Form ───────────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--off-black);
  border: 1px solid var(--mid);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .875rem 1rem;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-field select option { background: var(--off-black); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--white);
  background: var(--dark);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--white);
  cursor: pointer;
}
.form-consent label {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent a { color: var(--white); text-decoration: underline; }
.form-submit {
  background: var(--white);
  color: var(--black);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self: flex-start;
  transition: background .2s, transform .2s var(--ease);
}
.form-submit:hover { background: var(--off-white); transform: translateY(-2px); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  padding: 1.5rem;
  border: 1px solid var(--mid);
  border-radius: 2px;
  font-size: .9rem;
  color: var(--light);
  line-height: 1.6;
}
.form-success.show { display: block; }
.form-success strong { color: var(--white); }

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--mid);
  padding: 4rem var(--pad) 2.5rem;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--mid);
  margin-bottom: 2rem;
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--muted); }
.footer-tagline { font-size: .85rem; color: var(--muted); line-height: 1.6; max-width: 32ch; }
.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .875rem;
  color: var(--light);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: .78rem;
  color: var(--muted);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: .78rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--white); }

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding-top: 10rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Print / Accessibility ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
