@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Oswald:wght@400;600;700&display=swap');

:root {
  --motion-bg: #f8fafc;
  --motion-surface: #ffffff;
  --motion-dark: #0f172a;
  --motion-vibrant: #ec4899;
  --motion-cyan: #8b5cf6;
  --motion-gradient: linear-gradient(135deg, var(--motion-vibrant) 0%, var(--motion-cyan) 100%);
  --motion-text: #334155;
  --motion-text-light: #f8fafc;
  --motion-border-soft: rgba(139, 92, 246, 0.2);
  
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --pad-normal: 10dvh;
  --rad-soft: 16px;
  --shad-deep: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--motion-bg);
  color: var(--motion-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Header */
.top-navigation-belt {
  background: var(--motion-gradient);
  color: var(--motion-text-light);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px -10px rgba(236, 72, 153, 0.4);
}

.brand-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-logo-area svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.menu-links-group {
  display: flex;
  gap: 2rem;
}

.menu-links-group a {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.menu-links-group a:hover {
  opacity: 0.8;
}

.mobile-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle-label span {
  width: 25px;
  height: 3px;
  background-color: var(--motion-text-light);
  border-radius: 2px;
}

#mobile-toggle-switch {
  display: none;
}

/* Buttons */
.action-trigger-pill {
  display: inline-block;
  background: var(--motion-surface);
  color: var(--motion-vibrant);
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 14px 32px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: var(--shad-deep);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.action-trigger-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -10px rgba(139, 92, 246, 0.35);
}

.action-trigger-full {
  background: var(--motion-gradient);
  color: var(--motion-text-light);
}

.action-trigger-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(236, 72, 153, 0.3);
}

/* Hero Section (Index) */
.intro-gradient-zone {
  position: relative;
  min-height: 100vh;
  background: var(--motion-gradient);
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
  color: var(--motion-text-light);
}

.huge-deco-digit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 35rem;
  font-weight: 700;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.abstract-shape-1, .abstract-shape-2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.abstract-shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
}

.abstract-shape-2 {
  width: 200px;
  height: 200px;
  top: 100px;
  right: 200px;
  transform: rotate(45deg);
}

.intro-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.main-headline {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.supporting-paragraph {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Diagonal Content Section */
.diagonal-cut-area {
  position: relative;
  background: url('img/bg2.webp') center/cover no-repeat;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  padding: calc(var(--pad-normal) + 5dvh) 5%;
  margin: var(--pad-normal) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diagonal-overlay-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--rad-soft);
  max-width: 800px;
  text-align: center;
  box-shadow: var(--shad-deep);
}

.diagonal-overlay-box h2 {
  font-size: 3rem;
  color: var(--motion-cyan);
  margin-bottom: 1.5rem;
}

/* Features Grid */
.benefits-grid-wrap {
  padding: var(--pad-normal) 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-grid-wrap h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--motion-dark);
}

.benefits-layout-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.knowledge-piece {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.massive-number-head {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--motion-vibrant);
  line-height: 1;
}

.knowledge-piece h3 {
  font-size: 1.5rem;
  color: var(--motion-dark);
  border-bottom: 2px solid var(--motion-border-soft);
  padding-bottom: 0.5rem;
}

/* How It Works (Horizontal Track) */
.process-horizontal-track {
  background-color: var(--motion-surface);
  padding: var(--pad-normal) 5%;
  text-align: center;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.02);
}

.process-horizontal-track h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
  color: var(--motion-dark);
}

.steps-flex-row {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.steps-flex-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: var(--motion-gradient);
  z-index: 1;
}

.step-item-wrap {
  position: relative;
  z-index: 2;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.step-circle-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--motion-gradient);
  color: var(--motion-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: var(--shad-deep);
}

.step-item-wrap:nth-child(even) .step-circle-badge {
  background: var(--motion-surface);
  color: var(--motion-cyan);
  border: 4px solid var(--motion-cyan);
}

.step-item-wrap h3 {
  font-size: 1.5rem;
  color: var(--motion-dark);
}

/* CTA Strip */
.final-call-strip {
  background: var(--motion-dark);
  padding: var(--pad-normal) 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--motion-text-light);
}

.final-call-strip h2 {
  font-size: 3.5rem;
  max-width: 60%;
}

/* Expert Specific Layout */
.minimal-intro-area {
  padding: calc(var(--pad-normal) * 1.5) 5% var(--pad-normal);
  background: var(--motion-gradient);
  color: white;
  text-align: center;
}

