/* ============================================================
   GrowthAxis — Marketing Dental Premium
   Design system preluat din growthaxis-calendly:
   Plus Jakarta Sans / Hanken Grotesk / JetBrains Mono,
   navy + gold, butoane pill, carduri rotunjite cu glow.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Hanken+Grotesk:wght@400;500;600&family=JetBrains+Mono:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
  --navy:   #001232;
  --navy2:  #0D1E3C;
  --navy3:  #081628;
  --gold:   #B4964B;
  --gold2:  #e4c373;
  --text:   #f0efe8;
  --muted:  #9aa8bf;
  --light:  #F8F9FC;
  --dark-on-light: #0D1E3C;
  --muted-on-light: #6b7a8e;
  --border: rgba(180, 150, 75, 0.2);
  --border-strong: rgba(180, 150, 75, 0.45);
  --whatsapp: #25D366;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  text-transform: none;
  letter-spacing: normal;
  flex-shrink: 0;
}

.icon-fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-navy2 {
  background: var(--navy2);
}

.section-light {
  background: var(--light);
}

.section-light h2,
.section-light h3 {
  color: var(--dark-on-light);
}

/* pe fundal navy2, cardurile coboară un ton ca să iasă în evidență */
.section-navy2 .module-card,
.section-navy2 .process-step {
  background: var(--navy);
}

.section-head {
  margin-bottom: 64px;
}

.section-head.centered {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-head.centered .section-sub {
  margin: 16px auto 0;
}

.section-light .section-sub {
  color: var(--muted-on-light);
}

.mono-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.gold-line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
}

.section-head.centered .gold-line {
  margin: 0 auto;
}

/* Texte cu strălucire aurie animată */
.gold-shimmer {
  display: inline-block;
  background: linear-gradient(90deg, #7a5f20, var(--gold), var(--gold2), var(--gold), #7a5f20);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Textură cu puncte aurii */
.dot-texture {
  background-image: radial-gradient(rgba(180, 150, 75, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------- Butoane ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy2);
  padding: 18px 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(180, 150, 75, 0.5);
  background: var(--gold2);
}

.btn-primary .material-symbols-outlined {
  font-size: 18px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  padding: 16px 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(180, 150, 75, 0.08);
  box-shadow: 0 8px 28px rgba(180, 150, 75, 0.2);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(37, 211, 102, 0.08);
  color: var(--whatsapp);
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 9999px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: var(--whatsapp);
}

.cta-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(180, 150, 75, 0.4);
  background: rgba(13, 30, 60, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 32px;
  animation: badgePulse 3s ease-in-out infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

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

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180, 150, 75, 0); }
  50%      { box-shadow: 0 0 0 8px rgba(180, 150, 75, 0.1); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ---------- Canvas 3D fix, pe toată pagina ---------- */
.bg3d-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main, .footer, .hero, .page-hero {
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAVIGAȚIE
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 18, 50, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(180, 150, 75, 0.15);
  transition: box-shadow 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--gold2);
}

.logo .material-symbols-outlined {
  color: var(--gold);
}

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

.nav-links a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px;
}

/* Burger (doar mobil) */
#burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
}

#mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(0, 18, 50, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 49;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none;
}

#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#mobile-menu a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 8px;
  border-bottom: 1px solid rgba(180, 150, 75, 0.08);
  transition: color 0.2s;
}

#mobile-menu a:active,
#mobile-menu a.active {
  color: var(--gold);
}

#mobile-menu .btn-primary {
  margin-top: 14px;
  border-bottom: none;
  padding: 16px;
}

#mobile-menu .btn-whatsapp {
  margin-top: 10px;
  border-bottom: 1px solid rgba(37, 211, 102, 0.35);
}

@media (min-width: 768px) {
  #mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #burger-btn {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-inner {
    height: 64px;
  }

  .logo {
    font-size: 17px;
  }
}

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

.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  top: 20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: rgba(13, 30, 60, 0.7);
  filter: blur(120px);
}

