/* ======= DESIGN SYSTEM & TOKENS ======= */
:root {
  /* HSL & HEX Colors - Light Theme (Elegant Sand & Corporate Navy) */
  --bg-primary: hsl(40, 20%, 95%);
  --bg-secondary: hsl(45, 15%, 97%);
  --bg-tertiary: hsl(0, 0%, 100%);
  --border-color: rgba(0, 0, 0, 0.08);
  --divider-color: hsl(40, 10%, 85%);
  
  --text-primary: hsl(210, 40%, 10%);
  --text-muted: hsl(40, 8%, 40%);
  --text-faint: hsl(40, 5%, 70%);
  --text-inverse: hsl(40, 20%, 98%);
  
  /* Brand Corporate Navy */
  --primary: hsl(215, 65%, 15%);
  --primary-hover: hsl(215, 65%, 20%);
  --primary-active: hsl(215, 65%, 10%);
  --primary-highlight: hsl(215, 40%, 90%);
  
  /* Brand Accent Gold */
  --accent: hsl(40, 42%, 54%);
  --accent-hover: hsl(40, 42%, 46%);
  --accent-light: hsl(40, 40%, 90%);
  
  /* Shadow & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  
  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Typography Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.3vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.35rem);
  --text-xl: clamp(1.35rem, 1.2rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 2rem + 3.5vw, 4.5rem);
  
  /* Layout Spaces */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  
  --content-narrow: 680px;
  --content-default: 980px;
  --content-wide: 1200px;
  
  /* Specific transparencies */
  --header-bg: rgba(245, 243, 239, 0.9);
  --card-bg: rgba(255, 255, 255, 0.45);
  --btn-nav-border: rgba(184, 151, 90, 0.5);
  --white-text-muted: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] {
  /* HSL Colors - Dark Theme (Obsidian & Soft Gold) */
  --bg-primary: hsl(220, 25%, 8%);
  --bg-secondary: hsl(220, 25%, 11%);
  --bg-tertiary: hsl(220, 20%, 14%);
  --border-color: rgba(255, 255, 255, 0.08);
  --divider-color: hsl(220, 15%, 18%);
  
  --text-primary: hsl(40, 20%, 90%);
  --text-muted: hsl(220, 10%, 65%);
  --text-faint: hsl(220, 10%, 40%);
  --text-inverse: hsl(220, 25%, 6%);
  
  --primary: hsl(215, 50%, 45%);
  --primary-hover: hsl(215, 50%, 52%);
  --primary-active: hsl(215, 50%, 38%);
  --primary-highlight: hsl(215, 30%, 15%);
  
  --accent: hsl(40, 50%, 65%);
  --accent-hover: hsl(40, 50%, 72%);
  --accent-light: hsl(40, 30%, 15%);
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  
  /* Specific transparencies */
  --header-bg: rgba(14, 17, 24, 0.9);
  --card-bg: rgba(28, 34, 48, 0.45);
  --btn-nav-border: rgba(212, 170, 110, 0.5);
  --white-text-muted: rgba(255, 255, 255, 0.7);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--primary);
  font-weight: 600;
  text-wrap: balance;
  transition: color var(--transition);
}

[data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4 {
  color: var(--text-primary);
}

p, li {
  text-wrap: pretty;
  max-width: 72ch;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--primary);
  color: var(--text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  z-index: 1000;
}
.skip-link:focus {
  top: var(--space-4);
}

/* ======= CONTAINERS ======= */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-10));
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 56ch;
}

/* ======= HEADER / NAV ======= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition), border-color var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.logo-icon-wrapper {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--btn-nav-border);
}
.logo-initials {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a:hover {
  color: var(--primary);
}
[data-theme="dark"] .nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.btn-pro-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-2) var(--space-4);
  background: var(--primary);
  color: var(--text-inverse) !important;
  border-radius: var(--radius-md);
  border: 1px solid var(--btn-nav-border);
  box-shadow: var(--shadow-sm);
}
.btn-pro-nav:hover {
  background: var(--accent);
  color: var(--primary) !important;
  border-color: var(--accent);
}
.btn-pro-nav svg {
  width: 14px;
  height: 14px;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}
.theme-toggle:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 20px;
  padding: 2px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ======= INDICATORS MARQUEE ======= */
