:root {
  --purple: #1b5fae;
  --purple-dark: #124a8c;
  --ink: #16233a;
  --ink-soft: #5c6478;
  --bg-lavender: #eef4fb;
  --bg-lavender-2: #dfeaf7;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 20px 45px -20px rgba(27, 95, 174, 0.35);
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1.in-view { transition-delay: .08s; }
.delay-2.in-view { transition-delay: .16s; }
.delay-3.in-view { transition-delay: .24s; }
.delay-4.in-view { transition-delay: .32s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--purple); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid #cfdcee; }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--purple-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 15px 30px -10px rgba(0,0,0,.25); }
.center-btn { display: flex; margin: 44px auto 0; width: fit-content; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled { box-shadow: 0 8px 30px -15px rgba(0,0,0,.15); background: rgba(255,255,255,.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-img--footer { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 32px; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.nav-links a { transition: color .25s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-dropdown { position: relative; padding-bottom: 22px; margin-bottom: -22px; }
.nav-dropdown-btn { background: none; border: none; font: inherit; color: inherit; display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border-radius: 14px; box-shadow: 0 20px 45px -15px rgba(0,0,0,.2);
  padding: 10px; min-width: 150px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { padding: 8px 12px; border-radius: 8px; font-size: 14px; }
.nav-dropdown-menu a:hover { background: var(--bg-lavender); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: flex; align-items: center; gap: 6px; background: var(--bg-lavender); border: none;
  padding: 8px 14px; border-radius: 100px; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 700;
}
.lang-opt { color: var(--ink-soft); transition: color .25s; }
.lang-opt.active { color: var(--purple-dark); }
.lang-sep { color: #c8d3e2; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.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 {
  position: fixed; inset: 76px 0 auto 0; background: #fff; z-index: 99;
  display: flex; flex-direction: column; padding: 12px 24px 24px;
  transform: translateY(-120%); transition: transform .4s var(--ease);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.2);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { padding: 14px 4px; border-bottom: 1px solid #eaf1fa; font-weight: 500; }
.mobile-menu .btn { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 60px;
  background: radial-gradient(120% 100% at 50% 0%, var(--bg-lavender-2) 0%, var(--bg-lavender) 45%, #fff 100%);
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; width: 800px; height: 500px;
  background: radial-gradient(circle, rgba(108,76,240,.35), transparent 70%);
  transform: translateX(-50%);
  filter: blur(40px);
  animation: floatGlow 10s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-48%) translateY(30px); }
}
.hero-inner { position: relative; z-index: 1; }
.badge-pill {
  display: inline-block; background: #fff; padding: 10px 22px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--purple-dark);
  box-shadow: 0 10px 25px -10px rgba(108,76,240,.3); margin-bottom: 26px;
}
.hero h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.08; }
.hero-sub { max-width: 520px; margin: 24px auto 0; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.hero .btn-lg { margin-top: 32px; }

.hero-art { position: relative; max-width: 640px; height: 320px; margin: 60px auto 0; }
.hero-card--shape {
  position: absolute; inset: 0; border-radius: 32px;
  background: linear-gradient(145deg, #6fa3d8, var(--purple));
  box-shadow: var(--shadow);
  animation: floatShape 6s ease-in-out infinite;
}
@keyframes floatShape { 0%,100% { transform: translateY(0) rotate(0deg);} 50% { transform: translateY(-14px) rotate(.6deg);} }
.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 14px 18px; border-radius: 16px;
  box-shadow: 0 20px 40px -15px rgba(20,10,60,.25);
  font-size: 14px; text-align: left; animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card strong { display: block; font-size: 14px; }
.hero-float-card span { color: var(--ink-soft); font-size: 12.5px; }
.card-top { top: 6%; left: -4%; animation-delay: .3s; }
.card-bottom { bottom: 4%; right: -4%; animation-delay: 1s; }
@keyframes floatCard { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
.mini-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: var(--bg-lavender); font-size: 16px; }
.mini-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }

.stats { margin-top: 70px; }
.stats-heading { font-weight: 800; font-size: 20px; margin-bottom: 28px; }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.stat { max-width: 170px; text-align: left; }
.stat-num { font-size: 34px; font-weight: 800; color: var(--purple-dark); display: block; }
.stat p { color: var(--ink-soft); font-size: 13.5px; margin-top: 4px; line-height: 1.4; }
.stat--text { display: flex; align-items: center; gap: 10px; max-width: 190px; }
.stat--text p { margin-top: 0; font-weight: 700; color: var(--ink); font-size: 14.5px; line-height: 1.35; }
.stat-check {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}

/* ---------- Marquee ---------- */
.marquee-section { padding: 90px 0 40px; text-align: center; }
.marquee-section h2 { font-size: clamp(24px, 3vw, 34px); margin-top: 10px; }
.marquee { margin-top: 40px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 70px; animation: scrollX 22s linear infinite; }
.marquee-track span { font-size: 22px; font-weight: 800; color: #b7cbe4; white-space: nowrap; }
@keyframes scrollX { from { transform: translateX(0);} to { transform: translateX(-50%);} }

.eyebrow { color: var(--purple-dark); font-weight: 700; font-size: 13px; letter-spacing: .08em; margin-bottom: 10px; }
.center { text-align: center; }
.sub { color: var(--ink-soft); font-size: 16px; max-width: 480px; margin: 14px auto 0; line-height: 1.6; }

/* ---------- Process ---------- */
.process { padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.process-card {
  background: var(--bg-lavender); border-radius: var(--radius); padding: 34px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.process-num { font-size: 15px; font-weight: 800; color: var(--purple); margin-bottom: 18px; }
.process-card h3 { font-size: 20px; margin-bottom: 10px; }
.process-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ---------- Jobs ---------- */
.jobs { padding: 40px 0 100px; }
.jobs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.job-card {
  border: 1px solid #dde6f2; border-radius: 18px; padding: 26px 22px; cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.job-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.job-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.job-company { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.job-price { font-weight: 800; color: var(--purple-dark); font-size: 15px; text-align: right; }
.job-price small { display: block; font-weight: 500; color: var(--ink-soft); font-size: 11px; }
.job-card h3 { font-size: 17px; margin-bottom: 16px; line-height: 1.35; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.job-tags span { background: var(--bg-lavender); color: var(--purple-dark); font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 100px; }
.job-loc { font-size: 13px; color: var(--ink-soft); border-top: 1px solid #eaf1fa; padding-top: 14px; }

/* ---------- Success split ---------- */
.success { padding: 60px 0 100px; }
.success-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.success-art { position: relative; height: 360px; }
.success-shape {
  position: absolute; inset: 0; border-radius: 28px;
  background: linear-gradient(160deg, var(--bg-lavender-2), var(--purple) 120%);
  box-shadow: var(--shadow);
}
.success-shape::before {
  content: ''; position: absolute; inset: 30px; border-radius: 20px;
  border: 2px solid rgba(255,255,255,.4); pointer-events: none;
}
.success-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.success-content h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 14px; line-height: 1.2; }
.checklist { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15.5px; }
.check { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* ---------- Companies CTA ---------- */
.companies-cta {
  margin: 0 24px 100px; padding: 70px 40px; border-radius: 32px; text-align: center;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple) 60%, #4f8fd1);
  color: #fff;
}
.companies-cta h2 { font-size: clamp(26px, 3.6vw, 38px); max-width: 600px; margin: 0 auto; }
.companies-cta p { color: rgba(255,255,255,.85); max-width: 480px; margin: 16px auto 28px; line-height: 1.6; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 20px 0 110px; text-align: center; }
.testimonial-columns {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: 50px auto 0; padding: 0 24px;
  height: 560px; overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
}
.t-col { overflow: hidden; }
.t-track { display: flex; flex-direction: column; gap: 20px; }
.t-up { animation: scrollUp 34s linear infinite; }
.t-down { animation: scrollDown 34s linear infinite; }
@keyframes scrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes scrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.t-card {
  background: var(--bg-lavender); border-radius: 18px; padding: 24px; text-align: left;
  font-size: 14.5px; line-height: 1.6;
}
.t-card p { color: var(--ink); }
.t-card strong { display: block; margin-top: 16px; font-size: 14px; }
.t-card span { color: var(--ink-soft); font-size: 12.5px; }

/* ---------- FAQ ---------- */
.faq { padding: 40px 0 100px; }
.faq-inner { max-width: 760px; }
.faq h2 { font-size: clamp(26px, 3.4vw, 36px); text-align: center; margin-bottom: 44px; }
.faq-item { border-bottom: 1px solid #dde6f2; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; font-size: 16.5px; font-weight: 600; font-family: inherit; color: var(--ink);
}
.faq-icon { font-size: 20px; font-weight: 400; color: var(--purple); transition: transform .35s var(--ease); flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s; }
.faq-a p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; max-width: 640px; }
.faq-item.open .faq-a { max-height: 200px; }

/* ---------- Blog ---------- */
.blog { padding: 40px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.blog-card { display: block; }
.blog-thumb { height: 200px; border-radius: 18px; margin-bottom: 20px; overflow: hidden; transition: transform .5s var(--ease); }
.blog-card:hover .blog-thumb { transform: scale(1.03); }
.thumb-1 { background: linear-gradient(150deg, #a9c9ea, var(--purple)); }
.thumb-2 { background: linear-gradient(150deg, #ffd9c7, #ff8a5c); }
.thumb-3 { background: linear-gradient(150deg, #c7f0e6, #4fc3a1); }
.blog-date { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.blog-card h3 { font-size: 18px; margin-top: 10px; line-height: 1.4; transition: color .3s; }
.blog-card:hover h3 { color: var(--purple-dark); }

/* ---------- Newsletter ---------- */
.newsletter { padding: 20px 0 110px; }
.newsletter-inner {
  background: var(--bg-lavender); border-radius: 28px; padding: 60px 40px; text-align: center;
}
.newsletter h2 { font-size: clamp(22px, 3vw, 30px); max-width: 480px; margin: 0 auto 28px; }
#newsletterForm { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
#newsletterForm input {
  padding: 14px 20px; border-radius: 100px; border: 1px solid #cfdcee; font-family: inherit;
  font-size: 15px; width: 280px; max-width: 100%; outline: none; transition: border-color .3s;
}
#newsletterForm input:focus { border-color: var(--purple); }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #fff; padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 50px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #9aa8bf; font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #9aa8bf; margin-bottom: 6px; }
.footer-col a, .footer-col span { color: #cdd8e8; font-size: 14.5px; transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; color: #8291a8; font-size: 13.5px; }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; border: none; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 90;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .3s;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--purple); }

/* ---------- Sub-pages (Employeurs / Candidats / Contact) ---------- */
.page-hidden { display: none !important; }

.page-hero {
  background: linear-gradient(135deg, #0a1830 0%, #0d2a4a 55%, var(--purple) 100%);
  padding: 150px 0 70px;
  position: relative; overflow: hidden; text-align: left;
}
.page-hero::after {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05); top: -150px; right: -100px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 48px); margin: 16px 0 14px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.7; max-width: 560px; }
.badge-pill--dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); box-shadow: none; }

/* ---------- Blog article pages ---------- */
.article-hero {
  background: linear-gradient(135deg, #0a1830 0%, #0d2a4a 55%, var(--purple) 100%);
  padding: 150px 0 60px;
  position: relative; overflow: hidden; text-align: left;
}
.article-hero::after {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05); top: -150px; right: -100px;
}
.article-hero .container { position: relative; z-index: 1; }
.article-back {
  display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7);
  font-size: 13.5px; font-weight: 600; margin-bottom: 22px; transition: color .2s;
}
.article-back:hover { color: #fff; }
.eyebrow--dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 12px; margin-bottom: 4px; }
.article-hero h1 { color: #fff; font-size: clamp(28px, 4.4vw, 42px); margin: 14px 0 14px; line-height: 1.2; max-width: 760px; }
.article-meta { color: rgba(255,255,255,.6); font-size: 14px; font-weight: 500; }

.article-section { padding: 70px 0 100px; }
.article-wrap { max-width: 720px; }
.article-content h2 { font-size: 22px; margin: 40px 0 14px; line-height: 1.3; }
.article-content h2:first-child { margin-top: 0; }
.article-content p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.article-content ul { margin: 4px 0 18px; display: flex; flex-direction: column; gap: 9px; }
.article-content ul li {
  position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6;
}
.article-content ul li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--purple);
}

.quote-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 10px 0 22px; }
.quote-bad, .quote-good { border-radius: 14px; padding: 18px 20px; font-size: 14.5px; }
.quote-bad { background: #fdf1f0; border: 1.5px solid #f5d4d0; }
.quote-good { background: var(--bg-lavender); border: 1.5px solid #cfe0f5; }
.quote-bad p, .quote-good p { color: var(--ink); font-style: italic; margin: 0; font-size: 14.5px; }
.quote-label { display: block; font-weight: 700; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px; }
.quote-bad .quote-label { color: #c0392b; }
.quote-good .quote-label { color: var(--purple-dark); }

.article-cta { margin-top: 50px; padding: 40px; border-radius: 22px; text-align: center; background: var(--bg-lavender); }
.article-cta h3 { font-size: 20px; margin-bottom: 18px; }

.i18n-en { display: none; }

.sec-pad { padding: 90px 0; }
.split-form { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.sub-heading { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.lead-text { color: var(--ink-soft); font-size: 15px; line-height: 1.8; margin-bottom: 28px; max-width: 480px; }

.benefit { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.benefit-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-lavender); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.benefit-title { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.benefit-desc { color: var(--ink-soft); font-size: 13.5px; line-height: 1.6; }

.info-card { margin-top: 28px; background: var(--bg-lavender); border-radius: 16px; padding: 22px 24px; }
.info-card-title { font-weight: 700; font-size: 13.5px; margin-bottom: 14px; }
.info-card-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.info-card-row:last-child { margin-bottom: 0; }

.form-card { background: var(--bg-lavender); border-radius: 22px; padding: 36px; }
.form-card--white { background: #fff; border: 1.5px solid #dde6f2; box-shadow: var(--shadow); }
.form-card-title { font-size: 20px; font-weight: 800; margin-bottom: 18px; }
.form-alert {
  display: none; background: #dbeafe; border: 1.5px solid #93c5fd; color: #1d4ed8;
  border-radius: 10px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 18px; font-weight: 600;
}
.form-alert.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px; border-radius: 10px; border: 1.5px solid #cfdcee;
  font-family: inherit; font-size: 14px; color: var(--ink); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(27,95,174,.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-full { width: 100%; padding: 15px; font-size: 15px; margin-top: 6px; }
.google-form-btn { display: flex; }

.form-divider { border-top: 1.5px solid #dde6f2; margin-top: 24px; padding-top: 20px; }
.form-divider-title { font-weight: 700; font-size: 13px; margin-bottom: 12px; }
.checklist-plain { display: flex; flex-direction: column; gap: 9px; }
.checklist-plain div { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.check-mark { color: var(--purple); font-weight: 800; }

.note-block {
  margin-top: 20px; background: linear-gradient(135deg,#eef4fb,#f0f7ff); border: 1.5px solid #cfe0f5;
  border-radius: 12px; padding: 16px 18px; font-size: 13.5px; color: var(--purple-dark); line-height: 1.7;
  display: flex; align-items: flex-start; gap: 10px;
}
.note-icon { font-size: 17px; flex-shrink: 0; }

.cta-split { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; text-align: left; }
.cta-split h2 { font-size: clamp(22px, 3vw, 30px); color: #fff; margin: 0; }
.cta-split p { color: rgba(255,255,255,.8); margin-top: 8px; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; max-width: 1180px; margin: 0 auto; padding: 0 24px 100px; gap: 0; }
.contact-left { padding: 50px 40px 0 0; border-right: 1.5px solid #dde6f2; }
.contact-left h2 { font-size: 26px; margin-bottom: 12px; }
.contact-left > p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-lavender); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--purple); margin-bottom: 3px; }
.contact-value { font-size: 14px; }
.trust-block { margin-top: 24px; background: var(--bg-lavender); border-radius: 14px; padding: 20px; }
.trust-title { font-weight: 700; font-size: 13px; margin-bottom: 10px; }
.trust-body div { font-size: 13.5px; color: var(--ink-soft); line-height: 1.9; }

.contact-right { padding: 50px 0 0 40px; }
.contact-tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.contact-tab {
  flex: 1; padding: 11px; border-radius: 10px; font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer;
  border: 2px solid var(--purple); background: transparent; color: var(--purple); transition: all .2s;
}
.contact-tab.on { background: var(--purple); color: #fff; box-shadow: 0 4px 14px rgba(27,95,174,.3); }

.google-form-cta {
  display: none; margin-bottom: 20px; padding: 20px; border-radius: 14px;
  background: linear-gradient(135deg,#eef4fb,#f0f7ff); border: 1.5px solid #cfe0f5;
}
.google-form-cta.show { display: block; }
.google-form-cta-title { font-weight: 700; font-size: 13.5px; color: var(--purple); margin-bottom: 8px; }
.google-form-cta p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 14px; }
.google-form-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px;
  background: var(--purple); color: #fff; border-radius: 9px; font-weight: 600; font-size: 14px; text-align: center;
  box-shadow: 0 4px 14px rgba(27,95,174,.3); transition: background .2s, transform .2s;
}
.google-form-cta a:hover { background: var(--purple-dark); transform: translateY(-2px); }
.google-form-cta-note { font-size: 11px; color: #94a3b8; margin-top: 8px; text-align: center; }
.google-form-cta-divider { margin-top: 14px; padding-top: 14px; border-top: 1px solid #cfe0f5; font-size: 12px; color: #64748b; text-align: center; }

/* ---------- Modal ---------- */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(10,20,35,.6); z-index: 9999;
  align-items: center; justify-content: center; backdrop-filter: blur(4px); padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff; border-radius: 24px; padding: 44px 36px; max-width: 420px; width: 100%;
  text-align: center; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: modalPop .25s var(--ease);
}
@keyframes modalPop { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  background: none; border: none; font-size: 16px; color: var(--ink-soft); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.modal-close:hover { background: var(--bg-lavender); }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; background: #dbeafe; color: #1d4ed8;
}
.modal-icon.err { background: #fef3c7; color: #d97706; }
.modal-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.modal-body { font-size: 14px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .process-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .success-inner { grid-template-columns: 1fr; }
  .success-art { height: 260px; order: 2; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-columns { grid-template-columns: repeat(2, 1fr); height: 480px; }
  .hide-mobile { display: none; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .split-form { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1.5px solid #dde6f2; padding: 40px 0; }
  .contact-right { padding: 40px 0; }
}
@media (max-width: 560px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .stats { gap: 26px; }
  .hero-float-card { position: static; margin: 10px auto; max-width: 260px; }
  .hero-art { height: auto; display: flex; flex-direction: column; align-items: center; }
  .hero-card--shape { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-split { text-align: center; justify-content: center; }
  .page-hero { padding-top: 130px; text-align: center; }
  .page-hero .container { display: flex; flex-direction: column; align-items: center; }
  .article-hero { padding-top: 130px; }
  .quote-compare { grid-template-columns: 1fr; }
  .form-card, .sec-pad { padding-left: 0; padding-right: 0; }
}
