/* ============================================
   AFIsec - Premium Brand Experience
   Typography: IBM Plex Sans (Brand Guide)
   Patterns: Stripe Motif, Pointy Stripe, Shield
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Brand Colors */
  --king: #2E368F;
  --king-rgb: 46, 54, 143;
  --port-gore: #201E51;
  --liberty: #505AA8;
  --arabic: #2A72A0;
  
  /* Extended Palette */
  --navy: #0F1538;
  --cream: #FAFAFA;
  --white: #FFFFFF;
  
  /* Typography */
  --font-brand: 'IBM Plex Sans', -apple-system, sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  --space-32: 8rem;
  
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px;
}

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

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

body {
  font-family: var(--font-brand);
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  background: var(--cream);
  overflow-x: hidden;
}

/* ============================================
   BRAND PATTERNS
   ============================================ */

/* Stripe Motif - From Brand Guide */
.pattern-stripes {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 16px,
    rgba(46, 54, 143, 0.08) 16px,
    rgba(46, 54, 143, 0.08) 18px,
    transparent 18px,
    transparent 34px,
    rgba(80, 90, 168, 0.06) 34px,
    rgba(80, 90, 168, 0.06) 36px
  );
}

/* Pointy Stripe Motif */
.pattern-pointy {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 100'%3E%3Cpolygon points='30,0 60,40 30,100 0,40' fill='none' stroke='%232E368F' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 66px;
}

/* Shield Watermark */
.pattern-shield {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cpath d='M50 5 L90 25 L90 60 Q90 95 50 115 Q10 95 10 60 L10 25 Z' fill='none' stroke='%232E368F' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 150px 180px;
}

/* Gradient Mesh */
.gradient-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-5) 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(46, 54, 143, 0.08);
  padding: var(--space-3) 0;
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding: var(--space-2) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--king);
  transition: width 0.3s ease;
}

.nav__link:hover::after { width: 100%; }

.nav__cta {
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: var(--king);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(46, 54, 143, 0.25);
}

.nav__cta:hover {
  background: var(--liberty);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 54, 143, 0.35);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
}

/* ============================================
   HERO - Asymmetric Editorial Layout
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, var(--cream) 0%, #f0f2f8 50%, var(--cream) 100%);
  overflow: hidden;
}

.hero__gradient-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 54, 143, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__gradient-2 {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 114, 160, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__stripe-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(46, 54, 143, 0.03) 0%,
    transparent 50%,
    rgba(46, 54, 143, 0.02) 100%
  );
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 560px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--king);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(46, 54, 143, 0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(46, 54, 143, 0.12);
}

.hero__badge svg { width: 14px; height: 14px; }

.hero__title {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.hero__title-accent {
  color: var(--king);
  font-weight: 600;
  font-style: italic;
  position: relative;
}

.hero__title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(46, 54, 143, 0.1);
  z-index: -1;
}

.hero__subtitle {
  font-family: var(--font-brand);
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__cta-primary {
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: var(--king);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(46, 54, 143, 0.3);
}

.hero__cta-primary:hover {
  background: var(--liberty);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 54, 143, 0.4);
}

.hero__cta-secondary {
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 600;
  color: var(--king);
  background: transparent;
  border: 2px solid var(--king);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero__cta-secondary:hover {
  background: var(--king);
  color: white;
}

/* Hero Visual - Premium Card */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: 
    0 20px 60px -15px rgba(46, 54, 143, 0.15),
    0 0 0 1px rgba(46, 54, 143, 0.05);
}

.hero__logo-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--king), var(--arabic), var(--liberty));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.15;
}

.hero__logo-img {
  width: 320px;
  height: auto;
  display: block;
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-8);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px -10px rgba(46, 54, 143, 0.1);
  border: 1px solid rgba(46, 54, 143, 0.06);
}

.hero__stat { text-align: center; }

.hero__stat-value {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--king);
  line-height: 1;
}

.hero__stat-label {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-10);
  }
  .hero__content { max-width: 100%; }
  .hero__ctas { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo-img { width: 260px; }
}

