/* CSS Variables & Reset */
:root {
  --black: #060606;
  --white: #fcfaf5;
  --accent: #ff4000;
  /* Volt Green changed to Orange */
  --accent-soft: rgba(255, 64, 0, 0.1);
  --accent2: #ff4000;
  /* Teal changed to Orange */
  --gray: #121212;
  --gray2: #1e1e1e;
  --gray3: #2a2a2a;
  --text-muted: #999;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --surface: #0b0f17;
  --card: #0f141f;
  --soft: #8fa3b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 4%;
  /* Wide alignment to corners */
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  /* GLASS EFFECT */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Stealth edge */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.desktop-logo {
  display: block !important;
}

.mobile-logo {
  display: none !important;
}

.main-logo {
  height: 60px;
  width: auto;
  display: block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 15px rgba(255, 64, 0, 0.25));
  cursor: pointer;
  z-index: 1002;
}

.main-logo:hover {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 0 25px rgba(255, 64, 0, 0.5));
}



/* Cleanup SVG styles */
.logo-composite {
  display: none !important;
}

/* Logo styles removed since we use img now */

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: auto;
  /* Force to right corner */
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta {
  background: var(--accent);
  color: var(--black) !important;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  box-shadow: 0 10px 20px rgba(255, 64, 0, 0.15);
}

.nav-cta:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 15px 30px rgba(255, 64, 0, 0.25);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 160px 6% 80px;
  position: relative;
  gap: 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  opacity: 0.3;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 64, 0, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(200, 245, 66, 0.2);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 32px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero h1 .accent2 {
  color: var(--accent2);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 64px;
}

.btn {
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: inline-block;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 15px 35px rgba(255, 64, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 45px rgba(255, 64, 0, 0.3);
}

.btn-secondary {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Video Placement */
.video-container {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  border-radius: 32px;
  overflow: hidden;
  border: 8px solid var(--gray2);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 64, 0, 0.1);
  transform: rotate(2deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  background: #000;
}

.video-container:hover {
  transform: rotate(0deg) scale(1.05);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  /* Disable interaction to prevent clicks */
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: default;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections General */
section {
  padding: 140px 6%;
  scroll-margin-top: 80px;
  /* Offset for fixed header */
}

.section-tag {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 80px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 60px 48px;
  border-radius: 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--gray);
  border-color: var(--accent);
  transform: translateY(-10px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 32px;
  background: var(--accent-soft);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--white);
  margin-bottom: 32px;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--white);
}

.service-features li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}

/* How it Works */
.how-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.step {
  padding: 40px 0;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  gap: 32px;
}

.step-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.5;
}

.step h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--white);
}

