/* ============================================================
   PVOCS v7 — Light Modern Design
   Brand: #0ced56 · #07d6fb · #2981ff
   ============================================================ */

/* ─── Mollen Font ─── */
@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mollen';
  src: url('assets/mollen/Mollen-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}


/* ─── Variables ─── */
:root {
  --bg: #f8fafb;
  --bg2: #ffffff;
  --surface: rgba(255, 255, 255, 0.75);
  --surface2: rgba(255, 255, 255, 0.85);
  --border: rgba(0, 0, 0, 0.07);
  --border2: rgba(0, 0, 0, 0.13);
  --text: #08162E;
  --text2: #2b3844;
  --text3: #32393f;

  --green: #00D675;
  --cyan: #06bfe0;
  --blue: #2D77FF;
  --yellow: #FFBC00;

  --grad: linear-gradient(135deg, var(--green), var(--cyan), var(--blue));
  --grad2: linear-gradient(135deg, var(--green) 0%, var(--cyan) 50%, var(--blue) 100%);
  --grad-glow: radial-gradient(ellipse at center, rgba(6, 191, 224, 0.12) 0%, transparent 70%);

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

  --font-head: 'Mollen', sans-serif;
  --font-body: 'Mollen', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Color palette ─── */
.col-yellow {
  color: var(--yellow) !important;
}

.col-green {
  color: var(--green) !important;
}

.col-blue {
  color: var(--blue) !important;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

@media (min-width: 1025px) {
  html {
    font-size: 115%;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image: radial-gradient(rgba(41, 129, 255, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Light section stripe */
.section-stripe {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.flag {
  margin-top: 40%;
  margin-bottom: 50%;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.15;
}

h1,
h2,
h3,
.nav-links a,
.mobile-nav a,
.nav-ctas a {
  text-transform: capitalize;
}

/* ─── WebGL Canvas ─── */
#webgl-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  height: 100vh;
}

/* ─── Layout ─── */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.section-colorized {
  background: rgba(255, 255, 255, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.section {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.section-sm {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

/* ─── Typography ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cyan);
}

.gradient-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-label {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.section-label p {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 56ch;
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad2);
  color: white;
  box-shadow: 0 0 24px rgba(7, 214, 251, 0.3);
}

.btn-primary:hover {
  color: var(--text);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(7, 214, 251, 0.6), 0 0 15px rgba(255, 255, 255, 0.6) inset;
  background: var(--grad2);
  filter: brightness(1.15) saturate(1.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(7, 214, 251, 0.15);
}

.btn-ghost2 {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--yellow);
}

.btn-ghost2:hover {
  border-color: var(--yellow);
  color: white;
  box-shadow: 0 0 20px rgba(251, 214, 7, 0.15);
  background: var(--yellow);

}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--bg);
}

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ─── Glass card ─── */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
}

.glass:hover {
  border-color: var(--border2);
}

.card-glow {
  position: relative;
}

.card-glow::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: var(--grad2);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}

.card-glow:hover::before {
  opacity: 0.35;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 1rem;
}

.site-header.scrolled {
  padding: 1rem;
  background: rgba(248, 250, 251, 0.50);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  /*box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.45rem 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  font-weight: 700;
  color: var(--blue);
  background: var(--surface2);
}

.nav-ctas {
  display: flex;
  align-items: stretch;
  height: 48px;
  gap: 0.8rem;
  margin-left: 1rem;
}

.nav-ctas>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.nav-ctas .btn,
.nav-ctas .nav-phone {
  padding: 0 1.2rem;
  height: auto;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.5rem;
  color: var(--text);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-phone:hover {
  color: white;
  background-color: var(--yellow);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.mobile-nav {
  border-radius: 15px;
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(248, 250, 251, 0.5);
  backdrop-filter: blur(20px);
}

.mobile-nav a {
  padding: 0.7rem 1rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.btn-ghost:hover {
  color: var(--text);
  background: var(--surface2);
}

.mobile-nav .btn {
  margin: 0.5rem 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  height: 52px;
  padding: 0;
}

.mobile-phone-btn {
  margin: 0.5rem 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yellow);
  border: 2px solid rgba(255, 198, 41, 0.3);
  height: 52px;
  padding: 0;
  border-radius: var(--radius-sm);
  background: rgba(248, 250, 251, 0.98);
}

.mobile-phone-btn:hover {
  background: rgba(41, 129, 255, 0.07);
}

/* ─── Language toggle ─── */
.nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  height: auto;
  gap: 0.4rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-lang:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* ─── Hero ─── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: rgba(41, 129, 255, 0.07);
  border: 1px solid rgba(41, 129, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw + 1rem, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-title-es {
  font-size: clamp(2.8rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text2);
  max-width: 46ch;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.hero-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text3);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-trust span::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
}

.hero-main-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);

  animation: float 6s ease-in-out infinite;
}

.hero-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.hc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hc-icon.yellow {
  background: rgba(255, 188, 0, 0.15);
}

.hc-icon.green {
  background: rgba(12, 237, 86, 0.15);
}

.hc-icon.cyan {
  background: rgba(7, 214, 251, 0.15);
}

.hc-icon.blue {
  background: rgba(41, 129, 255, 0.15);
}

.hc-label {
  font-size: 0.75rem;
  color: var(--text2);
}

.hc-val {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-head);
}

.hc-val.green {
  color: var(--green);
}

.hc-val.cyan {
  color: var(--cyan);
}

.hc-val.yellow {
  color: var(--yellow);
}

.hc-val.blue {
  color: var(--blue);
}

.hero-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 204, 255, 0.3);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(12px);
  animation: float 4s ease-in-out infinite reverse;
}

.hero-badge2 {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 204, 255, 0.3);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ─── Stats Bar ─── */
.stats-bar {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.stat-item {
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--surface2);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 3.0rem;
  font-weight: 800;
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text2);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.colorize-num {
  color: var(--text);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(7, 214, 251, 0.6), 0 0 15px rgba(255, 255, 255, 0.6) inset;
  background: var(--grad2);
  filter: brightness(1.15) saturate(1.2);
}

.step-num {
  display: inline-flex;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad2);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text2);
}

/* ─── Audience Cards ─── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.audience-card {
  padding: 2.5rem 2.2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


.audience-img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.audience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.audience-card:hover .audience-img img {
  transform: scale(1.05);
}

.audience-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.audience-card>p {
  color: var(--text2);
  margin-bottom: 1.2rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text2);
}

.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.voucher-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
}

.voucher-grid2 {

  gap: 2rem;
}

.voucher-summary {
  padding: 8rem 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 237, 86, 0.04), rgba(7, 214, 251, 0.04));
  border: 1px solid rgba(7, 214, 251, 0.15);
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.voucher-summary2 {
  padding: 2.2rem 15rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 237, 86, 0.04), rgba(7, 214, 251, 0.04));
  border: 1px solid rgba(7, 214, 251, 0.15);
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.voucher-summary3 {
  padding: 2.2rem 2.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 237, 86, 0.04), rgba(7, 214, 251, 0.04));
  border: 1px solid rgba(7, 214, 251, 0.15);
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.voucher-amount {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  font-weight: 800;
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin: 0.8rem 0;
}

.voucher-amount2 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 800;
  background: var(--grad2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin: 0.8rem 0;
}

.voucher-breakdown {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.vb-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.3rem;
  column-gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.vb-item span:last-child {
  font-weight: 700;
  color: var(--green);
}

.voucher-filler {
  margin-bottom: auto;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  opacity: 0.85;
}

.voucher-filler img {
  width: 120px;
  height: auto;
}

.voucher-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vd-card {
  padding: 1.8rem 2rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.vd-card:hover {
  border-color: var(--border2);
  transform: translateX(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.03);
}

.vd-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.vd-card p {
  font-size: 0.88rem;
  color: var(--text2);
  margin: 0;
}



/* ─── Comparison Table ─── */
.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comp-col {
  padding: 2rem;
}

.comp-col.yours {
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid var(--border);
}

.comp-col.pvocs {
  background: linear-gradient(135deg, rgba(12, 237, 86, 0.05), rgba(7, 214, 251, 0.05));
}

.comp-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.comp-head h3 {
  font-size: 1rem;
}

.comp-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.comp-tag.easy {
  background: rgba(12, 237, 86, 0.15);
  color: var(--green);
}

.comp-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.comp-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text2);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-items li:last-child {
  border-bottom: none;
}

.comp-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

/* ─── Tabs ─── */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.6rem 1.4rem;
  border: none;
  background: transparent;
  color: var(--text2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border2);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-info {
  padding: 1rem 1.1rem;
}

.team-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.team-info p {
  font-size: 0.8rem;
  color: var(--text2);
  font-style: italic;
}

/* ─── Modal ─── */
.member-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.member-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal-box {
  position: relative;
  z-index: 201;
  width: min(880px, 90vw);
  max-height: 88vh;
  overflow: hidden;
  border-radius: 28px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  padding: 2.5rem;
  animation: scaleIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface2);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--surface2);
  border-color: var(--cyan);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  max-height: calc(88vh - 6rem);
  padding-right: 2px;
}

