/* ============================================================
   LANDING — style-landing.css
   Sections: Global → Header → Hero → (more after confirm)
   ============================================================ */

/* ==========================================
   0. RESET / BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors — from example.webp */
  --bg:           #F0F6FF;
  --bg-alt:       #EBF3FF;
  --white:        #FFFFFF;
  --text:         #0D1B3E;
  --text-2:       #3A4B6A;
  --muted:        #6B7B9A;
  --accent:       #1D72F5;
  --accent-h:     #155DDC;
  --accent-2:     #38C4FF;
  --border:       #D8E4F2;
  --border-2:     #C5D5E8;

  /* Footer */
  --ft-bg:        #0D1B3E;
  --ft-bg2:       #152040;
  --ft-text:      #C8D8F0;
  --ft-muted:     #8AA0C0;
  --ft-border:    #2A3A5A;

  /* Radius / Shadow */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 4px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.06);
  --shadow-md:    0 4px 24px rgba(15,23,42,.09), 0 1px 4px rgba(15,23,42,.04);
  --shadow-card:  0 2px 8px rgba(15,23,42,.06), 0 0 0 1px rgba(226,232,240,1);
}

html  { scroll-behavior: smooth; }
body  {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul     { list-style: none; }
em     { font-style: normal; }

/* ==========================================
   1. LAYOUT CONTAINER
   ========================================== */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   2. SECTION COMMON
   ========================================== */
.l-section         { padding: 96px 0; }
.l-section--white  { background: var(--white); }
.l-section--page   { background: var(--bg); }

.l-section__header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}
.l-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(29,114,245,.08);
  border: 1px solid rgba(29,114,245,.18);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.l-section__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.l-section__sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ==========================================
   3. BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-h);
  border-color: var(--accent-h);
  box-shadow: 0 4px 18px rgba(29,114,245,.28);
}
.btn--secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border-2);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--bg);
  border-color: var(--accent);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ==========================================
   4. LANG SWITCHER
   ========================================== */
.l-lang-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.l-lang-btn:hover      { color: var(--text); background: var(--bg); }
.l-lang-btn.is-active  { color: var(--accent); background: rgba(29,114,245,.08); }

/* ==========================================
   5. HEADER
   ========================================== */
.l-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.l-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(15,23,42,.08);
}

.l-header__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 64px;
}

/* Logo */
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: 12px;
}
.l-header__logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.l-header__logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

/* Desktop nav */
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.l-header__nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 11px;
  border-radius: 7px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.l-header__nav-link:hover,
.l-header__nav-link:focus-visible {
  color: var(--text);
  background: var(--bg);
}

.l-header__langs {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
.l-header__cta {
  flex-shrink: 0;
  margin-left: 8px;
}

/* Burger */
.l-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 9px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background .15s;
}
.l-header__burger:hover { background: var(--bg); }
.l-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.l-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.l-header__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.l-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.l-header__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 16px;
  border-top: 1px solid var(--border);
}
.l-header__mobile-nav.is-open { display: flex; }
.l-header__mobile-cta { padding: 8px 0 4px; }
.l-header__mobile-cta .btn { width: 100%; justify-content: center; }

/* ==========================================
   6. HERO
   ========================================== */
.l-hero {
  background: var(--bg);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}
/* Subtle top-right glow */
.l-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,114,245,.09) 0%, transparent 70%);
  pointer-events: none;
}
.l-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22,199,255,.07) 0%, transparent 70%);
  pointer-events: none;
}

.l-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left: content */
.l-hero__content { max-width: 560px; }

