/*
 * Premium TECHGURU Landing Page Styles
 *
 * This stylesheet defines a modern, high‑contrast aesthetic with vibrant gradient accents and subtle glass effects.
 * It is optimized for both desktop and mobile devices and pairs with the corresponding HTML in index.html.
 */

/* Google Fonts are now loaded via <link> tags in HTML for better performance */

:root,
body.dark-theme {
  --color-bg: #080a0f;
  --color-primary: #4a6cf7;
  --color-secondary: #a274ff;
  --color-accent: #64dedf;
  --color-text-light: #f2f4fa;
  --color-text-muted: rgba(242, 244, 250, 0.85);
  --gradient-primary: linear-gradient(90deg, #6e48aa 0%, #9d50bb 100%);
  --gradient-cta: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);

  /* Glass effects - Dark */
  --glass-bg: rgba(8, 10, 15, 0.95);
  --glass-bg-light: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.15);
  --section-bg-alt: rgba(255, 255, 255, 0.02);
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
body.light-theme {
  --color-bg: #f8fafc;
  --color-primary: #3b5bdb;
  --color-secondary: #8b5cf6;
  --color-accent: #0891b2;
  --color-text-light: #0f172a;
  --color-text-muted: rgba(15, 23, 42, 0.75);

  /* Glass effects - Light */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-bg-light: rgba(15, 23, 42, 0.03);
  --glass-border: rgba(15, 23, 42, 0.1);
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-border: rgba(15, 23, 42, 0.08);
  --input-bg: rgba(255, 255, 255, 0.9);
  --input-border: rgba(15, 23, 42, 0.15);
  --section-bg-alt: rgba(15, 23, 42, 0.02);
}

/* Light theme component overrides */
body.light-theme .navbar {
  background: var(--glass-bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.light-theme .hamburger,
body.light-theme .hamburger::before,
body.light-theme .hamburger::after {
  background: var(--color-text-light);
}

body.light-theme .hero::before {
  background: radial-gradient(circle at center, rgba(59, 91, 219, 0.1), transparent 70%);
}

body.light-theme .hero h1 {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
}

body.light-theme .why-card,
body.light-theme .feature-card,
body.light-theme .faq-item {
  background: var(--card-bg);
  border-color: var(--card-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

body.light-theme .service-card-premium,
body.light-theme .process-card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

body.light-theme .contact-form,
body.light-theme .contact-info {
  background: var(--card-bg);
  border-color: var(--card-border);
}

body.light-theme input,
body.light-theme textarea,
body.light-theme select {
  background: var(--input-bg) !important;
  border-color: var(--input-border) !important;
  color: var(--color-text-light) !important;
}

body.light-theme input::placeholder,
body.light-theme textarea::placeholder {
  color: var(--color-text-muted) !important;
}

body.light-theme .footer {
  background: linear-gradient(180deg, var(--section-bg-alt), rgba(15, 23, 42, 0.05));
  border-top: 1px solid var(--glass-border);
}

body.light-theme .lead-magnet {
  background: linear-gradient(135deg, rgba(59, 91, 219, 0.08), rgba(139, 92, 246, 0.08));
}

body.light-theme .btn-secondary {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(59, 91, 219, 0.3);
  color: var(--color-text-light);
}

body.light-theme .btn-secondary:hover {
  background: rgba(59, 91, 219, 0.1);
}

body.light-theme .exit-popup-overlay {
  background: rgba(15, 23, 42, 0.7);
}

body.light-theme .exit-popup {
  background: var(--glass-bg);
  border-color: var(--card-border);
}

/* Smooth transition for theme switching */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar,
.why-card,
.feature-card,
.faq-item,
.service-card-premium,
.process-card,
.contact-form,
.contact-info,
.footer,
.lead-magnet,
input,
textarea,
select {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Skip to Content - Accessibility */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  transition: top 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================
   ICON SYSTEM
   Consistent SVG icon styling across the site
   ============================================ */

/*
  Global icon system
  - Introduces `.tg-icon` base and size modifiers
  - Keeps backward compatibility by aliasing existing classes
*/

/* Base icon container */
.tg-icon,
.icon,
.check-icon,
.badge-icon,
.metric-icon,
.mockup-icon,
.footer-icon,
.section-icon,
.response-icon,
.modal-icon,
.chip-icon,
.urgency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 0;
}

/* Ensure SVGs/images conform to container sizing */
.tg-icon svg,
.tg-icon img,
.icon svg,
.icon img,
.glass-icon svg,
.glass-icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  stroke: currentColor;
  fill: none;
}

/* Size scale */
.tg-icon-xs { width: 12px; height: 12px; }
.tg-icon-sm { width: 16px; height: 16px; }
.tg-icon-md { width: 20px; height: 20px; }
.tg-icon-lg { width: 28px; height: 28px; }
.tg-icon-xl { width: 40px; height: 40px; }
.tg-icon-xxl { width: 64px; height: 64px; }

/* Back-compat for older `.icon--*` size modifiers */
.icon--xs { width: 12px; height: 12px; }
.icon--sm { width: 16px; height: 16px; }
.icon--md { width: 20px; height: 20px; }
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 40px; height: 40px; }
.icon--xxl { width: 64px; height: 64px; }

/* Check icon - used in lists */
.check-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent, #64dedf);
  margin-right: 0.5rem;
}

/* Badge icons - featured labels */
.badge-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
  margin-right: 0.25rem;
}

