/* ===================================================
   ValorizaPay - Professional Design System
   Version 1.0 | 2026
   =================================================== */

/* ===================== FONTS ===================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  --color-navy:        #0D1B2A;
  --color-navy-light:  #162338;
  --color-navy-mid:    #1E3A5F;
  --color-gold:        #C8A84B;
  --color-gold-light:  #E2C97E;
  --color-gold-dark:   #A68935;
  --color-white:       #FFFFFF;
  --color-off-white:   #F8F9FA;
  --color-gray-100:    #F1F3F5;
  --color-gray-200:    #E4E7EB;
  --color-gray-400:    #9AA3B0;
  --color-gray-600:    #5A6472;
  --color-gray-800:    #2D3748;
  --color-text:        #2D3748;
  --color-text-light:  #5A6472;
  --color-success:     #27AE60;
  --color-error:       #E74C3C;

  --gradient-gold:     linear-gradient(135deg, #C8A84B 0%, #E2C97E 50%, #C8A84B 100%);
  --gradient-navy:     linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 100%);
  --gradient-hero:     linear-gradient(160deg, #0D1B2A 0%, #0F2340 40%, #1A3560 100%);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --shadow-gold: 0 8px 32px rgba(200,168,75,0.25);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --container:   1200px;
  --header-h:    80px;

  --font:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-navy); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 3px; }

/* ===================== SELECTION ===================== */
::selection { background: var(--color-gold); color: var(--color-navy); }

/* ===================== CONTAINER ===================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--color-navy); }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--color-text-light); line-height: 1.8; }

.text-gold { color: var(--color-gold); }
.text-navy { color: var(--color-navy); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,168,75,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(200,168,75,0.6);
}

.btn-outline:hover {
  background: rgba(200,168,75,0.1);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}

.btn-outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* ===================== BADGES ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(200,168,75,0.15);
  color: var(--color-gold);
  border: 1px solid rgba(200,168,75,0.3);
}

.badge-navy {
  background: rgba(13,27,42,0.08);
  color: var(--color-navy);
  border: 1px solid rgba(13,27,42,0.15);
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header .badge { margin-bottom: 16px; }

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.section-header.light h2 { color: var(--color-white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* ===================== SECTION SPACING ===================== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--color-navy); }
.section-navy-mid { background: var(--color-navy-mid); }
.section-light { background: var(--color-off-white); }
.section-gray { background: var(--color-gray-100); }

/* ===================== DECORATIVE LINE ===================== */
.gold-line {
  width: 60px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ===================== HEADER / NAVIGATION ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
  padding: 0 24px;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.transparent { background: transparent; }

.header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}

.nav a:hover { color: var(--color-white); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--color-gold); }
.nav a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 16px; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 1px;
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: var(--transition-slow);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 32px;
  transition: var(--transition);
  text-align: center;
}

.mobile-menu a:hover { color: var(--color-gold); }

.mobile-menu .btn { margin-top: 16px; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  padding-bottom: 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--color-gold);
  top: -200px; right: -200px;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px; height: 400px;
  background: #4A90D9;
  bottom: -100px; left: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 300px; height: 300px;
  background: var(--color-gold-light);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: floatShape 12s ease-in-out infinite;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--color-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 64px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.hero-trust-item svg { color: var(--color-gold); flex-shrink: 0; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--color-white);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,168,75,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(200,168,75,0.12);
}

.stats-bar-wrapper {
  max-width: var(--container);
  margin: -60px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--color-gray-200);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* ===================== CARDS ===================== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-gold-border {
  border: 1px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.card-gold-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(200,168,75,0.5), transparent, rgba(200,168,75,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Icon box */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-gold {
  background: rgba(200,168,75,0.12);
  color: var(--color-gold);
}

.icon-box-navy {
  background: rgba(13,27,42,0.08);
  color: var(--color-navy);
}

.icon-box-lg {
  width: 80px;
  height: 80px;
  border-radius: 20px;
}

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), rgba(200,168,75,0.3), var(--color-gold));
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 40px 32px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gradient-navy);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold);
  margin: 0 auto 24px;
  position: relative;
  box-shadow: var(--shadow-gold);
}

.step-item h4 { margin-bottom: 12px; }
.step-item p { font-size: 0.95rem; }

