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

:root {
  --teal-900: #2d5a66;
  --teal-800: #3a7080;
  --teal-700: #4A8A9A;
  --teal-600: #5e9baa;
  --teal-500: #79b0bc;
  --teal-400: #A0CCD6;
  --teal-300: #b8dae2;
  --teal-200: #d1e8ed;
  --teal-100: #e8f3f6;
  --teal-50: #f2f8fa;
  --amber-500: #d48a1e;
  --amber-400: #F5A623;
  --amber-300: #f7b84d;
  --amber-200: #facf7e;
  --amber-100: #fde9bf;
  --surface: #f9fafb;
  --surface-warm: #faf9f7;
  --text-primary: #152123;
  --text-secondary: #3d5054;
  --text-muted: #6b8589;
  --white: #ffffff;
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(249,250,251,0.85);
  border-bottom: 1px solid rgba(74,138,154,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.5rem;
  color: var(--teal-700);
  letter-spacing: 0.18em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-700); }
.lang-toggle {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted);
  background: rgba(74,138,154,0.06);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.lang-toggle:hover { background: rgba(74,138,154,0.12); }
.lang-toggle .active-lang { color: var(--teal-700); font-weight: 700; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, var(--teal-50) 0%, var(--surface) 40%, var(--surface-warm) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-700);
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--amber-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--teal-900);
  margin-bottom: 1.5rem;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-cta-group {
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.hero-cta-hint {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--teal-700);
  font-weight: 600;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--teal-900);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-300));
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(245,166,35,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.35);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-orb-wrapper {
  position: relative;
  width: 550px; height: 550px;
  display: flex; justify-content: center; align-items: center;
}
.hero-logo-center {
  width: 420px; height: auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(74,138,154,0.1));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74,138,154,0.08);
}
.orbit-1 {
  width: 460px; height: 460px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-2 {
  width: 540px; height: 540px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  border-color: rgba(74,138,154,0.05);
}
.connectors {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.node {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(74,138,154,0.1);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
.node-1 { top: 8%; left: 15%; background: var(--white); animation-delay: -1s; }
.node-2 { top: 2%; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--teal-500), var(--teal-400)); color: white; animation-delay: -3s; }
.node-3 { bottom: 18%; left: 8%; background: linear-gradient(135deg, var(--amber-400), var(--amber-300)); animation-delay: -2s; }
.node-4 { bottom: 5%; right: 12%; background: var(--white); animation-delay: -4s; }
.node-5 { top: 35%; right: 2%; background: var(--teal-100); animation-delay: -1.5s; }

/* ── FEATURES ── */
.features {
  padding: 8rem 2rem;
  background: var(--white);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal-600);
  margin-bottom: 1rem;
}
.features h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-900);
  margin-bottom: 1rem;
  max-width: 500px;
}
.features-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 4rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--amber-400), var(--amber-300));
  border-radius: 0 0 4px 4px;
  transition: height 0.4s ease;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,138,154,0.08);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.feature-icon.teal { background: linear-gradient(135deg, var(--teal-100), var(--teal-200)); color: var(--teal-700); }
.feature-icon.gold { background: linear-gradient(135deg, var(--amber-100), var(--amber-200)); color: var(--amber-500); }
.feature-icon.deep { background: linear-gradient(135deg, var(--teal-200), var(--teal-300)); color: var(--teal-800); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── CTA ── */
.cta {
  padding: 8rem 2rem;
  background: var(--surface-warm);
}
.cta-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center;
  padding: 5rem 3rem;
  border-radius: 2rem;
  background: linear-gradient(160deg, var(--teal-100), var(--teal-50));
  border: 1px solid var(--teal-200);
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08), transparent 70%);
}
.cta-inner::after {
  content: '';
  position: absolute; bottom: -40%; left: -10%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,138,154,0.06), transparent 70%);
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--teal-700);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative; z-index: 1;
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--teal-900);
  background: var(--amber-400);
  padding: 1rem 2.25rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(245,166,35,0.3);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* ── FOOTER ── */
footer {
  padding: 3rem 2rem;
  background: var(--surface);
  border-top: 1px solid rgba(74,138,154,0.06);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.15rem;
  color: var(--teal-700);
  text-decoration: none;
  letter-spacing: 0.18em;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-700); }
.footer-copy {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 0.5rem;
}
.legal-page .legal-subtitle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-800);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-page p, .legal-page li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

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

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--teal-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
.hero-logo-mobile { display: none; }

@media (max-width: 1100px) {
  .hero-orb-wrapper { width: 400px; height: 400px; }
  .hero-logo-center { width: 300px; }
  .orbit-1 { width: 340px; height: 340px; }
  .orbit-2 { width: 400px; height: 400px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav.menu-open {
    background: var(--surface);
    backdrop-filter: none;
    height: 100vh;
    align-items: flex-start;
  }
  nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    gap: 2.5rem;
    z-index: 105;
  }
  .nav-links {
    display: none;
  }
  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--teal-700);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
  .hero-logo-mobile {
    display: block;
    width: 280px;
    height: auto;
    margin: 0 auto 1.5rem;
  }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-content .badge { margin-left: auto; margin-right: auto; }
  .hero-sub { max-width: 100%; }
  .hero-cta-group { align-self: center; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 3rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease-out; }
.hero-visual { animation: fadeUp 1s ease-out 0.2s both; }
.feature-card:nth-child(1) { animation: fadeUp 0.6s ease-out 0.4s both; }
.feature-card:nth-child(2) { animation: fadeUp 0.6s ease-out 0.55s both; }
.feature-card:nth-child(3) { animation: fadeUp 0.6s ease-out 0.7s both; }
/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  background: var(--white);
  border: 1px solid var(--teal-200);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -4px 32px rgba(74,138,154,0.1);
}
.cookie-text {
  flex: 1;
}
.cookie-text p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.cookie-text a {
  color: var(--teal-700);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 0.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-accept {
  background: var(--amber-400);
  color: var(--teal-900);
}
.cookie-accept:hover {
  background: var(--amber-300);
  transform: translateY(-1px);
}
.cookie-decline {
  background: var(--teal-100);
  color: var(--teal-700);
}
.cookie-decline:hover {
  background: var(--teal-200);
}

@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    padding: 0.75rem;
  }
}
