@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  /* Colors - Sovereign Wealth & Family Heritage */
  --obsidian: #0B132B;
  --obsidian-dark: #070C1D;
  --navy: #1C2541;
  --navy-light: #2A365B;
  --gold: #D97706;
  --gold-accent: #F59E0B;
  --gold-light: #FEF3C7;
  --emerald: #10B981;
  --emerald-light: #ECFDF5;
  
  --canvas: #F8FAFC;
  --surface: #FFFFFF;
  
  --text-dark: #0B132B;
  --text: #475569;
  --text-light: #94A3B8;
  --gray-light: #E2E8F0;
  --gray-dark: #94A3B8;
  
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE55;
  
  --border: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 20px -2px rgba(11, 19, 43, 0.05);
  --shadow-md: 0 12px 30px -4px rgba(11, 19, 43, 0.08), 0 4px 10px -2px rgba(11, 19, 43, 0.03);
  --shadow-lg: 0 24px 48px -12px rgba(11, 19, 43, 0.18);
  
  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; margin-bottom: 12px; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }

p { font-size: 1.125rem; margin-bottom: 16px; }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-emerald { color: var(--emerald); }
.text-obsidian { color: var(--obsidian); }
.text-white { color: #fff; }
.text-gray-light { color: #cbd5e1; }
.text-gray-dark { color: #64748b; }
.text-text { color: var(--text); }
.text-light { color: var(--text-light); }

.bg-gold { background-color: var(--gold); }
.bg-gold-light { background-color: var(--gold-light); }
.bg-navy { background-color: var(--navy); }
.bg-navy-light { background-color: var(--navy-light); }
.bg-emerald { background-color: var(--emerald); }
.bg-emerald-light { background-color: var(--emerald-light); }
.bg-obsidian { background-color: var(--obsidian); }
.bg-obsidian-dark { background-color: var(--obsidian-dark); }
.bg-gray-light { background-color: var(--gray-light); }
.bg-surface { background-color: var(--surface); }
.bg-canvas { background-color: var(--canvas); }

.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 64px; }
.section-pretitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text);
  font-size: 1.125rem;
  margin-top: 16px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.align-center { align-items: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.wrap { flex-wrap: wrap; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }
.text-lg { font-size: 1.125rem; }
.text-3xl { font-size: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  gap: 8px;
}

.btn-primary { background-color: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background-color: var(--obsidian); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-gold { background-color: var(--gold); color: #fff; box-shadow: var(--shadow-sm); }
.btn-gold:hover { background-color: var(--gold-accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-navy { background-color: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-navy:hover { background-color: var(--obsidian); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline.text-white { color: #fff; border-color: #fff; }
.btn-outline:hover { background-color: rgba(28, 37, 65, 0.05); }
.btn-outline.text-white:hover { background-color: rgba(255, 255, 255, 0.1); }

.icon-sm { font-size: 1.25rem !important; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  padding: 16px 0;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px -2px rgba(11, 19, 43, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--obsidian);
  line-height: 1;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
}

.nav-links a:hover {
  color: var(--obsidian);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--obsidian);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 24px;
  background: var(--surface);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border);
}
.mobile-nav.active { display: flex; }
.mobile-nav-link {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--obsidian);
}

/* Hero */
.hero {
  padding: 160px 0 80px;
  background-color: var(--canvas);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.hero-glow-1 {
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: rgba(217, 119, 6, 0.08); /* gold */
}

.hero-glow-2 {
  bottom: 0;
  left: -150px;
  width: 600px;
  height: 600px;
  background: rgba(28, 37, 65, 0.05); /* navy */
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.hero-centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-centered h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-centered .hero-desc {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 760px;
  line-height: 1.7;
}

.hero-centered .hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}

.hero-centered .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 840px;
  padding: 32px 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.hero-centered .stat-item {
  position: relative;
  text-align: center;
}

.hero-centered .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border);
}

.stat-item h4 {
  font-size: 1.75rem;
  color: var(--obsidian);
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 700;
}

.stat-item p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin: 0;
  font-weight: 600;
}

/* Cards (Dores) */
.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.card-icon .material-symbols-outlined {
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

.card-hover:hover .card-icon { transform: scale(1.1); }
.card h3 { font-size: 1.25rem; color: var(--obsidian); margin-bottom: 12px; }
.card p { font-size: 0.875rem; color: var(--text); flex-grow: 1; }
.card-solution {
  margin-top: 24px;
  padding: 12px;
  background: var(--canvas);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Marco Zero */
.bg-glow {
  position: absolute;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.bg-glow-gold {
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(217, 119, 6, 0.15);
  border-radius: 50%;
}

.mz-content { padding-right: 48px; }
.mz-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mz-step {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: var(--radius-md);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

.step-text h4 { color: #fff; margin-bottom: 8px; }
.step-text p { color: var(--gray-light); font-size: 0.875rem; margin: 0; }

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.glass-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.glass-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.glass-card h3 { color: #fff; margin-bottom: 24px; }

.glass-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.glass-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-light);
  font-size: 0.875rem;
}

.glass-list .material-symbols-outlined { font-size: 1.25rem; }

.glass-footer {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-label { font-size: 0.75rem; color: var(--text-light); }
.footer-val { font-size: 0.875rem; font-weight: 600; color: #fff; }

/* 5 Fases Metodologia */
.phase-grid {
  align-items: stretch;
}

.phase-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.phase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.phase-card-highlight {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.02);
}
.phase-card-highlight:hover { transform: scale(1.02) translateY(-4px); }

.phase-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.phase-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gray-light);
}
.phase-card-highlight .phase-num { color: var(--gold); }

.phase-card h3 { font-size: 1.125rem; color: var(--obsidian); }
.phase-card p { font-size: 0.875rem; color: var(--text); flex-grow: 1; }
.phase-card-highlight p { color: var(--gray-light); }

.phase-badge {
  margin-top: 24px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

/* Tecnologia Dashplan (Adaptado Preenchimento) */
.tech-grid {
  align-items: stretch;
}

.tech-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.tech-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.tech-card-icon .material-symbols-outlined {
  font-size: 1.75rem;
}

.tech-card h3 {
  font-size: 1.25rem;
  color: var(--obsidian);
  margin-bottom: 12px;
  line-height: 1.3;
}

.tech-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  flex-grow: 1;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  background: var(--canvas);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--obsidian);
  width: fit-content;
  border: 1px solid var(--border);
}

/* Biografia / Sobre Lucas */
.bio-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}

.bio-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: luminosity;
  opacity: 0.9;
  transition: var(--transition);
}
.bio-img:hover { opacity: 1; mix-blend-mode: normal; }

.bio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 32px 32px;
  background: linear-gradient(to top, var(--obsidian) 0%, transparent 100%);
  color: #fff;
}

.bio-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.bio-name { font-size: 2rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.bio-title { font-size: 0.875rem; color: var(--gray-light); }

.bio-content { padding-left: 24px; }
.bio-text p { font-size: 1rem; color: var(--text); line-height: 1.7; }

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--obsidian);
  border: 1px solid var(--border);
}

/* Depoimentos */
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.stars { margin-bottom: 16px; display: flex; gap: 4px; }
.stars .material-symbols-outlined { font-size: 1.25rem; }

.test-text {
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  flex-grow: 1;
}

.test-author {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.test-author strong { color: var(--obsidian); font-size: 1rem; }
.test-author span { color: var(--text-light); font-size: 0.75rem; }

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--obsidian);
  cursor: pointer;
  text-align: left;
}

.faq-icon { transition: transform 0.3s ease; color: var(--navy); }
.faq-btn.active .faq-icon { transform: rotate(180deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-btn.active + .faq-content {
  max-height: 300px;
  padding: 0 24px 24px;
}

.faq-content p { font-size: 0.875rem; margin: 0; }

/* CTA Final */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--obsidian-dark) 0%, var(--navy) 100%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  max-width: 1040px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 80px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.footer-logo img { height: 32px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-links h4 {
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.875rem;
}
.footer-links a:hover { color: #fff; }

.security-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.875rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.hover-gold:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--text-light);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { color: var(--text-light); }
.footer-legal a:hover { color: #fff; }

/* FAB WhatsApp */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.3s ease;
}
.fab-whatsapp .material-symbols-outlined { font-size: 28px; }
.fab-whatsapp:hover { transform: scale(1.1); background: var(--whatsapp-hover); }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--canvas);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
}
.close-modal:hover { background: var(--gray-light); color: var(--obsidian); }

.modal-header { margin-bottom: 32px; }
.modal-pretitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.modal-header h3 { margin-bottom: 8px; }
.modal-header p { font-size: 0.875rem; margin: 0; }

.executive-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--obsidian);
}
.form-group input, .form-group select {
  height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--obsidian);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(28, 37, 65, 0.1);
  background: var(--surface);
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
}
.form-security .material-symbols-outlined { font-size: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .hero { padding: 140px 0 60px; }
  .grid-5, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  
  .nav-links, .header-actions { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
  .header-actions { display: flex; }
  .header-actions .btn { display: none; }
  
  .hero-centered .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .hero-centered .stat-item:not(:last-child)::after {
    display: none;
  }
  .hero-centered .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-centered .hero-ctas .btn {
    width: 100%;
  }
  
  .mz-content { padding-right: 0; }
  .mz-visual { display: none; }
  .bio-content { padding-left: 0; }
  
  .cta-banner { padding: 48px 24px; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  
  .modal-content { padding: 32px 24px; }
}