.modal-img {
  border-radius: 20px;
  overflow: hidden;
}

.modal-img img {
  width: 100%;
  height: auto;
}

.modal-name {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.modal-role {
  color: var(--blue);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.modal-desc p {
  color: var(--text2);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

/* ─── Success Stories Carousel ─── */
.stories-carousel {
  position: relative;
  max-width: 740px;
  margin: 0 auto;
  min-height: 320px;
}

.story-card {
  position: absolute;
  inset: 0;
  padding: 2.5rem 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.story-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.story-stars {
  display: flex;
  gap: .2rem;
  font-size: 1.1rem;
  color: #f5a623;
}

.story-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}

.story-quote {
  color: var(--text2);
  font-size: .92rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--text3);
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}

.story-meta strong {
  color: var(--text);
}

.stories-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

.stories-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.stories-dots button.active {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: scale(1.2);
}

.stories-dots button:hover {
  border-color: var(--cyan);
}

@media (max-width: 768px) {
  .story-card {
    padding: 1.8rem 1.5rem;
  }
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.form-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 129, 255, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field select option {
  background: var(--bg2);
}

.form-alert {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: none;
}

.form-alert.show {
  display: block;
}

.form-alert.success {
  background: rgba(12, 237, 86, 0.1);
  border: 1px solid rgba(12, 237, 86, 0.3);
  color: var(--green);
}

.form-alert.error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.aside-card {
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}

.aside-card h4 {
  font-size: 0.9rem;
  color: var(--text2);
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aside-card .big-link {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--text);
  transition: var(--transition);
  display: block;
}

.aside-card .big-link:hover {
  color: var(--blue);
}

.aside-card p {
  color: var(--text2);
  font-size: 0.88rem;
  margin: 0;
}


/* ─── Promo two-col ─── */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promo-grid.reverse {
  direction: rtl;
}

.promo-grid.reverse>* {
  direction: ltr;
}

.promo-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.promo-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
}

.promo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(12, 237, 86, 0.1), rgba(41, 129, 255, 0.1));
  pointer-events: none;
}

