:root {
  /* Color Palette */
  --navy-dark: #0a1628;
  --navy-medium: #1a2942;
  --cyan-bright: #22d3ee;
  --cyan-light: #67e8f9;
  --green-cta: #10b981;
  --green-hover: #059669;
  --gold: #fbbf24;
  --white: #ffffff;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============ HERO ============ */
#hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  color: var(--white);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.eyebrow {
  color: var(--cyan-bright);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub {
  color: #d1d5db;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 14px;
}
.hero-bullets li .check {
  color: var(--green-cta);
  font-weight: 700;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-cta), var(--green-hover));
  color: var(--white);
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease;
}
.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.price-line {
  margin-top: 10px;
  color: #c6cbd2;
  font-size: 14px;
}
.price-line s {
  color: #9ca3af;
}

.hero-quote {
  margin-top: 24px;
  font-style: italic;
  color: #9ca3af;
  font-size: 14px;
}

.hero-delivery {
  margin-top: 12px;
  font-size: 14px;
  color: var(--cyan-bright);
  font-weight: 600;
}

/* Hero mockup card - Premium Dashboard Design */
.hero-mockup {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--gray-900);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255,255,255,0.1);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 520px;
  min-height: 440px;
  margin: 40px auto 0 auto;
  animation: floatCard 6s ease-in-out infinite;
  border: 1px solid rgba(0,212,255,0.2);
}

.hero-mockup:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0,212,255,0.3);
}

.mockup-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.mockup-icon {
  font-size: 64px !important;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,212,255,0.3));
}

.mockup-title {
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 32px;
  text-align: center;
}

.mockup-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-list li {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 17px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0,212,255,0.05);
  border-left: 3px solid var(--cyan-bright);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mockup-list li:hover {
  background: rgba(0,212,255,0.1);
  transform: translateX(4px);
}

/* Floating badges */
.badge {
  position: absolute;
  top: -14px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  color: var(--navy-dark);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
}
.badge-cyan {
  left: -14px;
  background: var(--cyan-light);
}
.badge-gold {
  right: -14px;
  background: var(--gold);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
@keyframes floatCard {
  0% { transform: translateY(0) rotateY(2deg); }
  50% { transform: translateY(-6px) rotateY(2deg); }
  100% { transform: translateY(0) rotateY(2deg); }
}
.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInUp .7s ease forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
}
@media (max-width: 768px) {
  #hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mockup {
    margin: 30px auto 0 auto;
    transform: none;
    max-width: 100%;
    padding: 36px 28px;
    min-height: 380px;
  }
  .mockup-icon {
    font-size: 52px !important;
  }
  .mockup-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .mockup-list li {
    font-size: 16px;
    padding: 14px 16px;
  }
}

/* ============ PROBLEM SECTION ============ */
#problem {
  background: var(--navy-dark);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.problem-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
}

.problem-intro {
  color: var(--gray-300);
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

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

.problem-card {
  background: var(--navy-medium);
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.3);
}

.problem-emoji {
  font-size: 34px;
  margin-bottom: 16px;
}

.problem-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-100);
}

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .problem-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============ SOLUTION SECTION ============ */
#solution {
  background: var(--white);
  color: var(--gray-900);
  text-align: center;
  padding: 140px 0;
}

.solution-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.solution-sub {
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 28px auto;
}

.solution-body {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto 70px auto;
}

/* --- PREMIUM STATIC ORBIT DESIGN --- */

.solution-visual {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(0,212,255,0.1) 0%, rgba(10,31,68,0) 85%);
}

/* Core bubble */
.solution-core {
  background: radial-gradient(circle at 30% 30%, var(--cyan-light) 0%, var(--cyan-bright) 70%);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  width: 230px;
  height: 230px;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 80px rgba(0,212,255,0.45),
    inset 0 0 25px rgba(255,255,255,0.4),
    0 8px 18px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Add a subtle glowing halo ring */
.solution-core::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.25) 0%, transparent 70%);
  z-index: 1;
}

/* Multiple visible orbit rings */
.solution-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(0,212,255,0.15) 0%,
      transparent 70%);
  box-shadow:
    0 0 30px rgba(0,212,255,0.25),
    inset 0 0 30px rgba(0,212,255,0.15);
  z-index: 0;
}

/* Add a second, thinner ring for structure */
.solution-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.25);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
  z-index: 0;
}

