/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #111;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Color Palette */
:root {
  --oxford-blue: #002147;
  --gold: #D4AF37;
  --gold-dark: #b88d2c;
  --white: #ffffff;
  --gray-light: #f8fafc;
  --charcoal: #1e2a3a;
}

/* Header */
.site-header {
  background: var(--oxford-blue);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}
.logo span {
  color: var(--gold);
}
.dot-gold {
  color: var(--gold);
}
.trust-badge-marker {
  background: rgba(212, 175, 55, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  backdrop-filter: blur(2px);
}
.trust-badge-marker i {
  margin-right: 6px;
}

/* HERO SECTION with High-Def Image (Parallax) */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.parallax-bg {
  background-image: url('https://images.unsplash.com/photo-1587351021759-3e566b6e7e35?q=80&w=2070&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,33,71,0.85) 0%, rgba(0,33,71,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
  padding: 2rem 0;
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.gold-accent {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 4vw, 1.4rem);
  margin-bottom: 2rem;
  font-weight: 400;
  opacity: 0.95;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.gold-btn {
  background: var(--gold);
  color: var(--oxford-blue);
  border: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.gold-btn:hover {
  background: #e5c158;
  transform: translateY(-3px);
}
.hero-stat-pulse {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.4);
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  backdrop-filter: blur(8px);
}

/* Zoom-in animation */
.zoom-in-text {
  animation: zoomIn 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  transform-origin: center;
}
.zoom-in-text-delay {
  animation: zoomIn 0.8s 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}
@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

/* Pillars Section */
.pillars {
  padding: 5rem 0;
  background: var(--white);
}
.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  font-weight: 700;
  color: var(--oxford-blue);
  margin-bottom: 3rem;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.pillar-card {
  background: var(--gray-light);
  padding: 2rem 1.5rem;
  border-radius: 28px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.pillar-card:hover {
  transform: translateY(-8px);
  border-bottom-color: var(--gold);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
}
.pillar-icon {
  font-size: 2.7rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--oxford-blue);
}
.pillar-card p {
  color: #2c3e4e;
  line-height: 1.5;
}

/* Counter Section */
.stats-counter-section {
  background: linear-gradient(120deg, #f0f4fa, #ffffff);
  padding: 4rem 0;
  text-align: center;
}
.counter-card {
  background: white;
  border-radius: 40px;
  padding: 2rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 20px 35px -12px rgba(0,33,71,0.12);
  border: 1px solid rgba(212,175,55,0.3);
}
.counter-icon {
  font-size: 3rem;
  color: var(--gold);
}
.counter-value-wrapper {
  font-size: 3rem;
  font-weight: 800;
  color: var(--oxford-blue);
}
#waitCounter {
  font-size: 3rem;
  font-weight: 800;
}
.plus-symbol {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}
.months-text {
  font-size: 1.4rem;
  font-weight: 600;
}
.counter-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #1f3a4b;
}
.counter-footnote {
  font-size: 0.8rem;
  color: #5f6c7a;
  margin-top: 0.5rem;
}

/* Lead Magnet + Form */
.lead-magnet {
  padding: 5rem 0;
  background: var(--oxford-blue);
  color: white;
}
.lead-magnet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.lead-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 1rem 0 1rem 0;
}
.lead-list {
  list-style: none;
  margin-top: 1.5rem;
}
.lead-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.lead-list i {
  color: var(--gold);
  font-size: 1.2rem;
}
.form-card {
  background: white;
  padding: 2rem;
  border-radius: 32px;
  color: var(--oxford-blue);
  box-shadow: 0 25px 40px -12px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.input-group {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 60px;
  margin-bottom: 1.2rem;
  padding: 0.2rem 1rem;
}
.input-group i {
  color: var(--gold);
  font-size: 1rem;
  margin-right: 0.7rem;
}
.input-group input {
  border: none;
  background: transparent;
  padding: 0.9rem 0;
  width: 100%;
  font-size: 1rem;
  outline: none;
}
.full-width {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  color: var(--oxford-blue);
  border: none;
  font-weight: 700;
  padding: 0.9rem;
  cursor: pointer;
}
.form-disclaimer {
  font-size: 0.7rem;
  margin-top: 1rem;
  text-align: center;
  color: #475569;
}
.thankyou-state {
  text-align: center;
  padding: 2rem 1rem;
}
.thankyou-state i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: #0a1927;
  padding: 2rem 0;
  color: #cddde9;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.secondary-logo {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
}
.copyright {
  font-size: 0.75rem;
  margin-top: 0.3rem;
}
.social-links a {
  color: white;
  background: rgba(255,255,255,0.1);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.7rem;
  transition: 0.2s;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--oxford-blue);
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .lead-magnet-grid {
    grid-template-columns: 1fr;
  }
  .counter-card {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero {
    min-height: 70vh;
  }
  .parallax-bg {
    background-attachment: scroll;
  }
}
@media (max-width: 550px) {
  .header-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  .pillar-card {
    padding: 1.5rem;
  }
}