/* Metric icons - service cards */
.metric-icon {
  width: 16px;
  height: 16px;
  color: var(--color-accent, #64dedf);
  margin-right: 0.35rem;
}

/* Mockup icons - lead magnet preview */
.mockup-icon {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  color: var(--color-primary, #4a6cf7);
}

/* Footer icons */
.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  margin-right: 0.5rem;
  vertical-align: -0.15em;
}

/* Section header icons */
.section-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary, #4a6cf7);
  margin-right: 0.5rem;
  vertical-align: -0.15em;
}

/* Response time icon */
.response-icon {
  width: 16px;
  height: 16px;
  color: var(--color-accent, #64dedf);
  margin-right: 0.35rem;
  vertical-align: -0.15em;
}

/* Modal header icons */
.modal-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary, #4a6cf7);
  margin-right: 0.5rem;
  vertical-align: -0.15em;
}

/* Suggestion chip icons */
.chip-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.35rem;
}

/* Urgency icon */
.urgency-icon {
  width: 16px;
  height: 16px;
  color: #ef4444;
  margin-right: 0.35rem;
  fill: #ef4444;
  stroke: none;
}

/* Contact item icon container */
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--glass-bg-light);
  border-radius: 12px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary, #4a6cf7);
}

/* Footer social link icons */
.footer-social .social-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.2s ease;
}

.footer-social .social-link:hover svg {
  transform: scale(1.1);
}

/* Chat CTA icon styling */
.chat-cta-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(8, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Navbar hide on scroll down */
.navbar.navbar-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Animated gradient line at bottom of navbar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary),
    var(--color-accent),
    var(--color-secondary),
    var(--color-primary)
  );
  background-size: 200% 100%;
  animation: gradient-surge 8s ease-in-out infinite;
}

