@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700;800&family=Playfair+Display:ital@1&display=swap');

:root {
  --bg-color: #FAFAFA;
  --surface-color: #FFFFFF;
  --surface-hover: #F4F4F5;
  --border-color: #E4E4E7;
  --text-primary: #18181B;
  --text-secondary: #71717A;
  --accent-color: #FF3B30;
  --accent-hover: #E6352B;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --section-pad-desktop: 140px;
  --section-pad-mobile: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad-desktop) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--accent-color);
  color: #FFF;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: rgba(0, 0, 0, 0.05);
}

.btn-ghost {
  background: none;
  color: var(--text-primary);
  padding: 0.875rem 1rem;
}

.btn-ghost:hover {
  color: var(--accent-color);
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(250, 250, 250, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background-color: rgba(250, 250, 250, 0.9);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 100px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 100px);
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 60px 5% 120px 10%;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
  max-width: 650px;
}

.hero-content h1 {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 3.5rem);
}

.hero-subtitle {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-right {
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-badge {
  position: absolute;
  left: 4.5%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px;
}

.hero-badge::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}

.badge-svg {
  position: absolute;
  width: 85%;
  height: 85%;
  animation: rotateText 15s linear infinite;
  z-index: 2;
}

.badge-svg text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  fill: var(--text-primary);
  letter-spacing: 2px;
}

.badge-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: var(--accent-color);
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 1rem;
}

.hero-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-carousel 40s linear infinite;
  padding: 1rem 0;
}

.hero-carousel-track:hover {
  animation-play-state: paused;
}

.carousel-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.carousel-img:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 48, 0.3);
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Hero Services */
.hero-services-section {
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
}

.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.glass-card {
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 3rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 48, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.glass-card .service-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.glass-card .service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.glass-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.glass-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* The Problem */
#problem {
  background-image: linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.95)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF;
}

#problem .section-header h2 {
  color: #FFFFFF;
}

#problem .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 59, 48, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.problem-icon {
  background-color: rgba(255, 59, 48, 0.1);
  color: var(--accent-color);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-text {
  font-size: 1.4375rem;
  font-weight: 700;
  color: #FFFFFF;
}

.problem-footer {
  text-align: center;
  margin-top: 2rem;
}

.problem-footer p {
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
}