.l-hero__pre {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(29,114,245,.08);
  border: 1px solid rgba(29,114,245,.16);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.l-hero__pre::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.l-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.l-hero__title em {
  color: var(--accent);
  font-style: normal;
}

.l-hero__subtitle {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.l-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Trust row */
.l-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.l-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.l-trust-item__icon {
  width: 15px; height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Right: visual */
.l-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-hero__visual::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at center, rgba(29,114,245,.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
/* Hero dashboard mockup */
.l-hero__mockup {
  width: 100%;
  max-width: 540px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow:
    0 24px 64px rgba(13,27,62,.10),
    0 4px 16px rgba(13,27,62,.06);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Top bar */
.l-hero__mockup-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.l-hero__mockup-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.l-hero__mockup-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-2);
}
.l-hero__mockup-dots span:first-child { background: #F87171; }
.l-hero__mockup-dots span:nth-child(2) { background: #FBBF24; }
.l-hero__mockup-dots span:last-child { background: #4ADE80; }
.l-hero__mockup-url {
  flex: 1;
  height: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.l-hero__mockup-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
  flex-shrink: 0;
}

/* Stat cards */
.l-hero__mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.l-hero__mockup-stat {
  background: var(--white);
  padding: 14px 14px 12px;
}
.l-hms__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.l-hms__value {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.l-hms__bar {
  height: 4px;
  background: var(--bg-alt);
  border-radius: 4px;
  overflow: hidden;
}
.l-hms__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 4px;
}

/* Chart */
.l-hero__mockup-chart {
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border);
}
.l-hmc__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
}
.l-hmc__bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
}
.l-hmc__bar {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 4px 4px 0 0;
  transition: background .2s;
}
.l-hmc__bar--accent {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(29,114,245,.5) 100%);
}
.l-hmc__bars:hover .l-hmc__bar { background: var(--border); }
.l-hmc__bars:hover .l-hmc__bar--accent {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(29,114,245,.5) 100%);
}

/* Keyword rows */
.l-hero__mockup-rows {
  padding: 10px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-hmr__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 12px;
}
.l-hmr__kw {
  flex: 1;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.l-hmr__pos {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 5px;
  flex-shrink: 0;
}
.l-hmr__pos--up {
  color: #16A34A;
  background: rgba(22,163,74,.10);
}
.l-hmr__vol {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
  min-width: 32px;
  text-align: right;
}

/* ==========================================
   RESPONSIVE — HEADER + HERO
   ========================================== */
@media (max-width: 1024px) {
  .l-hero__grid { gap: 40px; }
  .l-hero__title { font-size: clamp(32px, 4vw, 48px); }
}

@media (max-width: 768px) {
  .l-header__nav   { display: none; }
  .l-header__cta   { display: none; }
  .l-header__langs { display: none; }
  .l-header__burger { display: flex; }

  .l-hero {
    padding: 56px 0 64px;
  }
  .l-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .l-hero__content { max-width: 100%; }
  .l-hero__pre     { font-size: 11px; }
  .l-hero__mockup  { max-width: 100%; }
  .l-hero__mockup-stats { grid-template-columns: repeat(3,1fr); }
  .l-hms__value    { font-size: 15px; }
  .l-hero__title   { font-size: clamp(30px, 8vw, 40px); }
  .l-hero__subtitle { font-size: 15px; margin-bottom: 28px; }
  .l-hero__actions { justify-content: center; }
  .l-hero__trust   { justify-content: center; gap: 6px 14px; }
  .l-hero__visual  { order: -1; }
  .l-hero__screenshot { max-width: 100%; }
}

@media (max-width: 480px) {
  .l-container { padding: 0 16px; }
  .btn--lg { padding: 13px 22px; font-size: 14px; }
  .l-hero__actions .btn { flex: 1; justify-content: center; min-width: 0; }
}

/* ============================================================
   BLOCK 2 — TRUST
   ============================================================ */
.l-trust-section {
  background: var(--white);
}

/* ── Client logos ── */
.l-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}
.l-trust__logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: default;
  transition: color .18s, border-color .18s, background .18s;
}
.l-trust__logo-item svg {
  color: var(--muted);
  transition: color .18s;
  flex-shrink: 0;
}
.l-trust__logo-item:hover {
  color: var(--text-2);
  border-color: var(--accent);
  background: var(--bg-alt);
}
.l-trust__logo-item:hover svg {
  color: var(--accent);
}

