/* =========================================
   GROW DIGITAL MEDIA SERVICES - STYLES
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #1E3344;
  --navy-deep: #142331;
  --navy-ink: #0E1A24;
  --green: #8DBF42;
  --lime: #A8D957;
  --green-soft: #C9E29A;
  --paper: #F7F8F4;
  --sage: #E8EDDF;
  --sage-deep: #D9E2C9;
  --line: rgba(30,51,68,.12);
  --line-light: rgba(255,255,255,.12);
  --ink: #1E3344;
  --muted: #5A6B76;
  --muted-light: rgba(247,248,244,.62);
  --white: #ffffff;
  
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-card: 18px;
  --radius-block: 30px;
  --radius-pill: 100px;
  --shadow-card: 0 30px 60px -28px rgba(20,35,49,.35);
  
  --header-height: 80px;
  --max-w: 1280px;
}

/* =========================================
   RESET & BASE
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.text-green { color: var(--green); }
.bg-navy { background-color: var(--navy); color: var(--white); }
.bg-sage { background-color: var(--sage); }
.bg-paper { background-color: var(--paper); }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  display: block;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background-color: var(--green);
  color: var(--navy-ink);
}
.btn-primary:hover {
  background-color: var(--lime);
  transform: translateY(-2px);
}
.btn-ghost {
  background-color: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.bg-navy .btn-ghost {
  color: var(--white);
  border-color: var(--line-light);
}
.btn-ghost:hover {
  background-color: var(--navy);
  color: var(--white);
}
.bg-navy .btn-ghost:hover {
  background-color: var(--white);
  color: var(--navy);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
header.scrolled {
  background: rgba(247, 248, 244, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
  border-bottom: 1px solid var(--line);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  height: 40px;
}
.logo img { height: 100%; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

/* Dropdowns */
.has-dropdown {
  position: relative;
  padding: 20px 0;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 20px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  display: grid;
  gap: 12px;
  z-index: 10;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown-wide { min-width: 600px; grid-template-columns: 1fr 1fr; gap: 20px; }
.dropdown-item {
  display: block;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.dropdown-item:hover { background: var(--sage); }
.dropdown-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 4px;
}
.dropdown-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.burger { display: none; font-size: 1.5rem; color: var(--navy); }
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  color: var(--white);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 30px;
}
.mobile-menu-section { margin-bottom: 30px; }
.mobile-menu-section h4 {
  font-size: 0.875rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 8px;
}
.mobile-menu a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-display);
  padding: 10px 0;
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links, .header-cta { display: none; }
  .burger { display: block; }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  padding: calc(var(--header-height) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--sage) 0%, var(--paper) 70%);
}
.hero-bg-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4; z-index: 0; pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--muted);
  margin: 24px 0 32px;
  max-width: 500px;
}
.hero-ctas {
  display: flex; gap: 16px; margin-bottom: 48px;
}
.hero-stats {
  display: flex; gap: 32px;
}
.hero-stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-stat-item span {
  font-size: 0.875rem; color: var(--muted);
}

/* Sprout Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(30,51,68,.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 300px; height: 300px; }
.ring-2 { width: 450px; height: 450px; border-style: dashed; }
.ring-3 { width: 600px; height: 600px; }
.orbit-ring.animated { animation: spin 40s linear infinite; }
@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

.logo-card {
  position: relative;
  z-index: 2;
  width: 140px; height: 140px;
  background: var(--navy-deep);
  border-radius: var(--radius-block);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(20,35,49,.2);
  padding: 24px;
}
.logo-card img { filter: brightness(0) invert(1); }

.float-chip {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  box-shadow: 0 10px 20px rgba(20,35,49,.1);
  z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.chip-1 { top: 20%; left: 10%; animation-delay: 0s; }
.chip-2 { top: 60%; right: 5%; animation-delay: 1s; }
.chip-3 { bottom: 15%; left: 20%; animation-delay: 2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 980px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 24px auto 32px; }
  .hero-ctas, .hero-stats { justify-content: center; flex-wrap: wrap; }
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-wrap {
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.marquee-inner {
  display: flex;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.marquee-inner span::after {
  content: "✦";
  color: var(--green);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   SERVICES GRID (14 CARDS)
   ========================================= */
.services-section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 600px; margin-inline: auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, var(--sage), transparent);
  transition: height 0.4s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card-header {
  display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px;
}
.sc-icon {
  width: 48px; height: 48px;
  background: var(--sage);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}
.sc-num {
  font-family: var(--font-display);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; flex-grow: 1; }
.sc-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { height: 100%; }
.service-card:hover .sc-icon {
  background: var(--green);
  color: var(--navy-ink);
  transform: rotate(-6deg);
}
.service-card:hover .sc-link { color: var(--green); }

/* =========================================
   STATS BAND
   ========================================= */
.stats-band {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-box p { color: var(--muted-light); font-size: 1.1rem; }
@media (max-width: 980px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; } }

/* =========================================
   FEATURE ROWS
   ========================================= */
