/* ═══════════════════════════════════════════════
   BRAND TOKENS — Palette 3: Electric & Modern
   ═══════════════════════════════════════════════ */
:root {
  --primary:    #E07A5F;   /* Terracotta */
  --secondary:  #264653;   /* Deep Teal */
  --accent:     #F4A261;   /* Sandy Gold */
  --bg:         #FAFAF7;   /* Off-White */
  --text:       #1D3557;   /* Dark Teal */
  --white:      #FFFFFF;
  --light-gray: #F0EFEB;
  --mid-gray:   #B8B5AD;
  --dark:       #1A1A2E;
  --success:    #2A9D8F;
  --gradient:   linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(29, 53, 87, 0.08);
  --shadow-lg:    0 8px 40px rgba(29, 53, 87, 0.12);
  --transition:   all 0.3s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { line-height: 1.7; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; color: var(--secondary); }
.section-subtitle { font-size: 1.1rem; color: var(--mid-gray); max-width: 600px; margin-bottom: 48px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #c96a50; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #1d3a45; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.navbar .logo span { color: var(--secondary); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,122,95,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,70,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content h1 { margin-bottom: 20px; color: var(--secondary); }
.hero-content h1 em { color: var(--primary); font-style: normal; }
.hero-content p {
  font-size: 1.15rem;
  color: #5a7184;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.hero-card h4 { color: var(--secondary); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.hero-card p { font-size: 0.88rem; color: #6b7c93; }
.hero-card.alt { border-left-color: var(--accent); }
.hero-card.teal { border-left-color: var(--secondary); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-stat .label { font-size: 0.82rem; color: var(--mid-gray); }

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.trust-bar .container { text-align: center; }
.trust-bar p {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid-gray);
  margin-bottom: 24px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.5;
}
.trust-logos span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
}

/* ─── ABOUT ─── */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; color: #5a7184; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(224, 122, 95, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.about-feature h4 { font-size: 0.92rem; font-family: var(--font-body); font-weight: 600; color: var(--secondary); }
.about-feature p { font-size: 0.82rem; color: var(--mid-gray); }

.about-image {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-image::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(224,122,95,0.15);
}
.about-image h3 { font-size: 1.6rem; margin-bottom: 16px; position: relative; }
.about-image p { opacity: 0.85; position: relative; margin-bottom: 16px; }
.about-image .stat-row {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  position: relative;
}
.about-image .stat-item .num { font-size: 2rem; font-family: var(--font-heading); font-weight: 700; color: var(--accent); }
.about-image .stat-item .lbl { font-size: 0.82rem; opacity: 0.7; }

/* ─── SERVICES ─── */
.services { padding: 100px 0; background: var(--white); }
.services .container > .section-subtitle { text-align: left; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card .icon.terra { background: rgba(224,122,95,0.12); }
.service-card .icon.teal { background: rgba(38,70,83,0.1); }
.service-card .icon.gold { background: rgba(244,162,97,0.15); }
.service-card h3 { margin-bottom: 10px; color: var(--secondary); }
.service-card p { font-size: 0.9rem; color: #6b7c93; margin-bottom: 16px; }
.service-card .learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─── PRODUCTS / PRICING ─── */
.pricing { padding: 100px 0; }
.currency-toggle {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 40px;
}
.currency-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  transition: var(--transition);
}
.currency-btn.active { background: var(--secondary); color: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-course { background: rgba(224,122,95,0.12); color: var(--primary); }
.badge-toolkit { background: rgba(38,70,83,0.1); color: var(--secondary); }
.badge-coaching { background: rgba(244,162,97,0.15); color: #c47a2e; }
.badge-membership { background: rgba(42,157,143,0.12); color: var(--success); }

.product-card .card-top {
  padding: 28px 24px 20px;
}
.product-card h3 { margin: 12px 0 8px; color: var(--secondary); }
.product-card .card-desc { font-size: 0.88rem; color: #6b7c93; margin-bottom: 16px; }
.product-card .card-features {
  padding: 0;
  margin: 0 0 16px;
}
.product-card .card-features li {
  font-size: 0.84rem;
  color: #5a7184;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card .card-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 0.8rem;
}

.product-card .card-bottom {
  padding: 20px 24px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card .price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}
.product-card .price-note { font-size: 0.78rem; color: var(--mid-gray); }

.product-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}
.product-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  letter-spacing: 0.5px;
}

/* ─── TEAM ─── */
.team { padding: 100px 0; background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.team-card:hover { background: var(--bg); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}
.team-card:nth-child(1) .team-avatar { background: var(--primary); }
.team-card:nth-child(2) .team-avatar { background: var(--secondary); }
.team-card:nth-child(3) .team-avatar { background: var(--accent); }
.team-card:nth-child(4) .team-avatar { background: var(--success); }
.team-card h3 { margin-bottom: 4px; font-size: 1.1rem; color: var(--secondary); }
.team-card .role { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 8px; }
.team-card p { font-size: 0.82rem; color: var(--mid-gray); }

/* ─── TARGET CUSTOMERS ─── */
.customers { padding: 100px 0; }
.customers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.customer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
}
.customer-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.customer-card h3 { color: var(--secondary); margin-bottom: 6px; font-size: 1.1rem; }
.customer-card p { font-size: 0.88rem; color: #6b7c93; margin-bottom: 10px; }
.customer-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.customer-card .tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--light-gray);
  color: var(--text);
  font-weight: 500;
}

/* ─── WAITLIST ─── */
.waitlist {
  padding: 100px 0;
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(224,122,95,0.1);
}
.waitlist .section-label { color: var(--accent); }
.waitlist .section-title { color: var(--white); }
.waitlist .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.waitlist-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.waitlist-form input::placeholder { color: rgba(255,255,255,0.5); }
.waitlist-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.15); }
.waitlist-form .btn-primary { white-space: nowrap; }

.waitlist-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.waitlist-features span {
  font-size: 0.85rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px 0 30px;
  background: var(--dark);
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.footer .logo span { color: var(--accent); }
.footer p { font-size: 0.88rem; margin-bottom: 16px; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 0.88rem; transition: var(--transition); }
.footer ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .customers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 24px;
    border-bottom: 1px solid var(--light-gray);
    gap: 16px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .waitlist-form { flex-direction: column; }
  .waitlist-features { flex-direction: column; align-items: center; gap: 12px; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
