/* ═══════════════════════════════════════════════════════
   Nour Notary — "Warm Authority" Design System
   Navy + Gold | Playfair Display + Source Sans 3
   ═══════════════════════════════════════════════════════ */

:root {
  --navy:        #0a1628;
  --navy-mid:    #111d33;
  --navy-light:  #1a2940;
  --gold:        #c8a45e;
  --gold-light:  #e8d5a3;
  --gold-dark:   #a68840;
  --cream:       #faf6ef;
  --cream-dark:  #f0e8d8;
  --white:       #ffffff;
  --text-dark:   #1a1a2e;
  --text-body:   #3a3a4e;
  --text-muted:  #5a6277;
  --text-light:  #8a90a4;
  --success:     #2d8a6e;
  --whatsapp:    #25d366;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Sans 3', 'Segoe UI', system-ui, sans-serif;

  --container:   1120px;
  --gap:         2rem;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;

  --shadow:      0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg:   0 12px 48px rgba(10, 22, 40, 0.12);
  --shadow-gold: 0 4px 24px rgba(200, 164, 94, 0.2);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h2 em, h1 em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto;
  border-radius: 2px;
}

.section-divider--left { margin: 0; }


/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.site-nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--gold); }

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-cta svg { width: 14px; height: 14px; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger { position: relative; }

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active .hamburger::after  { transform: rotate(-45deg); top: 0; }


/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,164,94,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 80%, rgba(200,164,94,0.05) 0%, transparent 50%),
    linear-gradient(180deg, transparent 60%, rgba(10,22,40,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(200,164,94,0.12);
  border: 1px solid rgba(200,164,94,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 2rem;
  animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero-badge svg { color: var(--gold); flex-shrink: 0; }

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: heroFadeIn 1s ease-out 0.3s both;
}

.hero-highlight {
  color: var(--gold);
  font-style: italic;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 6px;
  background: rgba(200,164,94,0.2);
  border-radius: 3px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: heroFadeIn 1s ease-out 0.5s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: heroFadeIn 1s ease-out 0.6s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: scrollBounce 2s ease-in-out infinite;
  transition: opacity var(--transition);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}


/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════ */

.why {
  padding: 6rem 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

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

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200,164,94,0.1), rgba(200,164,94,0.05));
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.why-icon svg { width: 28px; height: 28px; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════ */

.services {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(200,164,94,0.15);
  background: var(--cream);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200,164,94,0.15);
}

.services-cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}


/* ═══════════════════════════════════════════════════════
   SERVICE AREAS
   ═══════════════════════════════════════════════════════ */

.areas {
  padding: 6rem 0;
  background: var(--cream);
}

.areas-content {
  max-width: 800px;
  margin: 0 auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  font-weight: 500;
  color: var(--text-dark);
}

.area-item svg { color: var(--gold); flex-shrink: 0; }

.area-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  border-left: 3px solid var(--gold);
}

.areas-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(200,164,94,0.08), rgba(200,164,94,0.03));
  border: 1px solid rgba(200,164,94,0.15);
  border-radius: var(--radius);
}

.areas-note-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }

.areas-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */

.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,164,94,0.15);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.about-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(200,164,94,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200,164,94,0.06) 0%, transparent 40%);
}

.about-card-inner { position: relative; z-index: 1; }

.about-card-icon {
  width: 80px;
  height: 80px;
  color: var(--gold);
  margin: 0 auto 2rem;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.6;
  border: none;
}


/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */

.contact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, var(--gold) 1px, transparent 1px);
  background-size: 50px 50px;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,164,94,0.2);
  border-radius: var(--radius);
  transition: all var(--transition);
  min-width: 200px;
}

.contact-card:hover {
  background: rgba(200,164,94,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-card-icon { color: var(--gold); }

.contact-card--whatsapp .contact-card-icon { color: var(--whatsapp); }

.contact-card-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.contact-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}

.contact-hours svg { color: var(--gold); flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.site-footer {
  background: var(--navy-mid);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text { font-size: 1.4rem; }

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-credit a {
  color: var(--gold);
  transition: color var(--transition);
}

.footer-credit a:hover { color: var(--gold-light); }


/* ═══════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}


/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children */
.why-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.why-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.why-card.reveal:nth-child(4) { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
  }

  .nav-cta {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .hero { min-height: 100svh; padding: 6rem 1.25rem 3rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

  .hero-trust { gap: 1rem; }
  .trust-item { font-size: 0.78rem; }

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

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

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

  .about-stats { gap: 1.5rem; }

  .contact-methods { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 300px; }

  .contact-hours {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .why, .services, .areas, .about, .contact { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; justify-content: center; }
}
