/* ============================================
   HORMONSKI KOMPAS — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Primary palette */
  --primary: #5B2E8C;
  --primary-dark: #3E1D60;
  --primary-light: #7B4EAC;
  --primary-ultra-light: #A87CCF;

  /* Accent palette */
  --accent-rose: #C4788E;
  --accent-gold: #B8956A;
  --accent-sage: #7A9E7E;

  /* Neutral palette */
  --bg-cream: #FBF8F4;
  --bg-lilac: #F3EDF7;
  --bg-lavender: #EDE4F5;
  --bg-white: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.72);

  /* Text */
  --text-primary: #1A0A2E;
  --text-secondary: #4A3A5C;
  --text-muted: #7D6E8F;
  --text-light: #A89BB8;
  --text-on-primary: #FFFFFF;

  /* Borders & shadows */
  --border-light: rgba(91, 46, 140, 0.08);
  --border-medium: rgba(91, 46, 140, 0.15);
  --shadow-sm: 0 2px 8px rgba(91, 46, 140, 0.06);
  --shadow-md: 0 4px 20px rgba(91, 46, 140, 0.1);
  --shadow-lg: 0 8px 40px rgba(91, 46, 140, 0.14);
  --shadow-glow: 0 0 30px rgba(91, 46, 140, 0.2);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius — organic, rounded */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-medium: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-cream);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
  color: var(--text-secondary);
  max-width: 680px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* --- Section Block --- */
.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--bg-lavender);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-on-primary);
  box-shadow: 0 4px 15px rgba(91, 46, 140, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-on-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(91, 46, 140, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
  background: var(--bg-lavender);
  border-color: var(--primary-light);
  color: var(--primary);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-on-primary);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-on-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* --- Glass Card --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* --- Benefit Card --- */
.benefit-card {
  background: linear-gradient(90deg, 
    rgba(26, 10, 46, 0.1) 0%, 
    rgba(26, 10, 46, 0) 16px
  ), var(--bg-lavender);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card h4 {
  color: var(--primary-dark);
  margin-bottom: var(--space-xs);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(123, 78, 172, 0.9);
  /* Lighter purple background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: all var(--transition-fast);
}

.nav.scrolled {
  background: rgba(123, 78, 172, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: 4px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-md);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #5B2E8C 0%,
      #7B4EAC 25%,
      #A87CCF 50%,
      #C4788E 75%,
      #B8956A 100%);
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Floating organic shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: white;
  animation: floatShape 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
  animation-duration: 18s;
}

.hero-shape:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 15%;
  animation-delay: -10s;
  animation-duration: 22s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-on-primary);
  margin-bottom: var(--space-lg);
  font-weight: 700;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 500;
  opacity: 0.9;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.6);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================
   O PROGRAMU — BENTO GRID
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.bento-item {
  background: linear-gradient(90deg, 
    rgba(26, 10, 46, 0.1) 0%, 
    rgba(26, 10, 46, 0) 16px
  ), var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.bento-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Wide cards */
.bento-wide {
  grid-column: span 2;
}

.bento-full {
  grid-column: span 4;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-lavender);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.bento-item:hover .bento-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.bento-step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-lavender);
  position: absolute;
  top: var(--space-lg);
  right: var(--space-xl);
  line-height: 1;
}

.bento-item h3 {
  margin-bottom: var(--space-sm);
}

.bento-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ============================================
   COACHING SECTION
   ============================================ */
.coaching-section {
  background: var(--bg-lilac);
  position: relative;
  overflow: hidden;
}

.coaching-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(91, 46, 140, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.coaching-slider-container {
  position: relative;
  padding: 0 var(--space-xl);
  margin-top: var(--space-2xl);
}

.coaching-slider {
  padding-bottom: var(--space-3xl);
  /* Space for pagination */
}

/* Custom Navigation Arrows */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  margin-top: -24px;
  /* Adjust for padding bottom offset */
}

.swiper-button-prev-custom {
  left: 0;
}

.swiper-button-next-custom {
  right: 0;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg-white);
  color: var(--text-muted);
  border-color: var(--border-light);
  box-shadow: none;
}

.swiper-button-prev-custom svg,
.swiper-button-next-custom svg {
  width: 24px;
  height: 24px;
}

