/* ============================================================
   BuildIC.ai — Main Stylesheet
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* --- Design Tokens --- */
:root {
  --orange:        #FF9532;
  --orange-dark:   #e8841f;
  --orange-glow:   rgba(255, 149, 50, 0.18);
  --dark:          #233246;
  --dark-deep:     #151719;
  --ink:           #151719;
  --body:          #374151;
  --muted:         #6b7280;
  --subtle:        #9ca3af;
  --bg:            #f5f8fc;
  --bg-alt:        #eef2f7;
  --line:          #e4e7ec;
  --white:         #ffffff;

  --shadow-xs: 0 1px 3px rgba(20, 30, 45, 0.05);
  --shadow-sm: 0 2px 8px rgba(20, 30, 45, 0.07), 0 1px 3px rgba(20, 30, 45, 0.04);
  --shadow-md: 0 8px 28px rgba(20, 30, 45, 0.10), 0 3px 8px rgba(20, 30, 45, 0.05);
  --shadow-lg: 0 24px 60px rgba(20, 30, 45, 0.13), 0 8px 20px rgba(20, 30, 45, 0.07);

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   26px;
  --radius-xl:   36px;
  --radius-full: 999px;

  --header-h: 68px;
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --speed:    0.22s;
}

/* --- Layout Helpers --- */
.container {
  width: min(1200px, 100%);
  padding: 0 clamp(20px, 4vw, 48px);
  margin: 0 auto;
}

.section {
  padding: clamp(80px, 9vw, 120px) 0;
}

.section-white { background: var(--white); }
.section-alt   { background: var(--bg); }

.center { text-align: center; }

