/* Base styles */
:root {
  --brand-accent: #B10000;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: #0B0B0F;
  color: #fff;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Enable scrolling for single page lander */
body {
  overflow-x: hidden;
  overflow-y: auto;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Ensure mobile scrolling works */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
  }
  
  html {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
  }
}

/* Hero Section with Scrolling Background */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Ensure hero section fits mobile viewport */
@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    max-height: 100vh;
  }
}

/* Background Scroll for Hero Section Only */
.background-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  box-shadow: 0 0 200px 100px rgba(255, 255, 255, 0.15) inset;
}

.scroll-row {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: visible;
  pointer-events: none;
  height: 200px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}
.scroll-row.row-1 {
  top: 10vh;
}
.scroll-row.row-2 {
  top: 54vh;
}
.scroll-track {
  display: flex;
  gap: 3vw;
  width: max-content;
  will-change: transform;
  align-items: center;
  overflow: visible;
}
.scroll-row.row-1 .scroll-track,
.scroll-row.row-2 .scroll-track {
  animation: scroll-track-row 80s linear infinite;
  transform: rotate(-4deg);
}
.bg-img {
  width: 160px;
  height: 160px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
  opacity: 0.85;
  display: block;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0a0a 0%, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.85) 90%, #0a0a0a 100%);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 60px 40px #0a0a0a inset;
}

@keyframes scroll-track-row {
  0% { transform: translateX(0) rotate(-4deg); }
  100% { transform: translateX(-50%) rotate(-4deg); }
}



.hero-main {
  position: relative;
  z-index: 4;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 1.5rem 0 1.5rem;
}