@media (max-width: 640px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas > * { width: 100%; justify-content: center; }
  .hero__stats { flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  position: relative;
  padding: var(--space-24) 0;
}

.section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--king);
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: rgba(46, 54, 143, 0.06);
  border-radius: var(--radius-full);
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--king);
  opacity: 0.3;
}

.section-header__title {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.section-header__description {
  font-family: var(--font-brand);
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
}

/* ============================================
   SERVICES - Masonry Grid with Pattern
   ============================================ */
.services {
  background: var(--white);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  position: relative;
  padding: var(--space-6);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 54, 143, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--king), var(--liberty));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(46, 54, 143, 0.15);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, rgba(46, 54, 143, 0.1), rgba(42, 114, 160, 0.05));
  border-radius: var(--radius-md);
  position: relative;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--king);
}

.service-card__title {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.service-card__description {
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--king);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-card__link:hover {
  gap: var(--space-2);
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ============================================
   ABOUT - Editorial with Pattern
   ============================================ */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, #f1f3f9 100%);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-frame {
  position: relative;
  background: white;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(46, 54, 143, 0.15);
}

.about__image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--king);
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -1;
}

.about__image {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.about__content {
  max-width: 520px;
}

.about__eyebrow {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--king);
  margin-bottom: var(--space-4);
}

.about__title {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.about__text {
  font-family: var(--font-brand);
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(46, 54, 143, 0.06);
}

.about__stat {
  text-align: center;
  padding: var(--space-3);
  border-right: 1px solid rgba(46, 54, 143, 0.1);
}

.about__stat:last-child {
  border-right: none;
}

.about__stat-value {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--king);
}

.about__stat-label {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    text-align: center;
  }
  .about__image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
  .about__content { max-width: 100%; }
}

/* ============================================
   TRUST - Clean Grid
   ============================================ */
.trust {
  background: var(--white);
  position: relative;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}

.trust-item {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 54, 143, 0.06);
  transition: all 0.3s ease;
}

.trust-item:hover {
  box-shadow: 0 20px 40px -15px rgba(46, 54, 143, 0.1);
  transform: translateY(-4px);
}

.trust-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 54, 143, 0.1), rgba(42, 114, 160, 0.05));
  border-radius: var(--radius-full);
}

.trust-item__icon svg {
  width: 28px;
  height: 28px;
  color: var(--king);
}

.trust-item__title {
  font-family: var(--font-brand);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.trust-item__text {
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.5;
}

.trust__chamber {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-10);
  background: linear-gradient(90deg, rgba(46, 54, 143, 0.03), rgba(42, 114, 160, 0.03));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 54, 143, 0.08);
}

.trust__chamber-logo {
  height: 48px;
  width: auto;
}

.trust__chamber-text {
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .trust__grid { grid-template-columns: 1fr; }
  .trust__chamber { flex-direction: column; text-align: center; }
}

/* ============================================
   CTA - Premium Card
   ============================================ */
.cta {
  background: linear-gradient(180deg, var(--cream) 0%, #e8eaf2 100%);
  position: relative;
}

.cta__box {
  position: relative;
  text-align: center;
  padding: var(--space-16) var(--space-10);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 
    0 30px 60px -15px rgba(46, 54, 143, 0.12),
    0 0 0 1px rgba(46, 54, 143, 0.04);
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--king), var(--liberty), var(--arabic));
}

.cta__title {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-4);
}

.cta__text {
  font-family: var(--font-brand);
  font-size: 1.125rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

.cta__button {
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: var(--king);
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(46, 54, 143, 0.3);
}

.cta__button:hover {
  background: var(--liberty);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 54, 143, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: white;
  position: relative;
}

.footer__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'%3E%3Cpath d='M50 5 L90 25 L90 60 Q90 95 50 115 Q10 95 10 60 L10 25 Z' fill='none' stroke='white' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 120px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding: var(--space-16) 0 var(--space-10);
  position: relative;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  margin-bottom: var(--space-4);
}

.footer__logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
}

.footer__link {
  margin-bottom: var(--space-2);
}

.footer__link a {
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__link a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer__copyright {
  font-family: var(--font-brand);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  background: var(--king);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  color: white;
}

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

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
}
