:root {
  --bg-color: #f8f9fa; /* Sleek Off-White */
  --text-color: #111111;
  --accent-color: #0095f6; /* Instagram Follow Button Blue */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden; 
  width: 100vw;
  position: relative;
  background-image: radial-gradient(circle at 50% -20%, #ffffff 0%, #e9ecef 60%);
  background-attachment: fixed; 
}

.above-fold {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* STICKY NAVBAR */
header {
  padding: 6px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff; /* pure white, minimalistic */
  border-bottom: 1px solid rgba(0, 0, 0, 0.03); /* super subtle line */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}

.logo-text {
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.5px;
  user-select: none;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5vh;
}

/* HERO SECTION */
.hero-section {
  padding: 0 24px;
  text-align: center;
  perspective: 1000px;
  margin-bottom: 3vh;
  z-index: 10;
}

/* ACTION SECTION (CTA) */
.action-section {
  text-align: center;
  margin-bottom: 2vh;
  z-index: 15;
}

.cta-button {
  background: var(--accent-color);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 36px 8px 36px; 
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 149, 246, 0.4);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-button:active {
  transform: scale(0.95);
}

.btn-text {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.btn-emoji {
  font-size: 26px;
  line-height: 1;
}

.fine-print {
  margin-top: 12px;
  font-size: 13px;
  color: #555555;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.slide-in-title {
  font-size: clamp(26px, 8vw, 38px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); /* Softer for light mode */
}

.slide-in-title .accent {
  color: var(--accent-color);
  text-shadow: 0 0 20px rgba(0, 149, 246, 0.3);
}

/* Apple Element Loader Utilities */
.apple-fade {
  opacity: 0;
  transform: translateY(30px);
  animation: appleFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.load-1 { animation-delay: 0.1s; }
.load-2 { animation-delay: 0.25s; }
.load-3 { animation-delay: 0.4s; }
.load-4 { animation-delay: 0.55s; } /* CTA Button */
.load-5 { animation-delay: 0.7s; } /* Carousel */
.load-6 { animation-delay: 0.85s; }

@keyframes appleFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.speed-slide-in {
  opacity: 0;
  transform: translateX(-150px) skewX(20deg);
  animation: speedSlideRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

@keyframes speedSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-150px) skewX(20deg);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateX(10px) skewX(-5deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(0);
    filter: blur(0);
  }
}

/* CAROUSEL SECTION */
.carousel-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.carousel-container {
  width: 100%;
  height: 450px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.revolver {
  width: 250px;
  height: 400px;
  position: absolute;
}

/* Base item config */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05) inset;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1); 
  transform-origin: center;
  z-index: 1;
  opacity: 0;
  transform: translateX(0) scale(0.6); 
  /* Reflection is typically harsh in light-mode, replacing with subtle drop shadow */
}

/* Explicit Positions */
.carousel-item.active {
  transform: translateX(0) scale(1);
  z-index: 10;
  opacity: 1;
}

.carousel-item.prev {
  transform: translateX(-160px) scale(0.8);
  z-index: 5;
  opacity: 1;
  cursor: pointer;
}

.carousel-item.next {
  transform: translateX(160px) scale(0.8);
  z-index: 5;
  opacity: 1;
  cursor: pointer;
}

/* Real Video Styles */
.carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s ease;
  pointer-events: none; 
}

/* Inactive videos get washed nicely */
.carousel-item:not(.active) video {
  filter: brightness(0.9) grayscale(0.2) contrast(1);
  opacity: 0.8;
}

.carousel-item.active video {
  filter: brightness(1) grayscale(0) contrast(1);
  opacity: 1;
}

/* Mobile responsive specific adjustments */
@media (max-height: 700px), (max-width: 600px) {
  .logo-text { font-size: 18px; }
  .slide-in-title { font-size: 32px; }
  .carousel-container { height: 350px; }
  .revolver { width: 220px; height: 350px; }
  .carousel-item { width: 220px; height: 350px; }
}

/* =======================================
   BELOW FOLD CONTENT
   ======================================= */

