/* ===========================
   CSS Reset & Base
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  background-color: #100329;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn--primary {
  background-color: #53389E;
  color: #ffffff;
}

.btn--primary:hover {
  background-color: #6941C6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(83, 56, 158, 0.4);
}

.btn--secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ===========================
   Typography
   =========================== */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
}

/* ===========================
   Header
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background-color: rgba(16, 3, 41, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header--scrolled {
  background-color: rgba(16, 3, 41, 0.95);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.header__logo img {
  height: 36px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header__menu-item > a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
  padding: 8px 0;
}

.header__menu-item > a:hover {
  color: #825EE7;
}

/* Dropdown */
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover > a::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 200px;
  background-color: #1a0a3e;
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(130, 94, 231, 0.15);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s ease;
}

.dropdown li a:hover {
  color: #ffffff;
  background-color: rgba(130, 94, 231, 0.15);
}

.header__cta {
  margin-left: 24px;
}

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

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

.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: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(16, 3, 41, 0.98);
  z-index: 999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

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

.mobile-nav__menu li {
  margin-bottom: 24px;
}

.mobile-nav__menu li a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.mobile-nav__menu li a:hover {
  color: #825EE7;
}

/* ===========================
   Hero
   =========================== */
.hero {
  padding: 200px 0 140px;
  background: linear-gradient(135deg, #100329 0%, #0F0039 50%, #1a0a3e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero__illustration {
  flex: 1;
  max-width: 480px;
}

.hero__graphic {
  position: relative;
  width: 400px;
  height: 400px;
  animation: float 6s ease-in-out infinite;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
}

.hero__circle--1 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(130, 94, 231, 0.3) 0%, rgba(83, 56, 158, 0.15) 100%);
  border: 2px solid rgba(130, 94, 231, 0.25);
}

.hero__circle--2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 5%;
  background: linear-gradient(135deg, rgba(2, 187, 238, 0.2) 0%, rgba(130, 94, 231, 0.1) 100%);
  border: 2px solid rgba(2, 187, 238, 0.2);
  animation: pulse 4s ease-in-out infinite alternate;
}

.hero__circle--3 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  left: 10%;
  background: linear-gradient(135deg, rgba(130, 94, 231, 0.25) 0%, rgba(83, 56, 158, 0.1) 100%);
  border: 2px solid rgba(130, 94, 231, 0.2);
  animation: pulse 5s ease-in-out infinite alternate-reverse;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #825EE7 50%, #02BBEE 100%);
  border-radius: 4px;
}

.hero__arrow::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -8px;
  width: 0;
  height: 0;
  border-left: 14px solid #02BBEE;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

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

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 1; }
}

/* ===========================
   Client Logos
   =========================== */
.client-logos {
  padding: 80px 0;
  background-color: #100329;
  border-top: 1px solid rgba(130, 94, 231, 0.1);
  border-bottom: 1px solid rgba(130, 94, 231, 0.1);
}

.client-logos__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logos__item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logos__item img {
  height: 48px;
  width: auto;
  max-width: 160px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.client-logos__item img:hover {
  opacity: 1;
}

/* ===========================
   Value Proposition / Stats
   =========================== */
.value-prop {
  padding: 72px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.value-prop__header {
  text-align: center;
  margin-bottom: 40px;
}

.value-prop__header .section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.value-prop__header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-card__icon {
  margin-bottom: 16px;
}

.stat-card__icon img {
  height: 56px;
  width: auto;
  margin: 0 auto;
}

.stat-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
}

.stat-card__stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-item__number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #53389E;
}

.stat-item__label {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, #100329 0%, #0F0039 100%);
  overflow: hidden;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-carousel {
  position: relative;
  padding: 0 0 60px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  cursor: grab;
  padding: 40px 0;
  align-items: flex-start;
}

.testimonial-track:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 340px;
  min-height: 280px;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 20px;
  padding: 28px;
  transition: opacity 0.5s ease, box-shadow 0.5s ease;
  opacity: 0.5;
  cursor: pointer;
}