/* ===================== SOLUTION CARDS ===================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solution-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(200,168,75,0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(200,168,75,0.2);
  border-color: rgba(200,168,75,0.35);
}

.solution-card:hover::before { opacity: 1; }

.solution-card:hover::after { transform: scaleX(1); }

.solution-card .icon-box { margin-bottom: 24px; }
.solution-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.solution-card p { font-size: 0.95rem; margin-bottom: 20px; }

.solution-tag {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================== AUDIENCE SECTION ===================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.2);
  text-align: center;
  transition: var(--transition);
}

.audience-card:hover {
  background: rgba(200,168,75,0.08);
  border-color: rgba(200,168,75,0.5);
  transform: translateY(-6px);
}

.audience-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(200,168,75,0.12);
  border: 2px solid rgba(200,168,75,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-gold);
}

.audience-card h3 { color: var(--color-white); margin-bottom: 12px; }
.audience-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(200,168,75,0.07);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,168,75,0.15);
  border-color: rgba(200,168,75,0.25);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.95rem; color: var(--color-navy); }
.author-role { font-size: 0.85rem; color: var(--color-text-light); }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, #0D1B2A 0%, #162B4A 50%, #0D1B2A 100%);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,168,75,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(200,168,75,0.1);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(200,168,75,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-banner h2 { color: var(--color-white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }
.cta-banner .btn + .btn { margin-left: 16px; }

/* ===================== FEATURES GRID ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 36px 32px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,168,75,0.3);
}

.feature-card .icon-box { margin-bottom: 20px; }
.feature-card h4 { margin-bottom: 10px; color: var(--color-navy); }
.feature-card p { font-size: 0.93rem; }

/* ===================== COMPARISON TABLE ===================== */
.comparison-table {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 24px 28px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
}

.comparison-table th:first-child { width: 40%; }

.comparison-table th.col-us {
  background: var(--gradient-navy);
  color: var(--color-white);
  text-align: center;
}

.comparison-table th.col-them {
  background: var(--color-gray-100);
  color: var(--color-text-light);
  text-align: center;
}

.comparison-table td {
  padding: 18px 28px;
  font-size: 0.93rem;
  color: var(--color-text);
  border-top: 1px solid var(--color-gray-100);
  vertical-align: middle;
}

.comparison-table td.center { text-align: center; }

.comparison-table tr:hover td { background: var(--color-gray-100); }

.check-yes { color: var(--color-success); font-size: 1.2rem; }
.check-no { color: #ccc; font-size: 1.2rem; }
.check-partial { color: #F39C12; font-size: 1.2rem; }

/* ===================== SECURITY BADGES ===================== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.security-badge {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,168,75,0.2);
  transition: var(--transition);
}

.security-badge:hover { background: rgba(200,168,75,0.08); }
.security-badge svg { color: var(--color-gold); margin: 0 auto 12px; }
.security-badge span { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 600; }

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

.faq-item {
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(200,168,75,0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  background: none;
  transition: var(--transition);
}

.faq-question:hover { color: var(--color-gold-dark); }
.faq-item.open .faq-question { color: var(--color-gold-dark); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,168,75,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 1.2rem;
  font-weight: 400;
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--color-gold); color: var(--color-white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--color-text-light);
  font-size: 0.97rem;
  line-height: 1.8;
  border-top: 1px solid var(--color-gray-100);
  padding-top: 20px;
}

/* ===================== FORM ===================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(200,168,75,0.1);
}

.form-control::placeholder { color: var(--color-gray-400); }

textarea.form-control { resize: vertical; min-height: 140px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===================== CONTACT INFO ===================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200,168,75,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-item h5 { font-size: 0.85rem; color: var(--color-text-light); font-weight: 500; margin-bottom: 4px; }
.contact-info-item p { color: var(--color-text); font-size: 0.97rem; font-weight: 600; }

/* ===================== TIMELINE ===================== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), rgba(200,168,75,0.2));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  transition: var(--transition);
}

.timeline-content:hover { box-shadow: var(--shadow-md); border-color: rgba(200,168,75,0.3); }

.timeline-year {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-navy);
  border: 3px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  z-index: 1;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content { text-align: right; }

.timeline-content h4 { color: var(--color-navy); margin-bottom: 8px; font-size: 1.1rem; }
.timeline-content p { font-size: 0.93rem; }

/* ===================== VALUES GRID ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 40px 32px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.value-card .icon-box { margin: 0 auto 20px; }
.value-card h4 { margin-bottom: 10px; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: var(--gradient-hero);
  padding: calc(var(--header-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: var(--color-white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: var(--color-gold); }

/* ===================== FOOTER ===================== */
.footer {
  background: #080F18;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .logo { margin-bottom: 20px; }

.footer-brand p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(200,168,75,0.15);
  border-color: rgba(200,168,75,0.4);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-col h6 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: var(--color-gold-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--color-gold); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse 2s ease-out infinite;
}

/* ===================== SUPPORT CHANNELS ===================== */
.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.support-channel {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  transition: var(--transition);
  cursor: pointer;
}

.support-channel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,168,75,0.3);
}

.support-channel .icon-box { margin: 0 auto 20px; }
.support-channel h4 { margin-bottom: 8px; }
.support-channel p { font-size: 0.9rem; margin-bottom: 16px; }
.support-channel .availability { font-size: 0.82rem; color: var(--color-success); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; }
.support-channel .availability::before { content: ''; width: 8px; height: 8px; background: var(--color-success); border-radius: 50%; display: inline-block; }