/* Mobile optimization for hero-main */
@media (max-width: 768px) {
  .hero-main {
    height: 100vh;
    max-height: 100vh;
    padding: 1rem;
    overflow: hidden;
    justify-content: center;
  }
  
  .hero {
    padding: 0.5rem 0;
    max-height: calc(100vh - 2rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .site-logo {
    height: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-headline {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
    margin-bottom: 0.6rem;
    line-height: 1.1;
  }
  
  .hero-subheadline {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    max-width: 90%;
  }
  
  .hero-cta-buttons {
    margin-bottom: 0.6rem;
    gap: 0.8rem;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-cta-buttons .cta-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    min-width: auto;
  }
  
  .quote-rotator {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
  }
  
  .quote-container {
    padding: 0.6rem 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 195, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }
  
  .quote-text {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }
  
  .quote-attribution {
    font-size: 0.65rem;
  }
}

.hero {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 0 2.5rem 0;
  text-align: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-headline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
  color: #fff;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.04);
}

.manrope {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #fff;
}

.great-vibes {
  font-family: 'Great Vibes', cursive;
  color: #FFC300;
  /* Optical alignment with surrounding text */
  font-size: 1.08em;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: inline-block;
  vertical-align: 0.08em;
}

/* Slightly larger and better aligned when used in section titles */
.why-us-title .great-vibes {
  font-size: 1.18em;
  vertical-align: -0.05em;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

.hero-cta-buttons .cta-btn {
  flex: 0 1 auto;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem 2rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  text-transform: none !important;
}

.hero-cta-buttons .cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 16px 16px 60% 60%/60% 60% 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-cta-buttons .cta-btn span {
  position: relative;
  z-index: 2;
}

.hero-cta-buttons .btn-main-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  text-transform: none !important;
}



.hero-cta-buttons .primary-btn {
  background: linear-gradient(180deg, #ffe066 0%, #FFC300 60%, #e6b200 100%);
  color: #222;
  box-shadow: 0 4px 24px 0 rgba(255,195,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
}

.hero-cta-buttons .primary-btn:hover {
  background: linear-gradient(180deg, #ffd633 0%, #e6b200 60%, #b38a00 100%);
  box-shadow: 0 6px 32px 0 rgba(255,195,0,0.22), 0 4px 16px 0 rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.025);
  text-shadow: 0 0 8px #fff, 0 2px 8px rgba(255,255,255,0.18);
}

.hero-cta-buttons .secondary-btn {
  background: transparent;
  color: #FFC300;
  border: 2px solid #FFC300;
  box-shadow: 0 4px 24px 0 rgba(255,195,0,0.15), 0 2px 8px 0 rgba(0,0,0,0.10);
}

.hero-cta-buttons .secondary-btn:hover {
  background: rgba(255, 195, 0, 0.1);
  box-shadow: 0 6px 32px 0 rgba(255,195,0,0.25), 0 4px 16px 0 rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.025);
  text-shadow: 0 0 8px rgba(255, 195, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .hero-cta-buttons .cta-btn {
    min-width: 100%;
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-cta-buttons .btn-main-text {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero-cta-buttons {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .hero-cta-buttons .cta-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .hero-cta-buttons .btn-main-text {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

/* General CTA button styles (for non-hero buttons) */
.cta-btn:not(.hero-cta-buttons .cta-btn) {
  background: linear-gradient(180deg, #ffe066 0%, #FFC300 60%, #e6b200 100%);
  color: #222;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 5vw, 2.6rem);
  cursor: pointer;
  box-shadow: 0 4px 24px 0 rgba(255,195,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  outline: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-btn-secondary {
  background: #FFC300;
  color: #000;
  border: 2px solid #FFC300;
  box-shadow: 0 4px 24px 0 rgba(255,195,0,0.3), 0 2px 8px 0 rgba(0,0,0,0.2);
  font-weight: 800;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 12px 12px 60% 60%/60% 60% 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.cta-btn span,
.cta-btn {
  position: relative;
  z-index: 2;
}

/* General CTA button hover states (for non-hero buttons) */
.cta-btn:not(.hero-cta-buttons .cta-btn):hover, 
.cta-btn:not(.hero-cta-buttons .cta-btn):focus, 
.btn-primary:hover, .btn-primary:focus, 
a.cta-btn:hover, a.btn-primary:hover {
  color: #222 !important;
  background: linear-gradient(180deg, #ffd633 0%, #e6b200 60%, #b38a00 100%);
  box-shadow: 0 6px 32px 0 rgba(255,195,0,0.22), 0 4px 16px 0 rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.025);
  text-shadow: 0 0 8px #fff, 0 2px 8px rgba(255,255,255,0.18);
}

.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: #e6b200;
  color: #000 !important;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 32px 0 rgba(255,195,0,0.4), 0 4px 16px 0 rgba(0,0,0,0.3);
  transform: translateY(-2px) scale(1.025);
}

/* General CTA button colors (for non-hero buttons) */
.cta-btn:not(.hero-cta-buttons .cta-btn), .btn-primary, a.cta-btn, a.btn-primary {
  color: #222;
}

.cta-btn-secondary {
  color: #FFC300;
}

.arrow {
  font-size: 1.2em;
  margin-left: 0.25rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  width: 100%;
}
.value-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 1.08rem);
  color: #fff;
  font-weight: 600;
  background: none;
  border-radius: 0;
  padding: 0;
  gap: 0.85rem;
  text-align: left;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.number-badge {
  min-width: clamp(1.5rem, 4vw, 2.2rem);
  width: clamp(1.5rem, 4vw, 2.2rem);
  height: clamp(1.5rem, 4vw, 2.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.value-text {
  display: block;
  text-align: left;
  margin-top: 0;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 5;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.1rem;
  text-align: center;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}





.footer {
  text-align: center;
  color: #FFC300;
  font-size: 1.08rem;
  font-weight: 400;
  padding: 2.5rem 1rem 1.2rem 1rem;
  background: transparent;
  text-shadow: 0 2px 8px rgba(0,0,0,0.22), 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  z-index: 10;
  display: block;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-link {
  color: #FFC300;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffe066;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .scroll-row {
    height: 120px;
  }
  .bg-img {
    width: 100px;
    height: 100px;
  }
  .scroll-row.row-2 {
    top: 38vh;
  }
  
  .hero-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  

}

@media (max-width: 600px) {
  .scroll-row {
    height: 130px;
  }
  .bg-img {
    width: 110px;
    height: 110px;
  }
  .scroll-row.row-1 .scroll-track,
  .scroll-row.row-2 .scroll-track {
    animation: scroll-track-row 80s linear infinite;
    transform: none;
  }
  .hero-subheadline {
    font-size: 0.92rem;
  }
  .hero-headline {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .hero-headline .great-vibes {
    font-size: 1.2em;
  }
  
  .hero-cta-buttons {
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
    text-align: center;
  }
  

}

/* Responsive styles */
@media (min-width: 600px) {
  .hero-headline {
    font-size: 2.8rem;
  }
  .hero-content {
    padding: 3.5rem 2.5rem 3.5rem 2.5rem;
    max-width: 640px;
  }
  .value-section {
    max-width: 600px;
  }
  .value-list li {
    font-size: 1.08rem;
  }
}
@media (min-width: 900px) {
  .hero {
    max-width: 900px;
  }
  .hero-headline {
    font-size: 4.2rem;
    max-width: 900px;
  }
  .hero-content {
    padding: 4.5rem 3.5rem 4.5rem 3.5rem;
    max-width: 720px;
  }
}

a, .brand-accent {
  color: var(--brand-accent);
  text-decoration: none;
}
a:hover, .brand-accent:hover {
  color: #7a0000;
}

.yellow-dot {
  color: #FFC300;
  font-size: 1.1em;
  font-family: inherit;
  font-weight: 800;
  margin-left: 0.05em;
}

.value-list.horizontal-bullets {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2.2rem;
  margin: 2.5rem 0 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.value-list.horizontal-bullets li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.08rem;
  color: #fff;
  font-weight: 600;
  background: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.number-badge {
  min-width: 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 195, 0, 0.75);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(255,195,0,0.10);
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.value-text {
  display: block;
  text-align: left;
  margin-top: 0;
}
@media (max-width: 900px) {
  .value-list.horizontal-bullets {
    gap: 1.2rem;
  }
  .value-list.horizontal-bullets li {
    font-size: 1rem;
  }
  .number-badge {
    min-width: 1.7rem;
    width: 1.7rem;
    height: 1.7rem;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .value-list.horizontal-bullets {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}

.site-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(255,195,0,0.15));
}
.footer .site-logo {
  margin: 0 auto 1.1rem auto;
  max-width: 90px;
  width: 18vw;
}
@media (max-width: 600px) {
  .site-logo {
    height: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .footer .site-logo {
    height: 1.8rem;
  }
}

.btn,
.btn-primary,
.btn-secondary,
.cta-btn {
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-secondary,
.cta-btn {
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover,
.cta-btn:hover {
  text-shadow: 0 0 8px #fff, 0 2px 8px rgba(255,255,255,0.18);
  filter: brightness(1.05);
}
.btn-secondary:hover {
  text-shadow: 0 0 8px #000, 0 2px 8px rgba(0,0,0,0.18);
}
.btn:hover {
  filter: brightness(1.05);
}

.yellow-text {
  color: #FFC300;
} 

/* Floating Hamburger Menu */
.floating-menu {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.menu-trigger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 195, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-trigger:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 195, 0, 0.3);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.menu-trigger span {
  width: 24px;
  height: 2px;
  background: #FFC300;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(255, 195, 0, 0.3);
}

.menu-trigger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
}

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

.menu-trigger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 195, 0, 0.2);
  border-radius: 12px;
  padding: 1rem;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-links.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-link {
  display: block;
  color: #FFC300;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
  margin-bottom: 0.25rem;
}

.menu-link:hover {
  background: rgba(255, 195, 0, 0.1);
  color: #ffe066;
  transform: translateX(4px);
}

.menu-link:last-child {
  margin-bottom: 0;
}

.menu-link.active {
  background: rgba(255, 195, 0, 0.15);
  color: #ffe066;
}



/* Mobile Responsive Styles for Floating Menu */
@media (max-width: 768px) {
  .floating-menu {
    top: 1rem;
    right: 1rem;
  }
  
  .menu-trigger {
    padding: 0.6rem;
  }
  
  .menu-trigger span {
    width: 20px;
    height: 2px;
    margin: 2.5px 0;
  }
  
  .menu-links {
    min-width: 180px;
    padding: 0.8rem;
  }
  
  .menu-link {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .floating-menu {
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .menu-trigger {
    padding: 0.5rem;
  }
  
  .menu-trigger span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
  }
  
  .menu-links {
    min-width: 160px;
    padding: 0.6rem;
  }
  
  .menu-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
  }
}

/* Adjust hero padding since no navbar */
@media (max-width: 768px) {
  .hero-main {
    padding: 2rem 1rem 0 1rem;
  }
}

@media (max-width: 600px) {
  .hero-main {
    padding: 1.5rem 1rem 0 1rem;
  }
} 

/* Coming Soon Pages */
.coming-soon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
}

.coming-soon-content {
  text-align: center;
  max-width: 600px;
  background: rgba(20, 20, 20, 0.7);
  border-radius: 18px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 48px 0 rgba(0,0,0,0.32), 0 2px 16px 0 rgba(255,195,0,0.08);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.08);
}

.coming-soon-content h1 {
  color: #FFC300;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.coming-soon-icon {
  font-size: 4rem;
  margin: 1.5rem 0;
  animation: bounce 2s infinite;
}

.coming-soon-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.coming-soon-content p {
  color: #fff;
  opacity: 0.8;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.coming-soon-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 24px 0 rgba(255,195,0,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
}

.coming-soon-content .btn-primary {
  background: linear-gradient(180deg, #ffe066 0%, #FFC300 60%, #e6b200 100%);
  color: #222;
}

.coming-soon-content .btn-primary:hover {
  background: linear-gradient(180deg, #ffd633 0%, #e6b200 60%, #b38a00 100%);
  box-shadow: 0 6px 32px 0 rgba(255,195,0,0.22), 0 4px 16px 0 rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.025);
  text-shadow: 0 0 8px #fff, 0 2px 8px rgba(255,255,255,0.18);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .coming-soon-content {
    padding: 2rem 1rem;
  }
  
  .coming-soon-content h1 {
    font-size: 2rem;
  }
  
  .coming-soon-content h2 {
    font-size: 1.5rem;
  }
  
  .coming-soon-content p {
    font-size: 1rem;
  }
  
  .coming-soon-icon {
    font-size: 3rem;
  }
} 



/* Section Titles */
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.1rem;
  text-align: center;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}





.coming-soon-text {
  color: #FFC300;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.funnel-cta {
  text-align: center;
  margin-top: 2rem;
}

.funnel-cta p {
  font-size: 1.1rem;
  color: #FFC300;
  font-weight: 600;
  margin: 0;
}



.calculator-result {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 195, 0, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 195, 0, 0.3);
}

.calculator-result h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.result-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.result-number span:first-child {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #FFC300;
  line-height: 1;
}

.result-label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 500;
}

.calculator-note {
  text-align: center;
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Final CTA Section */
.final-cta-section {
  padding: 4rem 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(255, 195, 0, 0.1) 0%, rgba(255, 195, 0, 0.05) 100%);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  max-width: 700px;
  margin: 0 auto;
}

.cta-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Active Navigation Link */
.nav-link.active {
  color: #FFC300;
}

.nav-link.active::after {
  width: 100%;
  background: #FFC300;
}

/* Responsive Design */


@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  

  
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  
  .funnel-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .funnel-card {
    padding: 1.5rem;
  }
  
  .slider-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  
  .slider-value {
    text-align: center;
    min-width: auto;
  }
  
  .result-number span:first-child {
    font-size: 2.5rem;
  }
}

/* Guarantee Section */
.guarantee-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 195, 0, 0.1);
  border-bottom: 1px solid rgba(255, 195, 0, 0.1);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 195, 0, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  border-color: rgba(255, 195, 0, 0.4);
  box-shadow: 0 8px 32px rgba(255, 195, 0, 0.15);
  transform: translateY(-4px);
}

.guarantee-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.guarantee-icon svg {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 195, 0, 0.3));
}

.guarantee-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFC300;
}

.guarantee-card p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0 auto;
}

/* Mobile padding for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1.5rem;
  }
  
  .faq-accordion {
    max-width: 100%;
    margin: 2rem auto 0 auto;
    padding: 0 1rem;
  }
  
  .faq-item {
    margin-bottom: 0.8rem;
  }
  
  .faq-header {
    padding: 1rem 1.2rem;
  }
  
  .faq-header h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  .faq-content p {
    padding: 0 1.2rem 1rem 1.2rem;
    font-size: 0.9rem;
  }
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 195, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 195, 0, 0.3);
}

.faq-item.active {
  border-color: rgba(255, 195, 0, 0.5);
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.1);
}

.faq-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: rgba(255, 195, 0, 0.05);
}

.faq-header h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex: 1;
}

.faq-icon {
  color: #FFC300;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
  min-width: 20px;
  text-align: center;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content p {
  padding: 0 2rem 1.5rem 2rem;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .guarantee-section,
  .faq-section {
    padding: 3rem 0;
  }
  
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .guarantee-card {
    padding: 2rem 1.5rem;
  }
  
  .faq-header {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-header h3 {
    font-size: 1rem;
  }
  
  .faq-content p {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .guarantee-card {
    padding: 1.5rem 1rem;
  }
  
  .guarantee-icon {
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .guarantee-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .guarantee-card h3 {
    font-size: 1.2rem;
  }
  
  .faq-header {
    padding: 1rem 1.25rem;
  }
  
  .faq-header h3 {
    font-size: 0.95rem;
  }
  
  .faq-content p {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* New Coming Soon Page Styles */
.new-coming-soon-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  overflow: hidden;
}

/* Mobile optimization for coming-soon page */
@media (max-width: 768px) {
  .new-coming-soon-section {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
  }
  
  .main-content {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    padding: 1rem;
  }
}

/* Glow background effects */
.glow-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-corner {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.15) 0%, rgba(255, 195, 0, 0.05) 40%, transparent 70%);
  border-radius: 50%;
}

.glow-corner.top-left {
  top: -200px;
  left: -200px;
}

.glow-corner.top-right {
  top: -200px;
  right: -200px;
}

/* Glass container */
.glass-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  padding: 0 2rem;
  text-align: center;
}

.glass-content {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 195, 0, 0.2);
  border-radius: 32px;
  padding: 4rem 3rem;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 195, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Logo */
.logo-container {
  margin-bottom: 3rem;
}

.page-logo {
  height: 4rem;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(255, 195, 0, 0.3));
}

/* Main headline */
.main-headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 2rem;
  line-height: 1.1;
  color: #ffffff;
}