.indicators-marquee {
  background: var(--primary);
  border-top: 1px solid rgba(184,151,86,0.3);
  border-bottom: 2px solid var(--accent);
  color: var(--text-inverse);
  padding: var(--space-1) 0;
  overflow: hidden;
  position: relative;
  z-index: 90;
}
.indicators-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  gap: 0;
}
.indicators-marquee:hover .indicators-track {
  animation-play-state: paused;
}
.indicator-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}
.indicator-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--accent);
}
.indicator-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-xs);
}
.indicator-trend {
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.indicator-trend svg {
  width: 12px;
  height: 12px;
}
.indicator-trend.up {
  color: hsl(100, 70%, 45%);
}
.indicator-trend.down {
  color: hsl(0, 80%, 60%);
}
.indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(184, 151, 90, 0.4);
  margin-left: var(--space-6);
}
[data-theme="dark"] .indicator-dot {
  background: rgba(212, 170, 110, 0.4);
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======= HERO SECTION ======= */
.hero-section {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--space-12);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}
[data-theme="dark"] .hero-canvas {
  opacity: 0.08;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-section h1 {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--space-10);
  max-width: 50ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--primary);
  color: var(--text-inverse);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: transparent;
  color: var(--primary);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1px solid var(--primary);
}
[data-theme="dark"] .btn-secondary {
  color: var(--text-primary);
  border-color: var(--border-color);
}
.btn-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}
.btn-secondary svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.glass-card:hover {
  border-color: rgba(184, 151, 90, 0.3);
}
[data-theme="dark"] .glass-card:hover {
  border-color: rgba(212, 170, 110, 0.3);
}

.card-glow {
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(184, 151, 90, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
[data-theme="dark"] .card-glow {
  background: radial-gradient(circle, rgba(212, 170, 110, 0.1) 0%, transparent 60%);
}

.preview-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  opacity: 0.9;
}
.preview-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.preview-header .dot.red { background: hsl(0, 80%, 60%); }
.preview-header .dot.yellow { background: hsl(40, 90%, 60%); }
.preview-header .dot.green { background: hsl(100, 70%, 50%); }
.preview-title {
  margin-left: var(--space-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.preview-body {
  padding: var(--space-6);
}

.preview-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.preview-stat-item {
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  background: var(--bg-secondary);
  opacity: 0.9;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}
.stat-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}
[data-theme="dark"] .stat-value {
  color: var(--text-primary);
}
.stat-trend {
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.stat-trend.positive { color: hsl(100, 70%, 45%); }
.stat-trend svg { width: 12px; height: 12px; }
.stat-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}
.stat-badge.warning {
  background: rgba(184, 151, 90, 0.15);
  color: var(--accent);
}
[data-theme="dark"] .stat-badge.warning {
  background: rgba(212, 170, 110, 0.15);
}

.preview-chart-placeholder {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--space-6);
}
.chart-bar {
  width: 12%;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
  transition: height 1s ease;
}

.preview-action-row {
  display: flex;
  justify-content: center;
}
.btn-pro-demo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent);
}
.btn-pro-demo svg {
  width: 14px;
  height: 14px;
}
.btn-pro-demo:hover {
  text-shadow: 0 0 8px rgba(184, 151, 90, 0.3);
}
[data-theme="dark"] .btn-pro-demo:hover {
  text-shadow: 0 0 8px rgba(212, 170, 110, 0.3);
}

/* ======= PROMO CLIENTES PRO ======= */
.promo-pro-section {
  background: var(--primary);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-block: var(--space-20);
}
.text-white {
  color: hsl(0, 0%, 100%) !important;
}
.text-white-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}
.promo-pro-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.promo-pro-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.promo-pro-features li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.feature-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(184, 151, 90, 0.15);
  border: 1px solid rgba(184, 151, 90, 0.2);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
[data-theme="dark"] .feature-icon-box {
  background: rgba(212, 170, 110, 0.15);
  border-color: rgba(212, 170, 110, 0.2);
}
.feature-icon-box svg {
  width: 20px;
  height: 20px;
}
.promo-pro-features h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--space-1);
}
.promo-pro-features p {
  font-size: var(--text-xs);
  color: var(--white-text-muted);
  line-height: 1.5;
}