.glow-2 {
  bottom: 10%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: rgba(90, 70, 20, 0.15);
  filter: blur(150px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 112px 24px 48px;
  max-width: 1024px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero .cta-group {
  margin-bottom: 64px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-hint .material-symbols-outlined {
  font-size: 18px;
  color: var(--gold);
}

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

/* ---------- Mockup dashboard (tilt) ---------- */
.perspective-container {
  perspective: 1200px;
  width: 100%;
  max-width: 896px;
}

.tilt-card {
  transform: rotateX(10deg);
  transform-style: preserve-3d;
  transition: transform 0.6s ease-out;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(180, 150, 75, 0.08);
  background: var(--navy2);
  position: relative;
}

.tilt-card:hover {
  transform: rotateX(0deg) translateY(-12px);
}

.dash-header {
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(180, 150, 75, 0.15);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.dash-header span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-left: 16px;
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
}

.dash-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(180, 150, 75, 0.12);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
}

.dash-bar-wrap {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}

.dash-bar {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}

.dash-row {
  grid-column: span 3;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(180, 150, 75, 0.12);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dash-row .material-symbols-outlined {
  color: var(--gold);
}

.dash-row p {
  font-size: 14px;
  color: var(--text);
}

.dash-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 2px 10px;
  border-radius: 9999px;
  margin-left: auto;
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--navy), transparent);
  pointer-events: none;
}

/* ============================================================
   HERO — pagini secundare
   ============================================================ */
