/* ===========================
   ZIRAWORLD — STYLE PRINCIPAL
   =========================== */

:root {
  --primary: #0a3d6b;
  --primary-light: #1258a0;
  --primary-dark: #062a4a;
  --secondary: #0f7a56;
  --accent: #c8940a;
  --dark: #0d1117;
  --dark-2: #161c26;
  --gray: #3d4a5c;
  --gray-light: #7a8899;
  --bg: #f4f5f7;
  --bg-white: #ffffff;
  --border: #dde1e8;
  --text: #111827;
  --text-muted: #4b5563;

  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.03);
  --shadow: 0 4px 16px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.10), 0 6px 16px rgba(0,0,0,.05);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(10,61,107,.07);
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .01em;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,61,107,.25); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .01em;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .01em;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-secondary:hover { border-color: var(--primary); background: rgba(10,61,107,.04); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
  color: var(--text);
}
.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-text {
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { padding: 10px 22px; font-size: .85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover, .mobile-link.active { color: var(--primary); }
.mobile-menu .btn-primary { margin-top: 16px; justify-content: center; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,80,.75) 0%, rgba(0,60,130,.55) 60%, rgba(0,100,180,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero p {
  color: rgba(255,255,255,.9);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===== CARDS ===== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(0,81,168,.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(10,61,107,.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: center; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== WHY US (2-col) ===== */
.why-us-section { background: var(--bg); }
.why-us-text h2 { margin-bottom: 16px; }
.why-us-text p { color: var(--text-muted); margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 36px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: #fff;
  font-size: .7rem;
}
.why-us-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ===== BPI BADGE ===== */
.bpi-section {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}
.bpi-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.bpi-section h3 { color: #fff; margin-bottom: 12px; }
.bpi-section p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }

/* ===== CTA SECTION ===== */
.cta-section {
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FORM ===== */
.contact-form { max-width: 680px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,81,168,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #dc2626; }
.error-msg { font-size: .8rem; color: #dc2626; margin-top: 4px; display: none; }
.field-error .error-msg { display: block; }

.form-success {
  background: rgba(26,171,109,.1);
  border: 1px solid rgba(26,171,109,.3);
  color: #166534;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: none;
}
.form-success.show { display: block; }
.form-error-msg {
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.2);
  color: #dc2626;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: none;
}
.form-error-msg.show { display: block; }

.privacy-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center top;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,80,.80) 0%, rgba(0,60,130,.65) 60%, rgba(0,100,180,.45) 100%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 16px; color: #fff; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; }
.page-hero .section-label { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.page-hero .divider { background: rgba(255,255,255,.35); }

/* ===== TEAM CARD ===== */
.team-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: -.01em;
}

/* ===== PROCESS STEPS ===== */
.process-steps { display: flex; flex-direction: column; gap: 24px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
  flex-shrink: 0;
}

/* ===== SERVICE DETAIL CARD ===== */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(0,81,168,.15); }
.service-card ul { list-style: none; margin-top: 16px; }
.service-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 12px; color: var(--primary); }
.legal-content h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.legal-content table th,
.legal-content table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: .9rem;
}
.legal-content table th { background: var(--bg); font-weight: 600; color: var(--text); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 700px;
}
.cookie-content {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  flex: 1;
}
.cookie-text svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.cookie-text a { color: var(--primary-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-cookie-accept:hover { background: var(--primary-light); }
.btn-cookie-decline {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-cookie-decline:hover { background: rgba(255,255,255,.15); }

@media (max-width: 600px) {
  .cookie-content { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding: 72px 0 40px;
}
.footer-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .88rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li svg { flex-shrink: 0; opacity: .6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.85); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .6s ease forwards; opacity: 0; }
.fade-in-1 { animation-delay: .1s; }
.fade-in-2 { animation-delay: .2s; }
.fade-in-3 { animation-delay: .3s; }
.fade-in-4 { animation-delay: .4s; }

/* Divider */
.divider {
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin: 16px 0;
  opacity: .35;
}
.divider.center { margin: 16px auto; }

/* Spacing helpers */
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.text-center { text-align: center; }

/* Contact info cards */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(10,61,107,.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-info-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.contact-info-value { font-weight: 500; }
.contact-info-value a { color: var(--text); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--primary); }

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.bg-light { background: var(--bg); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== GROWTH CHART SECTION ===== */
.growth-section { padding: 80px 0; background: #fff; }
.chart-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 40px;
}
.chart-legend {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot--blue  { background: #1258a0; }
.legend-dot--green { background: #0f7a56; }
.legend-dot--gold  { background: #c8940a; }
.chart-area {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.growth-chart {
  width: 100%;
  height: auto;
  display: block;
  min-width: 420px;
}
.chart-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.chart-kpi { text-align: center; }
.kpi-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.kpi-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .chart-kpis { grid-template-columns: 1fr; gap: 20px; }
  .kpi-value { font-size: 1.6rem; }
  .chart-legend { gap: 12px; }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.newsletter-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.newsletter-text p {
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 16px;
}
.newsletter-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.newsletter-perks li {
  font-size: .87rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
}
.newsletter-form-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.nl-field-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.nl-field-group input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: .95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  box-sizing: border-box;
}
.nl-field-group input::placeholder { color: rgba(255,255,255,.5); }
.nl-field-group input:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.18);
}
.nl-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  background: var(--accent);
  border-color: var(--accent);
}
.nl-btn:hover { background: #a87808; border-color: #a87808; }
.nl-legal {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  line-height: 1.5;
}
.nl-legal a { color: rgba(255,255,255,.7); text-decoration: underline; }
.nl-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 16px 0;
}
.nl-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(15,122,86,.25);
  border: 2px solid #0f7a56;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #5dd8a8;
}
.nl-success h3 { color: #fff; font-size: 1.3rem; margin: 0; }
.nl-success p  { color: rgba(255,255,255,.75); font-size: .9rem; margin: 0; }

@media (max-width: 840px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .newsletter-text h2 { font-size: 1.45rem; }
}

/* ===== LÉGENDE CHART INTERACTIVE ===== */
.legend-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .83rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend-btn.active { border-color: transparent; background: var(--bg); color: var(--text); }
.legend-btn:hover  { border-color: var(--primary-light); color: var(--primary); }

/* ===== PAGE MERCI ===== */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition), color var(--transition);
  font-family: var(--font-body);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
