/* ============================================================
   PontualTech — Dark/Tech Futurista Design System
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --bg-primary:    #0a0a0f;
  --bg-surface:    #12121a;
  --bg-elevated:   #1a1a26;
  --color-cyan:    #00f0ff;
  --color-magenta: #ff00aa;
  --color-green:   #00ff88;
  --color-text:    #e0e0e8;
  --color-muted:   #6a6a7a;
  --color-border:  rgba(0, 240, 255, 0.15);

  --font-heading:  'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  --glow-cyan:     0 0 20px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.15);
  --glow-magenta:  0 0 20px rgba(255, 0, 170, 0.4), 0 0 60px rgba(255, 0, 170, 0.15);
  --glow-green:    0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.2);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

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

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ============================================================
   Grid Matrix Background
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 240, 255, 0.05) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 0, 170, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--color-muted); line-height: 1.7; }

a { color: var(--color-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }

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

.gradient-text {
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--color-cyan);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  max-width: 56ch;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(1rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  flex-shrink: 0;
  box-shadow: var(--glow-cyan);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  color: var(--color-cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-cyan);
  border-color: var(--color-border);
  background: rgba(0, 240, 255, 0.05);
}

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--color-cyan) !important;
  color: var(--color-cyan) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--color-cyan) !important;
  color: #000 !important;
  box-shadow: var(--glow-cyan) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cyan);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--color-cyan), #00b8cc);
  color: #000;
  box-shadow: 0 4px 24px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--color-cyan);
  border: 1px solid var(--color-cyan);
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.08);
  box-shadow: var(--glow-cyan);
  color: var(--color-cyan);
}

.btn-magenta {
  background: linear-gradient(135deg, var(--color-magenta), #cc0088);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 0, 170, 0.3);
}

.btn-magenta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-magenta);
  color: #fff;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

/* ============================================================
   Cards (Glassmorphism)
   ============================================================ */
.card {
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 8px 40px rgba(0, 240, 255, 0.1), 0 0 0 1px rgba(0, 240, 255, 0.1);
  transform: translateY(-4px);
}

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

.card-accent-magenta:hover {
  border-color: rgba(255, 0, 170, 0.35);
  box-shadow: 0 8px 40px rgba(255, 0, 170, 0.1), 0 0 0 1px rgba(255, 0, 170, 0.1);
}

.card-accent-magenta::before {
  background: linear-gradient(90deg, transparent, rgba(255, 0, 170, 0.5), transparent);
}

/* ============================================================
   Badge / Tag
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid;
  text-transform: uppercase;
}

.badge-cyan {
  color: var(--color-cyan);
  border-color: rgba(0, 240, 255, 0.4);
  background: rgba(0, 240, 255, 0.06);
}

.badge-magenta {
  color: var(--color-magenta);
  border-color: rgba(255, 0, 170, 0.4);
  background: rgba(255, 0, 170, 0.06);
}

.badge-green {
  color: var(--color-green);
  border-color: rgba(0, 255, 136, 0.4);
  background: rgba(0, 255, 136, 0.06);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

/* Scan line animation */
.hero::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
  animation: scanline 6s linear infinite;
  opacity: 0.4;
  z-index: 2;
}

@keyframes scanline {
  0%   { top: -2px; }
  100% { top: 100%; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  max-width: 52ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-cyan);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Glowing orb decoration */
.hero-orb {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 40vw, 550px);
  height: clamp(300px, 40vw, 550px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  border: 1px solid rgba(0, 240, 255, 0.1);
  z-index: 1;
  animation: pulse-orb 4s ease-in-out infinite;
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(255, 0, 170, 0.12);
  animation: rotate-slow 20s linear infinite;
}

@keyframes pulse-orb {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateY(-50%) scale(1.05); }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
}

.particle:nth-child(even) { background: var(--color-magenta); }
.particle:nth-child(3n)   { background: var(--color-green); }

@keyframes float-particle {
  0%   { opacity: 0;   transform: translateY(100vh) translateX(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.5; }
  100% { opacity: 0;   transform: translateY(-10vh) translateX(var(--drift, 20px)); }
}

/* ============================================================
   Trust Signals Bar
   ============================================================ */
.trust-bar {
  background: rgba(18, 18, 26, 0.9);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  position: relative;
  z-index: 2;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.trust-icon-cyan   { background: rgba(0, 240, 255, 0.12); color: var(--color-cyan); }
.trust-icon-magenta{ background: rgba(255, 0, 170, 0.12);  color: var(--color-magenta); }
.trust-icon-green  { background: rgba(0, 255, 136, 0.12); color: var(--color-green); }

/* ============================================================
   How It Works
   ============================================================ */
.how-it-works { background: transparent; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-magenta), var(--color-green));
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  border: 1px solid;
  transition: var(--transition);
}

