/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: hsl(222, 47%, 6%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(222, 47%, 8%);
  --card-foreground: hsl(210, 40%, 98%);
  --primary: hsl(192, 95%, 55%);
  --primary-foreground: hsl(222, 47%, 6%);
  --secondary: hsl(222, 30%, 14%);
  --muted: hsl(222, 30%, 12%);
  --muted-foreground: hsl(215, 20%, 65%);
  --accent: hsl(38, 95%, 55%);
  --accent-foreground: hsl(222, 47%, 6%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(222, 30%, 18%);
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 200, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(0, 200, 255, 0.5); }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Star field background */
.star-field {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 200, 255, 0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 200, 255, 0.6), transparent),
    radial-gradient(2px 2px at 160px 120px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 230px 80px, rgba(255, 180, 50, 0.5), transparent);
  background-size: 250px 150px;
  animation: twinkle 8s ease-in-out infinite;
}

/* Glow effects */
.glow-text {
  text-shadow: 0 0 40px rgba(0, 200, 255, 0.5);
}

.shadow-cta {
  box-shadow: 0 8px 32px rgba(255, 180, 50, 0.4);
}

/* Gradient border */
.gradient-border {
  position: relative;
  background: var(--card);
  border-radius: var(--radius);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.5), transparent, rgba(255, 180, 50, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 200, 255, 0.3);
  color: var(--foreground);
}

.btn-outline:hover {
  background: rgba(0, 200, 255, 0.1);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--foreground);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 200, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.logo span {
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-cta {
  display: block;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  padding: 0.25rem;
  background: var(--muted);
  border-radius: 0.5rem;
  margin-right: 1rem;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Outfit', sans-serif;
}

.lang-btn:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background);
  z-index: 99;
  padding: 6rem 1rem 2rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .language-switcher {
    margin-right: 0.5rem;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1rem;
}

.hero .star-field {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.hero .glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero .glow-orb-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(0, 200, 255, 0.2);
}

.hero .glow-orb-2 {
  bottom: 25%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 180, 50, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 200, 255, 0.3);
  background: rgba(0, 200, 255, 0.05);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item .number {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.5rem;
}