.testimonial-card.active {
  opacity: 1;
  box-shadow: 0 24px 80px rgba(130, 94, 231, 0.5), 0 0 40px rgba(130, 94, 231, 0.2);
  cursor: default;
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card__logo {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-btn:hover {
  background: #53389E;
  border-color: #53389E;
}

/* ===========================
   Case Study
   =========================== */
.case-study {
  padding: 100px 0;
  background: linear-gradient(180deg, #1C0944 0%, #100329 100%);
}

.case-study__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.case-study__content {
  flex: 1;
}

.case-study__content .section-subtitle {
  margin-bottom: 32px;
}

.case-study__image {
  flex: 1;
  max-width: 480px;
}

.case-study__image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===========================
   Founder
   =========================== */
.founder {
  padding: 100px 0;
  background: linear-gradient(135deg, #100329 0%, #1a0a3e 100%);
}

.founder__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.founder__credentials {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.founder__signature {
  max-width: 240px;
}

.founder__badge {
  max-width: 220px;
}

.founder__content {
  flex: 1;
}

.founder__role {
  font-size: 1.1rem;
  color: #825EE7;
  font-weight: 600;
  margin-bottom: 16px;
}

.founder__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===========================
   Process Playbook
   =========================== */
.playbook {
  padding: 100px 0;
  background: linear-gradient(135deg, #100329 0%, #1a0a3e 100%);
}

.playbook__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.playbook__image {
  flex: 1;
  max-width: 440px;
}

.playbook__image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.playbook__content {
  flex: 1;
}

.playbook__content .section-subtitle {
  margin-bottom: 32px;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a0a3e 0%, #0F0039 100%);
}

.faq__inner {
  text-align: center;
}

.faq__inner .section-subtitle {
  margin: 0 auto 28px;
}

/* ===========================
   Final CTA
   =========================== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0F0039 0%, #100329 50%, #1a0a3e 100%);
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(130, 94, 231, 0.08) 0%, transparent 70%);
}

.final-cta .container {
  max-width: 1400px;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.final-cta__content {
  padding-top: 40px;
}

.final-cta__content .section-subtitle {
  margin-bottom: 32px;
}

.final-cta__booking {
  min-height: 680px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(130, 94, 231, 0.15);
}

.final-cta__booking .meetings-iframe-container {
  min-height: 680px;
  width: 100%;
}

.final-cta__booking iframe {
  border-radius: 16px;
}

.final-cta__benefits {
  text-align: left;
  display: inline-block;
  margin-bottom: 28px;
}

.final-cta__benefits li {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.final-cta__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #825EE7;
  border-radius: 50%;
}

.final-cta__benefits li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-60%) rotate(-45deg);
}

.final-cta__closing {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ===========================
   Footer
   =========================== */
.footer {
  padding: 40px 0;
  background-color: #0a0118;
  border-top: 1px solid rgba(130, 94, 231, 0.1);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo img {
  height: 28px;
  width: auto;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #825EE7;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1240px) {
  .header__nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .hero__illustration {
    max-width: 360px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .case-study__inner {
    flex-direction: column;
    text-align: center;
  }

  .case-study__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .founder__inner {
    flex-direction: column;
    text-align: center;
  }

  .playbook__inner {
    flex-direction: column;
    text-align: center;
  }

  .playbook__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta__content {
    padding-top: 0;
  }

  .final-cta__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta__benefits {
    display: inline-block;
    text-align: left;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .client-logos__grid {
    gap: 32px;
  }

  .client-logos__item img {
    height: 36px;
  }

  .value-prop,
  .case-study,
  .founder,
  .playbook,
  .final-cta {
    padding: 64px 0;
  }

  .testimonials {
    padding: 64px 0;
  }

  .testimonial-card {
    flex: 0 0 240px;
    padding: 22px;
  }

  .btn {
    border-radius: 100px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.85rem;
  }

  .container {
    padding: 0 20px;
  }

  .testimonial-card {
    flex: 0 0 220px;
    padding: 20px;
  }
}
