@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Logo-derived palette - refined */
  --navy-deep: #1a1852;
  --navy: #28309A;
  --blue: #3562d4;
  --blue-lite: #4a7cff;
  --purple: #7c3aed;
  --violet: #a78bfa;
  --muted-purple: #6C559C;

  /* Surfaces */
  --surface: #fafbff;
  --surface-2: #f0f3ff;
  --surface-3: #e8ecff;
  --border: #dde3f7;
  --border-hover: #c5cff0;

  /* Text */
  --text: #0f1033;
  --text-sub: #4b5280;
  --text-muted: #7881a8;
  --text-inv: #ffffff;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(16, 18, 47, 0.06);
  --shadow: 0 8px 30px rgba(16, 18, 47, 0.08);
  --shadow-lg: 0 20px 50px rgba(16, 18, 47, 0.12);
  --shadow-glow: 0 0 60px rgba(74, 124, 255, 0.15);
  
  /* Radii */
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Gradients */
  --accent: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --accent-hover: linear-gradient(135deg, var(--blue-lite) 0%, var(--violet) 100%);
  --surface-gradient: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection {
  background: var(--purple);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { 
  background: linear-gradient(180deg, var(--blue), var(--purple));
  border-radius: 10px;
}

/* Container */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 251, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

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

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
  transition: opacity 0.2s var(--ease);
}

.brand:hover { opacity: 0.85; }

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--surface-2);
  padding: 6px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease);
}

.brand:hover img {
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.brand-title { line-height: 1.2; }
.brand-title strong { 
  display: block; 
  font-weight: 800; 
  color: var(--navy-deep); 
  font-size: 26px;
  letter-spacing: -0.03em;
}
.brand-title span { 
  display: block; 
  font-size: 11px; 
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.2s var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--navy-deep);
  background: var(--surface-2);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
}

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

/* Nav CTA */
.nav-cta {
  display: flex;
  gap: 10px;
  min-width: 300px;
  justify-content: flex-end;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  transition: all 0.2s var(--ease);
}

.lang-switch:hover {
  border-color: var(--border-hover);
  color: var(--navy-deep);
  background: var(--surface-3);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}

.mobile-menu-btn:hover {
  background: var(--surface-2);
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 89px;
  left: 0;
  right: 0;
  background: rgba(250, 251, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s var(--ease);
  z-index: 99;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-sub);
  border-radius: 10px;
  transition: all 0.2s var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--surface-2);
  color: var(--navy-deep);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--navy-deep);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background: var(--surface-2);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.primary {
  border: none;
  background: var(--accent);
  color: var(--text-inv);
  box-shadow: 0 4px 20px rgba(53, 98, 212, 0.3);
}

.btn.primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(53, 98, 212, 0.4);
  transform: translateY(-3px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding: 60px 0 40px;
  background: var(--surface-gradient);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(74, 124, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s var(--ease) forwards;
}

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

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Typography */
h1 {
  margin: 20px 0 16px;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.25; /* slightly larger */
  letter-spacing: -0.03em;
  color: var(--navy-deep);
  animation: fadeInUp 0.6s var(--ease) 0.1s forwards;
  opacity: 0;


}
h2 { 
  color: var(--navy-deep); 
  letter-spacing: -0.02em;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.lead {
  color: var(--text-sub);
  font-size: 17px;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0 0 20px;
  animation: fadeInUp 0.6s var(--ease) 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  animation: fadeInUp 0.6s var(--ease) 0.3s forwards;
  opacity: 0;
}

/* KPIs */
.kpis {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  animation: fadeInUp 0.6s var(--ease) 0.4s forwards;
  opacity: 0;
}

.kpi {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  transition: all 0.3s var(--ease);
}

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

.kpi strong { 
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800; 
  font-size: 15px; 
  color: var(--navy-deep);
}

.kpi strong::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.kpi span { 
  display: block; 
  color: var(--text-sub); 
  font-size: 13px; 
  margin-top: 6px; 
  line-height: 1.45;
}

/* Hero Card */
.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: fadeInUp 0.8s var(--ease) 0.2s forwards;
  opacity: 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.hero-card:hover img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(26, 24, 82, 0.00) 0%, 
    rgba(26, 24, 82, 0.15) 50%,
    rgba(26, 24, 82, 0.50) 100%);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.hero-card:hover .hero-caption {
  transform: translateY(0);
  opacity: 1;
}

.hero-caption strong { 
  display: block; 
  font-weight: 800; 
  color: var(--text-inv); 
  margin-bottom: 4px;
  font-size: 16px;
}

.hero-caption span { 
  display: block; 
  color: rgba(255, 255, 255, 0.9); 
  font-size: 13px; 
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section { 
  padding: 60px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head p { 
  margin: 8px 0 0; 
  color: var(--text-sub); 
  line-height: 1.65; 
  font-size: 15px; 
  max-width: 65ch;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card {
  grid-column: span 6;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

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

.card:hover::before {
  transform: scaleX(1);
}

.card h3 { 
  margin: 0 0 10px; 
  font-size: 17px; 
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.card p { 
  margin: 0; 
  color: var(--text-sub); 
  line-height: 1.7; 
  font-size: 14px;
}

.card ul { 
  margin: 12px 0 0; 
  padding-left: 0;
  list-style: none;
  color: var(--text-sub); 
  line-height: 1.7; 
  font-size: 14px;
}

.card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.08);
  padding: 8px 12px;
  border-radius: 100px;
  margin-top: 16px;
  width: fit-content;
  transition: all 0.3s var(--ease);
}

.card:hover .pill {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.3);
}

.pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

/* ═══════════════════════════════════════════════════════════════
   MOTIF SECTION
   ═══════════════════════════════════════════════════════════════ */
.motif {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.logo-wrap {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.logo-wrap:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.logo-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease);
}

.logo-wrap:hover img {
  transform: scale(1.02);
}

.text {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.text p { 
  margin: 0; 
  color: var(--text-sub); 
  line-height: 1.75;
  font-size: 15px;
}

.callout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: all 0.3s var(--ease);
}

.mini:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.mini strong { 
  display: block; 
  font-weight: 800; 
  margin-bottom: 4px; 
  color: var(--navy-deep);
  font-size: 14px;
}

.mini span { 
  display: block; 
  color: var(--text-sub); 
  font-size: 13px; 
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   SPLIT SECTION
   ═══════════════════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.4s var(--ease);
}

.panel:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.panel:hover img {
  transform: scale(1.03);
}

.panel .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(26, 24, 82, 0.00) 0%, 
    rgba(26, 24, 82, 0.55) 100%);
  pointer-events: none;
}

.panel .content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.panel .content strong { 
  display: block; 
  font-weight: 800; 
  color: var(--text-inv); 
  margin-bottom: 8px;
  font-size: 17px;
}

.panel .content p { 
  margin: 0; 
  color: rgba(255, 255, 255, 0.9); 
  line-height: 1.6; 
  font-size: 14px;
}

/* Steps */
.steps {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  transition: all 0.3s var(--ease);
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
  background: var(--surface-3);
}

.step .n {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-inv);
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(53, 98, 212, 0.3);
  transition: transform 0.3s var(--ease-bounce);
}