/* Labels as floating glossy cards */
.solution-rays li {
  position: absolute;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    inset 0 1px 2px rgba(255,255,255,0.6);
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-rays li:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.15),
    inset 0 1px 2px rgba(255,255,255,0.6);
}

/* Perfectly balanced layout */
.solution-rays {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.solution-rays li:nth-child(1) { top: 7%; left: 50%; transform: translateX(-50%); }
.solution-rays li:nth-child(2) { top: 20%; right: 12%; }
.solution-rays li:nth-child(3) { top: 50%; right: 0; transform: translateY(-50%); }
.solution-rays li:nth-child(4) { bottom: 20%; right: 12%; }
.solution-rays li:nth-child(5) { bottom: 7%; left: 50%; transform: translateX(-50%); }
.solution-rays li:nth-child(6) { bottom: 20%; left: 12%; }
.solution-rays li:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }
.solution-rays li:nth-child(8) { top: 20%; left: 12%; }

@media (max-width: 768px) {
  #solution { padding: 100px 0; }
  .solution-core { width: 170px; height: 170px; font-size: 14px; }
  .solution-core::after { width: 300px; height: 300px; }
  .solution-rays li { font-size: 13px; padding: 8px 12px; }
}

/* --- FLOATING MOTION FOR LABELS --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Apply gentle floating with staggered timing */
.solution-rays li {
  animation: float 6s ease-in-out infinite;
}

.solution-rays li:nth-child(1) { animation-delay: 0s; }
.solution-rays li:nth-child(2) { animation-delay: 0.8s; }
.solution-rays li:nth-child(3) { animation-delay: 1.6s; }
.solution-rays li:nth-child(4) { animation-delay: 2.4s; }
.solution-rays li:nth-child(5) { animation-delay: 3.2s; }
.solution-rays li:nth-child(6) { animation-delay: 4s; }
.solution-rays li:nth-child(7) { animation-delay: 4.8s; }
.solution-rays li:nth-child(8) { animation-delay: 5.6s; }

/* Transformation Section */
#transformation {
  background: var(--gray-50);
  padding: 100px 0;
}

#transformation .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

#transformation .section-sub {
  text-align: center;
  font-size: 20px;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 64px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.before, .after {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  padding: 40px;
  transition: transform 0.25s ease;
}

.before:hover, .after:hover {
  transform: translateY(-6px);
}

.before h3, .after h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy-dark);
}

.before ul, .after ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.before li, .after li {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 14px;
}

.after {
  background: linear-gradient(145deg, #00d4ff, #4be1ec);
  color: var(--navy-dark);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
}

.after h3 {
  color: #0a1f44;
}

.cta-center {
  text-align: center;
  margin-top: 80px;
}

.cta-center .btn-primary {
  font-size: 20px;
  font-weight: 700;
  padding: 20px 64px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-center .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}

/* Mobile */
@media (max-width: 768px) {
  .before-after {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- WHAT'S INCLUDED SECTION --- */

#whats-included {
  background: var(--white);
  padding: 140px 0;
  text-align: center;
  color: var(--gray-900);
}

#whats-included .section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

#whats-included .section-sub {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 60px;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: left;
}

.inclusion-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inclusion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.inclusion-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.inclusion-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-top: 8px;
}

.value-tag {
  font-size: 14px;
  color: var(--cyan-bright);
  font-weight: 600;
  white-space: nowrap;
}

/* --- PRICING BOX REBUILD --- */

/* Pricing total section - Premium Redesign */
.pricing-total {
  grid-column: span 2;
  position: relative;
  background: var(--navy-dark);
  border-radius: 24px;
  padding: 56px;
  color: var(--white);
  text-align: center !important;
  box-shadow: 0 30px 60px rgba(10,22,40,0.4);
  overflow: hidden;
}

.pricing-total::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--gold), var(--cyan-bright));
}

.pricing-total-content {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  text-align: center;
}

.pricing-total h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center !important;
  display: block;
  width: 100%;
}

.pricing-total-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-500);
  text-decoration: line-through;
  margin: 0 auto 24px auto;
  text-align: center;
}

.pricing-total-aside {
  position: relative;
  z-index: 1;
}

