/* ═══════════════════════════════════════════
   FINANZAS PRO — Premium Dark Fintech Design
   ═══════════════════════════════════════════ */

:root {
  --bg: #070B14;
  --bg-2: #0D1321;
  --bg-3: #141C2E;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --text: #E8ECF4;
  --text-muted: #8892A8;
  --text-dim: #5A6478;
  --cyan: #00D4FF;
  --cyan-dark: #00A8CC;
  --gold: #F5C842;
  --gold-dark: #D4A82A;
  --purple: #7C5CFC;
  --green: #34D399;
  --gradient: linear-gradient(135deg, #00D4FF 0%, #7C5CFC 50%, #F5C842 100%);
  --gradient-text: linear-gradient(135deg, #00D4FF, #F5C842);
  --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.25);
  --glow-gold: 0 0 40px rgba(245, 200, 66, 0.2);
  --font: "Outfit", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --header-h: 72px;
  --topbar-h: 40px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container { width: min(1200px, 90%); margin-inline: auto; }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.topbar-left a,
.topbar-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.topbar-left a:hover { color: var(--cyan); }

.topbar-social { display: flex; gap: 0.75rem; }

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-muted);
  transition: all var(--transition);
}

.topbar-social a:hover {
  background: var(--cyan);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--bg);
  letter-spacing: -0.02em;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }
.logo-text strong { font-size: 1.125rem; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav { display: flex; align-items: center; gap: 2rem; }

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav a:not(.btn):hover { color: var(--text); }

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav a:not(.btn):hover::after { width: 100%; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.35);
}

.btn-glow {
  background: var(--gradient);
  color: var(--bg) !important;
  box-shadow: var(--glow-cyan);
}

.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: var(--cyan);
  color: var(--cyan);
}

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

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.7) 0%, rgba(7, 11, 20, 0.85) 50%, var(--bg) 100%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 92, 252, 0.08) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, 0.15);
  top: 10%;
  right: -10%;
  animation: float 8s ease-in-out infinite;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(245, 200, 66, 0.1);
  bottom: 20%;
  left: -5%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 0 6rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 999px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.75rem 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.metric { text-align: center; }
.metric strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric span { font-size: 0.8125rem; color: var(--text-muted); }

.metric-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.trust-bar p {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.trust-logos span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dim);
  opacity: 0.5;
  letter-spacing: 0.02em;
  transition: opacity var(--transition);
}

.trust-logos span:hover { opacity: 0.8; }

/* ─── SECTIONS ─── */
.section { padding: 6rem 0; position: relative; }
.section-dark { background: var(--bg-2); }

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-head { margin-bottom: 4rem; }
.section-head.center { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 4rem; }

.section-head h2,
.about-text h2,
.features-list h2,
.faq-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-head h2 em,
.about-text h2 em,
.features-list h2 em,
.faq-intro h2 em {
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head p { color: var(--text-muted); font-size: 1.0625rem; }

.lead { font-size: 1.125rem; color: var(--text); margin-bottom: 1rem; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.about-img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.about-img-float img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.float-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(7, 11, 20, 0.95));
}

.float-badge strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
}

.float-badge span { font-size: 0.75rem; color: var(--text-muted); }

.about-shape {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text p { color: var(--text-muted); margin-bottom: 1rem; }

.about-cards { display: grid; gap: 1rem; margin: 2rem 0; }

.about-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.about-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: var(--surface-hover);
}

.about-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.about-card p { font-size: 0.875rem; margin: 0; }

.values-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.value-tag {
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 999px;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), var(--glow-cyan);
}

.service-img { position: relative; height: 200px; overflow: hidden; }

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-img img { transform: scale(1.08); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(7, 11, 20, 0.8));
}

.service-body { padding: 1.75rem; }

.service-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.service-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
}

.service-link:hover { color: var(--gold); }

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.process-step { text-align: center; }

.process-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
}

.process-icon img { width: 100%; height: 100%; object-fit: cover; }

.process-icon span {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--bg);
  border: 3px solid var(--bg);
}

.process-step h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9375rem; color: var(--text-muted); max-width: 260px; margin: 0 auto; }

