:root {
  /* Colors */
  --navy: #1f2b37;
  --tech-blue: #4f76f6;
  --white: #ffffff;
  --green: #05b602;
  --pink: #cc2fe4;
  --red: #ef4444;
  --yellow: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;

  /* Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --border: #e5e7eb;

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Effects */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg-primary: #0f1419;
  --bg-secondary: #1a2332;
  --text-primary: #e5e7eb;
  --text-secondary: #94a3b8;
  --border: #2a3747;
}

/* ==================== BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==================== LAYOUT ==================== */
section {
  padding: 100px 40px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s ease, var(--transition);
}

.navbar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--tech-blue));
  opacity: 0.6;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.visible {
  transform: translateY(0);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .navbar {
  background: rgba(15, 20, 25, 0.98);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.logo-text {
  transition: all 0.4s ease;
}

.nav-logo {
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tech-blue);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--tech-blue);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-button-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}

.theme-toggle:hover {
  transform: scale(1.1);
  border-color: var(--tech-blue);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
}

.mobile-menu-btn:active {
  transform: scale(0.95);
  background: var(--tech-blue);
  color: white;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, #e8f4f8 0%, #f5f9fc 50%, #ffffff 100%);
  padding: 120px 40px 80px;
  overflow: hidden;
}

[data-theme="dark"] .hero {
  background: radial-gradient(ellipse at 50% 50%, #0d1825 0%, #050a12 50%, #000308 100%);
}

.mesh-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 2;
}

@media (max-width: 768px) {
  .mesh-canvas {
    display: none !important;
  }

  .hero {
    position: relative;
    overflow: hidden;
  }

  /* Floating gradient orbs for mobile */
  .hero::before,
  .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
  }

  .hero::before {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--tech-blue) 0%, transparent 70%);
    top: -100px;
    left: -80px;
    animation: float-1 8s ease-in-out infinite;
  }

  .hero::after {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    animation: float-2 10s ease-in-out infinite;
  }

  /* Third floating orb via ambient-glow */
  .hero .ambient-glow::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    filter: blur(50px);
    animation: float-3 6s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes float-1 {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(80px, 120px) scale(1.2);
    }
    66% {
      transform: translate(40px, 80px) scale(1.1);
    }
  }

  @keyframes float-2 {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-60px, -100px) scale(1.15);
    }
    66% {
      transform: translate(-30px, -60px) scale(1.05);
    }
  }

  @keyframes float-3 {
    0%, 100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.5;
    }
    50% {
      transform: translate(-40px, 60px) scale(1.3);
      opacity: 0.7;
    }
  }

  /* Hero button - LARGER on mobile */
  .hero .btn-yellow {
    padding: 22px 48px !important;
    font-size: 18px !important;
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
  }
}


.ambient-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(at 30% 40%, rgba(79, 118, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 70% 60%, rgba(164, 93, 240, 0.06) 0px, transparent 50%);
  animation: ambientPulse 10s ease-in-out infinite;
  z-index: 2;
}

[data-theme="dark"] .ambient-glow {
  background: radial-gradient(at 30% 40%, rgba(79, 118, 246, 0.1) 0px, transparent 50%),
    radial-gradient(at 70% 60%, rgba(164, 93, 240, 0.06) 0px, transparent 50%);
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.9; }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(28px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

[data-theme="dark"] .hero h1 {
  color: var(--white);
}

.hero .highlight,
.highlight-text {
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}


/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  color: white;
  box-shadow: 0 4px 20px rgba(79, 118, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(79, 118, 246, 0.4);
}

.btn-yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
  font-weight: 800;
  font-size: 19px;
  padding: 20px 52px;
}

.btn-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
}

/* Unified button for cards */
.product-card .btn,
.package-card .btn,
.product-card-detailed .btn,
.custom-solution-cta .btn {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: var(--navy);
  width: 100%;
  text-align: center;
  display: block;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.product-card .btn:hover,
.package-card .btn:hover,
.product-card-detailed .btn:hover,
.custom-solution-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.5);
}

/* ==================== INTRO SECTION ==================== */
.intro-section {
  padding: 100px 40px;
  background: var(--bg-primary);
}

.intro-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intro-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(79, 118, 246, 0.1), rgba(204, 47, 228, 0.1));
  border: 2px solid var(--tech-blue);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tech-blue);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.intro-description {
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.intro-item {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}

.intro-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tech-blue);
}

