:root {
  --blue-dark: #1a3a5c;
  --blue: #2E5090;
  --blue-light: #4a7cc9;
  --cyan: #5CC8E8;
  --gold: #F4B41A;
  --gold-light: #ffd24d;
  --dark: #0f1419;
  --gray: #6b7280;
  --light: #f8fafc;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 22px; }

.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 16px;
}

.tag.light {
  color: var(--cyan);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header p {
  color: var(--gray);
  margin-top: 16px;
  font-size: 18px;
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

.section-header.light p {
  opacity: 0.85;
}

/* BUTTONS */
.btn-primary,
.btn-gold,
.btn-outline,
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(46, 80, 144, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(46, 80, 144, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(244, 180, 26, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(244, 180, 26, 0.55);
}

.btn-gold.large {
  font-size: 18px;
  padding: 20px 40px;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

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

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* NAV */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 180, 26, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid var(--light);
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--light);
}

.mobile-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark) !important;
  text-align: center;
  padding: 16px !important;
  border-radius: 50px;
  border: none !important;
  margin-top: 8px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 200, 232, 0.08) 0%, rgba(46, 80, 144, 0.08) 100%);
  border-radius: 0 0 0 200px;
  z-index: -1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 180, 26, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(244, 180, 26, 0); }
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}

.hero-content > p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.hero-form input {
  font-family: inherit;
  font-size: 16px;
  padding: 16px 20px;
  border: 2px solid var(--light);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.hero-form input:focus {
  border-color: var(--blue);
}

.hero-form button {
  width: 100%;
  justify-content: center;
}

.hero-trust {
  font-size: 14px;
  color: var(--gray);
  margin-top: 16px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-float {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-float .emoji {
  font-size: 20px;
}

.float-1 {
  top: 20%;
  left: -20px;
}

.float-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: -2s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* SOCIAL PROOF */
.social-proof {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 48px 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.proof-num {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.proof-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* BENEFITS */
.benefits {
  padding: 100px 24px;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  background: var(--light);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.benefit-card.featured {
  background: linear-gradient(180deg, rgba(46, 80, 144, 0.05) 0%, var(--white) 100%);
  border: 2px solid var(--blue);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: var(--gray);
}

/* TRANSFORMATION */
.transformation {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.transform-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.transform-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 32px;
}

.transform-list {
  list-style: none;
  margin-bottom: 40px;
}

.transform-list li {
  color: var(--white);
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.transform-list .check {
  color: var(--gold);
  font-weight: 700;
}

.transform-image img {
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

/* SERVICES */
.services {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--dark) 0%, #1a2634 100%);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
}

.service-card.popular {
  background: linear-gradient(180deg, rgba(244, 180, 26, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: var(--gold);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
}

.service-header h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.service-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card .btn-outline {
  width: 100%;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.service-card .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.service-card .btn-gold {
  width: 100%;
  justify-content: center;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 24px;
  background: var(--light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.testimonial-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.testimonial-content {
  padding: 32px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-content p {
  font-size: 16px;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}

/* MEMBERSHIP */
.membership {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 100%;
}

.membership > .container {
  display: contents;
}

.membership-content {
  padding-left: calc((100vw - 1200px) / 2 + 24px);
}

.membership-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.membership-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 32px;
}

.membership-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--gold);
}

.price-period {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.membership-perks {
  list-style: none;
  margin-bottom: 40px;
}

.membership-perks li {
  color: var(--white);
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.membership-perks li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.membership-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

.membership-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

/* LOCATION */
.location {
  padding: 100px 24px;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-info h2 {
  margin-bottom: 24px;
}

.location-info address {
  font-style: normal;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 24px;
}

.hours {
  margin-bottom: 32px;
}

.hours p {
  color: var(--gray);
  margin-bottom: 12px;
}

.location-extras {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.extra {
  background: var(--light);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* FINAL CTA */
.final-cta {
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  text-align: center;
}

.final-cta h2 {
  color: var(--dark);
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--dark);
  opacity: 0.8;
  font-size: 18px;
  margin-bottom: 32px;
}

.final-cta .btn-gold {
  background: var(--dark);
  color: var(--gold);
}

.final-cta .btn-gold:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 80px 24px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content > p,
  .hero-form {
    margin: 0 auto 32px;
  }

  .hero-bg {
    width: 100%;
    border-radius: 0;
  }

  .hero-float {
    display: none;
  }

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

  .benefits-grid,
  .services-grid,
  .transform-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .transform-grid {
    gap: 48px;
  }

  .membership {
    grid-template-columns: 1fr;
    padding: 80px 24px;
  }

  .membership-content {
    padding-left: 0;
    text-align: center;
  }

  .membership-image {
    display: none;
  }

  .membership-perks li {
    justify-content: center;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu.open {
    display: flex;
  }

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

  .proof-num {
    font-size: 32px;
  }

  .hero-form {
    max-width: 100%;
  }

  .service-card {
    padding: 32px 24px;
  }

  .location-extras {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location-extras {
    flex-direction: column;
    align-items: center;
  }
}