/* ================================================
   VEON LA FOUNDERS CIRCLE - LANDING PAGE STYLESHEET
   Matches main VEON site: Dark glassmorphism + neon
   ================================================ */

/* ========================================
   1. CSS VARIABLES
   ======================================== */
:root {
  /* Brand Colors */
  --primary-color: #17839a;
  --secondary-color: #3eb489;
  --tertiary-color: #a0d6da;

  /* Neon Glow */
  --neon-primary: rgba(23, 131, 154, 0.6);
  --neon-secondary: rgba(62, 180, 137, 0.6);

  /* Dark Theme */
  --bg-color: #0f0f1e;
  --bg-soft: #14142b;
  --surface-color: rgba(26, 26, 46, 0.7);
  --glass-bg: rgba(26, 26, 46, 0.4);
  --glass-border: rgba(62, 180, 137, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --text-primary: #e4e4f0;
  --text-secondary: #b4b4c8;
  --text-muted: #8888a0;
  --border-color: rgba(62, 180, 137, 0.3);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Baloo Bhaijaan 2", cursive;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  font-family: "Baloo Bhaijaan 2", cursive;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.dot {
  color: var(--secondary-color);
  margin: 0 0.25em;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================
   3. TOP BANNER
   ======================================== */
.top-banner {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.6rem 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

.top-banner .banner-sep {
  margin: 0 0.5em;
  opacity: 0.7;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  margin-right: 0.5em;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

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

/* ========================================
   4. NAVIGATION
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(15, 15, 30, 0.85);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.btn-signin:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--neon-primary);
  color: white;
}

/* ========================================
   LANGUAGE TOGGLE BUTTON
   Add this to your style.css (anywhere works,
   suggested location: near the navbar styles)
   ======================================== */

.nav-actions {
  display: flex;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.7rem;
  margin-right: 0.6rem;
  background: var(--glass-bg, rgba(26, 26, 46, 0.4));
  border: 1px solid var(--glass-border, rgba(62, 180, 137, 0.25));
  border-radius: var(--radius-sm, 8px);
  color: var(--text-secondary, #b4b4c8);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition-fast, 0.2s ease);
}

.lang-toggle:hover {
  background: var(--primary-color, #17839a);
  border-color: var(--primary-color, #17839a);
  color: white;
  transform: translateY(-1px);
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--secondary-color, #3eb489);
  outline-offset: 2px;
}

/* ========================================
   5. HERO: DIGITAL BUSINESS CARD
   ======================================== */
.hero-card {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color), transparent);
  top: -10%;
  left: -15%;
}

.hero-blob-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--secondary-color), transparent);
  bottom: -10%;
  right: -15%;
  animation-delay: -10s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.card-glass {
  position: relative;
  z-index: 10;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--glass-shadow),
    0 0 60px rgba(62, 180, 137, 0.08);
  text-align: center;
  animation: cardEntry 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* Profile Photo */
.card-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-photo-ring {
  position: relative;
  width: 180px;
  height: 180px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  box-shadow:
    0 0 40px var(--neon-secondary),
    0 0 80px rgba(23, 131, 154, 0.2);
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,
  100% {
    box-shadow:
      0 0 40px var(--neon-secondary),
      0 0 80px rgba(23, 131, 154, 0.2);
  }
  50% {
    box-shadow:
      0 0 60px var(--neon-secondary),
      0 0 120px rgba(23, 131, 154, 0.3);
  }
}

.card-photo,
.card-photo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-soft);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-color);
}

.card-photo-fallback {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
}

/* Name & Role */
.card-name {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 1.25rem;
}

.card-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.card-meta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.card-meta i {
  color: var(--secondary-color);
}

/* Action Buttons (the 3 CTAs) */
.card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-action > i:first-child {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.btn-action span {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-action strong {
  font-size: 1rem;
  font-weight: 700;
}

.btn-action small {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 2px;
}

.btn-action .arrow {
  font-size: 1.25rem;
  opacity: 0.6;
  transition:
    transform var(--transition-normal),
    opacity var(--transition-normal);
}

.btn-action:hover .arrow {
  transform: translateX(4px);
  opacity: 1;
}

.btn-action-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 4px 20px rgba(23, 131, 154, 0.3);
}

.btn-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--neon-primary);
  color: white;
}

.btn-action-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-action-secondary:hover {
  border-color: var(--secondary-color);
  background: rgba(62, 180, 137, 0.08);
  transform: translateY(-2px);
  color: var(--text-primary);
}

/* Social Icons */
.card-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.card-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all var(--transition-normal);
}

.card-social a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 6px 20px var(--neon-primary);
}

/* Scroll Cue */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem auto 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  width: fit-content;
  position: relative;
  z-index: 10;
}

.scroll-cue i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ========================================
   6. SECTION HELPERS
   ======================================== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========================================
   7. OFFER CARD
   ======================================== */
.offer {
  position: relative;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-soft) 100%);
}

.offer-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.offer-badge {
  display: inline-block;
  background: rgba(62, 180, 137, 0.15);
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  margin-bottom: 1.25rem;
}

.offer-headline {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.offer-details {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.offer-details strong {
  color: var(--text-primary);
}

.offer-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.offer-right {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(23, 131, 154, 0.08),
    rgba(62, 180, 137, 0.08)
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}

.offer-savings {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.offer-savings-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px var(--neon-primary);
}

.btn-offer:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--neon-primary);
  color: white;
}