.intro-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.intro-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.intro-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ==================== ROI CALCULATOR ==================== */
.calculator {
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.calculator-field {
  margin-bottom: 40px;
}

.calculator-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 16px;
}

.calculator-field input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--gray-200);
  outline: none;
  -webkit-appearance: none;
}

.calculator-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tech-blue);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(79, 118, 246, 0.4);
}

.calculator-field input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--tech-blue);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(79, 118, 246, 0.4);
  border: none;
}

.slider-value {
  text-align: center;
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--tech-blue);
}

.calculator-result {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

[data-theme="dark"] .calculator-result {
  background: linear-gradient(135deg, #3f1c1c, #5a1e1e);
}

.calculator-result h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--red);
}

.loss-amount {
  font-size: 64px;
  font-weight: 900;
  color: var(--red);
  margin: 20px 0;
}

.calculator-result p {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}

[data-theme="dark"] .calculator-result p {
  color: var(--white);
}

.solution-box {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

[data-theme="dark"] .solution-box {
  background: linear-gradient(135deg, #1a3d2e, #1f5940);
}

.solution-box h3 {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--green);
}

.solution-box .price-line {
  font-size: 18px;
  margin: 12px 0;
  font-weight: 600;
}

.solution-box .roi-highlight {
  font-size: 24px;
  font-weight: 800;
  margin: 20px 0;
}

/* ==================== PRICING - SHARED STYLES ==================== */
.roi-box {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin: 20px 0;
}

[data-theme="dark"] .roi-box {
  background: linear-gradient(135deg, #1a3d2e, #1f5940);
  border-color: #10b981;
}

.roi-box p {
  margin: 0;
  color: var(--text-primary);
}

.recommended-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(79, 118, 246, 0.3);
  white-space: nowrap;
}

/* Price "from" indicators */
.price-from {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.8;
  margin-left: 4px;
  vertical-align: middle;
}

.price-from-inline {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.75;
  margin-left: 3px;
}

.price-from-small {
  font-size: 0.7em;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-left: 2px;
  vertical-align: super;
}

[data-theme="dark"] .price-from,
[data-theme="dark"] .price-from-inline,
[data-theme="dark"] .price-from-small {
  opacity: 0.6;
}

/* Pricing note */
.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 24px 0;
  padding: 20px;
  background: rgba(79, 118, 246, 0.04);
  border-radius: 12px;
  border: none;
  text-align: center;
  line-height: 1.7;
}

/* ==================== BUNDLE INFO BOX ==================== */
.bundle-info-box {
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  margin: 60px 0 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.bundle-info-box h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.bundle-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.bundle-tier {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: var(--transition);
}

.bundle-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tech-blue);
}

.tier-number {
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  flex-shrink: 0;
}

.tier-content strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.tier-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ==================== PRICING - INDIVIDUAL PRODUCTS ==================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.product-card {
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tech-blue);
}

.product-card.recommended {
  border-color: var(--tech-blue);
  border-width: 3px;
}

.product-icon,
.product-icon-big {
  font-size: 64px;
  text-align: center;
  margin-bottom: 20px;
}

.product-card h3,
.product-card-detailed h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.product-desc,
.product-description {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.7;
  flex-grow: 1;
}

.product-pricing {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
}

.price-row.highlight {
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
}

.price-row.highlight-without-setup .amount {
  color: var(--pink) !important;
  font-weight: 700;
}

.price-row .label {
  color: var(--text-secondary);
  font-size: 14px;
}

.price-row .amount {
  color: var(--tech-blue);
  font-weight: 700;
  font-size: 16px;
}

.price-row.highlight .amount {
  font-size: 18px;
  color: var(--pink);
}

.product-features-mini {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-features-mini li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features-mini li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ==================== PRICING - PACKAGES ==================== */
.recommended-packages {
  margin-top: 80px;
  padding: 60px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.packages-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding: 0 20px;
}

.packages-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tech-blue);
}

.package-card.recommended {
  border-color: var(--tech-blue);
  border-width: 3px;
}

.package-header {
  text-align: center;
  margin-bottom: 24px;
}

.package-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.package-header h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.package-description {
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.package-includes {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.package-includes strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

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

.package-includes li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.package-pricing {
  border-top: 2px solid var(--border);
  padding-top: 20px;
}

.original-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.7;
}

.bundle-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
}

.price-highlight {
  color: var(--tech-blue);
  font-size: 18px;
  font-weight: 900;
}