.pricing-total-price {
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan-light));
  color: var(--navy-dark);
  font-size: 72px;
  font-weight: 900;
  padding: 24px 48px;
  border-radius: 16px;
  box-shadow: 
    0 20px 50px rgba(0,212,255,0.4),
    inset 0 -2px 10px rgba(0,0,0,0.1);
  line-height: 1;
  display: inline-block;
  margin-bottom: 16px;
}

.pricing-total-kicker {
  font-size: 20px;
  font-weight: 600;
  color: var(--cyan-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .pricing-total {
    padding: 40px 28px;
  }
  .pricing-total-value { 
    font-size: 28px; 
  }
  .pricing-total-price { 
    font-size: 56px; 
    padding: 20px 40px; 
  }
  .pricing-total-kicker {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .inclusion-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============ CATEGORIES SECTION ============ */
#categories {
  background: var(--navy-dark);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

#categories .section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

#categories .section-sub {
  font-size: 20px;
  color: var(--gray-300);
  max-width: 680px;
  margin: 0 auto 64px;
}

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

.category-item {
  background: var(--navy-medium);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.category-item.highlight {
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan-light));
  color: var(--navy-dark);
  border-color: var(--cyan-bright);
  box-shadow: 0 8px 24px rgba(0,212,255,0.3);
}

.category-item.highlight h3,
.category-item.highlight .category-count {
  color: var(--navy-dark);
}

.category-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.category-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.category-count {
  font-size: 14px;
  color: var(--cyan-light);
  font-weight: 600;
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============ TESTIMONIALS SECTION ============ */
#testimonials {
  background: var(--white);
  padding: 120px 0;
}

#testimonials .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

#testimonials .section-sub {
  text-align: center;
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: var(--cyan-bright);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-300);
}

.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cyan-bright);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.testimonial-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
}

.testimonial-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonials-grid {
    gap: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-photo {
    width: 56px;
    height: 56px;
  }
  
  .testimonial-info h4 {
    font-size: 18px;
  }
}

/* ============ FOUNDER SECTION ============ */
#founder {
  background: var(--gray-50);
  padding: 100px 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.founder-photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border: 4px solid var(--white);
}

.founder-bio h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.founder-bio p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.founder-creds {
  font-style: italic;
  color: var(--gray-600);
  font-size: 16px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .founder-photo {
    display: flex;
    justify-content: center;
  }
  .founder-photo img {
    width: 200px;
    height: 200px;
  }
}

/* ============ PRICING SECTION ============ */
#pricing {
  background: var(--white);
  padding: 120px 0;
  text-align: center;
}

#pricing .section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 48px;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--cyan-bright);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 50px rgba(0,212,255,0.2);
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.pricing-price-box {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.pricing-old-price {
  font-size: 24px;
  color: var(--gray-500);
  text-decoration: line-through;
  display: block;
  margin-bottom: 8px;
}

.pricing-new-price {
  font-size: 64px;
  font-weight: 900;
  color: var(--navy-dark);
  display: block;
  margin-bottom: 8px;
}

.pricing-savings {
  font-size: 16px;
  color: var(--cyan-bright);
  font-weight: 600;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}

.pricing-features li {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 12px;
  padding-left: 8px;
}

.btn-pricing {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-cta), var(--green-hover));
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  padding: 20px 64px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 32px;
}

.btn-pricing:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16,185,129,0.4);
}

.pricing-guarantee {
  background: rgba(0,212,255,0.05);
  border: 1px solid var(--cyan-bright);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.pricing-guarantee strong {
  display: block;
  font-size: 18px;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.pricing-guarantee p {
  font-size: 14px;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}

/* Delivery Info */
.delivery-info {
  background: rgba(0,212,255,0.05);
  border: 1px solid var(--cyan-bright);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: center;
}

.delivery-info p {
  font-size: 15px;
  color: var(--navy-dark);
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.delivery-info p:last-child {
  margin: 0;
}

.delivery-method {
  font-size: 14px !important;
  color: var(--gray-700) !important;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 40px 24px;
  }
  .pricing-new-price {
    font-size: 52px;
  }
}

/* ============ FAQ SECTION ============ */
#faq {
  background: var(--gray-50);
  padding: 100px 0;
}

#faq .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 64px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============ FINAL CTA SECTION ============ */
#final-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.final-cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 20px;
  color: var(--gray-300);
  max-width: 700px;
  margin: 0 auto 48px;
}

.final-cta-box {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--cyan-bright);
  border-radius: 20px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.final-cta-content {
  text-align: left;
}