/* Package Card Styling */
.package-card {
  background: var(--bg-white);
  border-radius: 24px;
  /* Soft rounded corners matching screenshot */
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: auto;
  transition: box-shadow var(--transition-medium);
}

.package-card h3 {
  font-family: var(--font-heading);
  /* Serif */
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  line-height: 1.3;
}

.package-card .package-price {
  font-family: var(--font-heading);
  /* Serif */
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  /* Deep purple #5e3a8e */
  margin-bottom: var(--space-md);
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  flex-wrap: nowrap;
}

.package-card .package-price .duration {
  font-family: var(--font-sans);
  /* Sans-serif */
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
}

.package-card .package-target {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  flex-grow: 1;
  /* Push the list and button down */
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl) 0;
}

.package-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-weight: 700;
}

.package-features li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.package-card .btn-block {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Highlighted Card / Standard Pack */
.package-card.highlight {
  background: var(--bg-lavender);
  /* Light lavender background */
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

/* Package Accordion Styling */
.package-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.package-accordion details {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.package-accordion details[open] {
  background: white;
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.package-accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
  user-select: none;
  position: relative;
  /* For absolute positioning of the plus sign */
  padding-right: 2rem;
}

.package-accordion summary::-webkit-details-marker {
  display: none;
}

/* Checkmark on the left */
.package-accordion summary::before {
  content: '✓';
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Plus sign on the right */
.package-accordion details:not(.no-plus) summary::after {
  content: '+';
  position: absolute;
  right: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
  line-height: 1;
}

.package-accordion details[open]:not(.no-plus) summary::after {
  transform: rotate(45deg);
  /* Rotates plus to an X or just use a minus */
  content: '−';
  /* Minus sign for clarity when open */
}

.package-accordion .accordion-content {
  padding: var(--space-sm) var(--space-lg) 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.package-accordion p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-xs);
}

.package-accordion ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.package-accordion li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  position: relative;
  padding-left: 1.2rem;
}

.package-accordion li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: bold;
}



.package-card .package-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Custom Pagination styles inside the slider */
.coaching-section .swiper-pagination-bullet {
  background-color: var(--border-dark);
}

.coaching-section .swiper-pagination-bullet-active {
  background-color: var(--primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-lilac) 100%);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.calendar-container {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.calendar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.calendar-nav {
  display: flex;
  gap: var(--space-sm);
}

.calendar-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
  font-size: 1rem;
}

.calendar-nav button:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-sm) 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: var(--bg-lavender);
  color: var(--primary);
}

.calendar-day.selected {
  background: var(--primary);
  color: white;
  box-shadow: 0 3px 12px rgba(91, 46, 140, 0.3);
}

.calendar-day.today {
  border: 2px solid var(--primary-light);
}