/* ── Metrics ── */
.l-trust__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.l-trust-metric {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.l-trust-metric__num {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.l-trust-metric__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Trust cards ── */
.l-trust__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.l-trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.l-trust-card:hover {
  border-color: rgba(29,114,245,.3);
  box-shadow: 0 4px 20px rgba(29,114,245,.08);
}
.l-trust-card__icon {
  width: 40px; height: 40px;
  background: rgba(29,114,245,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.l-trust-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.l-trust-card__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .l-trust__metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .l-trust__logos         { gap: 8px; }
  .l-trust__logo-item     { padding: 8px 14px; font-size: 12px; }
  .l-trust__metrics       { grid-template-columns: repeat(2, 1fr); }
  .l-trust-metric         { padding: 24px 16px; }
  .l-trust-metric__num    { font-size: 30px; }
  .l-trust__cards         { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .l-trust__metrics       { grid-template-columns: repeat(2, 1fr); }
  .l-trust-card           { padding: 20px; }
}

/* ============================================================
   BLOCK 3 — WHY US
   ============================================================ */
.l-why {
  background: var(--bg);
}

.l-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.l-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}
.l-why-card:hover {
  border-color: rgba(29,114,245,.28);
  box-shadow: 0 6px 24px rgba(29,114,245,.08);
  transform: translateY(-2px);
}

/* Icon container */
.l-why-card__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-why-card__icon--purple {
  background: rgba(29,114,245,.10);
  color: var(--accent);
}
.l-why-card__icon--blue {
  background: rgba(56,196,255,.12);
  color: #0EA5C9;
}

.l-why-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.l-why-card__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .l-why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .l-why__grid { grid-template-columns: 1fr; gap: 12px; }
  .l-why-card  { padding: 20px; gap: 10px; }
  .l-why-card:hover { transform: none; }
}

/* ============================================================
   BLOCK 4 — SERVICES
   ============================================================ */
.l-services {
  background: var(--white);
}

.l-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.l-service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  cursor: default;
}
.l-service-card:hover {
  background: var(--white);
  border-color: rgba(29,114,245,.28);
  box-shadow: 0 4px 20px rgba(29,114,245,.08);
}

/* Icon */
.l-service-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(29,114,245,.10);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.l-service-card__icon--blue {
  background: rgba(56,196,255,.12);
  color: #0EA5C9;
}
.l-service-card:hover .l-service-card__icon {
  background: rgba(29,114,245,.16);
}
.l-service-card:hover .l-service-card__icon--blue {
  background: rgba(56,196,255,.20);
}

.l-service-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.l-service-card__text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}

/* Learn more link */
.l-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  transition: gap .18s, color .18s;
  cursor: pointer;
}
.l-service-card__link:hover {
  color: var(--accent-h);
  gap: 8px;
}
.l-service-card__link svg {
  flex-shrink: 0;
  transition: transform .18s;
}
.l-service-card__link:hover svg {
  transform: translateX(2px);
}

/* CTA button row */
.l-services__cta {
  display: flex;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .l-services__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .l-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .l-services__grid { grid-template-columns: 1fr; gap: 10px; }
  .l-service-card   { padding: 18px; }
}

/* ============================================================
   BLOCK 5 — CASES
   ============================================================ */
.l-cases {
  background: var(--bg);
}

.l-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.l-case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
/* Top accent line */
.l-case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  opacity: 0;
  transition: opacity .2s;
}
.l-case-card:hover {
  border-color: rgba(29,114,245,.25);
  box-shadow: 0 8px 28px rgba(29,114,245,.10);
  transform: translateY(-3px);
}
.l-case-card:hover::before {
  opacity: 1;
}

/* Tag */
.l-case-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(29,114,245,.08);
  border: 1px solid rgba(29,114,245,.15);
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

.l-case-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.l-case-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

/* Result number — hero element of the card */
.l-case-card__result {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.03em;
  line-height: 1;
  margin-top: 4px;
}
.l-case-card__result-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: -4px;
}

/* View case link */
.l-case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  transition: gap .18s, color .18s;
  cursor: pointer;
  align-self: flex-start;
}
.l-case-card__link:hover {
  color: var(--accent-h);
  gap: 8px;
}
.l-case-card__link svg {
  flex-shrink: 0;
  transition: transform .18s;
}
.l-case-card__link:hover svg {
  transform: translateX(2px);
}

/* CTA row */
.l-cases__cta {
  display: flex;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .l-cases__grid       { grid-template-columns: 1fr; gap: 14px; }
  .l-case-card         { padding: 20px; }
  .l-case-card__title  { font-size: 16px; }
  .l-case-card__result { font-size: 36px; }
  .l-case-card:hover   { transform: none; }
}
@media (max-width: 640px) {
  .l-case-card {
    flex-direction: column;
    padding: 20px;
  }
  .l-case-card::before {
    width: auto; height: 3px;
    top: 0; left: 0; right: 0; bottom: auto;
  }
  .l-case-card__result { font-size: 36px; margin-left: 0; }
}

/* ============================================================
   BLOCK 6 — OWN TOOLS
   ============================================================ */
.l-tools {
  background: var(--white);
}