.section-title {
  text-align: center;
  font-family: 'Didot', 'Bodoni MT', 'Times New Roman', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}



/* HOW IT WORKS */
.how-it-works-section {
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.step-number {
  background: var(--accent-color);
  color: white;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(0, 149, 246, 0.3);
}

.step-content h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #111;
}

.step-content .time {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.step-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* REVIEWS MARQUEE */
.reviews-section {
  padding: 40px 0 80px 0;
  overflow: hidden; 
}

.marquee-wrapper {
  display: flex;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 20px;
  animation: scrollMarquee 25s linear infinite;
  padding-left: 20px; 
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px;
  min-width: 280px;
  width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.review-card .stars {
  font-size: 16px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
  flex: 1;
}

.review-card .author {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.5px;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

/* =======================================
   FAQ SECTION 
   ======================================= */
.faq-section {
  padding: 60px 20px 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-item[open] {
  background: #ffffff;
  border-color: rgba(0, 149, 246, 0.3);
  box-shadow: 0 8px 25px rgba(0, 149, 246, 0.08); /* slight blue glow shadow */
}

.faq-question {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  list-style: none; /* remove default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

/* Custom Plus/Minus Arrow */
.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: "\2212"; /* Unicode Minus Sign */
  transform: rotate(180deg);
}

.faq-question::-webkit-details-marker {
  display: none; /* Safari fallback */
}

.faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  animation: fadeDown 0.3s ease-out;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =======================================
   PRICING & FINAL CTA 
   ======================================= */
.pricing-cta-section {
  padding: 20px 20px 80px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.pricing-calculator {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.calc-header {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #111;
}

.video-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.08); /* darker track for light mode */
  border-radius: 4px;
  outline: none;
  margin-bottom: 10px;
}

.video-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-color);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 149, 246, 0.6);
  transition: transform 0.1s;
}

.video-slider::-webkit-slider-thumb:active {
  transform: scale(1.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 30px;
}

.calc-results {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 25px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 16px;
  color: #555;
  font-weight: 600;
}

.result-row strong {
  color: #111;
  font-size: 18px;
  font-weight: 800;
}

.result-row.total {
  margin-bottom: 10px;
}

.result-row.total strong {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(0, 149, 246, 0.2);
}

.result-row.savings {
  color: #10b981; /* Success Green */
  transition: opacity 0.3s ease;
  font-size: 15px;
}

.result-row.savings strong {
  color: #10b981;
}

.final-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.secondary-btn {
  background: #111111; /* inverted, it's now black */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.secondary-btn .btn-text {
  color: #ffffff !important;
}

/* =======================================
   ONBOARDING PAGE SPECIFIC STYLES
   ======================================= */
.onboarding-page-bg {
  background: radial-gradient(circle at top right, rgba(0, 149, 246, 0.05), #ffffff 40%);
}

.onboarding-container {
  max-width: 650px;
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: 80px;
}

.onboarding-wizard {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.onboarding-subtitle {
  text-align: center;
  font-size: 17px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 500;
}

.brief-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 800;
  font-size: 14px;
  color: #111;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.02);
  font-family: inherit;
  font-size: 15px;
  color: #111;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 149, 246, 0.15);
}

.form-group textarea {
  resize: vertical;
}

/* =======================================
   REAL RESULTS SECTION
   ======================================= */
.real-results-section {
  text-align: center;
}

.results-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.result-card {
  flex: 1 1 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #000;
  min-height: 400px;
}

.result-card .result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  display: block;
}

.data-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
  padding: 40px 20px 20px;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.data-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
}
.data-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.data-label {
  color: #ddd;
  font-weight: 600;
}

.data-value {
  font-size: 18px;
}

.data-value.highlight-blue {
  color: var(--accent-color);
  font-weight: 900;
  font-size: 24px;
  text-shadow: 0 0 10px rgba(0, 149, 246, 0.4);
}

.kalodata-text {
  font-size: 13px;
  color: #888;
  margin-top: 30px;
  font-family: 'Inter', sans-serif;
  font-style: italic;
}