.calendar-day.disabled {
  color: var(--text-light);
  cursor: not-allowed;
  opacity: 0.4;
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.blocked {
  color: var(--text-light);
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Time slots */
.time-slots-container {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
}

.time-slots-container h4 {
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.time-slot {
  padding: 10px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg-white);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.time-slot:hover {
  border-color: var(--primary);
  background: var(--bg-lavender);
  color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ============================================
   INTAKE FORM
   ============================================ */
.form-container {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-container h3 {
  margin-bottom: var(--space-xs);
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.form-group label .required {
  color: var(--accent-rose);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91, 46, 140, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.form-checkbox span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-error {
  color: #D44040;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: #D44040;
}

.form-group.error .form-error {
  display: block;
}

/* ============================================
   CONFIRMATION VIEW
   ============================================ */
.confirmation-view {
  display: none;
  text-align: center;
  padding: var(--space-3xl);
}

.confirmation-view.active {
  display: block;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-sage), #5CAD7D);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-size: 2rem;
  color: white;
  animation: popIn 0.5s var(--ease-spring);
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-view h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}

.confirmation-view p {
  margin: 0 auto;
}

.confirmation-details {
  background: var(--bg-lilac);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  text-align: left;
}

.confirmation-details dt {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.confirmation-details dd {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.confirmation-details dd:last-child {
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.bento-item:nth-child(1) {
  transition-delay: 0s;
}

.bento-item:nth-child(2) {
  transition-delay: 0.1s;
}

.bento-item:nth-child(3) {
  transition-delay: 0.2s;
}

.bento-item:nth-child(4) {
  transition-delay: 0.3s;
}

.testimonial-card:nth-child(1) {
  transition-delay: 0s;
}

.testimonial-card:nth-child(2) {
  transition-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-full {
    grid-column: span 2;
  }



  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 2px solid var(--primary-light);
    box-shadow: var(--shadow-lg);
    text-align: center;
  }

  .nav-links a {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 600;
  }

  .nav-links a::after {
    background: var(--primary);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

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

  .bento-wide,
  .bento-full {
    grid-column: span 1;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .book-3d {
    width: 220px;
    height: 330px;
  }

  .book-front {
    width: 220px;
    height: 330px;
  }

  .book-spine {
    width: 20px;
    height: 330px;
    left: -19px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .package-card {
    padding: var(--space-xl) var(--space-md);
  }

  .calendar-container,
  .form-container {
    padding: var(--space-lg);
  }

  .book-3d {
    width: 180px;
    height: 270px;
  }

  .book-front {
    width: 180px;
    height: 270px;
  }

  .book-spine {
    width: 18px;
    height: 270px;
    left: -17px;
  }

  /* Book order form — mobile pricing cleanup */
  .option-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .option-title {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .option-price {
    font-size: 0.95rem;
  }

  .book-options-grid .option-card {
    padding: 0.85rem 1rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

/* Hidden utility */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   BOOK PAGE 50/50 HERO SPLIT
   ============================================ */
.hero-split {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  color: var(--text-on-primary);
  padding: var(--space-4xl) 0 var(--space-5xl);
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  min-height: 80vh;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 1200px;
}

/* 3D Book Cover */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  position: relative;
}

.book-cover-placeholder {
  position: relative;
  cursor: pointer;
}

.book-3d {
  width: 280px;
  height: 420px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-14deg) rotateX(3deg) rotateZ(-3deg);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s ease;
  filter: drop-shadow(0 25px 50px rgba(60, 20, 80, 0.4));
}

.book-cover-placeholder:hover .book-3d {
  transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) translateY(-10px);
  filter: drop-shadow(0 40px 70px rgba(60, 20, 80, 0.5));
}

/* Front Cover */
.book-front {
  position: relative;
  width: 280px;
  height: 420px;
  border-radius: 2px 8px 8px 2px;
  overflow: hidden;
  background: #f5efe3;
  z-index: 3;
  box-shadow:
    inset -3px 0 10px rgba(0,0,0,0.06),
    inset 0 0 40px rgba(255,255,255,0.2);
  transition: box-shadow 0.7s ease;
}

.book-cover-placeholder:hover .book-front {
  box-shadow:
    inset -3px 0 10px rgba(0,0,0,0.06),
    inset 0 0 60px rgba(255,255,255,0.3),
    0 0 40px rgba(200, 160, 255, 0.15);
}

.book-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
  filter: brightness(0.97) saturate(0.95);
}

.book-cover-placeholder:hover .book-front img {
  transform: scale(1.02);
  filter: brightness(1.02) saturate(1);
}

/* Spine shadow on front cover */
.book-front::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 100%;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.04) 50%,
    transparent 100%
  );
  z-index: 5;
  pointer-events: none;
}

/* Light sweep effect */
.book-front::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  z-index: 10;
  transition: left 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.book-cover-placeholder:hover .book-front::after {
  left: 140%;
}

/* Spine */
.book-spine {
  position: absolute;
  top: 0;
  left: -24px;
  width: 25px;
  height: 420px;
  transform-origin: right center;
  transform: rotateY(-90deg);
  z-index: 2;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg,
    #e8dcc8 0%,
    #d9ccb4 20%,
    #cfc2a8 50%,
    #d5c8b0 80%,
    #e0d4be 100%
  );
  box-shadow: inset -2px 0 6px rgba(0,0,0,0.1);
}

/* Spine text */
.book-spine::after {
  content: 'ODKRIJTE SVOJ NOVI JAZ...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  writing-mode: vertical-lr;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(100, 80, 70, 0.6);
  white-space: nowrap;
}

/* Page edges - right side */
.book-pages-right {
  position: absolute;
  top: 4px;
  right: -7px;
  bottom: 4px;
  width: 8px;
  z-index: 1;
  border-radius: 0 3px 3px 0;
  background:
    repeating-linear-gradient(
      180deg,
      #f8f3e8 0px,
      #f0eadc 1px,
      #f5f0e3 2px
    );
  box-shadow:
    2px 0 4px rgba(0,0,0,0.08),
    inset -1px 0 2px rgba(0,0,0,0.04);
  transition: width 0.7s ease;
}

.book-cover-placeholder:hover .book-pages-right {
  width: 9px;
}

/* Page edges - bottom */
.book-pages-bottom {
  position: absolute;
  bottom: -7px;
  left: 4px;
  right: 4px;
  height: 8px;
  z-index: 1;
  border-radius: 0 0 3px 3px;
  background:
    repeating-linear-gradient(
      90deg,
      #f8f3e8 0px,
      #f0eadc 1px,
      #f5f0e3 2px
    );
  box-shadow:
    0 2px 4px rgba(0,0,0,0.08),
    inset 0 -1px 2px rgba(0,0,0,0.04);
}



/* Hero Content Split */
.hero-content-split {
  text-align: left;
}

.hero-content-split h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--text-on-primary);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content-split h1 em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2xl) 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  column-gap: var(--space-sm);
  row-gap: var(--space-md);
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

.hero-benefits-list li {
  display: contents;
}

.benefit-text {
  display: block;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: #000000;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing Panel in Hero */
.hero-price-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.price-display {
  display: flex;
  flex-direction: column;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.price-currency {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

.hero-quick-order {
  flex-grow: 1;
}

/* ============================================
   AUTHOR SECTION (O AVTORICI)
   ============================================ */
.author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.author-content p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  line-height: 1.7;
}

.author-image-container {
  display: flex;
  justify-content: center;
}

.author-avatar-placeholder {
  width: 320px;
  height: 320px;
  background: var(--primary-light);
  border-radius: 50%;
  border: 8px solid var(--bg-white);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.author-initials {
  font-size: 4rem;
  color: #000000;
  font-family: var(--font-heading);
}

/* Adjustments for Responsive Design */
@media (max-width: 992px) {

  .hero-split-grid,
  .author-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .author-image-container {
    margin-top: 0 !important;
  }

  .hero-content-split {
    text-align: center;
  }

  .hero-benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    text-align: left;
  }

  .benefit-text {
    line-height: 1.4;
  }

  .benefit-text strong {
    display: inline;
  }

  .benefit-text span {
    display: inline;
  }

  .hero-price-panel {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    margin-bottom: var(--space-lg);
  }

  /* Option Cards for Book Form */
  .option-card,
  .payment-card {
    display: block;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: var(--space-md);
    transition: all 0.3s ease;
    background: var(--bg-white);
  }

  .option-card input,
  .payment-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .option-card:has(input:checked),
  .payment-card:has(input:checked) {
    border-color: var(--primary);
    background: rgba(126, 87, 194, 0.05);
    /* Using direct RGB for primary */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

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

  .option-title {
    font-weight: 600;
    color: var(--primary-dark);
  }

  .option-price {
    font-weight: 700;
    color: var(--primary);
  }

  .payment-options {
    display: flex;
    gap: 1rem;
  }

  .payment-card {
    flex: 1;
    text-align: center;
    font-weight: 600;
  }

  /* Order summary box */
  .order-summary-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: var(--bg-cream);
    padding: var(--space-md);
    border-radius: 12px;
    margin-bottom: var(--space-lg);
  }

  .order-summary-qty label {
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
  }

  .order-summary-qty .form-select {
    max-width: 100px;
    font-weight: 600;
  }

  .order-summary-total {
    text-align: right;
  }

  .order-summary-label {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  .order-summary-price {
    color: var(--primary);
  }

  .total-price-amount {
    font-weight: 700;
    font-size: 1.8rem;
  }

  .order-summary-note {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -4px;
  }

  @media (max-width: 480px) {
    .order-summary-box {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    .order-summary-total {
      text-align: center;
      border-top: 1px solid var(--border-light);
      padding-top: 0.75rem;
    }

    .order-summary-qty {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .order-summary-qty label {
      margin-bottom: 0;
    }

    .total-price-amount {
      font-size: 1.6rem;
    }
  }
}

/* ============================================
   NEW COACHING CARD STYLES (VIP & DARK)
   ============================================ */
.package-card.dark-card {
  background: var(--primary-dark) !important;
  color: white !important;
  border: 1px solid var(--primary-light);
}

.package-card.dark-card h3,
.package-card.dark-card .package-price,
.package-card.dark-card .package-target,
.package-card.dark-card .package-features li,
.package-card.dark-card .package-features li strong {
  color: white !important;
}

.package-card.dark-card .package-features li::before {
  color: var(--primary-light) !important;
}

.package-card.dark-card .package-price .duration {
  color: rgba(255, 255, 255, 0.7) !important;
}

.package-card.dark-card .package-target {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.package-card.dark-card .btn-primary {
  background: linear-gradient(135deg, #ffd700, #b8860b) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.package-card.dark-card .btn-primary:hover {
  background: linear-gradient(135deg, #e6c200, #a17600) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5) !important;
}

.package-badge.gold {
  background: linear-gradient(135deg, #ffd700, #b8860b) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  padding: 6px 14px;
  border-radius: 24px;
}

/* ============================================
   MOBILE APP PAGE STYLES
   ============================================ */
.app-hero-description p {
  margin-bottom: var(--space-md);
}

.app-store-placeholders {
  margin-top: var(--space-2xl);
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.app-btn-placeholder {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 10px 22px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  width: 210px;
  text-align: left;
  transition: all var(--transition-fast);
  cursor: default;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-btn-placeholder:hover {
  transform: translateY(-2px);
  background: #0a0a0a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.app-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.app-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.app-uptop {
  font-size: 0.65rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  opacity: 0.9;
}

.app-main {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Hero App Screenshots */
.hero-app-screens {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-app-screen {
  position: absolute;
  height: 80%;
  bottom: 5%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-app-screen.left {
  left: -5%;
  transform: rotate(5deg) translateY(20px);
}

.hero-app-screen.right {
  right: -5%;
  transform: rotate(-5deg) translateY(20px);
}

.hero-split:hover .hero-app-screen.left {
  transform: rotate(2deg) translateY(0);
  left: -2%;
}

.hero-split:hover .hero-app-screen.right {
  transform: rotate(-2deg) translateY(0);
  right: -2%;
}

@media (max-width: 1400px) {
  .hero-app-screen {
    height: 70%;
  }
}

/* App Showroom Mobile */
.app-showroom-mobile {
  display: none;
  padding: var(--space-2xl) 0;
  background: #fdfbff;
  border-bottom: 1px solid rgba(123, 78, 172, 0.1);
}

.app-screenshot-slider {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  padding: var(--space-md) var(--space-lg);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.app-screenshot-slider::-webkit-scrollbar {
  display: none;
}

.app-screenshot-item {
  flex: 0 0 280px;
  scroll-snap-align: center;
}

.app-screenshot-item img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.scroll-hint-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-md);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}

@media (max-width: 1100px) {
  .hero-app-screens {
    display: none;
  }
  
  .app-showroom-mobile {
    display: block;
  }
  
  .hero-split.hero-app-page {
    min-height: auto !important;
    padding-bottom: var(--space-3xl);
  }
}

.hero-split.hero-app-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .hero-split {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    min-height: auto;
  }
  
  .hero-scroll-indicator {
    position: relative;
    bottom: auto;
    margin-top: var(--space-2xl);
    transform: none;
    left: auto;
    margin-inline: auto;
    display: none; /* Hide standard one if two are present or just keep it simple */
  }

  /* Show indicators side-by-side on mobile or stack them? 
     User said "both sides", on mobile maybe just hide them to avoid clutter since we have a scrollable page.
     But I'll keep them visible if they are small.
  */
  .hero-scroll-indicator.scroll-left,
  .hero-scroll-indicator.scroll-right {
    display: flex;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: var(--space-md) auto;
    animation: scrollBounceSide 2s ease-in-out infinite;
  }
}

/* Side Scroll Positioning for Desktop */
.hero-scroll-indicator.scroll-left {
  left: 5%;
  transform: none;
  animation: scrollBounceSide 2s ease-in-out infinite;
}

.hero-scroll-indicator.scroll-right {
  left: auto;
  right: 5%;
  transform: none;
  animation: scrollBounceSide 2s ease-in-out infinite;
}

@keyframes scrollBounceSide {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 480px) {
  .app-btn-placeholder {
    width: 100%;
    justify-content: center;
  }

  .app-hero-description p {
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: none !important;
  }

  .author-content,
  .benefit-card {
    text-align: left !important;
  }

  .author-content p,
  .benefit-card p,
  .benefit-card h4,
  .package-features li {
    text-align: left !important;
  }
}