.process-connector {
  display: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  align-self: center;
}

/* ─── STATS ─── */
.stats-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.stats-bg { position: absolute; inset: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 20, 0.88);
}

.stats-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-item span { font-size: 0.9375rem; color: var(--text-muted); }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 2rem;
}

.price-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.price-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-4px);
}

.price-card--featured {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(124, 92, 252, 0.08));
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--glow-cyan);
  transform: scale(1.02);
}

.price-card--featured:hover { transform: scale(1.02) translateY(-4px); }

.price-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gradient);
  color: var(--bg);
  border-radius: 999px;
}

.price-header h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.25rem; }
.price-header p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.price-amount { margin-bottom: 2rem; }

.price-amount .currency {
  font-size: 1.25rem;
  color: var(--gold);
  vertical-align: top;
}

.price-amount .amount {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-list { margin-bottom: 2rem; }

.price-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-extras {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.extra-item strong { color: var(--gold); font-size: 1.0625rem; white-space: nowrap; }

/* ─── FEATURES ─── */
.features-split {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.features-visual { position: relative; }

.features-visual > img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.features-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(7, 11, 20, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.features-badge svg { color: var(--green); flex-shrink: 0; }
.features-badge strong { display: block; font-size: 0.9375rem; }
.features-badge span { font-size: 0.8125rem; color: var(--text-muted); }

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.feature-item h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.9375rem; color: var(--text-muted); }

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.team-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-6px);
}

.team-photo {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-social {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(7, 11, 20, 0.85);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-social { opacity: 1; }

.team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg);
}

.team-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { display: block; font-size: 0.8125rem; color: var(--cyan); font-weight: 600; margin-bottom: 0.75rem; }
.team-card > p { font-size: 0.875rem; color: var(--text-muted); }

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

.testimonial-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(245, 200, 66, 0.06));
  border-color: rgba(245, 200, 66, 0.25);
}

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-card > p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-author strong { display: block; font-size: 0.9375rem; }
.testimonial-author span { font-size: 0.8125rem; color: var(--text-muted); }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.blog-img { position: relative; height: 200px; overflow: hidden; }

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gradient);
  color: var(--bg);
  border-radius: 999px;
}

.blog-body { padding: 1.5rem; }

.blog-body time { font-size: 0.8125rem; color: var(--text-dim); }

.blog-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.blog-body p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1rem; }

.blog-link { font-size: 0.875rem; font-weight: 600; color: var(--cyan); }
.blog-link:hover { color: var(--gold); }

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  gap: 3rem;
}

.faq-intro p { color: var(--text-muted); margin-bottom: 1.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] { border-color: rgba(0, 212, 255, 0.3); }

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--cyan);
  transition: transform var(--transition);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 20, 0.85);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--cyan); }
.contact-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--cyan); }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

.form-group input.invalid,
.form-group textarea.invalid { border-color: #F87171; }

.form-error {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #F87171;
  min-height: 1.25rem;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-sm);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-align: center;
}

.form-note a { color: var(--cyan); }

/* ─── NEWSLETTER ─── */
.newsletter {
  padding: 3rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-text h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.25rem; }
.newsletter-text p { color: var(--text-muted); font-size: 0.9375rem; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--cyan);
}

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

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

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gradient);
  color: var(--bg);
  border-color: transparent;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--text-dim); }
.footer-legal a:hover { color: var(--cyan); }

.footer-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  padding: 1rem 0 2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ─── RESPONSIVE ─── */
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .features-split { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }

  .process-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
  }

  .process-connector { display: block; width: 60px; margin-top: 50px; }
}

@media (max-width: 900px) {
  .topbar-left .topbar-location { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .menu-btn { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    background: rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav.open { transform: translateX(0); }

  .nav a {
    padding: 1rem 0;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border);
  }

  .nav a.btn { margin-top: 1rem; text-align: center; }

  .hero-content { padding: 6rem 0 4rem; }

  .hero-metrics { flex-direction: column; padding: 1.5rem; }
  .metric-divider { width: 60px; height: 1px; }

  .hero-scroll { display: none; }

  .about-img-float { right: 0; width: 50%; }

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

  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; max-width: 100%; }

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

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