.discount-badge {
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

/* ==================== CUSTOM SOLUTION SECTION ==================== */
.custom-solution-section {
  margin-top: 80px;
  padding: 60px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.custom-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.custom-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.custom-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.products-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 20px;
}

.product-card-detailed {
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-card-detailed:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tech-blue);
}

.product-card-detailed.recommended {
  border-color: var(--tech-blue);
  border-width: 3px;
}

.custom-solution-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px 0;
  border-top: 2px solid var(--border);
}

.custom-solution-cta h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.custom-solution-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.custom-solution-cta .btn {
  width: auto;
  display: inline-block;
  min-width: 300px;
}

/* ==================== PROCESS SECTION ==================== */
/* ==================== PROCESS SECTION ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tech-blue);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(79, 118, 246, 0.3);
}

.process-step h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 16px;
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee-section {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  text-align: center;
}

[data-theme="dark"] .guarantee-section {
  background: linear-gradient(135deg, #1e3a5f, #1a2e4a);
}

.guarantee-badge {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 800;
  margin-top: 32px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta {
  background: var(--bg-secondary);
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
}

.option-box {
  padding: 48px 40px;
  border-radius: var(--radius);
  border: 3px solid;
}

.option-box.bad {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-color: var(--red);
}

[data-theme="dark"] .option-box.bad {
  background: linear-gradient(135deg, #3f1c1c, #5a1e1e);
}

.option-box.good {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-color: var(--green);
}

[data-theme="dark"] .option-box.good {
  background: linear-gradient(135deg, #1a3d2e, #1f5940);
}

.option-box h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.option-box ul {
  list-style: none;
}

.option-box ul li {
  padding: 12px 0;
  font-size: 17px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.option-box.bad ul li::before {
  content: "❌";
  flex-shrink: 0;
}

.option-box.good ul li::before {
  content: "✅";
  flex-shrink: 0;
}

/* ==================== CONTACT FORM ==================== */
.contact-form {
  max-width: 600px;
  margin: 60px auto 0;
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tech-blue);
  box-shadow: 0 0 0 4px rgba(79, 118, 246, 0.1);
}

.form-consent {
  margin: 24px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

.checkbox-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  margin-top: 3px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked {
  background-color: var(--tech-blue);
  border-color: var(--tech-blue);
  box-shadow: 0 0 6px rgba(79, 118, 246, 0.4);
}

.checkbox-container input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  margin-left: 6px;
  margin-top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 100%;
}

.checkbox-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.checkbox-text a {
  color: var(--tech-blue);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

.consent-error {
  display: none;
  color: #ff5c5c;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

input#privacyConsent.error {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.4);
  border: 2px solid #ff5c5c;
}

/* ==================== TOAST ==================== */
.toast {
  position: fixed;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(24, 24, 27, 0.8);
  border: 1px solid rgba(79, 118, 246, 0.5);
  color: #e6f1ff;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(79, 118, 246, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  animation: auronPulse 3s ease-in-out infinite alternate;
}

@keyframes auronPulse {
  0% {
    box-shadow: 0 0 25px rgba(79, 118, 246, 0.3), 0 0 60px rgba(16, 185, 129, 0.25);
  }
  100% {
    box-shadow: 0 0 35px rgba(79, 118, 246, 0.6), 0 0 80px rgba(16, 185, 129, 0.4);
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-primary);
  padding: 70px 24px 50px;
  border-top: 1px solid var(--border);
  position: relative;
  text-align: center;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--tech-blue));
  opacity: 0.6;
}

