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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #ffffff;
  color: #444444;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

.section {
  padding: 80px 0;
}

/* Kept the class name (used across ~80 pages) but repurposed for light theme:
   this is the "alternate section" grey, not a dark contrast band. */
.section-dark {
  background-color: #f5f5f5;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111111;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #444444;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.text-teal {
  color: #14B8A6;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background-color: #14B8A6;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #0f9e8e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #14B8A6;
  border: 2px solid #14B8A6;
}

.btn-secondary:hover {
  background-color: #14B8A6;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #14B8A6;
  letter-spacing: -0.5px;
}

.logo span {
  color: #111111;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111111;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #14B8A6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #14B8A6;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #111111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background-color: #ffffff;
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

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

.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111111;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #14B8A6;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 140px 0 100px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  color: #111111;
}

.hero-title .highlight {
  color: #14B8A6;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #444444;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CARDS ===== */
.card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.04);
}

.card:hover {
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111111;
}

.card-text {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-icon {
  color: #14B8A6;
  font-size: 2rem;
  margin-bottom: 16px;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

/* ===== PRICING / COACHING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.04);
}

.pricing-card:hover {
  border-color: rgba(20, 184, 166, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.1);
}

.pricing-card.recommended {
  border-color: #14B8A6;
  background: linear-gradient(180deg, #f0fdfb 0%, #ffffff 100%);
  transform: scale(1.04);
}

.pricing-card.recommended:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #14B8A6;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 20px;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #14B8A6;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 24px;
}

.pricing-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  color: #444444;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: #14B8A6;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #666666;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  text-align: center;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.blog-card .card-title {
  font-size: 1.15rem;
  line-height: 1.4;
}

.blog-card .card-text {
  margin-bottom: 20px;
}

.blog-card .read-more {
  color: #14B8A6;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .read-more:hover {
  gap: 10px;
}

.blog-card .read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.blog-card .read-more:hover::after {
  transform: translateX(4px);
}

.blog-meta {
  font-size: 0.8rem;
  color: #666666;
  margin-bottom: 12px;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #111111;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #14B8A6;
}

.faq-question .icon {
  font-size: 1.3rem;
  color: #14B8A6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 0 20px 0;
}

.faq-answer p {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #111111;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #14B8A6;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info {
  padding: 32px;
  background-color: #f5f5f5;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #111111;
}

.contact-info p {
  color: #444444;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, #f0fdfb 0%, #f5f5f5 100%);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
}

.newsletter h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111111;
}

.newsletter p {
  color: #444444;
  max-width: 520px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #111111;
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #14B8A6;
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 1.6rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ===== FOOTER (kept dark — deliberate contrast, matches homepage) ===== */
.site-footer {
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  color: #888888;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666666;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #aaaaaa;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #14B8A6;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #14B8A6;
}

.header-social {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 8px;
}

.header-social a {
  display: flex;
  align-items: center;
  color: #666;
  padding: 4px;
  transition: color 0.2s ease;
  text-decoration: none;
}

.header-social a:hover {
  color: #14B8A6;
}

@media (max-width: 768px) {
  .header-social { display: none; }
}

.footer-disclaimer {
  text-align: center;
  color: #666666;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  margin-top: 24px;
  line-height: 1.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 100px 0 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.page-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: #111111;
}

.page-header p {
  color: #444444;
  font-size: 1.1rem;
  max-width: 600px;
}

/* ===== ABOUT PAGE ===== */
.story-content {
  max-width: 760px;
}

.story-content p {
  color: #444444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.value-item h3 {
  color: #14B8A6;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-item p {
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card.recommended {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 80px 0 56px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.recommended {
    grid-column: span 1;
    transform: none;
  }

  .pricing-card.recommended:hover {
    transform: translateY(-4px);
  }

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

  .newsletter {
    padding: 40px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header {
    padding: 80px 0 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 16px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .card {
    padding: 24px;
  }
}

/* ===== COACHING: INTRO OFFER, COMING SOON, CAPTURE FORM ===== */
.price-was {
  text-decoration: line-through;
  text-decoration-color: #999999;
  text-decoration-thickness: 2px;
  color: #999999;
  font-size: 2rem; /* slightly smaller than the 2.8rem new price */
  font-weight: 600;
  margin-right: 8px;
}

.field-optional {
  color: #777777;
  font-weight: 400;
  font-size: 0.85rem;
}

.coming-soon {
  width: 100%;
  margin-top: auto;
  background-color: #14B8A6;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 8px;
  pointer-events: none; /* label only — never intercept clicks */
}

/* Form section sits above the pricing cards in the stacking order */
.register-interest {
  position: relative;
  z-index: 10;
}

.capture-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.capture-form-intro {
  margin-left: auto;
  margin-right: auto;
}

/* Ensure form controls always sit above any decorative layer and stay clickable */
.capture-form,
.capture-form .form-group,
.capture-form .form-group input,
.capture-form .form-group select,
.capture-form button {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

/* Inputs sit on a section-dark (now light grey) band */
.capture-form .form-group input,
.capture-form .form-group select {
  background-color: #ffffff;
}

.capture-form .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #111111;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.capture-form .form-group select:focus {
  outline: none;
  border-color: #14B8A6;
}

.capture-form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ===== LEGAL / POLICY PAGES ===== */
.legal-content {
  max-width: 820px;
}

.legal-content .legal-updated {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #111111;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 44px 0 14px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  color: #14B8A6;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 8px;
}

.legal-content p {
  color: #444444;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.legal-content ul {
  margin: 0 0 20px;
}

.legal-content li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: #444444;
  font-size: 1.02rem;
  line-height: 1.7;
}

.legal-content li::before {
  content: '•';
  color: #14B8A6;
  position: absolute;
  left: 6px;
  font-weight: 700;
}

.legal-content a {
  color: #14B8A6;
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.95rem;
  color: #444444;
  vertical-align: top;
}

.legal-content th {
  color: #111111;
  background-color: #f5f5f5;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px 24px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(20, 184, 166, 0.5);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner-text {
  margin: 0;
  max-width: 720px;
  color: #444444;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #14B8A6;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .cookie-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}

/* ===== REDESIGN v4: BOLD ATHLETIC ELEMENTS ===== */

/* Hero eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14B8A6;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14B8A6;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Hero accent word */
.hero-gradient {
  color: #0f9080;
}

/* Stats strip */
.stats-strip {
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #f5f5f5;
}

.stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #14B8A6;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666666;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .stat-divider { display: none; }
  .stat-number { font-size: 2rem; }
}

/* Scrolling ticker strip */
.ticker-section {
  overflow: hidden;
  background: #14B8A6;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  white-space: nowrap;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* Tools grid section */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 640px) { .tools-grid { grid-template-columns: 1fr; } }

.tool-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(17,17,17,0.04);
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #14B8A6 0%, #0f9080 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tool-card:hover {
  border-color: rgba(20,184,166,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17,17,17,0.1);
}

.tool-card:hover::before { opacity: 1; }

.tool-card-icon {
  font-size: 2.4rem;
  line-height: 1;
}

.tool-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
}

.tool-card-desc {
  font-size: 0.9rem;
  color: #444444;
  line-height: 1.6;
  flex: 1;
}

.tool-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #14B8A6;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  transition: gap 0.2s ease;
}

.tool-card-link:hover { gap: 10px; }
.tool-card-link::after { content: '→'; }

/* Feature row */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

@media (max-width: 768px) { .feature-row { grid-template-columns: 1fr; gap: 32px; } }

.feature-visual {
  background: linear-gradient(135deg, #f0fdfb 0%, #f5f5f5 100%);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-visual-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  font-size: 14px;
  color: #444444;
}

.feature-visual-icon { font-size: 18px; }
.feature-visual-val { margin-left: auto; color: #14B8A6; font-weight: 700; }

/* Responsive hero title fix */
@media (max-width: 768px) {
  .hero-title { font-size: 2.6rem; letter-spacing: -1px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
  .stat-number { font-size: 1.8rem; }
}

/* footer-links class (used by macro-calculator.html) */
.footer-links { }
.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666666;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  color: #aaaaaa;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #14B8A6; }
.footer-logo { display: inline-block; margin-bottom: 12px; }

/* ===== GSAP ANIMATIONS ===== */

/* Reveal sections start hidden — shown by GSAP */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
}

/* Page fade-in — CSS animation so page shows even if JS fails */
body.fade-init {
  animation: ip-body-fadein 0.5s ease-out 0.05s both;
}
@keyframes ip-body-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Page transition overlay */
#ip-transition-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  pointer-events: none;
}

/* Gradient orbs */
.ip-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #14B8A6 0%, transparent 70%);
}

/* Hero perspective for orb depth */
.hero {
  transform-style: preserve-3d;
}

/* 3D card tilt — enable perspective on grid containers */
.grid-3,
.pricing-grid {
  perspective: 1200px;
}

/* Parallax photo wrapper */
.parallax-photo {
  overflow: hidden;
  border-radius: 12px;
  will-change: transform;
}
.parallax-photo img {
  width: 100%;
  display: block;
}

/* Letter split chars */
.ip-char {
  display: inline-block;
  will-change: transform, opacity;
}

/* Stat counter */
.stat-number {
  will-change: contents;
}

/* Magnetic button prep */
.btn-primary {
  will-change: transform;
}

/* Reduce motion — override everything */
@media (prefers-reduced-motion: reduce) {
  .reveal-section {
    opacity: 1 !important;
    transform: none !important;
  }
  body.fade-init {
    animation: none !important;
    opacity: 1 !important;
  }
  .ip-orb,
  #ip-transition-overlay {
    display: none !important;
  }
}