.feature-row {
  padding: 100px 0;
}
.feature-row .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.feature-row.flip .container { direction: rtl; }
.feature-row.flip .fr-content { direction: ltr; }
.feature-row.flip .fr-media { direction: ltr; }

.fr-media img { border-radius: var(--radius-block); width: 100%; }
.fr-content p { color: var(--muted); margin: 24px 0; font-size: 1.1rem; }
.checklist { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: var(--navy-deep); font-size: 0.8rem;
  flex-shrink: 0;
}

/* Fallback Media Block */
.fallback-media {
  background: var(--navy-deep);
  border-radius: var(--radius-block);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.fallback-media::before {
  content: attr(data-label);
  position: absolute;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  text-transform: uppercase;
  transform: rotate(-10deg);
  white-space: nowrap;
}
.fallback-icon { font-size: 4rem; position: relative; z-index: 1; }

@media (max-width: 980px) {
  .feature-row .container { grid-template-columns: 1fr; }
  .feature-row.flip .container { direction: ltr; }
}

/* =========================================
   PROCESS STEPS
   ========================================= */
.process-section { padding: 100px 0; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px;
}
.process-step { position: relative; padding: 24px; }
.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(30,51,68,.05);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 1.25rem; margin-bottom: 12px; }
.process-step p { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 980px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { padding: 100px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px;
}
.stars { color: var(--green); margin-bottom: 16px; letter-spacing: 2px; }
.quote { font-size: 1.1rem; font-style: italic; margin-bottom: 24px; }
.author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display);
}
.author-info strong { display: block; font-family: var(--font-display); }
.author-info span { font-size: 0.875rem; color: var(--muted); }

@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; } }

/* =========================================
   CTA BAND
   ========================================= */
.cta-band { padding: 60px 24px; }
.cta-inner {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-block);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(141,191,66,.15);
}
.cta-inner::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(141,191,66,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 32px; position: relative; z-index: 1; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; position: relative; z-index: 1; }
@media (max-width: 600px) { .cta-buttons { flex-direction: column; } }

/* =========================================
   PRICING
   ========================================= */
.pricing-section { padding: 100px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: center;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex; flex-direction: column; height: 100%;
}
.price-card.featured {
  background: var(--navy-deep); color: var(--white);
  transform: scale(1.05);
  border-color: var(--navy-deep);
  box-shadow: var(--shadow-card);
}
.price-card .tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  margin-bottom: 24px; background: var(--sage); color: var(--navy);
}
.price-card.featured .tag { background: var(--green); color: var(--navy-ink); }
.price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-card.featured .price span { color: var(--muted-light); }
.price-card ul { margin: 32px 0; flex-grow: 1; }
.price-card ul li { margin-bottom: 16px; display: flex; gap: 12px; }
.price-card ul li::before { content: "✓"; color: var(--green); font-weight: 700; }
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: scale(1); }
}

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-section { padding: 100px 0; max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%; text-align: left; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy);
}
.faq-icon {
  font-size: 1.5rem; transition: transform 0.3s ease, color 0.3s ease;
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer-inner { padding-bottom: 24px; color: var(--muted); }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-item.active .faq-answer { max-height: 500px; }

/* =========================================
   SERVICE PAGE SPECIFICS
   ========================================= */
.page-hero { padding: calc(var(--header-height) + 60px) 0 60px; text-align: center; }
.breadcrumb { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }
.page-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px;
}
.tag-pill {
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(30,51,68,.05); font-size: 0.875rem; color: var(--navy);
}

.deliverables-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.deliverable-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: rgba(255,255,255,.03); border-radius: var(--radius-card);
}
.deliverable-card .sc-icon { flex-shrink: 0; background: rgba(255,255,255,.1); color: var(--white); }
@media (max-width: 768px) { .deliverables-grid { grid-template-columns: 1fr; } }

/* =========================================
   ABOUT & CONTACT SPECIFICS
   ========================================= */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .about-values { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; padding: 60px 0; }
.contact-info-cards { display: grid; gap: 24px; }
.info-card { padding: 32px; background: var(--white); border-radius: var(--radius-card); border: 1px solid var(--line); }
.info-card h4 { margin-bottom: 8px; }
.contact-form { padding: 40px; background: var(--white); border-radius: var(--radius-card); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 1rem;
  background: var(--paper); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--navy-ink); color: var(--white); padding: 80px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 24px; color: var(--white); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted-light); transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-logo { max-width: 140px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-col p { color: var(--muted-light); margin-bottom: 24px; max-width: 300px; }
.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center; color: var(--white); transition: all 0.2s;
}
.social-links a:hover { background: var(--green); color: var(--navy-ink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; color: var(--muted-light); font-size: 0.875rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================
   ANIMATIONS & UTILS
   ========================================= */
[data-d] {
  opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-d].is-visible { opacity: 1; transform: translateY(0); }
[data-d="1"] { transition-delay: 0.1s; }
[data-d="2"] { transition-delay: 0.2s; }
[data-d="3"] { transition-delay: 0.3s; }
[data-d="4"] { transition-delay: 0.4s; }
[data-d="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-d] { opacity: 1 !important; transform: none !important; }
}