.l-tools__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.l-tool-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.l-tool-card:hover {
  border-color: rgba(29,114,245,.28);
  box-shadow: 0 8px 32px rgba(29,114,245,.09);
}

/* Glow accent */
.l-tool-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(29,114,245,.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Internal tag */
.l-tool-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(29,114,245,.08);
  border: 1px solid rgba(29,114,245,.15);
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.l-tool-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.l-tool-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* ── Mockup UI inside card ── */
.l-tool-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin: 0 -32px;
  box-shadow: 0 -4px 20px rgba(13,27,62,.06);
  position: relative;
  z-index: 1;
}

/* Mockup top bar */
.l-tool-mockup__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.l-tool-mockup__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-2);
  flex-shrink: 0;
}
.l-tool-mockup__dot:first-child  { background: #F87171; }
.l-tool-mockup__dot:nth-child(2) { background: #FBBF24; }
.l-tool-mockup__dot:last-child   { background: #4ADE80; }
.l-tool-mockup__title-bar {
  flex: 1;
  height: 16px;
  background: var(--border);
  border-radius: 4px;
  max-width: 160px;
}

/* Mockup rows */
.l-tool-mockup__rows {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-tool-mockup__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}
.l-tool-mockup__row-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
}
.l-tool-mockup__bar-wrap {
  width: 120px;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 6px;
  overflow: hidden;
}
.l-tool-mockup__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 6px;
  transition: width .6s ease;
}
.l-tool-mockup__row-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  min-width: 32px;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .l-tools__grid { grid-template-columns: 1fr; }
  .l-tool-card   { padding: 28px 24px 0; }
  .l-tool-mockup { margin: 0 -24px; }
}
@media (max-width: 480px) {
  .l-tool-card__title { font-size: 18px; }
  .l-tool-mockup__bar-wrap { width: 80px; }
}

/* ============================================================
   BLOCK 7 — PROCESS
   ============================================================ */
.l-process {
  background: var(--bg);
}

.l-process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line between steps */
.l-process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  opacity: .25;
  z-index: 0;
}

.l-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* Step number bubble */
.l-process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.l-process-step:hover .l-process-step__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(29,114,245,.30);
}

.l-process-step__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.l-process-step__title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.l-process-step__text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .l-process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 0;
  }
  .l-process__steps::before { display: none; }
}

@media (max-width: 640px) {
  .l-process__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .l-process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 32px;
    gap: 20px;
  }
  /* Vertical timeline line */
  .l-process-step::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    opacity: .2;
    z-index: 0;
  }
  .l-process-step:last-child::before { display: none; }
  .l-process-step:last-child          { padding-bottom: 0; }
  .l-process-step__num  { margin-bottom: 0; flex-shrink: 0; }
  .l-process-step__content { padding-top: 12px; }
}

/* ============================================================
   BLOCK 8 — FAQ
   ============================================================ */
.l-faq {
  background: var(--bg);
}

.l-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.l-faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.l-faq-item:hover {
  border-color: rgba(29,114,245,.25);
}
.l-faq-item.is-open {
  border-color: rgba(29,114,245,.30);
  box-shadow: 0 4px 20px rgba(29,114,245,.08);
}

/* Trigger button */
.l-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: background .15s;
}
.l-faq-item__trigger:hover {
  background: var(--bg);
}
.l-faq-item.is-open .l-faq-item__trigger {
  background: rgba(29,114,245,.04);
}
.l-faq-item__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.l-faq-item__question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}
.l-faq-item.is-open .l-faq-item__question {
  color: var(--accent);
}

/* Plus/minus icon */
.l-faq-item__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: background .2s, border-color .2s, color .2s, transform .3s ease;
}
.l-faq-item.is-open .l-faq-item__icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

/* Answer body — collapsed by default */
.l-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.l-faq-item.is-open .l-faq-item__body {
  grid-template-rows: 1fr;
}
/* Wrapper div is the true grid-item — clips overflow */
.l-faq-item__body-inner {
  overflow: hidden;
  min-height: 0;
}

.l-faq-item__answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .l-faq-item__trigger  { padding: 16px 18px; }
  .l-faq-item__question { font-size: 14px; }
  .l-faq-item__answer   { padding: 0 18px 16px; }
}

/* ============================================================
   BLOCK 9 — FINAL CTA
   ============================================================ */
.l-cta-final {
  padding: 80px 0;
  background: var(--bg);
}