.promo-action-card {
  padding: var(--space-10);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shield-giant-icon {
  width: 60px;
  height: 60px;
  color: var(--accent);
  margin-bottom: var(--space-6);
  filter: drop-shadow(0 4px 12px rgba(184, 151, 90, 0.3));
}
[data-theme="dark"] .shield-giant-icon {
  filter: drop-shadow(0 4px 12px rgba(212, 170, 110, 0.3));
}
.promo-action-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}
.promo-action-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  max-width: 32ch;
}
.btn-accent-glow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(184, 151, 90, 0.3);
}
[data-theme="dark"] .btn-accent-glow {
  box-shadow: 0 4px 20px rgba(212, 170, 110, 0.3);
}
.btn-accent-glow:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 151, 90, 0.5);
}
[data-theme="dark"] .btn-accent-glow:hover {
  box-shadow: 0 8px 30px rgba(212, 170, 110, 0.5);
}
.btn-accent-glow svg {
  width: 16px;
  height: 16px;
}

/* ======= SERVICES SECTION ======= */
.services-section {
  background: var(--bg-secondary);
  padding-block: var(--space-24);
}
.section-header {
  margin-bottom: var(--space-16);
}
.section-header.text-center {
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 151, 90, 0.2);
}
[data-theme="dark"] .service-card:hover {
  border-color: rgba(212, 170, 110, 0.2);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(13, 31, 60, 0.08);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-6);
  color: var(--primary);
}
[data-theme="dark"] .service-icon {
  background: rgba(212, 170, 110, 0.15);
  color: var(--accent);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.service-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.service-bullets {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-bullets li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.service-bullets li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ======= STATS SECTION ======= */
.stats-section {
  background: var(--primary);
  padding-block: var(--space-16);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-inverse);
  position: relative;
}
.stat-card + .stat-card::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-4));
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.stat-icon {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-2);
  width: 24px;
  height: 24px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ======= WHY WE CHOOSE US ======= */
.why-section {
  padding-block: var(--space-24);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.why-items-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.why-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.why-icon-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.why-item h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-1);
}
[data-theme="dark"] .why-item h4 {
  color: var(--text-primary);
}
.why-item p {
  font-size: var(--text-xs);
  line-height: 1.6;
}

.visual-quote-box {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}
.visual-quote-box::before {
  content: '';
  position: absolute;
  top: -20px; left: var(--space-6);
  font-family: var(--font-display);
  font-size: 15rem;
  line-height: 1;
  background: transparent;
  color: rgba(184, 151, 90, 0.08);
  pointer-events: none;
}
[data-theme="dark"] .visual-quote-box::before {
  color: rgba(212, 170, 110, 0.08);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: -20px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: 1.5;
  color: var(--text-inverse);
  position: relative;
  z-index: 5;
  margin-bottom: var(--space-6);
}
.quote-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: var(--space-4);
}
.quote-author {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ======= PROCESS SECTION ======= */
.process-section {
  background: var(--bg-secondary);
  padding-block: var(--space-24);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-secondary);
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .step-badge {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--bg-secondary);
}
.process-step h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}
[data-theme="dark"] .process-step h4 {
  color: var(--text-primary);
}
.process-step p {
  font-size: 13px;
  line-height: 1.5;
  max-width: 22ch;
}

/* ======= TEAM / FOUNDER SECTION ======= */
.team-section {
  padding-block: var(--space-24);
  background: var(--bg-primary);
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-20);
  align-items: center;
}

