/*
Theme Name: Western Astrology Insider
Theme URI: https://westernastrologyinsider.com
Author: Matteen Labs
Author URI: https://matteen.com
Description: Custom WordPress theme for Western Astrology Insider — bold, premium, soul-mapping experience.
Version: 1.2.0
License: GNU General Public License v2 or later
Text Domain: wai
*/

/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  --miami:   #00a2c8;
  --sunrise: #f6b40e;
  --rolex:   #7184a6;
  --matt:    #5698a4;
  --magic:   #58328c; /* defined only — NEVER applied visually */
  --silver:  #949494;
  --dark:    #0d1117;
  --darker:  #080c12;
  --white:   #ffffff;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --bg:           #f4f6f8;
  --bg-alt:       #ffffff;
  --bg-card:      #ffffff;
  --bg-darker:    #e8ecf0;
  --text-primary: #0d1117;
  --text-body:    #374151;
  --text-muted:   #6b7280;
  --border:       rgba(0,0,0,0.09);
  --card-shadow:  0 2px 16px rgba(0,0,0,0.07);
  --nav-bg:       rgba(255,255,255,0.96);
  --nav-border:   rgba(0,0,0,0.08);
  --num-opacity:  0.14;
  --num-color:    #374151;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }

.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--miami);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVBAR — logo only, no nav links, no theme toggle
   ============================================================ */
.wai-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.35s var(--ease);
}
.wai-nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }
.wai-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-wrap .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav-logo-wrap .custom-logo-link img,
.nav-logo-wrap img {
  height: 50px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain;
  display: block;
}
.nav-logo-wrap .custom-logo-link:hover { opacity: 0.82; }

.nav-logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border: 2px solid var(--miami);
  color: var(--miami);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  transition: background 0.25s var(--ease);
}
.nav-logo-text:hover { background: rgba(0,162,200,0.1); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--text-body);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--miami);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }


/* "Unlock Your Chart" pill in navbar */
.nav-links a.nav-cta {
  background: var(--sunrise);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
  background: #e0a20c;
  transform: scale(1.04);
  color: var(--dark) !important;
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  padding: 32px 48px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid var(--nav-border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--miami); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--text-body);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--miami);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  padding: 32px 48px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  border-bottom: 1px solid var(--nav-border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--miami); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  border-radius: 50px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--sunrise);
  color: var(--dark);
  font-size: 17px;
  padding: 14px 36px;
  border: none;
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(246,180,14,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--miami);
  font-size: 17px;
  padding: 13px 36px;
  border: 2px solid var(--miami);
}
.btn-outline:hover {
  transform: scale(1.04);
  background: rgba(0,162,200,0.1);
}
.btn-large { font-size: 20px; padding: 16px 52px; border-radius: 50px; }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.wai-section { padding: 100px 48px; position: relative; }
.wai-section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}
.divider-line {
  width: 0; height: 2px;
  background: var(--miami); opacity: 0.4;
  margin: 16px 0;
  transition: width 1.2s var(--ease);
}
.divider-line.visible { width: 80px; }

/* ============================================================
   HERO — HOME
   ============================================================ */
.wai-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.wai-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(113,132,166,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle  { display: none; } /* dark mode removed */

.hero-home { min-height: 100vh; padding-top: 90px; }
.hero-home .hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 60% 40%;
  align-items: center; min-height: calc(100vh - 90px); gap: 48px;
}
.hero-content { animation: heroFadeIn 0.9s var(--ease) both; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 110px);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--text-primary); margin-bottom: 24px;
}
.hero-content h1 span { color: var(--miami); }
.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; font-size: 17px;
  line-height: 1.75; color: var(--text-muted);
  max-width: 520px; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  animation: heroFadeIn 1.1s var(--ease) 0.2s both;
}
.hero-orb {
  width: 380px; height: 380px;
  border-radius: 50%;
  background: none;
  opacity: 1;
  box-shadow: 0 0 60px rgba(0,162,200,0.12);
  position: relative;
  overflow: hidden;
  animation: orbRotate 20s linear infinite;
}

@keyframes orbRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.wai-marquee {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.12em;
  color: var(--miami); padding: 0 24px;
}
.marquee-track .diamond { color: var(--sunrise); padding: 0 8px; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   THREE PILLARS
   ============================================================ */
.pillars-section-bg {
  background: linear-gradient(180deg, #ffffff 0%, rgba(0,162,200,0.08) 100%);
}
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px 32px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.pillar-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(0,162,200,0.4);
}
.card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,162,200,0.1); border: 2px solid rgba(0,162,200,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 24px; color: var(--miami);
}
.card-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 0.22em;
  color: var(--sunrise); margin-bottom: 8px; display: block;
}
.pillar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: 0.04em;
  color: var(--text-primary); margin-bottom: 14px;
}
.pillar-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; font-size: 15px;
  line-height: 1.75; color: var(--text-muted);
}

/* ============================================================
   QUOTE / STATS
   ============================================================ */
.quote-section {
  background: var(--bg-alt); text-align: center;
  position: relative; overflow: hidden;
}
.quote-bg-mark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px; line-height: 1;
  color: var(--miami); opacity: 0.04;
  pointer-events: none; user-select: none;
}
.quote-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400; font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.0; letter-spacing: 0.04em;
  color: var(--text-primary); max-width: 860px; margin: 0 auto 20px;
}
.quote-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; font-size: 18px; line-height: 1.7;
  color: var(--text-muted); max-width: 580px; margin: 0 auto 64px;
}
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 700px; margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 60px); letter-spacing: 0.02em;
  color: var(--sunrise); line-height: 1; display: block;
}
.stat-label { font-size: 13px; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 6px; }