/* ===================== ANIMATIONS ===================== */
@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

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

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fadeInUp { animation: fadeInUp 0.7s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================== UTILITY ===================== */
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
  border: 2px dashed var(--color-gray-200);
  position: relative;
  overflow: hidden;
}

/* Progress bar */
.progress-bar {
  height: 6px;
  background: var(--color-gray-200);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0 4px;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 3px;
  transition: width 1.5s ease;
}

/* Alert / notification */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.alert-success { background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); color: #1E8449; }
.alert-error { background: rgba(231,76,60,0.1); border: 1px solid rgba(231,76,60,0.3); color: #C0392B; }
.alert svg { flex-shrink: 0; margin-top: 2px; }

/* ===================== HERO SPLIT LAYOUT ===================== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-split .hero-content {
  max-width: none;
}

/* ===================== HERO VISUAL (DASHBOARD) ===================== */
.hero-visual {
  position: relative;
  padding: 32px 16px 32px 0;
  animation: fadeInRight 0.9s ease 0.3s both;
}

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

/* Floating badges */
.hv-float {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hv-float-tl { top: 8px; left: -12px; animation: floatBadge 4s ease-in-out infinite; }
.hv-float-br {
  bottom: 16px;
  right: -8px;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding: 12px 20px;
  animation: floatBadge 4s ease-in-out infinite 2s;
}
.hv-float-number { font-size: 1.4rem; line-height: 1; color: var(--color-gold); }
.hv-float small { font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 500; }

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

/* Main card */
.hv-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(200,168,75,0.22);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(24px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.hv-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hv-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hv-dots { display: flex; gap: 5px; }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }

.hv-card-title {
  flex: 1;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hv-card-title svg { color: var(--color-gold); }

.hv-card-live {
  font-size: 0.72rem;
  font-weight: 600;
  color: #27AE60;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hv-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #27AE60;
  animation: pulse 1.5s ease-out infinite;
}

/* Stats row */
.hv-stats-row {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.hv-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hv-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0;
}
.hv-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.hv-stat-val { font-size: 1.05rem; font-weight: 800; color: var(--color-white); line-height: 1.2; }
.hv-stat-up { font-size: 0.7rem; color: #27AE60; font-weight: 600; }

/* Chart */
.hv-chart { margin-bottom: 20px; }
.hv-chart-label { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.hv-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
}
.hv-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.hv-bar {
  width: 100%;
  height: var(--h, 50%);
  background: rgba(200,168,75,0.25);
  border-radius: 4px 4px 0 0;
  transition: height 1s ease;
  position: relative;
  overflow: hidden;
}
.hv-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(200,168,75,0.4);
  border-radius: 4px 4px 0 0;
}
.hv-bar-gold { background: rgba(200,168,75,0.6) !important; }
.hv-bar-gold::after { background: var(--color-gold); }
.hv-bar-wrap span { font-size: 0.62rem; color: rgba(255,255,255,0.3); }

/* Notifications */
.hv-notifications { display: flex; flex-direction: column; gap: 10px; }
.hv-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.hv-notif-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hv-notif-success { background: rgba(39,174,96,0.15); color: #27AE60; }
.hv-notif-gold { background: rgba(200,168,75,0.15); color: var(--color-gold); }

.hv-notif-body { flex: 1; min-width: 0; }
.hv-notif-title { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.85); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hv-notif-sub { font-size: 0.68rem; color: rgba(255,255,255,0.4); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hv-notif-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #27AE60;
  background: rgba(39,174,96,0.12);
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.hv-notif-badge-gold { color: var(--color-gold); background: rgba(200,168,75,0.12); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .steps-grid::before { display: none; }
  .hero-split { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .nav { display: none; }
  .menu-toggle { display: flex; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  .solutions-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .support-channels { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  .cta-banner { padding: 48px 24px; }
  .cta-banner .btn + .btn { margin-left: 0; margin-top: 12px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .timeline::before { left: 32px; }
  .timeline-item { flex-direction: column !important; gap: 16px; padding-left: 64px; }
  .timeline-year { position: absolute; left: 0; width: 64px; height: 64px; font-size: 0.75rem; }
  .timeline-item:nth-child(even) .timeline-content { text-align: left; }

  .stats-bar-wrapper { margin-top: -40px; padding: 0 16px; }
  .hero-split { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-split .hero-content { max-width: 600px; margin: 0 auto; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 360px; justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .comparison-table { overflow-x: auto; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .page-hero { padding: calc(var(--header-h) + 40px) 0 48px; }
  .hero-split .hero-content { padding: 0 8px; }
  .cta-banner { padding: 48px 20px; }
  .cta-banner .btn + .btn { margin-left: 0; margin-top: 12px; }
}