.founder-card-premium {
  background: rgba(255, 255, 255, 0.10);
  border: 2px solid rgba(184, 151, 86, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  max-width: 340px;
  margin-inline: auto;
}
.founder-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.founder-avatar-box {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #0d1f3c;
  background: #1a2f4a;
  box-shadow: 0 0 0 4px #b89756, 0 8px 32px rgba(0,0,0,0.5);
  display: grid;
  place-items: center;
  margin: 0 auto var(--space-6);
  overflow: hidden;
}
.founder-default-avatar {
  width: 60px;
  height: 60px;
  color: var(--primary);
}
[data-theme="dark"] .founder-default-avatar {
  color: var(--accent);
}

.founder-card-premium h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-1);
}
.founder-role {
  font-size: var(--text-xs);
  color: #b89756;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-5);
  display: block;
}
.founder-socials {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}
.founder-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #b89756;
  border: 1.5px solid rgba(184,151,86,0.5);
  display: grid;
  place-items: center;
  transition: var(--transition);
  text-decoration: none;
}
.founder-socials a:hover {
  background: #b89756;
  color: #0d1f3c;
  border-color: #b89756;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,151,86,0.4);
}
.founder-socials a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.team-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-block: var(--space-8);
  padding-block: var(--space-6);
  border-block: 1px solid var(--border-color);
  max-width: 400px;
}
.f-stat-item {
  display: flex;
  flex-direction: column;
}
.f-stat-item strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
}
[data-theme="dark"] .f-stat-item strong {
  color: var(--text-primary);
}
.f-stat-item span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: var(--space-3) var(--space-8);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
}
[data-theme="dark"] .btn-primary-outline {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-primary-outline:hover {
  background: var(--primary);
  color: var(--text-inverse);
}
[data-theme="dark"] .btn-primary-outline:hover {
  background: var(--accent);
  color: var(--primary) !important;
}

/* ======= CONTACT SECTION ======= */
.contact-section {
  padding-block: var(--space-24);
  background: var(--bg-secondary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-20);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.contact-card {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-sm);
}
.c-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(184, 151, 90, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
[data-theme="dark"] .c-card-icon {
  background: rgba(212, 170, 110, 0.15);
}
.c-card-icon svg {
  width: 20px;
  height: 20px;
}
.contact-card span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}
.contact-card strong {
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.contact-form-container {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-title-row {
  margin-bottom: var(--space-8);
}
.form-title-row h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-1);
}
[data-theme="dark"] .form-title-row h3 {
  color: var(--text-primary);
}
.form-title-row p {
  font-size: 11px;
  color: var(--text-muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-primary);
}
.form-group input, .form-group select, .form-group textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--bg-secondary);
  border: 1px solid var(--divider-color);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 151, 90, 0.15);
}
[data-theme="dark"] .form-group input:focus, [data-theme="dark"] .form-group select:focus, [data-theme="dark"] .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(212, 170, 110, 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-form-submit {
  width: 100%;
  padding: var(--space-4);
  background: var(--primary);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.btn-form-submit:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-form-submit svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.form-success-card {
  padding: var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-icon {
  width: 48px;
  height: 48px;
  color: hsl(100, 70%, 45%);
  margin-bottom: var(--space-4);
}
.form-success-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.form-success-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ======= SITE FOOTER ======= */
.site-footer {
  background: var(--primary);
  color: var(--text-inverse);
  padding-block: var(--space-16) var(--space-6);
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-8);
}
.footer-brand .logo-name {
  color: var(--text-inverse);
  font-size: var(--text-xl);
}
.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: var(--space-4);
}
.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 36ch;
}

.footer-links-col h5, .footer-contact-col h5 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-6);
}
.footer-links-col ul, .footer-contact-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-links-col a, .footer-contact-col a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
}
.footer-links-col a:hover, .footer-contact-col a:hover {
  color: var(--accent);
}
.footer-contact-col span {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}
.footer-heart {
  color: hsl(0, 80%, 60%);
}
.footer-bottom-links a {
  font-size: var(--text-xs);
  color: var(--accent);
  font-weight: 600;
}

/* ======= MOBILE NAVIGATION PORTAL ======= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg-tertiary);
  padding: var(--space-8);
  flex-direction: column;
  gap: var(--space-8);
  animation: slide-in 300ms ease;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-4);
}
.mobile-nav-header .logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
}
[data-theme="dark"] .mobile-nav-header .logo-name {
  color: var(--text-primary);
}
.mobile-nav-header .close-btn {
  font-size: var(--text-lg);
  color: var(--text-muted);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-2);
}
[data-theme="dark"] .mobile-nav-links a {
  color: var(--text-primary);
}
.btn-pro-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 700;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
}

@keyframes slide-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ======= ANIMATIONS (SCROLL REVEAL) ======= */
.reveal {
  opacity: 1;
  transform: none;
}
.theme-toggle {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ======= RESPONSIVE MEDIA QUERIES ======= */
@media (max-width: 1024px) {
  .hero-grid, .promo-pro-grid, .why-grid, .team-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .hero-visual, .promo-pro-visual, .why-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }
  .why-visual {
    order: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav .nav-links, .desktop-nav .btn-pro-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .stat-card + .stat-card::before {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ======= CENTERING & ALIGNMENT UTILITIES ======= */
.text-center {
  text-align: center !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.section-header.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-header.text-center .section-label {
  justify-content: center;
}
.section-header.text-center .section-label::before {
  display: none !important;
}
.section-header.text-center .section-desc {
  text-align: center !important;
}

/* Founder avatar image scaling fixes */
.founder-avatar-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