@keyframes gradient-surge {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

/* Nav Menu - Centered */
.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.navbar li {
  margin: 0;
}

.navbar a:not(.nav-cta) {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.navbar a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

/* Nav CTA Button - Premium Send Button Style */
.nav-cta {
  flex-shrink: 0;
  text-decoration: none;
}

.nav-cta.chat-send {
  --border-radius: 24px;
  --padding: 3px;
  --transition: 0.3s;
  --button-color: #101018;
  --highlight-color-hue: 220deg;

  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6em 1.5em 0.6em 1.2em;
  font-family: var(--font-primary);
  font-size: 0.85em;
  font-weight: 500;
  min-width: 220px;
  height: 42px;
  white-space: nowrap;

  background-color: var(--button-color);

  box-shadow:
    inset 0px 1px 1px rgba(255, 255, 255, 0.15),
    inset 0px 2px 2px rgba(255, 255, 255, 0.1),
    inset 0px 4px 4px rgba(255, 255, 255, 0.08),
    inset 0px 8px 8px rgba(255, 255, 255, 0.04),
    0px -1px 1px rgba(0, 0, 0, 0.02),
    0px -2px 2px rgba(0, 0, 0, 0.03),
    0px -4px 4px rgba(0, 0, 0, 0.05),
    0px -8px 8px rgba(0, 0, 0, 0.06);

  border: solid 1px rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  cursor: pointer;

  transition:
    box-shadow var(--transition),
    border var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.nav-cta.chat-send::before {
  content: "";
  position: absolute;
  top: calc(0px - var(--padding));
  left: calc(0px - var(--padding));
  width: calc(100% + var(--padding) * 2);
  height: calc(100% + var(--padding) * 2);
  border-radius: calc(var(--border-radius) + var(--padding));
  pointer-events: none;
  background-image: linear-gradient(0deg, #0004, #000a);
  z-index: -1;
  transition:
    box-shadow var(--transition),
    filter var(--transition);
  box-shadow:
    0 -8px 8px -6px transparent inset,
    0 -16px 16px -8px transparent inset,
    1px 1px 1px rgba(255, 255, 255, 0.12),
    2px 2px 2px rgba(255, 255, 255, 0.06),
    -1px -1px 1px rgba(0, 0, 0, 0.12),
    -2px -2px 2px rgba(0, 0, 0, 0.06);
}

.nav-cta.chat-send::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background-image: linear-gradient(
    0deg,
    #fff,
    hsl(var(--highlight-color-hue), 100%, 70%),
    hsla(var(--highlight-color-hue), 100%, 70%, 50%),
    8%,
    transparent
  );
  background-position: 0 0;
  opacity: 0;
  transition:
    opacity var(--transition),
    filter var(--transition);
}

.nav-cta.chat-send .send-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #e8e8e8;
  stroke-width: 2;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
  animation: send-flicker 2s linear infinite;
  transition:
    stroke var(--transition),
    filter var(--transition);
}

@keyframes send-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.nav-cta .send-txt-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 14em;
  height: 1.2em;
  overflow: visible;
}

.nav-cta .send-txt-1,
.nav-cta .send-txt-2 {
  position: absolute;
  left: 0;
  display: flex;
}

.nav-cta .send-txt-1 {
  opacity: 1;
}

.nav-cta .send-txt-2 {
  opacity: 0;
}

.nav-cta .send-letter {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  animation: send-letter-anim 2s ease-in-out infinite;
  transition:
    color var(--transition),
    text-shadow var(--transition);
}

@keyframes send-letter-anim {
  0%, 100% { color: rgba(255, 255, 255, 0.5); }
  50% {
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    color: #fff;
  }
}

.nav-cta .send-letter:nth-child(1) { animation-delay: 0s; }
.nav-cta .send-letter:nth-child(2) { animation-delay: 0.06s; }
.nav-cta .send-letter:nth-child(3) { animation-delay: 0.12s; }
.nav-cta .send-letter:nth-child(4) { animation-delay: 0.18s; }
.nav-cta .send-letter:nth-child(5) { animation-delay: 0.24s; }
.nav-cta .send-letter:nth-child(6) { animation-delay: 0.30s; }
.nav-cta .send-letter:nth-child(7) { animation-delay: 0.36s; }
.nav-cta .send-letter:nth-child(8) { animation-delay: 0.42s; }
.nav-cta .send-letter:nth-child(9) { animation-delay: 0.48s; }
.nav-cta .send-letter:nth-child(10) { animation-delay: 0.54s; }
.nav-cta .send-letter:nth-child(11) { animation-delay: 0.60s; }
.nav-cta .send-letter:nth-child(12) { animation-delay: 0.66s; }
.nav-cta .send-letter:nth-child(13) { animation-delay: 0.72s; }
.nav-cta .send-letter:nth-child(14) { animation-delay: 0.78s; }
.nav-cta .send-letter:nth-child(15) { animation-delay: 0.84s; }
.nav-cta .send-letter:nth-child(16) { animation-delay: 0.90s; }
.nav-cta .send-letter:nth-child(17) { animation-delay: 0.96s; }
.nav-cta .send-letter:nth-child(18) { animation-delay: 1.02s; }
.nav-cta .send-letter:nth-child(19) { animation-delay: 1.08s; }
.nav-cta .send-letter:nth-child(20) { animation-delay: 1.14s; }
.nav-cta .send-letter:nth-child(21) { animation-delay: 1.20s; }
.nav-cta .send-letter:nth-child(22) { animation-delay: 1.26s; }
.nav-cta .send-letter:nth-child(23) { animation-delay: 1.32s; }

.nav-cta.chat-send:hover {
  border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 40%);
}

.nav-cta.chat-send:hover::before {
  box-shadow:
    0 -8px 8px -6px rgba(255, 255, 255, 0.6) inset,
    0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 30%) inset,
    1px 1px 1px rgba(255, 255, 255, 0.12),
    2px 2px 2px rgba(255, 255, 255, 0.06),
    -1px -1px 1px rgba(0, 0, 0, 0.12),
    -2px -2px 2px rgba(0, 0, 0, 0.06);
}

.nav-cta.chat-send:hover::after {
  opacity: 0.8;
  mask-image: linear-gradient(0deg, #fff, transparent);
}

.nav-cta.chat-send:hover .send-icon {
  stroke: #fff;
  filter: drop-shadow(0 0 4px hsl(var(--highlight-color-hue), 100%, 70%))
    drop-shadow(0 -4px 6px rgba(0, 0, 0, 0.5));
  animation: none;
}

.nav-cta.chat-send:hover .send-letter {
  color: #fff;
  text-shadow: 0 0 4px hsla(var(--highlight-color-hue), 100%, 70%, 80%);
}

.nav-cta.chat-send:active {
  transform: scale(0.97);
  border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 70%);
  background-color: hsla(var(--highlight-color-hue), 50%, 20%, 0.5);
}

.nav-cta.chat-send:active::before {
  box-shadow:
    0 -8px 12px -6px rgba(255, 255, 255, 0.8) inset,
    0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 80%) inset,
    1px 1px 1px rgba(255, 255, 255, 0.25),
    2px 2px 2px rgba(255, 255, 255, 0.12),
    -1px -1px 1px rgba(0, 0, 0, 0.12),
    -2px -2px 2px rgba(0, 0, 0, 0.06);
}