.final-cta-value {
  font-size: 18px;
  color: var(--gray-300);
  text-decoration: line-through;
  margin: 0 0 4px 0;
}

.final-cta-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--cyan-bright);
  margin: 0;
}

.btn-final-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-cta), var(--green-hover));
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  padding: 20px 48px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-final-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(16,185,129,0.5);
}

.final-cta-footer {
  font-size: 16px;
  color: var(--gray-400);
  margin: 0;
}

@media (max-width: 768px) {
  .final-cta-title {
    font-size: 36px;
  }
  .final-cta-box {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
  }
  .final-cta-content {
    text-align: center;
  }
  .final-cta-price {
    font-size: 40px;
  }
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-dark);
  color: var(--gray-400);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.copyright {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============ HOW IT WORKS SECTION ============ */
#how-it-works {
  background: var(--white);
  padding: 120px 0;
  text-align: center;
}

#how-it-works .section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

#how-it-works .section-sub {
  font-size: 20px;
  color: var(--gray-600);
  margin-bottom: 64px;
}

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

.how-step {
  position: relative;
  background: var(--gray-50);
  border-radius: 20px;
  padding: 48px 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.how-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan-light));
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,212,255,0.4);
}

.how-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.how-step h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.how-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
}

.how-callout {
  background: rgba(0,212,255,0.1);
  border: 2px solid var(--cyan-bright);
  border-radius: 16px;
  padding: 24px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.how-callout p {
  font-size: 18px;
  color: var(--navy-dark);
  margin: 0;
}

@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
  }
}

/* ============ WHO THIS IS FOR SECTION ============ */
#who-for {
  background: var(--gray-50);
  padding: 120px 0;
}

#who-for .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 64px;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.who-box {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.who-box.perfect {
  border: 3px solid var(--green-cta);
}

.who-box.not-for {
  border: 3px solid var(--gray-300);
}

.who-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--navy-dark);
}

.who-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-box li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 16px;
  padding-left: 8px;
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============ GUARANTEE SECTION ============ */
#guarantee {
  background: var(--white);
  padding: 120px 0;
}

.guarantee-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  border: 2px solid var(--green-cta);
  border-radius: 24px;
  padding: 64px 48px;
  box-shadow: 0 20px 50px rgba(16,185,129,0.15);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}

.guarantee-badge {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-circle {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--green-cta), var(--green-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 30px rgba(16,185,129,0.4),
    inset 0 -4px 8px rgba(0,0,0,0.1);
  position: relative;
}

.badge-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed var(--white);
  border-radius: 50%;
  opacity: 0.5;
}

.badge-inner {
  text-align: center;
  color: var(--white);
  font-size: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.badge-days {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: block;
}

.badge-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.guarantee-content {
  text-align: left;
}

.guarantee-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.guarantee-intro {
  font-size: 20px;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.guarantee-list {
  background: var(--white);
  border-left: 4px solid var(--green-cta);
  padding: 24px 32px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.guarantee-list p {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

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

.guarantee-list li {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.guarantee-promise {
  font-size: 18px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 16px;
}

.guarantee-final {
  font-size: 19px;
  color: var(--navy-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 32px;
    text-align: center;
  }
  
  .guarantee-content {
    text-align: center;
  }
  
  .badge-circle {
    width: 160px;
    height: 160px;
  }
  
  .guarantee-content h2 {
    font-size: 28px;
  }
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  background: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}

.legal-page h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 24px;
  text-align: center;
}

.legal-page .last-updated {
  font-size: 14px;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 8px;
}

.legal-page section {
  margin: 48px 0;
}

.legal-page h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cyan-bright);
}

.legal-page p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.legal-page ul {
  margin: 16px 0;
  padding-left: 32px;
}

.legal-page li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.legal-page a {
  color: var(--cyan-bright);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-page a:hover {
  color: var(--green-cta);
}

.back-link {
  margin: 64px 0 48px;
  text-align: center;
}

.back-link a {
  display: inline-block;
  background: var(--gray-100);
  color: var(--navy-dark);
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.back-link a:hover {
  background: var(--cyan-bright);
  color: var(--navy-dark);
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .legal-page {
    padding: 60px 24px;
  }
  .legal-page h1 {
    font-size: 32px;
  }
  .legal-page h2 {
    font-size: 20px;
  }
}
