/* ─── WIFT Global Styles ─── */

:root {
  --navy:       #0C1B3A;
  --blue:       #1A4E9F;
  --sky:        #2E7DD1;
  --accent:     #E8453C;
  --gold:       #F5A623;
  --white:      #FFFFFF;
  --off-white:  #F4F6FA;
  --light-gray: #E2E8F2;
  --text-muted: #6B7A96;
  --muted:      #6B7A96;   /* alias */
  --text-body:  #2D3748;
  --body:       #2D3748;   /* alias */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--text-body); overflow-x: hidden; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp      { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes strikeThrough { from { width: 0; } to { width: 100%; } }
@keyframes pulse       { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes countdownPulse { 0% { box-shadow: 0 0 0 0 rgba(232,69,60,.4); } 70% { box-shadow: 0 0 0 16px rgba(232,69,60,0); } 100% { box-shadow: 0 0 0 0 rgba(232,69,60,0); } }
@keyframes blink       { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes spin        { to { transform: rotate(360deg); } }

.animate-fade-up { animation: fadeUp .7s ease both; }
.au  { animation: fadeUp .7s ease both; }
.delay-1, .d1 { animation-delay: .1s; }
.delay-2, .d2 { animation-delay: .25s; }
.delay-3, .d3 { animation-delay: .4s; }
.delay-4      { animation-delay: .5s; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12,27,58,.97); backdrop-filter: blur(12px);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 5%; height: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--white); letter-spacing: -.5px; text-decoration: none; }
.nav-logo span { color: var(--sky); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; font-weight: 500; letter-spacing: .02em; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--accent); color: var(--white) !important; padding: .5rem 1.25rem; border-radius: 4px; font-weight: 700 !important; transition: background .2s, transform .1s !important; }
.nav-cta:hover { background: #c73028 !important; transform: translateY(-1px); }
.nav-login { color: rgba(255,255,255,.6) !important; font-size: .9rem; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-login:hover { color: #fff !important; }

/* ─── MOBILE NAV ─── */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: all .25s; }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none !important;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(12,27,58,.99);
    flex-direction: column !important;
    padding: 1.5rem 5%; gap: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex !important; }
  .nav-links a { padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 1rem !important; }
  .nav-links .nav-cta { margin-top: .75rem; text-align: center; }
}

/* ─── FOOTER ─── */
footer { background: #060E20; padding: 3rem 5%; border-top: 1px solid rgba(255,255,255,.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--white); }
.footer-logo span { color: var(--sky); }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.35); margin-top: .25rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-right { text-align: right; }
.footer-legal-links { display: flex; gap: 1.25rem; justify-content: flex-end; flex-wrap: wrap; margin-bottom: .4rem; }
.footer-legal-links a { font-size: .78rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.75); }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.22); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-right { text-align: left; }
  .footer-legal-links { justify-content: flex-start; }
}

/* ─── COMMON SECTION ─── */
.section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.section-headline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 800; line-height: 1; color: var(--navy); margin-bottom: 1.25rem; letter-spacing: -.5px; }
.section-subhead { font-size: 1.1rem; line-height: 1.65; color: var(--text-muted); max-width: 600px; }

/* ─── COMMON EYEBROW ─── */
.eyebrow { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); background: rgba(245,166,35,.12); padding: .3rem .8rem; border-radius: 2px; border-left: 3px solid var(--gold); margin-bottom: 1.25rem; }

/* ─── INTERIOR PAGE HERO ─── */
.page-hero { background: var(--navy); display: flex; align-items: center; padding: 110px 5% 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(26,78,159,.3) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 900px; margin: 0 auto; width: 100%; }

/* ─── COMMON BUTTONS ─── */
.btn-primary { background: var(--accent); color: var(--white); padding: 1rem 2rem; border: none; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .04em; cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s, transform .15s, box-shadow .2s; }
.btn-primary:hover { background: #c73028; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,69,60,.4); }
.btn-secondary { background: transparent; color: rgba(255,255,255,.85); padding: 1rem 2rem; border: 1.5px solid rgba(255,255,255,.3); border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-secondary:hover { border-color: rgba(255,255,255,.7); color: var(--white); background: rgba(255,255,255,.06); }
.btn-ghost { background: transparent; color: var(--navy); padding: 1rem 2rem; border: 1.5px solid var(--light-gray); border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-ghost:hover { border-color: var(--navy); background: rgba(12,27,58,.05); }
