/*
 * 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.12);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.1);
  --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;
}

/* Critical Mobile Fix: Prevent horizontal overflow at root level */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* Prevent iOS bounce/overscroll */
  overscroll-behavior-x: none;
  scroll-snap-type: y mandatory;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Mobile optimizations */
  max-width: 100vw;
  position: relative;


}

section {
  scroll-snap-align: start;
  scroll-margin-top: 80px;
  /* Offset for sticky header */
}

/* Service Tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.service-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: var(--color-text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-light);
}

.service-tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(59, 91, 219, 0.3);
}

.horizontal-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0 2rem;
  cursor: grab;
  scroll-behavior: smooth;
}

/* Hide scrollbar - Chrome/Safari/Edge */
.horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-container.active {
  cursor: grabbing;
  scroll-behavior: auto;
}

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

/* Navbar Base Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.navbar-scrolled {
  background: rgba(8, 10, 15, 0.85);
  /* Slightly more transparent than default */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* 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.6rem;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg,
      var(--color-primary),
      var(--color-secondary),
      var(--color-accent),
      var(--color-secondary),
      var(--color-primary));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  animation: logo-shimmer 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.navbar .logo:hover {
  transform: scale(1.02);
}

@keyframes logo-shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.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;
  -webkit-user-select: none;
  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;
  -webkit-mask-image: linear-gradient(0deg, #fff, transparent);
  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;
  -webkit-mask-image: linear-gradient(0deg, #fff, transparent);
  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;
}

/* 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;
  -webkit-backdrop-filter: blur(20px);
  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;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 5vh, 4rem) clamp(1rem, 5vw, 2rem) clamp(2rem, 5vh, 4rem);
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* 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 1 500px;
  z-index: 2;
  max-width: 600px;
  pointer-events: auto;
}

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

.hero-image-rotator {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}



.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.05) rotate(2deg);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  opacity: 0;
  filter: blur(4px);
  transition:
    opacity 4s cubic-bezier(0.23, 1, 0.32, 1),
    transform 4s cubic-bezier(0.23, 1, 0.32, 1),
    filter 4s cubic-bezier(0.23, 1, 0.32, 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) rotate(0deg);
  filter: blur(0);
  z-index: 1;
}

.hero-slide.fade-out {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.95) rotate(-2deg);
  filter: blur(4px);
  z-index: 0;
}

/* Hero Connector Image - Zoom in more to fill properly */
.hero-slide[src*="hero-connector"] {
  transform: translate(-50%, -50%) scale(1.4) rotate(2deg);
}

.hero-slide[src*="hero-connector"].active {
  transform: translate(-50%, -50%) scale(1.3) rotate(0deg);
}

.hero-slide[src*="hero-connector"].fade-out {
  transform: translate(-50%, -50%) scale(1.25) rotate(-2deg);
}

.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.3;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.2rem;
  overflow: visible;
}

.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;
  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.75rem;
}