/* ========================================
   8. SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  box-shadow: 0 12px 40px rgba(62, 180, 137, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px var(--neon-primary);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.service-card ul {
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
}

.service-card ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   9. THE VEON WAY (VS)
   ======================================== */
.difference {
  background: var(--bg-soft);
  position: relative;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
}

.vs-col {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
}

.vs-bad {
  opacity: 0.85;
}

.vs-good {
  border-color: var(--secondary-color);
  background: linear-gradient(
    180deg,
    rgba(62, 180, 137, 0.08),
    rgba(23, 131, 154, 0.04)
  );
  box-shadow: 0 0 40px rgba(62, 180, 137, 0.1);
}

.vs-col h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.vs-good h3 {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vs-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.vs-col li:last-child {
  border-bottom: none;
}

.vs-col li i {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.vs-bad li i {
  color: rgba(255, 100, 100, 0.7);
}
.vs-good li i {
  color: var(--secondary-color);
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  font-style: italic;
}

/* ========================================
   10. PRICING
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.price-card.featured {
  border: 2px solid var(--secondary-color);
  background: linear-gradient(
    180deg,
    rgba(62, 180, 137, 0.1),
    rgba(23, 131, 154, 0.05)
  );
  box-shadow: 0 0 50px rgba(62, 180, 137, 0.15);
  transform: translateY(-12px);
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 4px 15px var(--neon-primary);
  white-space: nowrap;
}

.price-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.price-name {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.price-blurb {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.price-amount .dollar {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-amount .num {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-amount .per {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-setup {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--glass-border);
  line-height: 1.5;
}

.price-setup strike {
  opacity: 0.6;
}
.price-setup .free {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-features {
  margin-bottom: 1.75rem;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.price-features li i {
  color: var(--secondary-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15em;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.price-card .price-cta {
  background: var(--glass-bg);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.price-card .price-cta:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.price-card.featured .price-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 4px 20px var(--neon-primary);
}

.price-card.featured .price-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--neon-primary);
}

/* ========================================
   11. PORTFOLIO
   ======================================== */
.portfolio {
  background: var(--bg-soft);
}

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

.case {
  padding: 1.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.case:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  box-shadow: 0 12px 40px rgba(62, 180, 137, 0.15);
}

.case-tag {
  display: inline-block;
  background: rgba(23, 131, 154, 0.15);
  color: var(--tertiary-color);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}

.case h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.case-industry {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.case p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.case-stack span {
  font-size: 0.7rem;
  background: rgba(62, 180, 137, 0.08);
  color: var(--secondary-color);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ========================================
   12. FAQ
   ======================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item[open] {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 20px rgba(62, 180, 137, 0.1);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 400;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--secondary-color);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   13. FINAL CTA
   ======================================== */
.final-cta {
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(23, 131, 154, 0.15),
    rgba(62, 180, 137, 0.15)
  );
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(62, 180, 137, 0.2), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta > .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 1.15rem 2.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 30px var(--neon-primary);
}

.final-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--neon-primary);
  color: white;
}

.final-cta-meta {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* ========================================
   14. FOOTER
   ======================================== */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 360px;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-contact a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.2rem 0;
  transition: color var(--transition-fast);
}

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

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links li a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: all var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--secondary-color);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ========================================
   15. BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px var(--neon-primary);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--neon-primary);
}

/* ========================================
   16. REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-blob,
  .pulse-dot,
  .card-photo-ring,
  .scroll-cue i {
    animation: none;
  }
}

/* ========================================
   17. RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .offer-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .offer-right {
    padding: 1.5rem;
  }
  .vs-grid {
    grid-template-columns: 1fr;
  }
  .vs-divider {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1.25rem;
  }

  .top-banner {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }
  .top-banner .banner-sep {
    margin: 0 0.3em;
  }

  .lang-toggle {
    padding: 0.35rem 0.55rem;
    font-size: 0.75rem;
    margin-right: 0.4rem;

    .hero-card {
      min-height: auto;
      padding: 30px 0 50px;
    }
    .card-glass {
      padding: 2rem 1.5rem;
    }
    .card-photo-ring {
      width: 140px;
      height: 140px;
    }
    .card-photo-fallback {
      font-size: 3.5rem;
    }
    .card-name {
      font-size: 1.85rem;
    }
    .card-role {
      font-size: 0.9rem;
    }
    .card-tagline {
      font-size: 0.95rem;
    }
    .card-meta {
      gap: 0.75rem;
      font-size: 0.8rem;
    }
    .btn-action {
      padding: 0.85rem 1rem;
      gap: 0.75rem;
    }
    .btn-action > i:first-child {
      font-size: 1.25rem;
    }
    .btn-action strong {
      font-size: 0.95rem;
    }

    .offer-card {
      padding: 1.75rem 1.25rem;
    }
    .offer-headline {
      font-size: 1.85rem;
    }
    .offer-savings {
      font-size: 4rem;
    }
    .offer-stats {
      gap: 1rem;
    }

    .nav-logo img {
      height: 38px;
    }
    .btn-signin {
      padding: 0.5rem 0.85rem;
      font-size: 0.8rem;
    }
    .btn-signin i {
      display: none;
    }

    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }

    .back-to-top {
      bottom: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
    }
  }

  @media (max-width: 380px) {
    .card-glass {
      padding: 1.5rem 1rem;
    }
    .card-actions {
      gap: 0.6rem;
    }
    .btn-action small {
      display: none;
    }
  }
}
