@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --blue:        #1A7BDD;
  --blue-dark:   #0A4FBB;
  --blue-deep:   #082080;
  --blue-light:  #3AABF5;
  --blue-pale:   #E8F4FE;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --text:        #0F1923;
  --muted:       #6B7785;
  --border:      #E2E8EF;
  --grad: linear-gradient(145deg, #3AABF5 0%, #1A7BDD 40%, #0A4FBB 75%, #082080 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 36px; height: 36px;
  border-radius: 9px;
  object-fit: cover;
}
.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--blue);
  line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--blue) !important; color: white !important; padding: 8px 20px; border-radius: 8px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--blue-dark) !important; color: white !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--grad);
  padding: 140px 48px 100px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Bulles animées */
.bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  animation: floatUp linear infinite;
}
.bubble:nth-child(1)  { width:  80px; height:  80px; left:  5%; animation-duration: 12s; animation-delay: 0s;   bottom: -100px; }
.bubble:nth-child(2)  { width: 120px; height: 120px; left: 15%; animation-duration: 18s; animation-delay: 2s;   bottom: -150px; }
.bubble:nth-child(3)  { width:  50px; height:  50px; left: 28%; animation-duration: 10s; animation-delay: 4s;   bottom: -80px;  }
.bubble:nth-child(4)  { width: 160px; height: 160px; left: 40%; animation-duration: 22s; animation-delay: 1s;   bottom: -200px; }
.bubble:nth-child(5)  { width:  70px; height:  70px; left: 55%; animation-duration: 14s; animation-delay: 3s;   bottom: -100px; }
.bubble:nth-child(6)  { width: 100px; height: 100px; left: 65%; animation-duration: 16s; animation-delay: 0.5s; bottom: -130px; }
.bubble:nth-child(7)  { width:  40px; height:  40px; left: 75%; animation-duration:  9s; animation-delay: 5s;   bottom: -60px;  }
.bubble:nth-child(8)  { width: 140px; height: 140px; left: 82%; animation-duration: 20s; animation-delay: 1.5s; bottom: -180px; }
.bubble:nth-child(9)  { width:  60px; height:  60px; left: 90%; animation-duration: 11s; animation-delay: 2.5s; bottom: -90px;  }
.bubble:nth-child(10) { width:  90px; height:  90px; left: 48%; animation-duration: 15s; animation-delay: 6s;   bottom: -120px; }

@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7DFFB0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  max-width: 700px;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.75); }

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
}

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  margin-left: 20px;
}
.btn-ghost:hover { color: white; }

.hero-stats {
  margin-top: 64px;
  display: flex; gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.65); }

/* Wave separator */
.wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave svg { display: block; width: 100%; }

/* ─── SECTIONS ─── */
.section-white { background: var(--white); padding: 100px 48px; }
.section-blue  { background: var(--grad);  padding: 100px 48px; position: relative; overflow: hidden; }
.section-alt   { background: var(--off-white); padding: 100px 48px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag-white { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 14px; }
.section-tag-blue  { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-bottom: 14px; }

.section-title-white {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 14px;
}
.section-title-blue {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: white; margin-bottom: 14px;
}

.section-desc-white { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 500px; font-weight: 300; }
.section-desc-blue  { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 500px; font-weight: 300; }

/* ─── FEATURES GRID ─── */
.features-header { margin-bottom: 60px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,123,221,0.12);
}