.main-headline .yellow-text {
  color: #FFC300;
  text-shadow: 0 0 30px rgba(255, 195, 0, 0.5);
}

/* Description */
.description-text {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 3.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Email capture card */
.email-capture-card {
  background: rgba(255, 195, 0, 0.05);
  border: 1px solid rgba(255, 195, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(20px);
}

.card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFC300;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

/* Email form */
.email-form {
  margin-bottom: 1rem;
}

.input-group {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: #888;
}

.email-input:focus {
  outline: none;
  border-color: #FFC300;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #FFC300 0%, #e6b200 100%);
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ffe066 0%, #FFC300 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.3);
}

.submit-btn .arrow {
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.submit-btn:hover .arrow {
  transform: translateX(4px);
}

.form-note {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

/* Back to home link */
.back-link {
  margin-top: 2rem;
}

.home-link {
  color: #FFC300;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.home-link:hover {
  color: #ffe066;
  transform: translateX(-4px);
}

.link-text {
  font-size: 1rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .glass-container {
    padding: 0 1rem;
  }
  
  .glass-content {
    padding: 3rem 2rem;
    margin: 1rem;
    border-radius: 24px;
  }
  
  .input-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  
  .glow-corner {
    width: 300px;
    height: 300px;
  }
  
  .glow-corner.top-left {
    top: -150px;
    left: -150px;
  }
  
  .glow-corner.top-right {
    top: -150px;
    right: -150px;
  }
}

@media (max-width: 600px) {
  .glass-container {
    padding: 0 0.5rem;
  }
  
  .glass-content {
    padding: 2.5rem 1.5rem;
    margin: 0.5rem;
    border-radius: 20px;
  }
  
  .main-headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  
  .description-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .email-capture-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card-title {
    font-size: 1.3rem;
  }
  
  .glow-corner {
    width: 250px;
    height: 250px;
  }
  
  .glow-corner.top-left {
    top: -125px;
    left: -125px;
  }
  
  .glow-corner.top-right {
    top: -125px;
    right: -125px;
  }
}

@media (max-width: 480px) {
  .glass-container {
    padding: 0 0.25rem;
  }
  
  .glass-content {
    padding: 2rem 1rem;
    margin: 0.25rem;
    border-radius: 16px;
  }
  
  .main-headline {
    font-size: clamp(1.8rem, 9vw, 3rem);
    margin-bottom: 1rem;
  }
  
  .email-capture-card {
    padding: 1.5rem 1rem;
  }
  
  .input-group {
    gap: 0.75rem;
  }
  
  .email-input {
    padding: 0.75rem 1rem;
  }
  
  .submit-btn {
    padding: 0.75rem 1.5rem;
  }
}

/* Quote Rotator Styling */
.quote-rotator {
    text-align: center;
    margin-top: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.quote-container {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(3px);
    border-radius: 8px;
    border: 1px solid rgba(255, 195, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 0.3rem;
    font-weight: 300;
    transition: opacity 0.3s ease-in-out;
}

.quote-attribution {
    font-size: 0.7rem;
    color: #FFC300;
    font-weight: 400;
    margin: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease-in-out;
}

/* Responsive Quote Rotator */
@media (max-width: 768px) {
    .quote-rotator {
        margin-top: 0.5rem;
        max-width: 80%;
    }
    
    .quote-container {
        padding: 0.4rem 0.6rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid rgba(255, 195, 0, 0.03);
        min-height: 70px;
    }
    
    .quote-text {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #d0d0d0;
    }
    
    .quote-attribution {
        font-size: 0.65rem;
        opacity: 0.5;
    }
}

/* Academy Page Styles */
.academy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

.academy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: academyGlow 8s ease-in-out infinite alternate;
}

@keyframes academyGlow {
    0% { 
        opacity: 0.7; 
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02) rotate(1deg);
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05) rotate(0deg);
    }
}

.academy-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(255, 255, 255, 0.02) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(255, 255, 255, 0.02) 100px
        );
    pointer-events: none;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
        opacity: 0.6;
    }
    100% { 
        transform: translate(100px, 100px) scale(1);
        opacity: 0.3;
    }
}