/* ============================================================
   SERVICES 2x2
   ============================================================ */
.services-bg { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px 36px;
  position: relative; overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(0,162,200,0.35);
}
.service-num {
  position: absolute; top: 16px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px; line-height: 1;
  color: var(--num-color); opacity: var(--num-opacity);
  pointer-events: none; user-select: none;
}
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 0.04em;
  color: var(--text-primary); margin-bottom: 14px; line-height: 1.1;
}
.service-card p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400; font-size: 15px;
  line-height: 1.75; color: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--miami) 0%, var(--matt) 100%);
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: 0.03em; color: #ffffff; line-height: 1; margin-bottom: 20px;
}
.cta-banner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 40px;
}
.cta-sub { display: block; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.7); }
.cta-banner .btn-primary {
  background: #ffffff; color: var(--miami) !important;
  margin: 0 auto; display: inline-flex;
}
.cta-banner .btn-primary:hover { box-shadow: 0 0 28px rgba(255,255,255,0.35); }

/* ============================================================
   ABOUT PAGE — HERO
   ============================================================ */
.about-hero { min-height: 60vh; padding-top: 100px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.page-hero-inner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--text-primary); margin-bottom: 24px; max-width: 900px;
}
.page-hero-inner .hero-subtitle { max-width: 680px; }

/* ============================================================
   ABOUT PAGE — TWO COLUMN
   ============================================================ */
.two-col {
  display: grid; grid-template-columns: 55% 40%;
  gap: 80px; align-items: center;
}
.two-col h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: 0.04em; color: var(--text-primary);
  margin-bottom: 20px; line-height: 1.05;
}
.two-col p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; line-height: 1.85;
  color: var(--text-body); margin-bottom: 16px;
}
.two-col p em { font-style: italic; }
.two-col p strong { font-weight: 600; color: var(--text-primary); }

/* Founder card */
.founder-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 36px;
  box-shadow: var(--card-shadow); text-align: center;
}
.founder-card__avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,162,200,0.15), rgba(86,152,164,0.15));
  border: 3px solid rgba(0,162,200,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--miami);
  overflow: hidden;
}
.founder-card__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.founder-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.06em;
  color: var(--text-primary); margin-bottom: 4px;
}
.founder-card__title {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--miami); margin-bottom: 16px;
}
.founder-card__bio {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; line-height: 1.75;
  color: var(--text-muted); text-align: left;
}

/* ============================================================
   ABOUT PAGE — WHY IT MATTERS
   ============================================================ */
.why-bg { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   ABOUT PAGE — STEPS
   ============================================================ */
.steps-section-bg {
  background: linear-gradient(180deg, #ffffff 0%, rgba(0,162,200,0.07) 100%);
}
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.steps-row::before {
  content: ''; position: absolute;
  top: 36px;
  left: calc(16.66% + 16px); right: calc(16.66% + 16px);
  height: 1px; border-top: 2px dashed rgba(0,162,200,0.3);
}
.step-item { padding: 0 24px; text-align: center; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(0,162,200,0.1); border: 2px solid rgba(0,162,200,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--miami);
}
.step-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.05em;
  color: var(--text-primary); margin-bottom: 12px;
}
.step-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.7; color: var(--text-muted);
}

/* ============================================================
   FOOTER — always dark
   ============================================================ */
.wai-footer {
  background: #0d1117;
  border-top: 1px solid rgba(148,148,148,0.15);
  padding: 60px 48px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo-img { display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer-logo-img .custom-logo-link img {
  height: 28px !important; width: auto !important;
  display: block; filter: brightness(0) invert(1); opacity: 0.85;
}
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.45); max-width: 220px;
}
.footer-nav h4, .footer-contact h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 0.2em;
  color: var(--miami); margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 14px; color: rgba(255,255,255,0.45);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.footer-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--miami);
  transition: width 0.25s var(--ease);
}
.footer-nav a:hover { color: #fff; }
.footer-nav a:hover::after { width: 100%; }
.footer-contact p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(148,148,148,0.1);
  padding-top: 24px; display: flex;
  align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-credit { font-size: 11px; color: rgba(255,255,255,0.22); text-align: center; }
.footer-credit a { color: var(--matt); transition: color 0.2s; }
.footer-credit a:hover { color: var(--miami); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .wai-nav .nav-inner { padding: 18px 32px; }
  .wai-nav.scrolled .nav-inner { padding: 12px 32px; }
  .wai-section { padding: 80px 32px; }
  .hero-home .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 60px 32px; }
  .hero-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .page-hero-inner { padding: 60px 32px; }
}
@media (max-width: 768px) {
  .wai-nav .nav-inner { padding: 16px 20px; }
  .wai-nav.scrolled .nav-inner { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .wai-section { padding: 64px 20px; }
  .hero-home .hero-inner { padding: 40px 20px; }
  .hero-content h1 { font-size: clamp(52px, 12vw, 80px); }
  .stats-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; text-align: center; }
  .page-hero-inner { padding: 40px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { padding: 24px 20px; }
}