.step:hover .n {
  transform: scale(1.08);
}

.step strong { 
  display: block; 
  font-weight: 800; 
  color: var(--navy-deep); 
  margin-bottom: 4px;
  font-size: 15px;
}

.step span { 
  display: block; 
  color: var(--text-sub); 
  line-height: 1.55; 
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta {
  background: linear-gradient(135deg, 
    rgba(53, 98, 212, 0.06) 0%, 
    rgba(124, 58, 237, 0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
}

.cta-inner h2 { 
  margin: 0 0 8px;
  font-size: 26px;
}

.cta-inner p { 
  margin: 0; 
  color: var(--text-sub); 
  line-height: 1.65;
  font-size: 15px;
  max-width: 50ch;
}

.cta-actions { 
  display: flex; 
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════════════════════ */
.page-hero { 
  padding: 56px 0 32px; 
  background: var(--surface-gradient);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 124, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { 
  margin: 0 0 12px;
  animation: none;
  opacity: 1;
}

.page-hero .lead {
  animation: none;
  opacity: 1;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PROSE
   ═══════════════════════════════════════════════════════════════ */
.prose h2 { 
  margin-top: 32px;
  margin-bottom: 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p { 
  color: var(--text-sub); 
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}

.media { 
  margin-top: 24px; 
  border-radius: var(--radius-lg); 
  overflow: hidden; 
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.media img { 
  width: 100%; 
  height: 260px; 
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.form {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.field { 
  display: grid; 
  gap: 8px; 
  margin-bottom: 18px;
}

label { 
  font-weight: 700; 
  font-size: 13px; 
  color: var(--navy-deep);
}

input, select, textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  background: var(--surface);
  color: var(--text);
  transition: all 0.3s var(--ease);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(53, 98, 212, 0.1);
}

textarea { 
  resize: vertical;
  min-height: 120px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.footer-grid h4 { 
  margin: 0 0 16px; 
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-grid p, 
.footer-grid a, 
.footer-grid span {
  margin: 0; 
  color: var(--text-sub); 
  line-height: 1.7; 
  font-size: 14px;
}

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

.footer-links a {
  transition: color 0.2s var(--ease);
}

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

.fine { 
  margin-top: 16px !important; 
  color: var(--text-muted) !important;
  font-size: 13px !important;
}

.footer .brand {
  min-width: unset;
  margin-bottom: 8px;
}

.footer .brand img {
  width: 48px;
  height: 48px;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for cards */
.cards .card:nth-child(1) { transition-delay: 0s; }
.cards .card:nth-child(2) { transition-delay: 0.1s; }
.cards .card:nth-child(3) { transition-delay: 0.2s; }
.cards .card:nth-child(4) { transition-delay: 0.3s; }
.cards .card:nth-child(5) { transition-delay: 0.4s; }
.cards .card:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { 
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-card img { height: 400px; }
  
  .kpis { grid-template-columns: 1fr; }
  
  .card { grid-column: span 12; }
  
  .split { grid-template-columns: 1fr; }
  
  .motif { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .nav-links { display: none; }
  
  .mobile-menu-btn { display: flex; }
  
  .mobile-nav { display: block; }
  
  .brand, .nav-cta { min-width: unset; }
  
  .nav-cta .btn:not(.primary) { display: none; }
  
  .contact-grid { grid-template-columns: 1fr; }
  
  .cta-inner { 
    flex-direction: column; 
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }
  
  .hero { padding: 40px 0 32px; }
  
  .section { padding: 40px 0; }
  
  .hero-card img { height: 320px; }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .callout { grid-template-columns: 1fr; }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  animation: scaleIn .25s ease;
}

.modal h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.modal p {
  color: #555;
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background: #2563eb;
  color: #fff;
}

.btn.secondary {
  background: #e5e7eb;
  color: #111;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