.nav-cta.chat-send:active::after {
  opacity: 1;
  mask-image: linear-gradient(0deg, #fff, transparent);
  filter: brightness(200%);
}

.nav-cta.chat-send:active .send-letter {
  text-shadow: 0 0 2px hsla(var(--highlight-color-hue), 100%, 90%, 90%);
  animation: none;
  color: #fff;
}

/* Header CTA: match header font and purple→black gradient, enlarge icon */
.navbar .nav-cta.chat-send {
  background: linear-gradient(135deg, #6e48aa 0%, #0a0a0f 100%);
  border: none;
}
.navbar .nav-cta.chat-send .send-icon {
  width: 20px;
  height: 20px;
}
.navbar .nav-cta .send-txt-wrapper {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons - Apple 2025 Glassmorphism */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.02em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgba(74, 108, 247, 0.9),
    rgba(162, 116, 255, 0.9)
  );
  color: #ffffff;
  box-shadow:
    0 4px 15px rgba(74, 108, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(74, 108, 247, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 108, 247, 0.5);
  color: var(--color-text-light);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(74, 108, 247, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(74, 108, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* Glass Icon Button */
.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  font-size: 1.25rem;
}

.btn-icon.btn-lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 2rem;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

/* Tubes Cursor Canvas - ALWAYS VISIBLE */
#tubes-canvas {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  pointer-events: auto !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(74, 108, 247, 0.15), transparent 70%);
  animation: pulse 14s infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.3) rotate(180deg);
  }
}

.hero-content {
  flex: 1;
  z-index: 2;
  max-width: 600px;
  pointer-events: auto;
}

.hero-image {
  flex: 1;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* Hero Image Rotator */
.hero-image-rotator {
  display: none;
}

.hero-image::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 2/1;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M120 200 L200 100 L300 200 L400 100 L500 200 L600 100 L700 200" stroke="%238a6bff" stroke-width="3" fill="none" stroke-dasharray="10,5"/%3E%3Ccircle cx="200" cy="100" r="8" fill="%2300c6ff"/%3E%3Ccircle cx="400" cy="100" r="8" fill="%2300c6ff"/%3E%3Ccircle cx="600" cy="100" r="8" fill="%2300c6ff"/%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.95;
}

.hero-image-rotator::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.02);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1), transform 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Video specific styling */
video.hero-slide {
  object-fit: cover;
  object-position: center center;
  background: var(--color-bg);
  width: 100%;
  height: 100%;
}

.hero-slide.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
}

.hero-slide.fade-out {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.98);
  z-index: 0;
}

.hero-image img:not(.hero-slide) {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 50%;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rotating-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-accent), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-height: 2rem;
  transition: opacity 0.5s ease;
}

.rotating-tagline.fade {
  opacity: 0;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

/* Hero Highlights */
.hero-highlights {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}

.hero-highlights li {
  padding: 0.5rem 0;
  color: var(--color-text-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

.hero .cta-buttons {
  display: flex;
  gap: 1rem;
}

/* Section Subtitle Helper */
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Why TechGuru Section */
.why-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(138, 107, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-color: rgba(74, 108, 247, 0.3);
}

.why-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 5rem 2rem;
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(74, 108, 247, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   Premium Services Section - Enhanced
   ============================================ */
.services-premium {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(74, 108, 247, 0.03) 50%, var(--color-bg) 100%);
  position: relative;
}

.services-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 108, 247, 0.3), transparent);
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.15), rgba(162, 116, 255, 0.1));
  border: 1px solid rgba(74, 108, 247, 0.25);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.services-premium h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-text-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-premium .section-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.services-trust {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* Featured Services Row */
.services-featured-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Standard Services Grid */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Service Card - Base */
.service-card-premium {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.service-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(74, 108, 247, 0.25);
}

/* Featured Card - Enhanced */
.service-card-premium.featured {
  background: linear-gradient(145deg, rgba(74, 108, 247, 0.08), rgba(162, 116, 255, 0.05));
  border: 1px solid rgba(74, 108, 247, 0.25);
  padding: 2.5rem;
}

.service-card-premium.featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.4), rgba(162, 116, 255, 0.2), transparent);
  -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;
  pointer-events: none;
}

.service-card-premium.featured:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border-color: rgba(74, 108, 247, 0.4);
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.9), rgba(162, 116, 255, 0.9));
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.4);
}

.featured-badge.hot {
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Service Header */
.service-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.glass-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.2), rgba(162, 116, 255, 0.15));
  border: 1px solid rgba(74, 108, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.glass-icon.large {
  width: 56px;
  height: 56px;
}

.glass-icon.animated {
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 108, 247, 0.3); }
  50% { box-shadow: 0 4px 10px rgba(74, 108, 247, 0.15); }
}

.glass-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.glass-icon.large svg {
  width: 28px;
  height: 28px;
}

.service-card-premium:hover .glass-icon {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.25);
}

.service-title-wrap {
  flex: 1;
}