.split-educational-view {
  display: flex;
  padding: var(--pad-normal) 5%;
  gap: 4rem;
  align-items: center;
}

.split-text-side {
  width: 55%;
}

.split-img-side {
  width: 45%;
  border-radius: var(--rad-soft);
  overflow: hidden;
  box-shadow: var(--shad-deep);
}

.stats-horizontal-strip {
  display: flex;
  justify-content: space-around;
  padding: var(--pad-normal) 5%;
  background: var(--motion-surface);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.stat-val-block {
  text-align: center;
}

.stat-val-block span {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--motion-vibrant);
  line-height: 1;
}

.stat-val-block p {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--motion-text);
  margin-top: 0.5rem;
}

.final-img-closure {
  background: url('img/bg3.webp') center/cover;
  padding: 15dvh 5%;
  display: flex;
  align-items: center;
}

/* Reserve Immersive Form Layout */
.booking-split-view {
  display: flex;
  padding: var(--pad-normal) 5%;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.booking-form-area {
  width: 60%;
  background: var(--motion-surface);
  padding: 3rem;
  border-radius: var(--rad-soft);
  box-shadow: var(--shad-deep);
}

.booking-form-area h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--motion-dark);
}

.input-row-group {
  margin-bottom: 1.5rem;
}

.input-row-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--motion-dark);
}

.input-row-group input, .input-row-group select {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--motion-border-soft);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.input-row-group input:focus {
  outline: none;
  border-color: var(--motion-cyan);
}

.policy-check-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.booking-info-cards {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-bullet-card {
  background: var(--motion-gradient);
  color: var(--motion-text-light);
  padding: 2rem;
  border-radius: var(--rad-soft);
  box-shadow: var(--shad-deep);
}

.info-bullet-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.habit-list {
  list-style: none;
}

.habit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.habit-item::before {
  content: '✓';
  background: var(--motion-surface);
  color: var(--motion-vibrant);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-mailto {
  display: inline-block;
  margin-top: 1rem;
  color: var(--motion-cyan);
  font-weight: 600;
  text-decoration: underline;
}

/* FAQ Accordion */
.faq-section-wrap {
  padding: var(--pad-normal) 5%;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section-wrap h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
}

.faq-accordion-item {
  background: var(--motion-surface);
  margin-bottom: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-accordion-item summary {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--motion-bg);
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.faq-accordion-item summary::after {
  content: '+';
  color: var(--motion-vibrant);
  font-size: 1.5rem;
}

.faq-accordion-item[open] summary::after {
  content: '-';
}

.faq-answer-pane {
  padding: 1.5rem;
  border-top: 1px solid var(--motion-border-soft);
}

/* Basic Pages (Privacy, Terms, Thank) */
.standard-text-zone {
  padding: calc(var(--pad-normal) + 5dvh) 5%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 80vh;
}

.standard-text-zone h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--motion-vibrant);
}

.standard-text-zone h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.standard-text-zone p {
  margin-bottom: 1rem;
}

/* Footer */
.bottom-closure-area {
  background: var(--motion-dark);
  color: var(--motion-text-light);
  padding: 4rem 5% 2rem;
  text-align: center;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

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

.disclaimer-statement {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Cookie Banner */
.cookie-notice-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--motion-surface);
  color: var(--motion-dark);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  z-index: 9999;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-action-group {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

.cookie-btn-accept {
  background: var(--motion-gradient);
  color: white;
}

.cookie-btn-decline {
  background: var(--motion-bg);
  color: var(--motion-text);
  border: 1px solid var(--motion-text);
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle-label {
    display: flex;
  }
  
  .menu-links-group {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--motion-cyan);
    padding: 2rem 5%;
  }

  #mobile-toggle-switch:checked ~ .menu-links-group {
    display: flex;
  }
  
  .main-headline { font-size: 2.8rem; }
  .huge-deco-digit { font-size: 15rem; }
  
  .benefits-layout-3col { grid-template-columns: 1fr; }
  
  .steps-flex-row {
    flex-direction: column;
    gap: 3rem;
  }
  .steps-flex-row::before { display: none; }
  .step-item-wrap { width: 100%; }
  
  .final-call-strip {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .final-call-strip h2 { max-width: 100%; font-size: 2.5rem; }
  
  .split-educational-view, .booking-split-view {
    flex-direction: column;
  }
  .split-text-side, .split-img-side, .booking-form-area, .booking-info-cards {
    width: 100%;
  }
  
  .stats-horizontal-strip {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .stat-val-block { width: 45%; }
}