.page-hero {
  position: relative;
  padding: 176px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero .glow-1 {
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: rgba(90, 70, 20, 0.12);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
  position: relative;
}

.page-hero .gold-line {
  margin: 0 auto 24px;
}

.page-hero .hero-sub {
  margin: 0 auto;
}

/* ============================================================
   CARDURI MODULE (grid bento)
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.span-8 { grid-column: span 8; }
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }

@media (max-width: 860px) {
  .span-8, .span-6, .span-4 {
    grid-column: span 12;
  }
}

.module-card {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(180, 150, 75, 0.15);
}

.module-icon {
  width: 48px;
  height: 48px;
  background: rgba(180, 150, 75, 0.1);
  border: 1px solid rgba(180, 150, 75, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.module-icon .material-symbols-outlined {
  color: var(--gold);
}

.module-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.module-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.dot-pattern-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.07;
  pointer-events: none;
}

/* ============================================================
   PILLAR CARDS (deschis / închis)
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pillar-light {
  background: var(--light);
  color: var(--dark-on-light);
}

.pillar-light h3 {
  color: var(--dark-on-light);
}

.pillar-light p {
  color: #3a4a5e;
}

.pillar-dark {
  background: var(--navy);
  border: 1px solid rgba(180, 150, 75, 0.25);
  box-shadow: 0 0 30px rgba(180, 150, 75, 0.08);
}

.pillar-dark p {
  color: var(--muted);
}

.pillar-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 14px;
  line-height: 1.65;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-light .pillar-icon {
  background: rgba(13, 30, 60, 0.08);
}

.pillar-light .pillar-icon .material-symbols-outlined {
  color: var(--dark-on-light);
}

.pillar-dark .pillar-icon {
  background: rgba(180, 150, 75, 0.12);
  border: 1px solid rgba(180, 150, 75, 0.25);
}

.pillar-dark .pillar-icon .material-symbols-outlined {
  color: var(--gold);
}

.pillar-raised {
  transform: translateY(-16px);
}

.pillar-raised:hover {
  transform: translateY(-22px);
}

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

  .pillar-raised {
    transform: none;
  }

  .pillar-raised:hover {
    transform: translateY(-6px);
  }
}

/* ============================================================
   PROCES (pași)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(180, 150, 75, 0.15);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================================
   STATISTICI (secțiune deschisă)
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stats-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: var(--dark-on-light);
  display: block;
  margin-bottom: 8px;
}

.stat-number.gold {
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-light);
}

@media (max-width: 720px) {
  .stats-grid,
  .stats-grid.cols-4 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   CUTIE CTA (sticlă, cercuri decorative)
   ============================================================ */
.cta-section {
  background: radial-gradient(circle at center, var(--navy2) 0%, var(--navy) 100%);
  overflow: hidden;
}

.deco-circle {
  position: absolute;
  border: 1px solid rgba(180, 150, 75, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.deco-circle.bl {
  left: 0;
  bottom: 0;
  width: 256px;
  height: 256px;
  transform: scale(1.5) translate(-50%, 50%);
}

.deco-circle.tr {
  right: 0;
  top: 0;
  width: 384px;
  height: 384px;
  transform: scale(1.5) translate(50%, -50%);
}

.glass-box {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(0, 18, 50, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 64px;
  border-radius: 16px;
  border: 1px solid rgba(180, 150, 75, 0.18);
  box-shadow: 0 0 40px rgba(180, 150, 75, 0.1);
}

.glass-box h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 24px;
}

.glass-box > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .glass-box {
    padding: 36px 22px;
    border-radius: 14px;
  }
}

/* ============================================================
   SERVICII — carduri detaliate module
   ============================================================ */
.module-detail {
  position: relative;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 48px;
  margin-bottom: 32px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.module-detail:hover {
  border-color: var(--border-strong);
  box-shadow: 0 10px 40px rgba(180, 150, 75, 0.1);
}

.module-watermark {
  position: absolute;
  top: -32px;
  right: 16px;
  font-family: var(--font-display);
  font-size: clamp(9rem, 20vw, 16rem);
  font-weight: 800;
  color: var(--text);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.module-detail-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.module-detail:nth-child(even) .module-detail-inner {
  flex-direction: row-reverse;
}

.module-detail-text {
  flex: 1.3;
}

.module-detail-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.module-detail h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.module-tagline {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.module-detail h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 12px;
}

.module-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 8px;
}

.module-includes .material-symbols-outlined {
  font-size: 18px;
  color: var(--gold);
  margin-top: 3px;
}

.module-solves {
  color: var(--muted);
  font-size: 15px;
}

.module-result {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(180, 150, 75, 0.1);
  border: 1px solid rgba(180, 150, 75, 0.25);
  border-radius: 9999px;
  padding: 10px 22px;
}

/* Vizualuri CSS în carduri */
.visual-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(rgba(180, 150, 75, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}

.v-circle {
  position: absolute;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}

.v-circle.c1 { width: 60%; height: 60%; animation: spin-slow 22s linear infinite; border-style: dashed; }
.v-circle.c2 { width: 38%; height: 38%; }
.v-circle.c3 { width: 16%; height: 16%; background: rgba(180, 150, 75, 0.25); }

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

.v-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 55%;
}

.v-bars i {
  width: 26px;
  background: linear-gradient(to top, var(--gold), rgba(180, 150, 75, 0.15));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: bar-grow 2.8s ease-in-out infinite alternate;
}

.v-bars i:nth-child(1) { height: 35%; animation-delay: 0s; }
.v-bars i:nth-child(2) { height: 55%; animation-delay: 0.3s; }
.v-bars i:nth-child(3) { height: 70%; animation-delay: 0.6s; }
.v-bars i:nth-child(4) { height: 90%; animation-delay: 0.9s; }

@keyframes bar-grow {
  from { transform: scaleY(0.82); }
  to   { transform: scaleY(1); }
}

.v-bubbles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 70%;
}

.v-bubbles span {
  display: block;
  height: 34px;
  border-radius: 10px 10px 10px 2px;
  border: 1px solid var(--border-strong);
  background: rgba(180, 150, 75, 0.06);
}

.v-bubbles span:nth-child(2) {
  width: 75%;
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
  background: rgba(180, 150, 75, 0.18);
}

.v-bubbles span:nth-child(3) { width: 60%; }

.v-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 65%;
}

.v-calendar i {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.v-calendar i.full {
  background: rgba(180, 150, 75, 0.35);
  border-color: var(--border-strong);
}

.v-stars {
  display: flex;
  gap: 10px;
}

.v-stars .material-symbols-outlined {
  font-size: 34px;
  color: var(--gold);
}

.v-stars .material-symbols-outlined:last-child {
  opacity: 0.25;
}

@media (max-width: 860px) {
  .module-detail {
    padding: 36px 24px;
  }

  .module-detail-inner,
  .module-detail:nth-child(even) .module-detail-inner {
    flex-direction: column;
    gap: 36px;
  }

  .module-detail-visual {
    width: 100%;
  }
}

/* ============================================================
   DESPRE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 24px;
}

.story-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.story-text p strong {
  color: var(--gold2);
  font-weight: 600;
}

.story-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.geo {
  position: absolute;
  border: 1px solid var(--border-strong);
}

.geo-square {
  width: 62%;
  height: 62%;
  top: 8%;
  left: 8%;
  border-radius: 16px;
  transform: rotate(12deg);
  animation: geo-drift 9s ease-in-out infinite alternate;
}

.geo-circle {
  width: 48%;
  height: 48%;
  bottom: 6%;
  right: 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(180, 150, 75, 0.16), transparent 65%);
  animation: geo-drift 11s ease-in-out infinite alternate-reverse;
}

.geo-diamond {
  width: 26%;
  height: 26%;
  top: 4%;
  right: 14%;
  border-radius: 10px;
  transform: rotate(45deg);
  background: rgba(180, 150, 75, 0.1);
  animation: geo-drift 7s ease-in-out infinite alternate;
}

.geo-line {
  width: 70%;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  bottom: 22%;
  left: 0;
}

@keyframes geo-drift {
  from { translate: 0 0; }
  to   { translate: 0 -16px; }
}

@media (max-width: 860px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* Fondator */
.founder-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 18, 50, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(180, 150, 75, 0.18);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(180, 150, 75, 0.1);
  padding: 56px 40px;
}

.founder-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 28px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(180, 150, 75, 0.06);
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.founder-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.founder-card p {
  color: var(--muted);
  font-size: 15px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 24px;
}

.contact-info .btn-whatsapp,
.contact-info .btn-outline {
  width: 100%;
  margin-bottom: 14px;
}

.contact-note {
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0 36px;
}

.info-box {
  border: 1px solid rgba(180, 150, 75, 0.25);
  border-radius: 12px;
  background: var(--navy2);
  padding: 32px 28px;
}

.info-box h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--text);
}