.feature-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── IMPORT ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.import-list {
  list-style: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.import-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 15px;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.import-item:last-child { border-bottom: none; }
.import-item:hover { background: rgba(255,255,255,0.14); }
.import-item-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.import-item-icon svg { width: 18px; height: 18px; }
.import-item span { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 400; margin-left: auto; }

/* ─── WILLY ─── */
.willy-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(10,79,187,0.15);
}
.willy-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.willy-avatar {
  width: 40px; height: 40px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.willy-avatar svg { width: 20px; height: 20px; }
.willy-name { font-weight: 700; font-size: 14px; color: var(--text); }
.willy-role { font-size: 12px; color: var(--muted); }
.willy-online {
  margin-left: auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #30D158;
}
.willy-bubble {
  font-size: 14px; color: var(--text); line-height: 1.7;
  margin-bottom: 20px;
  background: var(--off-white);
  border-radius: 4px 16px 16px 16px;
  padding: 16px;
}
.willy-saving {
  background: var(--blue-pale);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--blue-dark);
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.willy-saving svg { width: 16px; height: 16px; flex-shrink: 0; }

.willy-features { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.willy-feature {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: rgba(255,255,255,0.9);
}
.willy-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.willy-check svg { width: 13px; height: 13px; }

/* ─── PRO ─── */
.pro-card {
  background: var(--text);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pro-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.pro-title { font-family: 'DM Serif Display', serif; font-size: 42px; color: white; margin-bottom: 8px; letter-spacing: -0.02em; }
.pro-price { font-family: 'DM Serif Display', serif; font-size: 52px; color: rgba(255,255,255,0.85); line-height: 1; margin-bottom: 24px; }
.pro-price span { font-size: 20px; font-family: 'DM Sans', sans-serif; opacity: 0.6; font-weight: 300; }
.pro-desc { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
.btn-pro {
  display: inline-block;
  background: white; color: var(--text);
  text-decoration: none;
  padding: 14px 28px; border-radius: 12px;
  font-weight: 700; font-size: 15px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-pro:hover { opacity: 0.9; transform: translateY(-1px); }

.pro-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pro-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.8);
}
.pro-feature-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pro-feature-icon svg { width: 11px; height: 11px; }

/* ─── PRIVACY ─── */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.privacy-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.privacy-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,123,221,0.1); }
.privacy-item-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.privacy-item-icon svg { width: 22px; height: 22px; }
.privacy-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.privacy-item p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  padding: 64px 48px 40px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 22px; color: white; display: block; margin-bottom: 12px; text-decoration: none; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── LEGAL ─── */
.legal-hero {
  background: var(--grad);
  padding: 120px 48px 64px;
  position: relative;
  overflow: hidden;
}
.legal-hero .bubbles-sm { position: absolute; inset: 0; pointer-events: none; }
.legal-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.legal-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.02em; line-height: 1.1; color: white; margin-bottom: 12px; }
.legal-hero p { color: rgba(255,255,255,0.65); font-size: 15px; }
.legal-wave { display: block; width: 100%; overflow: hidden; line-height: 0; margin-top: -2px; }
.legal-wave svg { display: block; width: 100%; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 64px 48px; }
.legal-content h2 { font-family: 'DM Serif Display', serif; font-size: 24px; margin: 48px 0 12px; color: var(--text); letter-spacing: -0.01em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.8; color: #4A5568; }
.legal-content ul { margin: 12px 0 12px 20px; }
.legal-content li + li { margin-top: 6px; }
.legal-content a { color: var(--blue); }
.legal-content strong { color: var(--text); font-weight: 600; }

/* ─── DELETE ─── */
.delete-page { max-width: 620px; margin: 0 auto; padding: 140px 48px 80px; }
.delete-page h1 { font-family: 'DM Serif Display', serif; font-size: 42px; letter-spacing: -0.02em; margin-bottom: 16px; }
.delete-page > p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 48px; font-weight: 300; }
.delete-steps { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.delete-step { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border-bottom: 1px solid var(--border); }
.delete-step:last-child { border-bottom: none; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step-text strong { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.step-text span { font-size: 14px; color: var(--muted); }
.delete-warning { background: #FFF8F0; border: 1px solid #FFD0A0; border-radius: 10px; padding: 18px 22px; font-size: 14px; color: #A05010; line-height: 1.6; margin-bottom: 32px; }
.delete-contact { font-size: 15px; color: var(--muted); line-height: 1.7; }
.delete-contact a { color: var(--blue); font-weight: 500; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 80px; }
  .section-white, .section-blue, .section-alt { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .pro-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .privacy-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .legal-hero { padding: 100px 24px 48px; }
  .legal-content { padding: 48px 24px; }
  .delete-page { padding: 100px 24px 60px; }
}

/* ─── HERO 2-COL ─── */
.hero-inner {
  display: grid !important;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 60px;
}

.hero-phone {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-phone img {
  width: 290px;
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08);
  animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ─── NAV WITH LOGO IMAGE ─── */
.nav-logo {
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 36px; height: 36px;
  border-radius: 9px;
  object-fit: cover;
}
.nav-logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--blue);
  line-height: 1;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-phone { display: none; }
}

/* ─── SHARING SECTION ─── */
.sharing-section {
  background: var(--off-white);
  padding: 100px 48px;
}
.sharing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sharing-phones {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
}
.sharing-phones img {
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(10,79,187,0.15);
  transition: transform 0.3s;
}
.sharing-phones img:first-child {
  width: 185px;
  transform: rotate(-3deg) translateY(10px);
}
.sharing-phones img:last-child {
  width: 185px;
  transform: rotate(3deg) translateY(10px);
}
.sharing-phones img:hover { transform: rotate(0deg) translateY(-4px) !important; }

.sharing-features {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sharing-feature {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text); line-height: 1.5;
}
.sharing-feature-icon {
  width: 36px; height: 36px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.sharing-feature-icon svg { width: 18px; height: 18px; }
.sharing-feature strong { display: block; font-weight: 600; margin-bottom: 2px; }
.sharing-feature span { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .sharing-section { padding: 64px 24px; }
  .sharing-inner { grid-template-columns: 1fr; gap: 48px; }
  .sharing-phones img:first-child { width: 145px; }
  .sharing-phones img:last-child  { width: 145px; }
}

/* ─── MOBILE BURGER MENU ─── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(10,79,187,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }

.mobile-menu .mobile-cta {
  display: block;
  margin-top: 12px;
  background: var(--blue);
  color: white !important;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border-bottom: none !important;
}

.mobile-menu .mobile-cta:hover { background: var(--blue-dark); color: white; }

@media (max-width: 900px) {
  .burger { display: flex; }
}
