/* ============================================
   FJA GLOBAL SAC — style.css
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --color-primary:       #0A2342;
  --color-primary-light: #0D3460;
  --color-primary-dark:  #061829;
  --color-accent:        #E8A020;
  --color-accent-dark:   #C68918;
  --color-surface:       #F5F7FA;
  --color-surface-dark:  #E6EAF0;
  --color-text:          #1C2B3A;
  --color-text-muted:    #566273;
  --color-text-light:    #8A96A3;
  --color-white:         #FFFFFF;
  --color-success:       #22C55E;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Source Serif 4', serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(10,35,66,.08);
  --shadow-md: 0 4px 16px rgba(10,35,66,.12);
  --shadow-lg: 0 12px 40px rgba(10,35,66,.16);
  --shadow-xl: 0 24px 64px rgba(10,35,66,.22);

  --transition:      .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: .15s ease;

  --max-width:      1200px;
  --section-pad:    80px 0;
  --nav-height:     72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad); }

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header p {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(10,35,66,.12);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--color-white);
  letter-spacing: -.02em;
  transition: color var(--transition);
}
.nav-logo span { color: var(--color-accent); }
.nav.scrolled .nav-logo { color: var(--color-primary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-white); }
.nav.scrolled .nav-links a { color: var(--color-text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--color-accent); }

.nav-cta { display: none; }
.nav.scrolled .nav-cta { display: inline-flex; }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-white);
  transition: color var(--transition);
}
.nav.scrolled .nav-toggle { color: var(--color-primary); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-surface-dark);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--color-primary-dark) 0%, var(--color-primary) 45%, #0D4A7A 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.065) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 80px;
  background: var(--color-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,.1) 0%, transparent 65%);
  top: -180px; right: -180px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 48px 0 120px;
  animation: heroFade .9s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.12);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(4px);
}
.badge-accent {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}
.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}
.hero > .container > .hero-content > p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.72;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-family: var(--font-display);
  font-size: .72rem;
  animation: scrollBounce 2.2s ease infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ---------- PAIN SECTION ---------- */
.pain {
  background: var(--color-surface);
  padding: var(--section-pad);
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.pain-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pain-icon {
  width: 48px; height: 48px;
  background: rgba(232,160,32,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}
.pain-card h3 { margin-bottom: 10px; }
.pain-card p { color: var(--color-text-muted); font-size: .95rem; line-height: 1.65; }

/* ---------- SERVICES ---------- */
.services {
  background: var(--color-white);
  padding: var(--section-pad);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--color-white);
  border: 2px solid var(--color-surface-dark);
  border-radius: var(--radius-md);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(232,160,32,.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-white);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--color-text-muted); line-height: 1.68; }

.services-badge { text-align: center; }
.badge-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}
.live-dot {
  width: 9px; height: 9px;
  background: var(--color-success);
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* ---------- PROCESS ---------- */
.process {
  background: var(--color-primary);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.process .section-header h2 { color: var(--color-white); }
.process .section-header p  { color: rgba(255,255,255,.62); }
.process .section-label      { color: var(--color-accent); }

/* Mobile: vertical stack */
.process-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 0;
  position: relative;
}
.process-step:not(:last-child) { padding-bottom: 36px; }
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-number {
  width: 54px; height: 54px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step-connector {
  width: 2px;
  flex: 1;
  min-height: 36px;
  background: rgba(255,255,255,.18);
  margin-top: 6px;
}
.process-step:last-child .step-connector { display: none; }
.step-content { padding-top: 10px; }
.step-content h3 { color: var(--color-white); font-size: 1.1rem; margin-bottom: 8px; }
.step-content p  { color: rgba(255,255,255,.63); font-size: .93rem; line-height: 1.65; }

.process-cta {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

/* ---------- WHY US ---------- */
.why {
  background: var(--color-surface);
  padding: var(--section-pad);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 56px;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--color-text-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(10,35,66,.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}
.feature-text h3 { font-size: 1rem; margin-bottom: 7px; }
.feature-text p  { color: var(--color-text-muted); font-size: .88rem; line-height: 1.62; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; left: 22px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-accent);
  opacity: .25;
  line-height: 1;
  pointer-events: none;
}
.stars { color: var(--color-accent); font-size: .85rem; margin-bottom: 8px; }
.testimonial-text {
  font-size: .97rem;
  line-height: 1.72;
  color: var(--color-text);
  margin-bottom: 22px;
  padding-top: 10px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-info strong { display: block; font-family: var(--font-display); font-size: .92rem; }
.testimonial-info span  { font-size: .78rem; color: var(--color-text-muted); }

/* ---------- CONTACT ---------- */
.contact {
  background: linear-gradient(150deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.contact-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,.13) 0%, transparent 65%);
  bottom: -160px; left: -140px;
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
}
.contact-header h2    { color: var(--color-white); margin-bottom: 16px; }
.contact-header > p   { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.72; margin-bottom: 32px; }
.contact .section-label { color: var(--color-accent); }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-family: var(--font-display);
  font-size: .93rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--color-white); }
.contact-item-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: .83rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
}
.form-group label .optional { font-weight: 400; color: var(--color-text-muted); margin-left: 4px; }
.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 2px solid var(--color-surface-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(13,52,96,.08);
}
.form-control::placeholder { color: var(--color-text-light); }
textarea.form-control { resize: vertical; min-height: 96px; }
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px;
  margin-top: 4px;
}
.form-privacy {
  margin-top: 11px;
  font-size: .76rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.55;
}
.form-privacy a { color: var(--color-accent); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.6);
  padding: 52px 24px 28px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--color-white);
  display: inline-block;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--color-accent); }
.footer-desc { font-size: .88rem; line-height: 1.65; max-width: 280px; }
.footer-nav h4 {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 14px;
}
.footer-nav li { margin-bottom: 9px; }
.footer-nav a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-nav a:hover { color: var(--color-accent); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--color-white);
  border-radius: var(--radius-full);
  padding: 13px 18px;
  box-shadow: 0 4px 18px rgba(37,211,102,.42);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.52);
}
.fab-label { display: none; }

/* ---------- Scroll Reveal ---------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.reveal      { transform: translateY(32px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right{ transform: translateX(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive 768px ---------- */
@media (min-width: 768px) {
  :root { --section-pad: 96px 0; }

  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex !important; }
  .nav-toggle{ display: none; }

  .pain-grid      { grid-template-columns: repeat(3, 1fr); }
  .services-grid  { grid-template-columns: repeat(3, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials   { grid-template-columns: repeat(2, 1fr); }

  /* Process: horizontal */
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: rgba(255,255,255,.18);
    z-index: 0;
  }
  .process-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0 !important;
    padding: 0 12px;
  }
  .step-marker { flex-direction: column; margin-bottom: 20px; }
  .step-connector { display: none; }
  .step-number { position: relative; z-index: 1; }
  .step-content { padding-top: 0; }

  .contact-inner { grid-template-columns: 1fr 1fr; align-items: start; }

  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .fab-label { display: inline; }
}

/* ---------- Responsive 1200px ---------- */
@media (min-width: 1200px) {
  :root { --section-pad: 112px 0; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-row { padding: 44px 48px; }
}

/* ---------- Focus ---------- */
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