.info-box li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.info-box .material-symbols-outlined {
  font-size: 18px;
  color: var(--gold);
  margin-top: 3px;
}

/* Calendly inline */
.calendly-card {
  background: var(--navy2);
  border: 1px solid rgba(180, 150, 75, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(180, 150, 75, 0.1);
}

.calendly-card-head {
  padding: 24px 28px 0;
}

.calendly-card-head h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.calendly-card-head p {
  font-size: 13px;
  color: var(--muted);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 48px 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(180, 150, 75, 0.12);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold2);
}

.footer-copy {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   REVEAL (stări inițiale — GSAP preia animația)
   ============================================================ */
.reveal       { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }

.no-js .reveal,
.no-js .reveal-left,
.no-js .reveal-right,
.no-js .reveal-scale {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   MOBIL (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 16px;
  }

  .hero-inner {
    padding: 100px 18px 24px;
  }

  .badge {
    padding: 7px 14px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    max-width: calc(100vw - 40px);
    font-size: 10px;
    line-height: 1.5;
  }

  .hero-title {
    font-size: clamp(29px, 8.5vw, 38px);
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .btn-primary {
    padding: 15px 24px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .hero .cta-group {
    margin-bottom: 36px;
  }

  .tilt-card {
    transform: rotateX(6deg);
    border-radius: 12px;
  }

  .dash-header { height: 34px; padding: 0 10px; gap: 6px; }
  .dash-header span { font-size: 9px; margin-left: 6px; }
  .dash-dot { width: 9px; height: 9px; }
  .dash-body { gap: 7px; padding: 10px; }
  .dash-card { padding: 9px 7px; gap: 3px; border-radius: 8px; }
  .dash-label { font-size: 7.5px; letter-spacing: 0.03em; }
  .dash-value { font-size: 16px; }
  .dash-bar-wrap { height: 3px; margin-top: 4px; }
  .dash-row { padding: 9px 10px; gap: 8px; }
  .dash-row .material-symbols-outlined { font-size: 18px; }
  .dash-row p { font-size: 10.5px; line-height: 1.45; }
  .dash-tag { font-size: 8px; padding: 2px 7px; }
  .fade-overlay { height: 44px; }

  .scroll-hint {
    display: none;
  }

  .glow-1 { width: 260px; height: 260px; filter: blur(70px); }
  .glow-2 { width: 280px; height: 280px; filter: blur(80px); }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .section-head h2 {
    font-size: 25px;
    line-height: 1.25;
  }

  .page-hero {
    padding: 128px 0 48px;
  }

  .module-card,
  .pillar-card {
    padding: 24px 20px;
  }

  .bento-grid {
    gap: 16px;
  }

  .stat-number {
    font-size: 42px;
  }

  .glass-box h2 {
    font-size: 24px;
  }

  .glass-box > p {
    font-size: 15px;
    margin-bottom: 28px;
  }
}