/* --- Typography Scale --- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h2 { font-size: clamp(32px, 4.5vw, 52px); }

h3 {
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

p { line-height: 1.65; }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 12px;
}

.eyebrow-light { color: rgba(255, 149, 50, 0.9); }

.section-sub {
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }

.section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.center .section-sub {
  text-align: center;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  cursor: pointer;
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              background var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 17px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 149, 50, 0.38);
}

.btn-secondary {
  background: var(--dark);
  color: #fff;
}
.btn-secondary:hover {
  background: #1b2738;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(35, 50, 70, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-white {
  background: #fff;
  color: var(--dark);
  font-weight: 800;
}
.btn-white:hover {
  background: #eef2f7;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   SITE HEADER / NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  transition: box-shadow var(--speed) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(20, 30, 45, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-text-light { color: #fff; }

.logo-ai { color: var(--orange); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--speed), background var(--speed);
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--bg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--speed);
}

.hamburger:hover { background: var(--bg); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--speed) var(--ease), opacity var(--speed);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 190;
  overflow-y: auto;
  padding: 16px 20px 40px;
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu nav a {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: background var(--speed);
}

.mobile-menu nav a:hover { background: var(--bg); }

.mobile-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 15px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  background: linear-gradient(155deg, #1c2d42 0%, #111720 60%, #0d1117 100%);
  color: #fff;
  padding: clamp(88px, 13vw, 150px) 0 clamp(80px, 11vw, 130px);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at -5% 55%, rgba(255, 149, 50, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 100% 5%, rgba(35, 50, 70, 0.6) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 149, 50, 0.13);
  border: 1px solid rgba(255, 149, 50, 0.3);
  color: #ffaa55;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero-headline {
  font-size: clamp(44px, 7.5vw, 86px);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 26px;
  max-width: 820px;
}

.headline-accent {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.68);
  max-width: 530px;
  margin-bottom: 42px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  transition: background var(--speed), border-color var(--speed), color var(--speed);
}

.hero-chip:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-chip svg { opacity: 0.7; }

/* ============================================================
   SERVICE CARDS
============================================================ */
.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four  { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  height: 195px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .card-img { transform: scale(1.03); }

.img-kitchen  { background-image: url('https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=900&q=80'); }
.img-bathroom { background-image: url('https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=900&q=80'); }
.img-adu      { background-image: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=900&q=80'); }
.img-garage   { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80'); }

.card-body {
  padding: 24px 24px 26px;
}

.card-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  transition: gap var(--speed);
}

.card-link:hover { gap: 8px; }

/* ============================================================
   HOW IT WORKS — SPLIT LAYOUT
============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5.5vw, 80px);
  align-items: center;
}

.split-text h2 { margin-bottom: 16px; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              border-color var(--speed);
}

.step-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 149, 50, 0.3);
}

.step-num {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 24px;
}

.step-content h3 {
  font-size: 17px;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   ESTIMATOR BAND
============================================================ */
.estimator-band {
  background: linear-gradient(135deg, var(--dark) 0%, #1b2738 100%);
  padding: clamp(56px, 7vw, 84px) 0;
}

.estimator-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.estimator-text h2 {
  color: #fff;
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 10px;
  max-width: 480px;
}

.estimator-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 460px;
}

/* ============================================================
   AI REMODELING SECTION
============================================================ */
.ai-split {
  grid-template-columns: 1fr 1.05fr;
}

.ai-panel {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 44px);
  color: #fff;
}

.ai-panel-badge {
  display: inline-block;
  background: rgba(255, 149, 50, 0.2);
  color: #ffa94d;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.ai-panel h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 22px;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.ai-features li svg {
  color: var(--orange);
  flex-shrink: 0;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  margin-top: 28px;
  transition: gap var(--speed);
}

.explore-link:hover { gap: 12px; }

/* ============================================================
   INSPIRATION CARDS
============================================================ */
.insp-grid { align-items: stretch; }

.insp-card {
  height: 330px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s var(--ease);
  cursor: pointer;
}

.insp-card:hover { transform: scale(1.025); }

.insp-kitchen  { background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=900&q=80'); }
.insp-bathroom { background-image: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?auto=format&fit=crop&w=900&q=80'); }
.insp-spaces   { background-image: url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=900&q=80'); }

.insp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10, 14, 20, 0.88) 0%,
    rgba(10, 14, 20, 0.30) 50%,
    transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.insp-overlay h3 {
  color: #fff;
  font-size: 21px;
  margin-bottom: 8px;
}

.insp-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.insp-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: gap var(--speed);
}

.insp-link:hover { gap: 9px; }

/* ============================================================
   WHY BUILDIC.AI — BENEFITS
============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.5vw, 32px);
  transition: transform var(--speed) var(--ease),
              box-shadow var(--speed) var(--ease),
              background var(--speed),
              border-color var(--speed);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
  border-color: rgba(255, 149, 50, 0.25);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  position: relative;
  background: linear-gradient(155deg, #1c2d42 0%, #111720 50%, #0d1117 100%);
  padding: clamp(96px, 12vw, 140px) 0;
  text-align: center;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255, 149, 50, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4.5vw, 52px);
  max-width: 660px;
  margin-bottom: 18px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 520px;
  margin-bottom: 40px;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark-deep);
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 56px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 270px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 16px;
  letter-spacing: 0.14em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--speed);
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-byline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.32);
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease) var(--delay, 0s),
              transform 0.55s var(--ease) var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 1100px
============================================================ */
@media (max-width: 1100px) {
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-tagline { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — 860px
============================================================ */
@media (max-width: 860px) {
  .nav-links { display: none; }

  .hamburger { display: flex; }

  .split-layout,
  .ai-split {
    grid-template-columns: 1fr;
  }

  .estimator-inner {
    flex-direction: column;
    text-align: center;
  }

  .estimator-text p { margin-left: auto; margin-right: auto; }
  .estimator-text h2 { margin-left: auto; margin-right: auto; }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 640px
============================================================ */
@media (max-width: 640px) {
  .card-grid.four,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

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

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

  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .insp-card { height: 260px; }

  .footer-top { padding: 52px 0 40px; }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