.hero-highlights li .icon {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.hero-highlights li .icon--sm {
  width: 16px;
  height: 16px;
}

/* ============================================
   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;
}

/* Glass icon containers used in cards/headers */
.glass-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

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

.glass-icon.small {
  width: 44px;
  height: 44px;
}

.glass-icon.animated {
  transition: transform 0.3s ease;
}

.glass-icon.animated:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

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

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

/* Decorative hero icons (non-interactive) */
.hero .decor-icon {
  position: absolute;
  z-index: 1;
  /* below content (z=2), above bg (z=0) */
  pointer-events: none;
  opacity: 0.9;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.hero .decor-star {
  top: clamp(64px, 8vh, 96px);
  left: clamp(8px, 2vw, 24px);
  width: clamp(100px, 12vw, 180px);
  height: clamp(100px, 12vw, 180px);
  color: rgba(255, 255, 255, 0.9);
}

.hero .decor-triangle {
  top: clamp(240px, 28vh, 320px);
  left: clamp(24px, 3vw, 40px);
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .hero .decor-star {
    width: 120px;
    height: 120px;
    opacity: 0.75;
  }

  .hero .decor-triangle {
    width: 96px;
    height: 96px;
    opacity: 0.7;
    top: auto;
    bottom: 10%;
  }
}

@media (max-width: 480px) {
  .hero .decor-star {
    width: 88px;
    height: 88px;
    opacity: 0.6;
  }

  .hero .decor-triangle {
    width: 72px;
    height: 72px;
    opacity: 0.6;
  }
}

/* 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(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  -webkit-backdrop-filter: blur(20px);
  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;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.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 Section - Clean & Simple
   ============================================ */
.services {
  padding: 6rem 2rem;
  background: var(--color-bg);
}

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

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

.services .section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(74, 108, 247, 0.1);
  border: 1px solid rgba(74, 108, 247, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.services .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.services .section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Service Card - Clean Design */
.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(74, 108, 247, 0.3);
  transform: translateY(-4px);
}

/* Service Icon */
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.15), rgba(162, 116, 255, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

/* Service Title */
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

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

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* Service Price */
.service-price {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(74, 108, 247, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Services CTA */
.services-cta {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-cta p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services {
    padding: 4rem 1.5rem;
  }
  
  .services .section-header h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Premium Services Section - Enhanced (Legacy)
   ============================================ */
.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(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

/* Standard Services Grid */
.services-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* ============================================
   Service Card Premium - Ultra Modern Upgrade
   ============================================ */

/* Service Card - Base with Premium Depth */
.service-card-premium {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 50%,
      rgba(74, 108, 247, 0.03) 100%);
  border-radius: 28px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.07),
    0 10px 24px rgba(0, 0, 0, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 40px rgba(74, 108, 247, 0.02);
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Top border accent line */
.service-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(74, 108, 247, 0.4),
      rgba(162, 116, 255, 0.3),
      transparent);
  opacity: 0.7;
  transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}

.service-card-premium:hover::after {
  left: 10%;
  right: 10%;
  opacity: 1;
}

/* Premium 3D hover effect - Clean & Sophisticated */
.service-card-premium:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.1),
    0 32px 64px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(74, 108, 247, 0.25);
}

/* ============================================
   Featured Card - Premium Tier with Elegant Border
   ============================================ */
.service-card-premium.featured {
  background: linear-gradient(145deg,
      rgba(74, 108, 247, 0.08) 0%,
      rgba(162, 116, 255, 0.05) 50%,
      rgba(100, 222, 223, 0.03) 100%);
  border: 1px solid rgba(74, 108, 247, 0.25);
  padding: 2.5rem;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

/* Elegant gradient border - static */
.service-card-premium.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 29px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(74, 108, 247, 0.35) 0%,
      rgba(162, 116, 255, 0.25) 50%,
      rgba(100, 222, 223, 0.2) 100%);
  -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;
  z-index: -1;
  pointer-events: none;
}

/* Animated gradient border for featured cards */
.service-card-premium.featured .card-glow-border {
  display: none;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Inner glow effect */
.service-card-premium.featured::before {
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(74, 108, 247, 0.06) 40%,
      rgba(162, 116, 255, 0.1) 50%,
      rgba(74, 108, 247, 0.06) 60%,
      transparent 100%);
}

/* Premium hover state for featured - Clean elevation */
.service-card-premium.featured:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(74, 108, 247, 0.35);
}

.service-card-premium.featured:hover::after {
  background-size: 200% 200%;
}

/* ============================================
   Featured Badge - Premium Solid Style
   ============================================ */
.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg,
      rgba(74, 108, 247, 1) 0%,
      rgba(162, 116, 255, 1) 100%);
  border-radius: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow:
    0 2px 8px rgba(74, 108, 247, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-badge:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow:
    0 4px 12px rgba(74, 108, 247, 0.35),
    0 6px 20px rgba(0, 0, 0, 0.18);
}

.featured-badge .badge-icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: none;
}