.step-icon-cyan    { background: rgba(0, 240, 255, 0.1);  border-color: rgba(0, 240, 255, 0.3);  }
.step-icon-magenta { background: rgba(255, 0, 170, 0.1);  border-color: rgba(255, 0, 170, 0.3);  }
.step-icon-green   { background: rgba(0, 255, 136, 0.1);  border-color: rgba(0, 255, 136, 0.3);  }

.step-card:hover .step-icon-cyan    { box-shadow: var(--glow-cyan); }
.step-card:hover .step-icon-magenta { box-shadow: var(--glow-magenta); }
.step-card:hover .step-icon-green   { box-shadow: var(--glow-green); }

.step-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}

.service-title {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 1.25rem;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 4px 24px rgba(0, 240, 255, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover { color: var(--color-cyan); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--color-cyan);
}

.faq-item.active .faq-icon {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.4);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(20px);
}

.cta-box h2 { margin-bottom: 1rem; }

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-info {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.cta-info-item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-info-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 6px var(--color-green);
  flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: rgba(10, 10, 15, 0.98);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-magenta));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}

.footer-logo-text span { color: var(--color-cyan); }

.footer-desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background: rgba(0, 240, 255, 0.05);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-muted);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--color-cyan); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.footer-contact-icon {
  color: var(--color-cyan);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-family: var(--font-mono);
}

.footer-copy span { color: var(--color-cyan); }

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.875rem 1.25rem 0.875rem 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: scale(1.05);
  box-shadow: var(--glow-green);
  color: #fff;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-icon-cyan    { background: rgba(0, 240, 255, 0.1);  color: var(--color-cyan); }
.contact-item-icon-magenta { background: rgba(255, 0, 170, 0.1);  color: var(--color-magenta); }
.contact-item-icon-green   { background: rgba(0, 255, 136, 0.1);  color: var(--color-green); }

.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(18, 18, 26, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
  background: rgba(18, 18, 26, 1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================================
   About Page
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-inner {
  aspect-ratio: 1;
  max-width: 440px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.about-visual-icon {
  font-size: 6rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px var(--color-cyan));
  animation: float 3s ease-in-out infinite;
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-stat {
  padding: 1.25rem;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  display: block;
}

.about-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 0.2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.5rem;
  text-align: center;
}

.value-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.value-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.value-desc {
  font-size: 0.83rem;
  line-height: 1.55;
}

/* ============================================================
   Brands strip
   ============================================================ */
.brands-section {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.brands-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.brands-track {
  display: flex;
  gap: 3rem;
  animation: brands-scroll 25s linear infinite;
  width: max-content;
}

.brands-track:hover { animation-play-state: paused; }

.brand-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(106, 106, 122, 0.25);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.brand-item:hover {
  color: var(--color-cyan);
  border-color: var(--color-border);
}

@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Map section
   ============================================================ */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  filter: invert(92%) hue-rotate(180deg) saturate(0.8);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-cyan); }
.breadcrumb-sep { color: var(--color-border); }
.breadcrumb-current { color: var(--color-cyan); }

/* ============================================================
   Utilities
   ============================================================ */
.text-cyan    { color: var(--color-cyan);    }
.text-magenta { color: var(--color-magenta); }
.text-green   { color: var(--color-green);   }
.text-muted   { color: var(--color-muted);   }
.text-center  { text-align: center; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem;   }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem;   }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem;   }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem;   }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-grid { gap: 2.5rem; }
  .contact-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    gap: 0.5rem;
    z-index: 999;
    border-top: 1px solid var(--color-border);
  }

  .nav-links.open a {
    font-size: 1.1rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
  }

  .hero-orb { display: none; }

  .steps-grid::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .about-visual { order: -1; }

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

  .form-row { grid-template-columns: 1fr; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-stats { gap: 1.25rem; }

  .trust-bar-inner { gap: 1rem 1.5rem; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 300px; }
}