.trust-divider {
  width: 1px;
  height: 2rem;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid rgba(0, 200, 255, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: bounce 2s infinite;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  border-radius: 9999px;
  background: var(--primary);
}

@media (max-width: 640px) {
  .trust-divider {
    display: none;
  }
  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.section-title .highlight {
  color: var(--primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* Pain Points Section */
.pain-points {
  position: relative;
}

.pain-points::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), rgba(30, 40, 60, 0.2), var(--background));
}

.pain-points .container {
  position: relative;
  z-index: 10;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.pain-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  transition: background 0.3s ease;
}

.pain-card:hover {
  background: rgba(30, 40, 60, 0.8);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pain-item.problem svg {
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item.solution svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item p {
  color: var(--muted-foreground);
}

.pain-item.solution p {
  color: var(--foreground);
  font-weight: 500;
}

.pain-arrow {
  text-align: center;
  padding: 0.5rem 0;
}

.pain-arrow svg {
  color: var(--primary);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(0, 200, 255, 0.5);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 200, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(0, 200, 255, 0.2);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.service-benefits {
  list-style: none;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.service-benefits li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Stats Bar */
.stats-bar {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(to right, rgba(0, 200, 255, 0.1), rgba(30, 40, 60, 1), rgba(0, 200, 255, 0.1));
  border: 1px solid rgba(0, 200, 255, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-value svg {
  width: 20px;
  height: 20px;
}

.stat-value span {
  font-size: 1.875rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Process Section */
.process {
  position: relative;
  overflow: hidden;
}

.process-timeline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 200, 255, 0.3), transparent);
}

.process-steps {
  max-width: 56rem;
  margin: 0 auto;
}

.process-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-number {
  text-align: left;
}

.process-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: 10;
}

.step-number {
  flex: 1;
  text-align: right;
}

.step-number span {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 200, 255, 0.2);
}

.step-content {
  flex: 1;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 200, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.step-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.step-header .duration {
  font-size: 0.875rem;
  color: var(--accent);
}

.step-content > p {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .process-timeline, .process-dot {
    display: none;
  }
  .process-step, .process-step:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }
  .step-number, .process-step:nth-child(even) .step-number {
    text-align: center;
  }
}

/* Case Studies */
.case-studies {
  background: rgba(30, 40, 60, 0.3);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.case-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.case-card:hover {
  border-color: rgba(0, 200, 255, 0.5);
}

.case-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.case-industry {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.case-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(30, 40, 60, 0.5);
}

.metric {
  text-align: center;
}

.metric svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.metric .value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.metric .label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.case-cta {
  text-align: center;
  margin-top: 3rem;
}

.case-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.case-cta a:hover {
  opacity: 0.8;
}

/* Tech Stack */
.tech-scroll-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.tech-scroll-container::before,
.tech-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 10;
}

.tech-scroll-container::before {
  left: 0;
  background: linear-gradient(to right, var(--background), transparent);
}

.tech-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, var(--background), transparent);
}

.tech-scroll {
  display: flex;
  gap: 2rem;
  animation: scroll-left 30s linear infinite;
}

.tech-item {
  flex-shrink: 0;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.tech-item:hover {
  border-color: rgba(0, 200, 255, 0.5);
}

.tech-item .name {
  font-size: 1.125rem;
  font-weight: 600;
}

.tech-item .category {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.tech-stat-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}

.tech-stat-card .value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.tech-stat-card .label {
  color: var(--muted-foreground);
}

/* Testimonials */
.testimonials {
  background: rgba(30, 40, 60, 0.3);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: rgba(0, 200, 255, 0.1);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-card blockquote {
  margin-bottom: 1.5rem;
  font-style: normal;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-author .name {
  font-weight: 600;
}

.testimonial-author .role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-logos {
  text-align: center;
  margin-top: 4rem;
}

.trust-logos p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  opacity: 0.5;
}

.logos-row span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

/* Booking Section */
.booking {
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), rgba(0, 200, 255, 0.05), var(--background));
}

.booking .glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(0, 200, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.booking .container {
  position: relative;
  z-index: 10;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.call-duration {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
}

.call-duration-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-duration-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 180, 50, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-duration-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.call-duration-header h3 {
  font-weight: 700;
  font-size: 1.125rem;
}

.call-duration-header p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.call-benefits {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
}

.call-benefits h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.call-benefits h3 svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.benefits-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.no-pressure {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(30, 40, 60, 0.5);
  border: 1px solid var(--border);
}

.no-pressure svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.no-pressure-text strong {
  display: block;
  font-size: 0.875rem;
}

.no-pressure-text span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.booking-calendar {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
}

.calendar-placeholder {
  text-align: center;
  padding: 3rem 0;
}

.calendar-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.calendar-icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.calendar-placeholder h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.calendar-placeholder > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.calendar-embed {
  min-height: 700px;
  background: var(--secondary);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  padding: 0;
  overflow: visible;
}

/* Placeholder styling when calendar isn't loaded */
.calendar-embed.placeholder {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.calendar-embed svg {
  width: 48px;
  height: 48px;
  color: rgba(0, 200, 255, 0.3);
  margin-bottom: 1rem;
}

.calendar-embed p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.calendar-embed .hint {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* Ensure Cal.com and Calendly widgets have proper space */
.calendar-embed iframe,
.calendar-embed .calendly-inline-widget {
  min-height: 700px;
  width: 100%;
  border: none;
  border-radius: 8px;
}

.booking-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  text-align: center;
}

/* FAQ Section */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: rgba(0, 200, 255, 0.5);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
}

/* Final CTA */
.final-cta {
  padding: 6rem 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 40, 60, 0.5), transparent);
}

.final-cta .glow-orb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(0, 200, 255, 0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.final-cta .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 180, 50, 0.3);
  background: rgba(255, 180, 50, 0.1);
}

.limited-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  color: var(--accent);
}

.limited-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.final-cta h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.final-cta h2 .highlight {
  color: var(--primary);
}

.final-cta > .container > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(30, 40, 60, 0.5);
  padding: 2rem 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(0, 200, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.footer-logo .text strong {
  display: block;
  font-size: 1.125rem;
}

.footer-logo .text span {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-email a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-email a:hover {
  color: var(--primary);
}

.footer-email svg {
  width: 16px;
  height: 16px;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* SVG Icons inline */
.icon-star { fill: currentColor; }
.icon-calendar { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-arrow { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