.how-visual {
  background: var(--gray);
  border-radius: 40px;
  padding: 80px 60px;
  /* Increased vertical padding */
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.phone-mockup {
  background: #000;
  border-radius: 48px;
  /* rounder corners */
  padding: 48px 24px;
  /* More internal space */
  border: 4px solid var(--gray3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  max-width: 360px;
  /* Narrower for elongated look */
  margin: 0 auto;
  /* Center within container */
}

.chat-bubble {
  padding: 16px 24px;
  border-radius: 24px;
  margin-bottom: 24px;
  /* More space between bubbles */
  font-size: 0.95rem;
  max-width: 90%;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bubble-ai {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-bottom-left-radius: 4px;
}

.bubble-user {
  background: var(--accent);
  color: var(--black);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}


.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}

/* Footer Enhancement */
footer {
  padding: 120px 6% 60px;
  background: #000;
  /* Solid black to match nav */
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand .logo-composite {
  height: 60px !important;
  margin-bottom: 24px;
}

.footer-brand .logo-text {
  font-size: 1.8rem;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: 32px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile Responsive Fixes */
@media (max-width: 1024px) {
  nav {
    padding: 16px 5%;
  }

  section {
    text-align: center;
  }

  .section-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
    gap: 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 24px;
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
    gap: 30px;
  }

  .how-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .step {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .service-features li {
    justify-content: center;
  }

  .how-visual {
    padding: 60px 20px;
    /* Reduced horizontal padding for mobile */
  }

  .phone-mockup {
    max-width: 280px;
    /* Even narrower for a more elongated look */
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  nav {
    justify-content: center;
    padding: 0 5%;
    height: 60px;
    position: fixed;
    background: transparent !important;
    /* FORCE TRANSPARENCY - NUKE BLACK BOX */
    backdrop-filter: blur(8px);
    overflow: visible;
    border: none !important;
  }

  nav .logo-wrapper {
    justify-content: center;
    width: 100%;
    margin: 0;
  }

  nav .main-logo {
    height: 100px !important;
    margin: 0 auto !important;
    filter: drop-shadow(0 0 20px rgba(255, 64, 0, 0.3));
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

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

  .hero-visual div[style*="max-width: 320px"] {
    max-width: 280px !important;
    transform: rotate(0deg) !important;
  }

  .section-title {
    font-size: 2.2rem;
  }

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

  .service-card {
    padding: 40px 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  nav .main-logo {
    height: 60px !important;
    /* Visible for small screens */
  }

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

/* Chat Bot & Invitation */
.chat-invite {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  cursor: pointer;
  perspective: 1000px;
}

.invite-content {
  background: var(--accent);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow:
    0 20px 40px rgba(255, 64, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  border: none;
}

.chat-invite:hover .invite-content {
  transform: translateY(-5px) scale(1.02);
  background: var(--white);
  box-shadow:
    0 30px 60px rgba(255, 64, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

.invite-dot {
  width: 10px;
  height: 10px;
  background: var(--black);
  border-radius: 50%;
  position: relative;
}

.invite-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--black);
  border-radius: 50%;
  animation: pulseChat 2s infinite;
}

@keyframes pulseChat {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Adjust n8n chat widget default styles */
:root {
  --n8n-chat-primary-color: #ff4000;
  --n8n-chat-button-background-color: #ff4000;
  --n8n-chat-button-icon-color: #060606;
}

/* Custom Chat Container */
#n8n-chat-container {
  position: fixed;
  bottom: 100px;
  right: 40px;
  width: 400px;
  height: 600px;
  z-index: 10001;
  background: var(--gray);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  display: none;
  /* Hidden by default */
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(20px);
}

#n8n-chat-container.active {
  display: flex;
  transform: translateY(0);
}

@media (max-width: 768px) {
  #n8n-chat-container {
    width: calc(100% - 40px);
    height: 70vh;
    bottom: 90px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .chat-invite {
    bottom: 30px;
    right: 20px;
  }

  .invite-text {
    display: none;
  }

  .invite-content {
    padding: 16px;
    border-radius: 50%;
  }
}

/* --- PRICING SECTION STYLES (UNIFIED CARDS) --- */
/* --- PRICING SECTION STYLES (UNIFIED CARDS) --- */
.pricing-section {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(4%, 6vw, 120px) 140px;
}

.pricing-hero {
  text-align: center;
  margin-bottom: clamp(60px, 6vw, 80px);
}

.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.pricing-hero .c {
  color: var(--accent);
}

.pricing-hero .v {
  color: var(--accent2);
}

.pricing-hero-sub {
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.unified-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.2vw, 16px);
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(14px, 1.6vw, 26px);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.card-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.service-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.icon-accent {
  background: var(--accent-soft);
  border: 1px solid rgba(255, 64, 0, 0.25);
}

.icon-accent2 {
  background: rgba(66, 245, 200, 0.1);
  border: 1px solid rgba(66, 245, 200, 0.25);
}

.card-style-1 .service-title {
  color: var(--accent);
}

.card-style-2 .service-title {
  color: var(--accent2);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.card-section {
  margin-bottom: 12px;
  flex-grow: 1;
}

.section-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.p-s-item {
  margin-bottom: 8px;
}

.p-s-item strong {
  display: block;
  font-size: 0.78rem;
  color: var(--white);
  margin-bottom: 2px;
  font-weight: 600;
}

.p-s-item p {
  font-size: 0.72rem;
  color: var(--white);
  line-height: 1.4;
}

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

.features-mini li {
  font-size: 0.72rem;
  color: var(--white);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.features-mini li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

.card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}

.card-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.p-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
}

.p-val {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 800;
  color: var(--white);
}

.p-val sup {
  font-size: 0.75rem;
  margin-right: 1px;
}

.card-ctas {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Scoped smaller buttons inside pricing cards */
.pricing-card .btn {
  padding: 10px 16px;
  font-size: 0.75rem;
  border-radius: 80px;
}

.note-mini {
  font-size: 0.68rem;
  color: var(--white);
  margin-top: 8px;
  text-align: center;
}

.pricing-bottom-cta {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 40px;
  background: linear-gradient(135deg, rgba(255, 64, 0, 0.05), rgba(66, 245, 200, 0.05));
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.pricing-bottom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.pricing-bottom-cta p {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .unified-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card {
    border-radius: 24px;
    padding: 28px;
  }
  .card-badge {
    font-size: 0.65rem;
    margin-bottom: 16px;
  }
  .card-header {
    gap: 14px;
    margin-bottom: 20px;
  }
  .service-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.2rem;
  }
  .service-title {
    font-size: 1.3rem;
  }
  .card-section {
    margin-bottom: 20px;
  }
  .section-label {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }
  .p-s-item {
    margin-bottom: 14px;
  }
  .p-s-item strong {
    font-size: 0.92rem;
    margin-bottom: 3px;
  }
  .p-s-item p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .features-mini li {
    font-size: 0.82rem;
    margin-bottom: 8px;
    gap: 7px;
  }
  .card-footer {
    padding-top: 24px;
  }
  .card-prices {
    gap: 16px;
    margin-bottom: 18px;
  }
  .p-val {
    font-size: 1.6rem;
  }
  .p-val sup {
    font-size: 0.9rem;
  }
  .pricing-card .btn {
    padding: 16px 32px;
    font-size: 0.95rem;
  }
  .card-ctas {
    gap: 10px;
  }
  .note-mini {
    font-size: 0.75rem;
    margin-top: 12px;
  }
}

/* --- ADAPTIVE MULTI-LANGUAGE SYSTEM --- */
body.lang-en .lang-es {
  display: none !important;
}

body.lang-es .lang-en {
  display: none !important;
}

/* Language Switcher Pill */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-switch:hover {
  border-color: rgba(255, 64, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 64, 0, 0.1);
  background: rgba(255, 64, 0, 0.02);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}

body.lang-en .lang-btn[data-lang="en"],
body.lang-es .lang-btn[data-lang="es"] {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 4px 10px rgba(255, 64, 0, 0.2);
}

.lang-btn:hover {
  color: var(--white);
}

body.lang-en .lang-btn[data-lang="en"]:hover,
body.lang-es .lang-btn[data-lang="es"]:hover {
  color: var(--black);
}

/* Responsive language switch visibility */
.mobile-lang-switch {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-lang-switch {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1003;
    display: flex !important;
  }
}