/* Hot Badge - Fire Theme - Solid Style */
.featured-badge.hot {
  background: linear-gradient(135deg,
      #ff6b6b 0%,
      #ff8c42 50%,
      #ffa500 100%);
  box-shadow:
    0 2px 8px rgba(255, 107, 107, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.15);
}

.featured-badge.hot .badge-icon {
  fill: #fff;
}

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

/* ============================================
   Glass Icon - Premium Crystal Style
   ============================================ */
.glass-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.glass-icon.large {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.glass-icon.animated {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s ease;
}

/* Static icon - scales on hover only */
.glass-icon.animated svg {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Pause animation on hover for intentional interaction */
.service-card-premium:hover .glass-icon.animated svg {
  transform: scale(1.08);
}

.glass-icon svg {
  width: 28px;
  height: 28px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

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

/* Premium hover effect - clean scale, no glow */
.service-card-premium:hover .glass-icon {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.service-card-premium:hover .glass-icon svg {
  transform: scale(1.05);
}

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

/* ============================================
   Service Title - Premium Typography
   ============================================ */
.service-title-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.service-card-premium:hover .service-title-wrap h3 {
  background: linear-gradient(90deg, var(--color-text-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card-premium.featured .service-title-wrap h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

/* ============================================
   Service Meta - Premium Styling
   ============================================ */
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.service-metric {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: rgba(100, 222, 223, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(100, 222, 223, 0.15);
  transition: all 0.3s ease;
}

.service-card-premium:hover .service-metric {
  background: rgba(100, 222, 223, 0.12);
  border-color: rgba(100, 222, 223, 0.25);
  box-shadow: 0 0 12px rgba(100, 222, 223, 0.1);
}

.service-metric .metric-icon {
  width: 15px;
  height: 15px;
  margin-right: 0.4rem;
  color: var(--color-accent);
}

.service-starting {
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.18), rgba(162, 116, 255, 0.12));
  border-radius: 10px;
  color: var(--color-primary);
  font-weight: 700;
  border: 1px solid rgba(74, 108, 247, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.service-card-premium:hover .service-starting {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.25), rgba(162, 116, 255, 0.18));
  border-color: rgba(74, 108, 247, 0.35);
  box-shadow: 0 0 15px rgba(74, 108, 247, 0.15);
}

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

/* ============================================
   Service Features - Premium List with Staggered Reveal
   ============================================ */
.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  /* Staggered reveal animation */
  opacity: 0;
  transform: translateX(-15px);
  animation: featureReveal 0.5s ease forwards;
}

/* Staggered delays for professional reveal effect */
.service-features li:nth-child(1) { animation-delay: 0.1s; }
.service-features li:nth-child(2) { animation-delay: 0.2s; }
.service-features li:nth-child(3) { animation-delay: 0.3s; }
.service-features li:nth-child(4) { animation-delay: 0.4s; }
.service-features li:nth-child(5) { animation-delay: 0.5s; }
.service-features li:nth-child(6) { animation-delay: 0.6s; }

@keyframes featureReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Re-trigger animation on card hover for engagement */
.service-card-premium:hover .service-features li {
  animation: featureRevealHover 0.4s ease forwards;
}

.service-card-premium:hover .service-features li:nth-child(1) { animation-delay: 0s; }
.service-card-premium:hover .service-features li:nth-child(2) { animation-delay: 0.05s; }
.service-card-premium:hover .service-features li:nth-child(3) { animation-delay: 0.1s; }
.service-card-premium:hover .service-features li:nth-child(4) { animation-delay: 0.15s; }

@keyframes featureRevealHover {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-features li:hover {
  color: var(--color-text-light);
  transform: translateX(4px);
}

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

.service-features li:hover .check-icon {
  transform: scale(1.1);
}

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

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

/* Gradient line accents */
.service-results::before,
.service-results::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(74, 108, 247, 0.3),
      transparent);
}

.service-results::before {
  top: 0;
}

.service-results::after {
  bottom: 0;
}

.result-item {
  text-align: center;
  padding: 0.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.result-item:hover {
  background: rgba(74, 108, 247, 0.05);
}

.result-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg,
      var(--color-primary) 0%,
      var(--color-accent) 50%,
      var(--color-secondary) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  transition: background-position 0.5s ease, transform 0.3s ease;
}

/* Final count completion effect */
.result-number.count-complete {
  animation: countComplete 0.4s ease forwards;
}

@keyframes countComplete {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.result-item:hover .result-number {
  background-position: 100% 50%;
}

.result-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* ============================================
   Pricing Toggle - Premium Interactive
   ============================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(74, 108, 247, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.pricing-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(74, 108, 247, 0.06),
      transparent);
  transform: translateX(-100%);
  transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle:hover::before {
  transform: translateX(100%);
}

.pricing-toggle:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(74, 108, 247, 0.08));
  border-color: rgba(74, 108, 247, 0.35);
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.1);
}

.toggle-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  color: var(--color-primary);
}

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

/* ============================================
   Pricing Dropdown - Premium Styling
   ============================================ */
.pricing-dropdown {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.4s ease,
    margin 0.4s ease;
  margin-top: 0;
}

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

/* ============================================
   Pricing Tiers - Premium Cards
   ============================================ */
.pricing-tier {
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(74, 108, 247, 0.02));
  border-radius: 14px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

/* Hover shine effect - Smooth and slow */
.pricing-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transition: left 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-tier:hover::before {
  left: 150%;
}

.pricing-tier:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(74, 108, 247, 0.04));
  border-color: rgba(74, 108, 247, 0.2);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Pricing Tier */
.pricing-tier.featured {
  border-color: rgba(74, 108, 247, 0.35);
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.12), rgba(162, 116, 255, 0.08));
  box-shadow:
    0 4px 16px rgba(74, 108, 247, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-tier.featured::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
  border-radius: 2px;
}