.promo-text h2 {
  font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.5rem);
  margin-bottom: 0.8rem;
}

.promo-text p {
  color: var(--text2);
  margin-bottom: 1.5rem;
}

/* ─── Footer ─── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text2);
  max-width: 28ch;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text3);
  padding: 0.2rem 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text3);
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── Divider glow ─── */
.glow-divider {
  width: 80px;
  height: 3px;
  background: var(--grad2);
  border-radius: 2px;
  margin: 0 auto 2rem;
}

/* ─── Page hero (inner pages) ─── */
.page-hero {
  padding: 8rem 0 4rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text2);
  font-size: 1.1rem;
  max-width: 60ch;
  margin-inline: auto;
}

/* ─── Keyframes ─── */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-actions {
    flex-direction: column;
  }



  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-visual {
    display: none;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-grid.reverse {
    direction: ltr;
  }

  .voucher-grid {
    grid-template-columns: 1fr;
  }

  .voucher-summary {
    padding: 2rem;
    position: relative;
    top: auto;
  }

  .voucher-summary2 {
    padding: 2.2rem 0rem;
  }

  .voucher-summary3 {
    position: relative;
    top: auto;
  }

  .comparison-wrap {
    grid-template-columns: 1fr;
  }

  .comp-col.yours {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .modal-box {
    padding: 1.5rem;
    width: 95vw;
    max-height: 90vh;
    border-radius: 20px;
  }

  .modal-close-btn {
    top: 0.7rem;
    right: 0.7rem;
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }

  .modal-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: calc(90vh - 6rem);
  }

  .modal-img {
    width: 240px;
    height: 320px;
    margin: 0 auto;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .nav-links,
  .nav-ctas {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: auto;
    aspect-ratio: 3/4;
  }
}

@media (max-width: 480px) {
  .tabs-nav {
    flex-direction: column;
    width: 100%;
  }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text3);
}

/* ─── Resources ─── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.resource-card {
  padding: 2.2rem 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.res-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.resource-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.resource-card p {
  font-size: 0.95rem;
  color: var(--text2);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.res-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}

.res-link::after {
  content: '→';
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}

.res-link:hover {
  color: var(--blue);
}

.res-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-card[style*="grid-column"] {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── FAQ Accordion ─── */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text3);
  border-bottom: 2px solid var(--text3);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] summary::after {
  transform: translateY(2px) rotate(225deg);
  border-color: var(--cyan);
}

.faq-content {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-content p {
  margin-bottom: 0.8rem;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-category {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-category:first-of-type {
  margin-top: 1rem;
}

.faq-category h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--text);
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.faq-category h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--grad2);
  border-radius: 2px;
}