/* Our Approach */
.process-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-line {
  position: absolute;
  top: 63px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-image: linear-gradient(to right, rgba(255, 59, 48, 0.3) 50%, transparent 50%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  animation: move-dashed-line 1s linear infinite;
}

@keyframes move-dashed-line {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 20px 0;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 59, 48, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.process-number {
  width: 64px;
  height: 64px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.process-step:hover .process-number {
  background-color: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  transition: var(--transition);
}

.service-card:hover {
  background-color: var(--surface-hover);
  border-color: rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Hero Social Proof Marquee */
.hero-social-proof {
  padding: 80px 0;
  margin-top: 4rem;
  overflow: hidden;
  position: relative;
}

.hero-social-proof::before,
.hero-social-proof::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-social-proof::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.hero-social-proof::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 6rem;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.client-logo i {
  width: 28px;
  height: 28px;
}

.client-logo:hover {
  opacity: 1;
}

/* Results */
.results-visual {
  margin-bottom: 4rem;
  width: 100%;
}

.calculator-card {
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.calculator-header {
  padding: 2rem;
  background: rgba(255, 59, 48, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.calculator-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.calculator-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.calculator-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.2);
}

.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.input-group select option {
  background: var(--bg-color);
  color: var(--text-primary);
}

.calc-results-display {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.result-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.result-box.highlight {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.result-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.text-accent {
  color: var(--accent-color);
}

.text-red {
  color: #ff4757;
}

@media (max-width: 768px) {
  .calculator-body {
    grid-template-columns: 1fr;
  }

  .result-value {
    font-size: 2.5rem;
  }
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.result-card:hover {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: var(--surface-hover);
}

.result-tag {
  align-self: center;
  padding: 0.25rem 0.75rem;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.result-stat {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.result-desc {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.result-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.result-link:hover {
  color: var(--accent-color);
}

/* Testimonials */
.testimonials-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  background-image: url('assets/dark-bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -2;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.2); /* Lightened overlay */
  z-index: -1;
}

.testimonials-section h2 {
  color: #fff;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 2rem 0;
}

.testimonials-carousel {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.testimonials-carousel:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 350px;
  flex-shrink: 0;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(15, 15, 15, 0.7);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 1rem));
  }
}

.stars {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}

.stars svg {
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--surface-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent-color);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.author-info p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 450px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background-color: rgba(255, 59, 48, 0.03);
  border-color: rgba(255, 59, 48, 0.3);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  margin-bottom: 2rem;
  min-height: 42px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  font-family: var(--font-body);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.feature-icon {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

/* Booking Section */
.booking-section {
  background-color: var(--surface-color);
  border-radius: 24px;
  padding: 4rem;
  margin: 6rem auto;
  max-width: 1000px;
  border: 1px solid var(--border-color);
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-widget {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  min-height: 400px;
}

.calendar-pane {
  padding: 2rem;
  border-right: 1px solid var(--border-color);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.25rem;
}

.calendar-nav-btn:hover {
  color: var(--accent-color);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  text-align: center;
}

.day-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.day {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 auto;
}

.day:hover:not(.disabled) {
  background-color: rgba(0, 0, 0, 0.1);
}

.day.selected {
  background-color: var(--accent-color);
  color: #000;
  font-weight: 600;
}

.day.disabled {
  color: var(--border-color);
  cursor: not-allowed;
}

.time-pane {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.time-header {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.time-slots {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.time-slot {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.time-slot:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.time-slot.selected {
  background-color: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
}

.booking-reassurance {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  background-color: #FFFFFF;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-item.active {
  background-color: #f8f9fa;
  border-color: transparent;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--text-primary);
  width: 20px;
  height: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

/* Turn plus into minus by hiding the vertical line */
.faq-item.active .faq-icon line:first-child {
  display: none;
}

/* CTA Banner */
.cta-banner {
  background-color: var(--accent-color);
  color: #000;
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

.cta-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
  margin: 0 auto 3.5rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.italic-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.btn-cta-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid #000;
  border-radius: 50px;
  color: #000;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background-color: #000;
  color: var(--accent-color);
}

/* CTA Badges */
.cta-badge-top {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate 15s linear infinite;
  fill: #FFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: var(--font-body);
}

.badge-icon {
  position: relative;
  z-index: 2;
  color: var(--accent-color);
}

.badge-icon svg {
  width: 40px;
  height: 40px;
}

.cta-badge-bottom {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #FFF;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* Footer */
.footer {
  background-color: var(--surface-color);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-secondary);
  max-width: 250px;
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 6px 0 0 6px;
  color: var(--text-primary);
  flex-grow: 1;
  font-family: var(--font-body);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.newsletter-btn {
  background-color: #000;
  color: #FFF;
  border: none;
  padding: 0 1rem;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: #333;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-color);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--section-pad-mobile) 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 60px 5% 60px 5%;
  }

  .hero-right {
    min-height: 400px;
  }

  .hero-right::before {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-badge {
    left: 50%;
    top: 10%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--surface-color);
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .mobile-nav-links .nav-link {
    font-size: 1.25rem;
  }

  .close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
  }

  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid,
  .services-grid,
  .results-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .booking-widget {
    grid-template-columns: 1fr;
  }

  .calendar-pane {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .booking-section {
    padding: 2rem;
    margin: 3rem auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-container {
    grid-template-columns: 1fr;
  }
}

@keyframes pulseBg {
  0% { transform: scale(1) translateY(0); opacity: 0.5; }
  100% { transform: scale(1.05) translateY(-2%); opacity: 1; }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .process-line {
    display: none;
  }

  .process-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pricing-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--section-pad-mobile) 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 60px 5% 60px 5%;
  }

  .hero-right {
    min-height: 400px;
  }

  .hero-right::before {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-badge {
    left: 50%;
    top: 10%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--surface-color);
    z-index: 1001;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .mobile-nav-links .nav-link {
    font-size: 1.25rem;
  }

  .close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
  }

  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid,
  .services-grid,
  .results-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .booking-widget {
    grid-template-columns: 1fr;
  }

  .calendar-pane {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .booking-section {
    padding: 2rem;
    margin: 3rem auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-container {
    grid-template-columns: 1fr;
  }
}

@keyframes pulseBg {
  0% { transform: scale(1) translateY(0); opacity: 0.5; }
  100% { transform: scale(1.05) translateY(-2%); opacity: 1; }
}

.booking-section {
    background-color: var(--surface-color);
    border-radius: 24px;
    padding: 4rem;
    margin: 0rem auto;
    max-width: 1000px;
    border: 1px solid var(--border-color);
}

/* Arrow Animations for Buttons */
.arrow-right, .arrow-down {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .arrow-right {
  transform: translateX(4px);
}

.btn:hover .arrow-down {
  transform: translateY(4px);
}

/* Floating Labels Animation */
.floating-labels-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-label {
    position: absolute;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: calc(1.25rem + 3px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    animation: fadeShowSeq 60s infinite;
}

@keyframes fadeShowSeq {
    0% { opacity: 0; transform: translateY(20px); }
    4% { opacity: 1; transform: translateY(0); }
    12% { opacity: 1; transform: translateY(0); }
    16.66% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 0; transform: translateY(-20px); }
}

.fl-1 { animation-delay: 0s; }
.fl-2 { animation-delay: 10s; }
.fl-3 { animation-delay: 20s; }
.fl-4 { animation-delay: 30s; }
.fl-5 { animation-delay: 40s; }
.fl-6 { animation-delay: 50s; }

.service-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}
.service-visual {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
    background: var(--surface-color);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 900px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-row > div {
        order: unset !important;
    }
    .service-text {
        order: 2 !important;
    }
    .service-visual {
        order: 1 !important;
    }
}