.pricing-tier.featured:hover {
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.16), rgba(162, 116, 255, 0.1));
  box-shadow:
    0 6px 24px rgba(74, 108, 247, 0.2),
    0 0 30px rgba(74, 108, 247, 0.05);
}

/* ============================================
   Enhanced Pricing Tier Selection States
   ============================================ */
.pricing-tier.selected {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(100, 222, 223, 0.15), rgba(74, 108, 247, 0.1));
  box-shadow: 
    0 0 25px rgba(100, 222, 223, 0.2),
    0 8px 24px rgba(100, 222, 223, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateX(6px) scale(1.01);
}

.pricing-tier.selected::before {
  left: 150%;
}

.pricing-tier.selected::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-primary), transparent);
  border-radius: 2px;
  opacity: 1;
}

/* Selected tier checkmark indicator */
.pricing-tier.selected .tier-name::before {
  content: '✓ ';
  color: var(--color-accent);
  font-weight: 700;
  animation: checkPop 0.3s ease;
}

@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

.pricing-tier.selected .tier-name {
  background: linear-gradient(90deg, var(--color-accent), var(--color-text-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-tier.selected .tier-price {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cursor pointer for selectable tiers */
.pricing-tier {
  cursor: pointer;
}

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

.tier-name {
  font-weight: 700;
  color: var(--color-text-light);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.pricing-tier.featured .tier-name {
  background: linear-gradient(90deg, var(--color-text-light), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tier-price {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tier-price small {
  font-size: 0.6em;
  font-weight: 500;
  opacity: 0.9;
}

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

/* ============================================
   Service CTA Buttons - Premium Crystal Glass
   ============================================ */
.service-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  text-align: center;
  display: block;
  position: relative;
}

.service-cta.btn-primary {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(74, 108, 247, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Crystal refraction highlight */
.service-cta.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}

/* Inner crystal edge */
.service-cta.btn-primary::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.service-cta.btn-primary:hover {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(74, 108, 247, 0.12) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.service-cta.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Secondary Button - Crystal Glass */
.btn-secondary {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Crystal refraction highlight */
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 100%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-secondary:hover {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(74, 108, 247, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* 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;
  -webkit-backdrop-filter: blur(20px);
  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);
  -webkit-backdrop-filter: blur(10px);
  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;
  -webkit-backdrop-filter: blur(20px);
  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;
  -webkit-backdrop-filter: blur(15px);
  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;
  -webkit-backdrop-filter: blur(20px);
  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.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.step-checklist .check,
.step-checklist .check-icon {
  color: var(--color-accent);
  font-weight: 600;
  flex-shrink: 0;
}

.step-checklist .check-icon {
  width: 16px;
  height: 16px;
}

/* 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;
  -webkit-backdrop-filter: blur(20px);
  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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -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;
  -webkit-backdrop-filter: blur(20px);
  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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -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;
  display: flex;
  align-items: center;
}

.lead-magnet-list li .check-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.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);
  -webkit-backdrop-filter: blur(10px);
  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));
  -webkit-backdrop-filter: blur(10px);
  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);
  -webkit-backdrop-filter: blur(20px);
  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);
  display: flex;
  align-items: center;
}

.mockup-item .mockup-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -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);
  -webkit-backdrop-filter: blur(15px);
  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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -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);
  -webkit-backdrop-filter: blur(10px);
  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));
  -webkit-backdrop-filter: blur(10px);
  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);
  -webkit-backdrop-filter: blur(20px);
  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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -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(90deg,
      var(--color-primary),
      var(--color-secondary),
      var(--color-accent),
      var(--color-secondary),
      var(--color-primary));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logo-shimmer 6s ease-in-out infinite;
  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);
  -webkit-backdrop-filter: blur(8px);
  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);
  -webkit-backdrop-filter: blur(40px);
  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);
  -webkit-backdrop-filter: blur(10px);
  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;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -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);
  -webkit-backdrop-filter: blur(10px);
  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);
  -webkit-backdrop-filter: blur(20px);
  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);
    -webkit-backdrop-filter: blur(10px);
    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: 0;
    /* Fix for Firefox min-height: auto issue */
  }

  .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-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-urgency .urgency-icon {
  width: 16px;
  height: 16px;
  fill: #ff6b6b;
  stroke: none;
  flex-shrink: 0;
}

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

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

/* Premium CTA Button - Subtle Border Shimmer */
.btn-pulse {
  position: relative;
  overflow: hidden;
}

.btn-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent);
  transition: none;
  animation: ctaShimmer 4s ease-in-out infinite;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

/* 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);
  -webkit-backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  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::before {
    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 */
.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;
}

/* Chat Form Layout */
.chat-form {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px;
  background: var(--color-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input-wrapper {
  flex: 1;
  min-width: 0;
}

#chat-input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  /* Right padding for send button */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  resize: none;
  max-height: 100px;
  outline: none;
  transition: border-color 0.3s ease;
}

#chat-input:focus {
  border-color: var(--color-primary);
}

.chat-send {
  position: absolute;
  right: 12px;
  bottom: 0;
  top: 0;
  margin: auto;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
  color: white;
  padding: 0;
}

.chat-send .send-txt-wrapper {
  display: none !important;
}

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #444;
}

.chat-send svg {
  width: 18px;
  height: 18px;
  transform: translateX(2px);
  /* Optical alignment */
}

.chat-send:not(:disabled):hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.4);
}

/* Message Actions (Thumbs Up/Down, Copy) */
.message-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  opacity: 0.6;
  padding-left: 2px;
}

.message-actions button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.message-actions button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.message-actions button svg {
  width: 14px;
  height: 14px;
}

.message-actions button.active {
  color: var(--color-primary);
  background: rgba(74, 108, 247, 0.1);
  border-color: rgba(74, 108, 247, 0.3);
}

/* Navbar CTA Button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
}

.nav-cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* Chat Send Button (Icon Only) */
.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.chat-send-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.5);
}

.chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #444;
}

.chat-send-btn svg {
  width: 18px;
  height: 18px;
  transform: translateX(1px);
}

/* ============================================
   RESPONSIVE STYLES
   Full compatibility for all devices
   ============================================ */

/* Small Laptops / ASUS Tablet Laptops (1366px and below) */
@media screen and (max-width: 1366px) {
  .hero {
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(2.5rem, 4vh, 3.5rem) clamp(1rem, 4vw, 1.5rem) clamp(2rem, 4vh, 3rem);
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-content {
    flex: 1 1 400px;
    min-width: 0;
  }

  .hero-image {
    flex: 1 1 350px;
    max-width: 450px;
  }

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

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

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

  .navbar {
    padding: 0.875rem 1.5rem;
  }

  .nav-cta-btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  /* Service cards - ensure 2 columns */
  .services-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets and 2-in-1 Devices (1024px and below) */
@media screen and (max-width: 1024px) {
  .hero {
    gap: 1.5rem;
    padding: 2.5rem 1.25rem 2rem;
  }

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

  .hero-content {
    flex: 1 1 320px;
  }

  .hero-image {
    flex: 1 1 280px;
    max-width: 350px;
  }

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

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

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

  .hero-highlights li {
    font-size: 0.95rem;
  }

  /* Navbar adjustments */
  .navbar {
    padding: 0.75rem 1.25rem;
  }

  .navbar ul {
    gap: 1.5rem;
  }

  .nav-cta-btn span {
    display: none;
  }

  .nav-cta-btn svg {
    margin: 0;
  }

  /* Grid adjustments - 2 columns for tablets */
  .services-featured-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .step-card {
    grid-template-columns: auto 1fr auto;
    padding: 1.75rem;
  }

  /* About section */
  .about-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  /* Contact adjustments */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer grid */
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  /* Section padding */
  section {
    padding: 50px 16px;
  }
}

/* Tablet and below (768px) */
@media screen and (max-width: 768px) {

  /* Hero Section - Stack vertically */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 70px;
    min-height: 0;
    gap: 1.5rem;
  }

  .hero-content {
    flex: 1 1 auto;
    max-width: 100%;
    order: 1;
  }

  .hero-image {
    flex: 1 1 auto;
    max-width: 280px;
    order: 2;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

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

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

  .hero-highlights {
    text-align: left;
    padding: 0 1rem;
  }

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

  /* Navbar Mobile */
  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar .logo {
    font-size: 1rem;
  }

  /* Hero Image Rotator */
  .hero-image-rotator {
    width: clamp(200px, 60vw, 280px);
    height: clamp(200px, 60vw, 280px);
  }

  /* CTA Buttons */
  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .cta-group .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Section headings */
  .section-heading {
    font-size: 2rem;
  }

  /* Cards grid */
  .services-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Mobile phones (480px and below) */
@media screen and (max-width: 480px) {
  .hero {
    padding: 1.5rem 0.75rem;
    margin-top: 60px;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

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

  .hero-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .hero-image {
    max-width: 220px;
  }

  .hero-image-rotator {
    width: clamp(180px, 55vw, 220px);
    height: clamp(180px, 55vw, 220px);
  }

  .hero-highlights li {
    font-size: 0.85rem;
    padding: 0.35rem 0;
  }

  /* Navbar */
  .navbar {
    padding: 0.5rem 0.75rem;
  }

  .navbar .logo {
    font-size: 0.9rem;
  }

  .nav-cta-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  /* Section headings */
  .section-heading {
    font-size: 1.75rem;
  }

  .section-subheading {
    font-size: 0.9rem;
  }
}

/* Small phones like iPhone SE (375px and below) */
@media screen and (max-width: 375px) {
  .hero {
    padding: 1rem 0.5rem;
    margin-top: 55px;
  }

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

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

  .hero-image {
    max-width: 180px;
  }

  .hero-image-rotator {
    width: 180px;
    height: 180px;
  }

  .navbar .logo {
    font-size: 0.85rem;
  }
}

/* Ensure touch targets are large enough */
@media (hover: none) and (pointer: coarse) {

  .btn,
  .nav-link,
  .nav-cta-btn,
  button {
    min-height: 44px;
    min-width: 44px;
  }

  .hero-highlights li {
    padding: 0.6rem 0;
  }
}

/* Landscape orientation on phones */
@media screen and (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: 0;
    padding: 1rem;
    flex-direction: row;
    margin-top: 50px;
  }

  .hero-content {
    flex: 1 1 50%;
    text-align: left;
  }

  .hero-image {
    flex: 1 1 40%;
    max-width: 200px;
  }

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

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

/* Process Timeline - Horizontal Scroll */
.process-timeline-premium {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  /* Ensure it takes full width/safe width */
  width: 100%;
}

/* Hide scrollbar - Chrome/Safari/Edge */
.process-timeline-premium::-webkit-scrollbar {
  display: none;
}

.process-timeline-premium:active {
  cursor: grabbing;
}

.process-step-premium {
  flex: 0 0 350px;
  /* Fixed width for cards */
  scroll-snap-align: center;
  position: relative;
  margin-bottom: 0 !important;
  /* Override vertical spacing */
}

/* Adjust step card for card-like appearance in slider */
.process-step-premium .step-card {
  height: 100%;
}

/* SVG Defs Container - Hidden */
.svg-defs-container {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}