.l-cta-final__inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

/* Decorative glows */
.l-cta-final__glow-1 {
  position: absolute;
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(29,114,245,.10) 0%, transparent 70%);
  pointer-events: none;
}
.l-cta-final__glow-2 {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(56,196,255,.09) 0%, transparent 70%);
  pointer-events: none;
}

/* Badge */
.l-cta-final__badge {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.l-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(29,114,245,.08);
  border: 1px solid rgba(29,114,245,.18);
  padding: 5px 14px;
  border-radius: 100px;
}
.l-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}

/* Heading & subtitle */
.l-cta-final__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.l-cta-final__subtitle {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

/* ── Form ── */
.l-cta-form {
  position: relative;
  z-index: 1;
  text-align: left;
}
.l-cta-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.l-cta-form__field { display: flex; flex-direction: column; gap: 6px; }
.l-cta-form__field--full { grid-column: 1 / -1; }

.l-cta-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.l-cta-form__input {
  height: 44px;
  padding: 0 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.l-cta-form__input::placeholder { color: var(--muted); }
.l-cta-form__input:hover  { border-color: var(--border-2); }
.l-cta-form__input:focus  {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,114,245,.12);
  background: var(--white);
}
.l-cta-form__input.is-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.10);
}

/* Success message */
#lFormSuccess {
  font-size: 14px;
  font-weight: 600;
  color: #16A34A;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.l-cta-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Secondary button row */
.l-cta-final__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .l-cta-final__inner { padding: 44px 28px; border-radius: 18px; }
}
@media (max-width: 560px) {
  .l-cta-form__grid   { grid-template-columns: 1fr; }
  .l-cta-final__inner { padding: 36px 20px; border-radius: 14px; }
  .l-cta-final__title { font-size: 24px; }
}

/* ============================================================
   BLOCK 10 — FOOTER
   ============================================================ */
.l-footer {
  background: var(--ft-bg);
  padding: 72px 0 0;
}

/* ── Main grid ── */
.l-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ft-border);
}

/* Col 1 — Brand */
.l-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.l-footer__logo .l-header__logo-mark {
  background: rgba(29,114,245,.25);
  color: var(--accent-2);
}
.l-footer__logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.l-footer__brand-desc {
  font-size: 13.5px;
  color: var(--ft-muted);
  line-height: 1.7;
  max-width: 240px;
}

/* Column titles */
.l-footer__col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

/* Nav links */
.l-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__links a {
  font-size: 13.5px;
  color: var(--ft-text);
  transition: color .18s;
  line-height: 1.4;
}
.l-footer__links a:hover { color: var(--accent-2); }

/* Contact col */
.l-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ft-text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.l-footer__contact-item svg {
  color: var(--ft-muted);
  flex-shrink: 0;
  margin-top: 2px;
}
.l-footer__contact-link {
  color: var(--ft-text);
  transition: color .18s;
}
.l-footer__contact-link:hover { color: var(--accent-2); }

.l-footer__book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  border: 1px solid rgba(56,196,255,.25);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .18s, border-color .18s;
}
.l-footer__book:hover {
  background: rgba(56,196,255,.08);
  border-color: rgba(56,196,255,.5);
}
.l-footer__book svg { flex-shrink: 0; }

/* Social links */
.l-footer__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ft-text);
  transition: color .18s;
}
.l-footer__social-link svg { flex-shrink: 0; color: var(--ft-muted); transition: color .18s; }
.l-footer__social-link:hover       { color: var(--accent-2); }
.l-footer__social-link:hover svg   { color: var(--accent-2); }

/* ── Bottom bar ── */
.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}
.l-footer__copy {
  font-size: 13px;
  color: var(--ft-muted);
}
.l-footer__legal {
  display: flex;
  gap: 20px;
}
.l-footer__legal a {
  font-size: 13px;
  color: var(--ft-muted);
  transition: color .18s;
  white-space: nowrap;
}
.l-footer__legal a:hover { color: var(--ft-text); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .l-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  /* Brand takes full width on first row */
  .l-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }
  .l-footer__brand-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .l-footer { padding-top: 52px; }
  .l-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .l-footer__grid > div:first-child { grid-column: 1 / -1; }
  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0 24px;
  }
  .l-footer__legal { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 480px) {
  .l-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .l-footer__grid > div:first-child { grid-column: auto; }
}