.academy-container > * {
    position: relative;
    z-index: 2;
}

/* Floating particles animation */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatingParticles {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-30px) translateX(15px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.academy-header {
    text-align: center;
    margin-bottom: 60px;
}

.academy-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.academy-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.course-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.course-card > * {
    position: relative;
    z-index: 2;
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.course-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    margin-bottom: 25px;
}

.course-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 25px;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4ade80;
    margin-bottom: 20px;
}

.enroll-btn {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enroll-btn:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.academy-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: 40px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Academy Course Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.academy-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.academy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.academy-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.course-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.course-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    padding-left: 25px;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

.course-price {
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
    margin: 20px 0;
}

.course-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.course-price .period {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 400;
}

/* Academy Features Section */
.academy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.feature-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

.cta-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff6b6b);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
}

/* Responsive Design for Academy */
@media (max-width: 768px) {
    .academy-title {
        font-size: 2.5rem;
    }
    
    .academy-subtitle {
        font-size: 1.1rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .course-card {
        padding: 25px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* Ads Section Styles */
.ads-section {
  padding: 4rem 0;
  background: #0B0B0F;
  position: relative;
  display: block !important;
  min-height: auto !important;
  overflow: visible !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* iMessage Bubble Styles */
.imessage-bubble { 
  background: #007AFF; 
  border-radius: 20px; 
  padding: 1rem 1.5rem; 
  margin: 0 auto 3rem auto; 
  max-width: 400px; 
  position: relative; 
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3); 
}

.imessage-bubble::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 25px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #007AFF;
  z-index: 1;
}

.bubble-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 1.4;
}

.bubble-text em {
  font-style: italic;
  color: #FFD700;
}

/* Pricing Section */
.pricing-section {
  width: 100%;
  max-width: 1000px;
  margin: 1rem auto;
  padding: 0 1rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card {
  background: #000000;
  border: 2px solid rgba(255, 195, 0, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 24px rgba(255, 195, 0, 0.1);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 195, 0, 0.15) 0%, rgba(255, 195, 0, 0.05) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.pricing-card > * {
  position: relative;
  z-index: 2;
}

.card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  color: #FFC300;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
}

.currency-flags {
  display: flex;
  gap: 0.5rem;
}

.currency-flag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  position: relative;
  min-width: 45px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.currency-flag.active {
  background: rgba(255, 195, 0, 0.2);
  border-color: #FFC300;
  color: #FFC300;
}

.currency-flag[data-currency="gbp"] {
  background-image: url('images/uk-flag.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  position: relative;
}

.currency-flag[data-currency="gbp"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/uk-flag.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: -1;
}

.currency-flag[data-currency="eur"] {
  background-image: url('images/eu-flag.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  position: relative;
}

.currency-flag[data-currency="eur"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/eu-flag.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: -1;
}

.currency-flag[data-currency="usd"] {
  background: white;
  background-image: url('images/us-flag.png');
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  position: relative;
}

.currency-flag[data-currency="usd"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/us-flag.png');
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: -1;
}

.card-features {
  margin-bottom: 0.8rem;
}

.card-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-features li {
  color: #e0e0e0;
  padding: 0.3rem 0 0.3rem 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  position: relative;
  text-align: left;
}

.card-features li:last-child {
  border-bottom: none;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFC300;
  font-weight: bold;
  font-size: 0.8rem;
}

.card-cta {
  width: 100%;
  background: linear-gradient(180deg, #ffe066 0%, #FFC300 60%, #e6b200 100%);
  color: #222;
  border: none;
  border-radius: 16px;
  padding: 1.2rem 2rem;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
}

.card-cta:hover {
  background: linear-gradient(180deg, #ffd633 0%, #e6b200 60%, #b38a00 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact-section {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.contact-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-description {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-textarea:focus {
  outline: none;
  border-color: #FFC300;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.1);
}

.contact-textarea::placeholder {
  color: #888;
}

.contact-submit {
  width: 100%;
  background: linear-gradient(180deg, #ffe066 0%, #FFC300 60%, #e6b200 100%);
  color: #222;
  border: none;
  border-radius: 16px;
  padding: 1.2rem 2rem;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-submit:hover {
  background: linear-gradient(180deg, #ffd633 0%, #e6b200 60%, #b38a00 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Email Modal */
.email-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.email-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #1a1a1a;
  border: 2px solid rgba(255, 195, 0, 0.3);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.modal-description {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: 8px;
  padding: 0.8rem;
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.modal-input:focus {
  outline: none;
  border-color: #FFC300;
  background: rgba(255, 255, 255, 0.08);
}

.modal-input::placeholder {
  color: #888;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.modal-submit {
  background: linear-gradient(180deg, #ffe066 0%, #FFC300 60%, #e6b200 100%);
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.modal-submit:hover {
  background: linear-gradient(180deg, #ffd633 0%, #e6b200 60%, #b38a00 100%);
  transform: translateY(-2px);
}

/* Desktop styles for Ads Section */
@media (min-width: 769px) {
  .ads-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: auto !important;
    overflow: visible !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Mobile Responsive for Ads Section */
@media (max-width: 768px) {
  .ads-section {
    padding: 2rem 0;
  }
  
  .imessage-bubble {
    max-width: 280px;
    padding: 0.8rem 0.9rem;
    margin: 0 auto 1.8rem auto;
  }
  
  .bubble-text {
    font-size: 0.85rem;
  }
  
  .pricing-section {
    margin: 1rem auto;
    padding: 0 0.5rem;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
  }
  
  .contact-section {
    margin-bottom: 18rem !important;
    padding-bottom: 8rem;
  }
  
  .contact-submit {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  .card-features li {
    padding-left: 2rem !important;
    font-size: 0.8rem !important;
  }
  
  .pricing-card {
    padding: 1.25rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .currency-flag {
    padding: 0.3rem 0.5rem;
    font-size: 0.7rem;
    min-width: 40px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    margin: 1rem auto;
    padding: 0 0.25rem;
  }
  
  .pricing-cards {
    max-width: 350px;
  }
  
  .pricing-card {
    padding: 1rem;
  }
  
  .card-cta {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
}