.service-title-wrap h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-premium.featured .service-title-wrap h3 {
  font-size: 1.35rem;
}

/* Service Meta (Metric + Price) */
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.service-metric {
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 500;
}

.service-starting {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  background: rgba(74, 108, 247, 0.15);
  border-radius: 6px;
  color: var(--color-primary);
  font-weight: 600;
}

/* Service Description */
.service-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Service Features */
.service-features {
  list-style: none;
  margin-bottom: 1.25rem;
  padding: 0;
}

.service-features li {
  padding: 0.4rem 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  position: relative;
  flex-shrink: 0;
}

.check-icon::after {
  content: '\u2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  color: #fff;
  font-weight: 700;
}

/* Service Results - Stats Row */
.service-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.result-item {
  text-align: center;
}

.result-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.result-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--color-text-light);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.pricing-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(74, 108, 247, 0.3);
}

.toggle-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.pricing-open .toggle-arrow {
  transform: rotate(180deg);
}

/* Pricing Dropdown */
.pricing-dropdown {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.service-card-premium.pricing-open .pricing-dropdown {
  margin-top: 1rem;
}

.pricing-tier {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.pricing-tier:hover {
  background: rgba(255, 255, 255, 0.04);
}

.pricing-tier.featured {
  border-color: rgba(74, 108, 247, 0.3);
  background: rgba(74, 108, 247, 0.08);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.tier-name {
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.tier-price {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tier-price small {
  font-size: 0.65em;
  font-weight: 500;
}

.pricing-tier p {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* Service CTA */
.service-cta {
  margin-top: auto;
  padding-top: 1.25rem;
  text-align: center;
  display: block;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 108, 247, 0.4);
}

/* Services Bottom CTA */
.services-bottom-cta {
  text-align: center;
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.08), rgba(162, 116, 255, 0.05));
  border-radius: 24px;
  border: 1px solid rgba(74, 108, 247, 0.2);
}

.services-bottom-cta p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.services-bottom-cta .btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.cta-subtext {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

/* Mobile Responsive - Services */
@media (max-width: 1200px) {
  .services-featured-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .services-premium {
    padding: 4rem 1.5rem;
  }

  .services-premium h2 {
    font-size: 2rem;
  }

  .services-featured-row,
  .services-grid-premium {
    grid-template-columns: 1fr;
  }

  .service-card-premium {
    padding: 1.5rem;
  }

  .service-card-premium.featured {
    padding: 1.75rem;
  }

  .featured-badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
  }

  .service-results {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .result-number {
    font-size: 1.2rem;
  }

  .result-label {
    font-size: 0.65rem;
  }

  .services-bottom-cta {
    padding: 1.75rem;
    margin-top: 2.5rem;
  }

  .services-trust {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .services-premium h2 {
    font-size: 1.75rem;
  }

  .services-label {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .service-title-wrap h3 {
    font-size: 1.1rem;
  }

  .service-card-premium.featured .service-title-wrap h3 {
    font-size: 1.2rem;
  }

  .service-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 28px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: rgba(74, 108, 247, 0.4);
  background: rgba(74, 108, 247, 0.08);
  box-shadow:
    0 8px 32px rgba(74, 108, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow:
    0 25px 60px rgba(74, 108, 247, 0.3);
}

.pricing-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.3), rgba(162, 116, 255, 0.3));
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.pricing-card.featured .pricing-badge {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.pricing-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.pricing-ideal {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.6rem 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

.pricing-custom {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-custom h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-custom p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-mission,
.about-story {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-mission h3,
.about-story h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-mission p,
.about-story p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-approach {
  margin-bottom: 3rem;
}

.about-approach h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-text-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.approach-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 108, 247, 0.2);
}

.approach-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.approach-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.approach-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.about-clients {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-clients h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-clients p {
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Premium Process Section - How We Work
   ============================================ */
.process-section-premium {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(74, 108, 247, 0.03) 50%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.process-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 108, 247, 0.3), transparent);
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-label {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.15), rgba(162, 116, 255, 0.1));
  border: 1px solid rgba(74, 108, 247, 0.25);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.process-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-text-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-header .section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Timeline Layout */
.process-timeline-premium {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Individual Step */
.process-step-premium {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  position: relative;
}

/* Step Indicator (Number + Line) */
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.15), rgba(162, 116, 255, 0.1));
  border: 2px solid rgba(74, 108, 247, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.step-number-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(74, 108, 247, 0.3), rgba(162, 116, 255, 0.3), rgba(74, 108, 247, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.process-step-premium:hover .step-number-ring::before {
  opacity: 1;
}

.step-number-ring.completed {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
}

.step-num {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-number-ring.completed .step-num {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(180deg, rgba(74, 108, 247, 0.4), rgba(162, 116, 255, 0.2));
  margin: 0.5rem 0;
}

/* Step Card */
.step-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 108, 247, 0.3), transparent);
}

.step-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(74, 108, 247, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Step Icon */
.step-icon-wrapper {
  display: flex;
  align-items: flex-start;
  padding-top: 0.25rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.15), rgba(162, 116, 255, 0.1));
  border: 1px solid rgba(74, 108, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.step-icon.success {
  background: linear-gradient(135deg, rgba(100, 222, 223, 0.15), rgba(74, 108, 247, 0.1));
  border-color: rgba(100, 222, 223, 0.3);
}

.step-icon.success svg {
  color: var(--color-accent);
}

.step-card:hover .step-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.2);
}

/* Step Details */
.step-details {
  flex: 1;
}

.step-details h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.step-details p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Step Checklist */
.step-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.step-checklist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.step-checklist .check {
  color: var(--color-accent);
  font-weight: 600;
}

/* Step Duration Badge */
.step-duration {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(74, 108, 247, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(74, 108, 247, 0.15);
  min-width: 90px;
}

.duration-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.duration-value {
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Process CTA */
.process-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.process-cta p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

/* Mobile Responsive - Process Section */
@media (max-width: 768px) {
  .process-section-premium {
    padding: 4rem 1.5rem;
  }

  .process-header h2 {
    font-size: 2rem;
  }

  .process-step-premium {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .step-number-ring {
    width: 48px;
    height: 48px;
  }

  .step-num {
    font-size: 0.95rem;
  }

  .step-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-icon-wrapper {
    display: none;
  }

  .step-duration {
    flex-direction: row;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
  }

  .duration-label {
    margin-bottom: 0;
  }

  .step-checklist {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .process-header h2 {
    font-size: 1.75rem;
  }

  .process-label {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .step-details h3 {
    font-size: 1.15rem;
  }

  .step-details p {
    font-size: 0.9rem;
  }
}

/* Features */
.features {
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(74, 108, 247, 0.3);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* Social Proof Section */
.social-proof {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.clients-bar {
  text-align: center;
  margin-bottom: 3rem;
}

.clients-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.6;
}

.client-logo {
  font-size: 1rem;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(74, 108, 247, 0.2);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.testimonial-content strong {
  color: var(--color-accent);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--color-text-light);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.testimonial-metric {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-bg);
}

/* Lead Magnet / Subscribe */
.lead-magnet {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-magnet-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lead-magnet-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-magnet-text > p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.lead-magnet-list {
  list-style: none;
  margin-bottom: 2rem;
}

.lead-magnet-list li {
  padding: 0.5rem 0;
  color: var(--color-text-light);
  font-size: 1rem;
}

.lead-magnet form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.lead-magnet input[type="email"] {
  padding: 1rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-text-light);
  min-width: 280px;
  outline: none;
  flex: 1;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lead-magnet input[type="email"]:focus {
  border-color: rgba(74, 108, 247, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.15);
}

.lead-magnet button {
  padding: 1rem 2.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    135deg,
    rgba(74, 108, 247, 0.9),
    rgba(162, 116, 255, 0.9)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 4px 20px rgba(74, 108, 247, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lead-magnet button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 35px rgba(74, 108, 247, 0.5);
}

.lead-magnet button:active {
  transform: translateY(0) scale(0.98);
}

.lead-magnet-preview {
  display: flex;
  justify-content: center;
}

.mockup-stack {
  position: relative;
  width: 200px;
  height: 200px;
}

.mockup-item {
  position: absolute;
  width: 160px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mockup-1 {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  z-index: 3;
}

.mockup-2 {
  top: 30px;
  left: 30px;
  transform: rotate(2deg);
  z-index: 2;
}

.mockup-3 {
  top: 60px;
  left: 60px;
  transform: rotate(8deg);
  z-index: 1;
}

.mockup-stack:hover .mockup-1 {
  transform: rotate(-8deg) translateY(-10px);
}

.mockup-stack:hover .mockup-2 {
  transform: rotate(5deg) translateX(10px);
}

.mockup-stack:hover .mockup-3 {
  transform: rotate(12deg) translateY(10px);
}

.privacy-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
  border-color: rgba(74, 108, 247, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-text-light);
  outline: none;
  resize: vertical;
  font-family: inherit;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(74, 108, 247, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 20px rgba(74, 108, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-form select {
  cursor: pointer;
}

.contact-form select option {
  background: var(--color-bg);
  color: var(--color-text-light);
}

.contact-form button {
  align-self: flex-start;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(74, 108, 247, 0.9),
    rgba(162, 116, 255, 0.9)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 600;
  box-shadow:
    0 4px 20px rgba(74, 108, 247, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-form button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 35px rgba(74, 108, 247, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-form button:active {
  transform: translateY(0) scale(0.98);
}

.response-time {
  font-size: 0.85rem;
  color: var(--color-accent);
  margin-top: 0.5rem;
}

.contact-info {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-primary);
}

/* Footer */
.footer {
  padding: 4rem 2rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-cta h4 {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

.footer-cta p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-cta .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Exit Intent Popup - Glassmorphism */
.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  z-index: 9998; /* Below chat widget (9999) */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.exit-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  background: rgba(15, 20, 40, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 3rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(-30px) scale(0.95);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.exit-popup-overlay.active .exit-popup {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--color-text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  transform: scale(1.05);
}

.exit-popup h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.exit-popup > p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.exit-popup form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exit-popup input {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-text-light);
  outline: none;
  text-align: center;
  transition: all 0.3s ease;
}

.exit-popup input:focus {
  border-color: rgba(74, 108, 247, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.15);
}

.exit-popup .btn {
  width: 100%;
}

.exit-popup-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* Floating CTA Buttons - Glassmorphism */
.floating-cta {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9990;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  white-space: nowrap;
}

.floating-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.floating-cta-btn:hover::before {
  left: 100%;
}

.floating-cta-btn:hover {
  transform: translateX(5px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.floating-cta-btn.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
}

.floating-cta-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow:
    0 12px 40px rgba(37, 211, 102, 0.25);
}

.floating-cta-btn.schedule {
  background: rgba(74, 108, 247, 0.15);
  border-color: rgba(74, 108, 247, 0.3);
}

.floating-cta-btn.schedule:hover {
  background: rgba(74, 108, 247, 0.25);
  border-color: rgba(74, 108, 247, 0.5);
  box-shadow:
    0 12px 40px rgba(74, 108, 247, 0.25);
}

.floating-cta-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.floating-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-cta-text span:first-child {
  font-size: 0.7rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-cta-text span:last-child {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-toggle {
    display: block;
    order: 3;
  }

  .navbar-actions {
    order: 2;
  }

  .navbar-actions .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(8, 10, 15, 0.98);
    backdrop-filter: blur(10px);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: none;
    left: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-rotator {
    max-width: 300px;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .rotating-tagline {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero Highlights Mobile */
  .hero-highlights {
    text-align: left;
    max-width: 100%;
    margin: 0 auto 2rem;
    padding: 0 1rem;
  }

  .hero-highlights li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  /* Improve button touch targets */
  .btn {
    min-height: 48px;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    min-height: 52px;
    padding: 1rem 2rem;
  }

  /* Why Section Mobile */
  .why-section {
    padding: 3rem 1.5rem;
  }

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

  /* Services Mobile */
  .services-section {
    padding: 3rem 1.5rem;
  }

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

  /* Pricing Mobile */
  .pricing-section {
    padding: 3rem 1.5rem;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }

  .pricing-custom {
    padding: 2rem 1.5rem;
  }

  /* About Mobile */
  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-main {
    flex-direction: column;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
  }

  .about-image {
    margin-top: 2rem;
  }

  /* Contact Mobile */
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
  }

  .contact-info {
    margin-top: 2rem;
  }

  input,
  textarea,
  select {
    font-size: 16px !important;
    min-height: 48px;
  }

  textarea {
    min-height: 120px;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 3rem 1.5rem;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-item {
    padding: 1.25rem;
  }

  .faq-question {
    font-size: 1rem;
    padding-right: 2.5rem;
  }

  .faq-icon {
    right: 1.25rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-cta {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

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

  /* Social Proof Mobile */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* Lead Magnet Mobile */
  .lead-magnet-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead-magnet-preview {
    order: -1;
    margin-bottom: 2rem;
  }

  .lead-magnet-list {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 2rem;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 3rem 1.5rem;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-item {
    padding: 1.25rem;
  }

  .faq-question {
    font-size: 1rem;
    padding-right: 2.5rem;
  }

  .faq-icon {
    right: 1.25rem;
  }
  .faq-section {
    padding: 3rem 1.5rem;
  }

  /* Contact Mobile */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .contact-form button {
    align-self: stretch;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-cta {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* Exit Popup Mobile */
  .exit-popup {
    padding: 2rem 1.5rem;
  }

  .exit-popup h3 {
    font-size: 1.4rem;
  }

  /* Floating CTA Mobile */
  .floating-cta {
    left: 1rem;
    bottom: 1rem;
  }

  .floating-cta-btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .floating-cta-icon {
    font-size: 1.2rem;
  }

  .floating-cta-text span:first-child {
    display: none;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .rotating-tagline {
    transition: none;
  }
}

/* ============================================
   NEW STYLES: Form Labels, About Section, Hero Urgency, Booking
   ============================================ */

/* Hero Urgency Indicator */
.hero-urgency {
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 165, 0, 0.1));
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  color: #ffaa5c;
  font-weight: 500;
  display: inline-block;
}

/* CTA Arrow Animation */
.cta-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover .cta-arrow {
  transform: translateX(4px);
}

/* Pulse Animation for Primary CTA */
.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(74, 108, 247, 0.7);
  }
}

/* Form Labels and Groups */
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.form-label .required {
  color: #ff6b6b;
  margin-left: 2px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
}

.form-group-inline {
  display: flex;
  gap: 0.75rem;
}

.form-group-inline input {
  flex: 1;
}

/* About Section */
.about-section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.about-story,
.about-approach {
  margin-bottom: 2.5rem;
}

.about-story h3,
.about-approach h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.about-story p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

.approach-list {
  list-style: none;
  padding: 0;
}

.approach-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.approach-list li:last-child {
  border-bottom: none;
}

.approach-list li strong {
  color: var(--color-primary);
}

/* Booking Section in Contact */
.booking-section {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(162, 116, 255, 0.1));
  border: 1px solid rgba(74, 108, 247, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.booking-section h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}

.booking-section p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.btn-booking {
  width: 100%;
  justify-content: center;
}

/* ========================================
   CAL.COM BOOKING MODAL
   ======================================== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.booking-modal.active .booking-modal-content {
  transform: scale(1) translateY(0);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.15), rgba(162, 116, 255, 0.15));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-modal-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin: 0;
}

.booking-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.booking-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
}

.booking-modal-close:focus {
  outline: none;
  outline: 3px solid rgba(74, 108, 247, 0.4);
}

.booking-modal-body {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cal-embed-container {
  flex: 1;
  min-height: 550px;
  overflow: auto;
  background: var(--color-surface);
}

.cal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
  color: var(--color-text-muted);
  gap: 1rem;
}

.cal-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(74, 108, 247, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: cal-spin 1s linear infinite;
}

@keyframes cal-spin {
  to {
    transform: rotate(360deg);
  }
}

.booking-modal-fallback {
  padding: 0.75rem 1.5rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-modal-fallback a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.booking-modal-fallback a:hover {
  text-decoration: underline;
}

/* Light theme overrides for booking modal */
body.light-theme .booking-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
}

body.light-theme .booking-modal-content {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .booking-modal-header {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.1), rgba(162, 116, 255, 0.1));
  border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .booking-modal-header h2 {
  color: #1a1a2e;
}

body.light-theme .booking-modal-close {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #666;
}

body.light-theme .booking-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
}

body.light-theme .cal-embed-container {
  background: #ffffff;
}

body.light-theme .booking-modal-fallback {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.05);
}

/* Mobile adjustments for booking modal */
@media (max-width: 768px) {
  .booking-modal {
    padding: 0;
  }

  .booking-modal-content {
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
  }

  .booking-modal-header {
    padding: 1rem;
  }

  .booking-modal-header h2 {
    font-size: 1.1rem;
  }

  .cal-embed-container {
    min-height: calc(100vh - 150px);
  }
}

@media (max-width: 480px) {
  .booking-modal-header h2 {
    font-size: 1rem;
  }

  .booking-modal-close {
    width: 36px;
    height: 36px;
  }
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Contact Info Divider */
.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info h3:not(:first-child) {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile adjustments for new elements */
@media (max-width: 768px) {
  .hero-urgency {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }

  .btn-pulse {
    animation: none;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-lead {
    font-size: 1.05rem;
  }

  .form-group-inline {
    flex-direction: column;
  }

  .booking-section {
    padding: 1.25rem;
  }
}

/* ============================================
   PREMIUM UI REFINEMENTS
   ============================================ */

/* Section Padding Updates */
.hero,
.why-section,
.services-section,
.pricing-section,
.about-section,
.faq-section,
.contact-section,
section {
  padding: 60px 20px;
}

/* Card Spacing and Padding */
.why-card,
.service-card,
.pricing-card,
.step-card,
.process-card,
.faq-item {
  margin-bottom: 24px;
  padding: 28px;
}

/* Card Hover Effects */
.why-card:hover,
.service-card:hover,
.pricing-card:hover,
.step-card:hover,
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(138, 107, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Button Hover Effects */
.btn-primary:hover,
.btn-secondary:hover,
.cta-button:hover,
.nav-cta:hover,
.chat-send:hover,
button:hover[type="submit"] {
  filter: brightness(1.15);
  transition: filter 0.2s ease;
}

/* Gradient Replacements for CTA Buttons */
.btn-primary,
.cta-button,
.nav-cta.chat-send {
  background: var(--gradient-cta);
  background-image: var(--gradient-cta);
  border: none;
}

/* Popular/Featured Badge Gradient */
.pricing-badge,
.badge.popular,
.featured .pricing-badge,
.popular-badge {
  background: var(--gradient-primary);
  background-image: var(--gradient-primary);
}

/* Footer Gradient Background */
.footer,
footer {
  background: linear-gradient(to bottom, #0a0a15, #0f0f20);
}

/* Social Icons Sizing */
.social-icon,
.footer-social a,
.social-links a,
.footer .social-icon {
  width: 28px;
  height: 28px;
  margin: 0 8px;
}

.social-icon svg,
.footer-social svg,
.social-links svg {
  width: 28px;
  height: 28px;
}