.footer-content {
  max-width: 850px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 146px;
  width: auto;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 22px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-contact a {
  color: var(--tech-blue);
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal a {
  color: var(--tech-blue);
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* ==================== LEGAL PAGE ==================== */
.hero--legal {
  min-height: 38vh;
  padding: 140px 40px 80px;
  background: radial-gradient(ellipse at 50% 50%, rgba(79, 118, 246, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(204, 47, 228, 0.08) 0%, transparent 60%);
}

[data-theme="dark"] .hero--legal {
  background: radial-gradient(ellipse at 50% 50%, rgba(79, 118, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(204, 47, 228, 0.1) 0%, transparent 60%);
}

.hero--legal .hero-content h1 {
  margin-bottom: 8px;
}

.hero--legal .hero-subtitle a {
  color: var(--text-secondary);
}

.legal-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px;
}

.legal-card {
  background: var(--bg-primary);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.legal-content p,
.legal-content li {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
  margin: 8px 0;
}

.legal-subtitle {
  font-size: 18px;
  font-weight: 800;
  margin: 22px 0 8px;
  background: linear-gradient(135deg, var(--tech-blue), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: right;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
  /* Base adjustments */
  section {
    padding: 70px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .mesh-canvas {
    display: none;
  }

  /* Aurora mobil optimalizáció */
  .aurora-background {
    opacity: 0.5;
  }

  .aurora-gradient {
    filter: blur(60px);
  }

  .aurora-1 {
    width: 200%;
    height: 200%;
  }

  .aurora-2 {
    width: 200%;
    height: 200%;
  }

  .aurora-3 {
    width: 180%;
    height: 180%;
  }

  /* Navigation */
  .nav-container {
    padding: 20px 20px;
  }

  .nav-menu {
    position: fixed;
    top: 48px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: var(--bg-primary);
    flex-direction: column;
    padding: 50px 40px;
    gap: 28px;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border);
  }

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

  .mobile-menu-btn {
    display: block;
  }

  .theme-toggle {
    margin: 0;
  }

  /* Intro */
  .intro-section {
    padding: 70px 20px;
  }

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

  /* Calculator */
  .calculator {
    padding: 32px 20px;
  }

  .calculator-result {
    padding: 24px 16px;
    margin: 24px 0;
  }

  .calculator-result h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .loss-amount {
    font-size: 42px;
    margin: 12px 0;
  }

  .calculator-result p {
    font-size: 14px;
    line-height: 1.4;
  }

  .solution-box {
    padding: 24px 16px;
    text-align: left;
  }

  .solution-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
  }

  .solution-box .price-line {
    font-size: 15px;
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  }

  .solution-box .price-line:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
  }

  .solution-box .roi-highlight {
    font-size: 16px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.3);
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
  }

  [data-theme="dark"] .solution-box .roi-highlight {
    background: rgba(0, 0, 0, 0.2);
  }

  /* Pricing - Products */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  /* Bundle info box mobile */
  .bundle-info-box {
    padding: 32px 20px;
    margin: 40px 0 30px;
  }

  .bundle-info-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .bundle-tiers {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bundle-tier {
    padding: 20px;
  }

  .tier-number {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .tier-content strong {
    font-size: 16px;
  }

  .tier-content p {
    font-size: 14px;
  }

  .product-card {
    padding: 28px 20px;
  }

  .product-icon,
  .product-icon-big {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .product-card h3,
  .product-card-detailed h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .product-desc,
  .product-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .product-pricing {
    padding: 14px;
    margin-bottom: 16px;
  }

  .price-row {
    font-size: 14px;
  }

  .price-row .amount {
    font-size: 15px;
  }

  .price-row.highlight .amount {
    font-size: 17px;
  }

  .product-features-mini li {
    font-size: 13px;
    padding: 5px 0;
  }

  /* Pricing - Packages - KRITIKUS FIX */
  .recommended-packages {
    padding: 40px 0;
    margin-top: 60px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }

  .packages-title {
    font-size: 24px;
    padding: 0 20px;
    margin-bottom: 12px;
  }

  .packages-subtitle {
    font-size: 15px;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }

  .package-card {
    padding: 28px 20px;
  }

  .package-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .package-header h4 {
    font-size: 22px;
  }

  .package-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .package-includes {
    padding: 16px;
    margin-bottom: 20px;
  }

  .package-includes strong {
    font-size: 13px;
  }

  .package-includes li {
    font-size: 14px;
    padding: 6px 0;
  }

  .package-pricing {
    padding-top: 16px;
  }

  .original-price {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .bundle-price {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .price-highlight {
    font-size: 16px;
  }

  .discount-badge {
    font-size: 13px;
    padding: 6px 14px;
  }

  .roi-box {
    padding: 14px;
    margin: 16px 0 !important;
  }

  .roi-box p:first-child {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .roi-box p:last-child {
    font-size: 18px !important;
  }

  .recommended-badge {
    top: -14px;
    font-size: 11px;
    padding: 6px 16px;
  }

  /* Custom solution */
  .custom-solution-section {
    margin-top: 40px;
    padding: 40px 0;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }

  .custom-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .custom-header h2 {
    font-size: 24px;
  }

  .custom-header p {
    font-size: 16px;
  }

  .products-detailed-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 0 16px;
  }

  .product-card-detailed {
    padding: 32px 24px 36px;
  }

  .custom-solution-cta {
    margin-top: 40px;
    padding: 32px 20px 0;
  }

  .custom-solution-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .custom-solution-cta p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  /* Buttons - unified mobile size */
  .product-card .btn,
  .package-card .btn,
  .product-card-detailed .btn,
  .custom-solution-cta .btn {
    width: 100% !important;
    padding: 18px 24px !important;
    font-size: 18px !important;
    margin-top: 20px !important;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step {
    padding: 32px 24px;
  }

  .step-number {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .process-step p {
    font-size: 15px;
  }

  /* Options */
  .options-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .option-box {
    padding: 32px 24px;
  }

  /* Contact form */
  .contact-form {
    padding: 32px 24px;
  }

  /* Toast */
  .toast {
    bottom: 10%;
    max-width: 90%;
    font-size: 14px;
    padding: 12px 18px;
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 40px 20px;
  }

  /* Legal */
  .hero--legal {
    padding: 120px 20px 60px;
  }

  .legal-container {
    padding: 40px 20px;
  }

  .legal-card {
    padding: 24px 18px;
  }

  /* Typography adjustments */
  .section-title {
    font-size: 28px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .price-from {
    font-size: 0.55em;
  }

  .price-from-inline {
    font-size: 0.8em;
  }

  .pricing-note {
    font-size: 13px;
    padding: 18px;
    margin: 20px 0 8px;
    line-height: 1.7;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .products-grid,
  .packages-grid,
  .products-detailed-grid {
    padding: 0 16px;
  }

  .product-card,
  .package-card,
  .product-card-detailed {
    padding: 24px 16px;
  }

  .product-card h3,
  .package-header h4,
  .product-card-detailed h3 {
    font-size: 19px;
  }

  .product-desc,
  .package-description,
  .product-description {
    font-size: 13px;
  }

  .calculator {
    padding: 24px 16px;
  }

  .loss-amount {
    font-size: 36px;
    word-break: break-all;
  }

  .solution-box {
    padding: 20px 12px;
  }

  .solution-box .price-line {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .solution-box .roi-highlight {
    font-size: 14px;
    padding: 12px;
  }

  .guarantee-badge {
    padding: 12px 20px;
    font-size: 18px;
  }

  .btn-yellow {
    padding: 20px 40px;
    font-size: 17px;
  }
}

@media (max-width: 375px) {
  .btn-yellow {
    padding: 18px 32px;
    font-size: 16px;
  }

  .roi-highlight {
    font-size: 20px !important;
    line-height: 1.4;
  }

  .calculator-field label {
    font-size: 14px !important;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .products-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* ==================== NEUMORPHIC ACCORDION CARDS ==================== */
  
  /* Grid spacing */
  .products-detailed-grid,
  .packages-grid {
    gap: 28px !important;
  }
  
  /* ================== BASE CARD ================== */
  .product-card-detailed,
  .package-card {
    position: relative;
    overflow: visible !important;
    padding: 28px 24px 32px !important;
    padding-top: 70px !important;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* ================== NEUMORPHIC TOGGLE BUTTON ================== */
  .product-card-detailed::before,
  .package-card::before {
    content: '+';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: 18px;
    box-shadow: 
      6px 6px 12px rgba(0, 0, 0, 0.08),
      -6px -6px 12px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  /* Dark mode neumorphic adjustments */
  [data-theme="dark"] .product-card-detailed::before,
  [data-theme="dark"] .package-card::before {
    box-shadow: 
      4px 4px 10px rgba(0, 0, 0, 0.3),
      -4px -4px 10px rgba(255, 255, 255, 0.03),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
  
  /* Open state toggle - PRESSED/INSET effect */
  .product-card-detailed.accordion-open::before,
  .package-card.accordion-open::before {
    content: '−';
    background: var(--bg-tertiary);
    color: var(--tech-blue);
    box-shadow: 
      inset 4px 4px 8px rgba(0, 0, 0, 0.15),
      inset -2px -2px 6px rgba(255, 255, 255, 0.05);
  }
  
  [data-theme="dark"] .product-card-detailed.accordion-open::before,
  [data-theme="dark"] .package-card.accordion-open::before {
    box-shadow: 
      inset 4px 4px 10px rgba(0, 0, 0, 0.4),
      inset -2px -2px 6px rgba(255, 255, 255, 0.02);
  }
  
  /* Remove any ::after pseudo elements */
  .product-card-detailed::after,
  .package-card::after {
    display: none !important;
  }
  
  /* ================== CARD HEADER ================== */
  .product-card-detailed .product-icon-big {
    text-align: center;
    font-size: 42px !important;
    margin-bottom: 12px !important;
  }
  
  .product-card-detailed h3 {
    text-align: center;
    font-size: 19px !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    line-height: 1.3;
  }
  
  .package-card .package-header {
    text-align: center;
    padding: 0 !important;
    margin-bottom: 12px !important;
  }
  
  .package-card .package-icon {
    font-size: 36px !important;
    margin-bottom: 6px !important;
  }
  
  .package-card .package-header h4 {
    font-size: 17px !important;
    margin: 0 !important;
  }
  
  /* ================== RECOMMENDED BADGE ================== */
  .product-card-detailed .recommended-badge,
  .package-card .recommended-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    font-size: 9px;
    padding: 4px 12px;
    letter-spacing: 0.5px;
  }
  
  /* ================== COLLAPSED CONTENT (HIDDEN) ================== */
  .product-card-detailed .product-description,
  .product-card-detailed .pricing-note,
  .product-card-detailed .product-pricing,
  .package-card .package-content,
  .package-card .package-description,
  .package-card .pricing-note,
  .package-card .package-pricing {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    transition: 
      max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s ease,
      margin 0.3s ease,
      padding 0.3s ease;
  }
  
  /* Base styles for content elements (always applied for smooth animation) */
  .product-card-detailed .product-description,
  .package-card .package-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
  }
  
  .product-card-detailed .pricing-note,
  .package-card .pricing-note {
    font-size: 14px;
    line-height: 1.75;
    font-style: normal;
    background: rgba(79, 118, 246, 0.06);
    border-radius: 12px;
  }
  
  .product-card-detailed .product-pricing,
  .package-card .package-pricing {
    border-top: 1px solid var(--border);
  }
  
  /* ================== OPEN STATE - CONTENT VISIBLE ================== */
  .product-card-detailed.accordion-open .product-description {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 16px !important;
  }
  
  .product-card-detailed.accordion-open .pricing-note,
  .package-card.accordion-open .pricing-note {
    max-height: 200px;
    opacity: 1;
    margin: 20px 0 24px !important;
    padding: 18px 16px !important;
  }
  
  .product-card-detailed.accordion-open .product-pricing {
    max-height: 120px;
    opacity: 1;
    padding: 12px 0 0 !important;
  }
  
  .product-card-detailed.accordion-open .product-pricing .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  /* Price row colors - base state (not just open) for smooth animation */
  .product-card-detailed .product-pricing .price-row .label,
  .package-card .package-pricing .price-row .label {
    font-size: 13px;
    color: var(--text-secondary);
  }
  
  .product-card-detailed .product-pricing .price-row .amount,
  .package-card .package-pricing .price-row .amount {
    font-size: 15px;
    font-weight: 600;
    color: var(--pink);
  }
  
  .product-card-detailed .product-pricing .price-row.highlight .amount,
  .package-card .package-pricing .price-row.highlight .amount {
    color: var(--tech-blue);
    font-weight: 700;
  }
  
  /* Package open state */
  .package-card.accordion-open .package-content {
    max-height: 600px;
    opacity: 1;
  }
  
  .package-card.accordion-open .package-description {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 16px !important;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
  }
  
  .package-card.accordion-open .pricing-note {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 16px !important;
    padding: 14px !important;
    background: rgba(79, 118, 246, 0.06);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.7;
  }
  
  .package-card.accordion-open .package-pricing {
    max-height: 120px;
    opacity: 1;
    padding-top: 12px !important;
    border-top: 1px solid var(--border);
  }
  
  .package-card.accordion-open .package-pricing .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  /* ================== OPEN CARD STYLING ================== */
  .product-card-detailed.accordion-open,
  .package-card.accordion-open {
    border-color: rgba(79, 118, 246, 0.3);
    box-shadow: 0 8px 24px rgba(79, 118, 246, 0.1);
  }
  
  /* ================== COLLAPSED - CLICKABLE ================== */
  .product-card-detailed:not(.accordion-open),
  .package-card:not(.accordion-open) {
    cursor: pointer;
  }
  
  .product-card-detailed:not(.accordion-open):active,
  .package-card:not(.accordion-open):active {
    transform: scale(0.98);
  }
  
  /* ================== REMOVE ALL CTA BUTTONS ================== */
  .product-card-detailed > .btn,
  .package-card > .btn,
  .package-card .package-content > .btn {
    display: none !important;
  }
}