/* =========================================
   LKIN — Page Styles
   ========================================= */

:root {
  --lk-dark:        #0b1628;
  --lk-dark-2:      #132035;
  --lk-dark-light:  #1c2f4d;
  --lk-blue:        #1D72F5;
  --lk-blue-dark:   #1558CC;
  --lk-blue-glow:   rgba(29, 114, 245, 0.18);
  --lk-blue-soft:   rgba(29, 114, 245, 0.08);
}

/* Override section-label color on LKIN page */
.lk-page .section-label {
  color: var(--lk-blue);
}

/* =========================================
   SHARED TYPOGRAPHY
   ========================================= */
.lk-title {
  font-size: clamp(1.65rem, 3.2vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.lk-title--light {
  color: var(--white);
}

.lk-blue {
  color: var(--lk-blue);
}

.lk-label-blue {
  color: var(--lk-blue) !important;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-lk-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lk-blue);
  color: var(--white) !important;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(29, 114, 245, 0.35);
  white-space: nowrap;
}

.btn-lk-blue:hover {
  background: var(--lk-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(29, 114, 245, 0.45);
}

.btn-lk-lg {
  font-size: 1.0625rem;
  padding: 16px 40px;
}

.btn-lk-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-lk-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white) !important;
}

/* Active nav item in dropdown */
.lk-nav-active strong {
  color: var(--lk-blue) !important;
}

/* =========================================
   HERO
   ========================================= */
.lk-hero {
  background: var(--lk-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
}

.lk-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 45%, rgba(29, 114, 245, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 15% 90%, rgba(0, 180, 216, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.lk-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lk-hero-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.lk-hero-logo {
  height: 40px;
  width: auto;
}

.lk-hero-by {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 14px;
}

.lk-hero-by strong {
  color: var(--cyan);
}

.lk-hero-title {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}

.lk-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 560px;
}

.lk-hero-sub strong {
  color: var(--white);
}

.lk-hero-support {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 560px;
}

.lk-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.lk-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.lk-stat-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lk-stat-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--lk-blue);
  line-height: 1;
}

.lk-stat-desc {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lk-stat-sep {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
}

.lk-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-hero-img {
  width: 100%;
  max-width: 640px;
  border-radius: 20px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* =========================================
   DOR DO CANDIDATO
   ========================================= */
.lk-pain {
  padding: 96px 24px;
  background: var(--white);
}

.lk-pain-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-pain-body {
  margin: 24px 0 40px;
}

.lk-pain-body p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 16px;
}

.lk-pain-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lk-pain-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.lk-pain-card:hover {
  border-color: rgba(29, 114, 245, 0.35);
  box-shadow: 0 6px 24px rgba(29, 114, 245, 0.1);
  transform: translateY(-3px);
}

.lk-pain-icon {
  font-size: 1.625rem;
  flex-shrink: 0;
}

.lk-pain-card p {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.5;
}

.lk-pain-card p strong {
  color: var(--dark);
  display: block;
}

.lk-pain-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* =========================================
   COMO FUNCIONA
   ========================================= */
.lk-how {
  padding: 96px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.lk-how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.lk-how-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
}

.lk-how-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.9375rem;
}

.lk-steps {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.lk-step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.lk-step:last-child {
  border-bottom: none;
}

.lk-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--lk-blue-soft);
  border: 1.5px solid var(--lk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--lk-blue);
  margin-top: 2px;
}

.lk-step-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.4;
}

.lk-step-content p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =========================================
   VELOCIDADE
   ========================================= */
.lk-speed {
  padding: 96px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.lk-speed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-speed-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.lk-speed-proof {
  background: var(--off-white);
  border-left: 3px solid var(--lk-blue);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin-bottom: 28px;
}

.lk-speed-proof p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

.lk-speed-quote p {
  font-size: 1.0625rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
}

.lk-speed-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lk-speed-visual img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.2);
}

/* =========================================
   ALERTA EM TEMPO REAL
   ========================================= */
.lk-alert {
  padding: 96px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.lk-alert-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-alert-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.lk-alert-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.9375rem;
}

.lk-alert-text > p strong {
  color: var(--dark);
}

/* =========================================
   BUSCA INTELIGENTE
   ========================================= */
.lk-search {
  padding: 96px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.lk-search-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-search-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.9375rem;
}

.lk-search-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.lk-search-visual img:hover {
  transform: scale(1.02);
}

.lk-feat-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.lk-feat-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
}

.lk-feat-bullets li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lk-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================
   ATS BANNER (dark)
   ========================================= */
.lk-ats-banner {
  background: var(--lk-dark);
  color: var(--white);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lk-ats-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(29, 114, 245, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.lk-ats-banner-inner {
  position: relative;
}

.lk-ats-header {
  max-width: 820px;
  margin: 0 auto 56px;
}

.lk-ats-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.78;
  max-width: 720px;
  margin: 0 auto 16px;
}

.lk-ats-img {
  max-width: 960px;
  margin: 0 auto 72px;
}

.lk-ats-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.lk-ats-impact {
  max-width: 680px;
  margin: 0 auto;
}

.lk-ats-impact p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.lk-ats-impact-hl {
  font-size: clamp(1.125rem, 2vw, 1.4375rem) !important;
  font-weight: 700 !important;
  color: var(--lk-blue) !important;
  margin-top: 8px;
}

/* =========================================
   ATS GRID DE CARDS
   ========================================= */
.lk-ats-grid-section {
  padding: 80px 24px 96px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.lk-ats-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.lk-ats-card:hover {
  border-color: rgba(29, 114, 245, 0.35);
  box-shadow: 0 12px 48px rgba(29, 114, 245, 0.12);
  transform: translateY(-5px);
}

.lk-ats-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lk-dark);
}

.lk-ats-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lk-ats-card:hover .lk-ats-card-img img {
  transform: scale(1.06);
}

.lk-ats-card-body {
  padding: 22px 22px 28px;
  flex: 1;
}

.lk-ats-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--lk-blue-soft);
  border: 1px solid rgba(29, 114, 245, 0.22);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lk-blue-dark);
  margin-bottom: 12px;
}

.lk-ats-card-body h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.lk-ats-card-body p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 8px;
}

/* =========================================
   ADAPTABILIDADE
   ========================================= */
.lk-adapt {
  padding: 96px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.lk-adapt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-adapt-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.lk-adapt-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.9375rem;
}

.lk-adapt-quote {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lk-adapt-quote p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
}

/* =========================================
   QUOTE HIGHLIGHT (shared)
   ========================================= */
.lk-quote-hl {
  font-size: clamp(1rem, 1.8vw, 1.25rem) !important;
  font-weight: 700 !important;
  color: var(--lk-blue) !important;
  margin-top: 6px;
}

/* =========================================
   TRÊS NÍVEIS
   ========================================= */
.lk-levels {
  background: var(--lk-dark-2);
  color: var(--white);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.lk-levels-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(29, 114, 245, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lk-levels-header {
  max-width: 720px;
  margin: 0 auto 52px;
  position: relative;
}

.lk-levels-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-top: 16px;
}

.lk-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 64px;
  position: relative;
}

.lk-level-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: left;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lk-level-card:hover {
  background: rgba(29, 114, 245, 0.06);
  border-color: rgba(29, 114, 245, 0.22);
  transform: translateY(-4px);
}

.lk-level-card--featured {
  border-color: rgba(29, 114, 245, 0.3);
  background: rgba(29, 114, 245, 0.05);
}

.lk-level-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.lk-level-badge--1 {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.lk-level-badge--2 {
  background: var(--lk-blue-glow);
  color: var(--lk-blue);
  border: 1px solid rgba(29, 114, 245, 0.3);
}

.lk-level-badge--3 {
  background: rgba(29, 114, 245, 0.12);
  color: var(--lk-blue);
}

.lk-level-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.lk-level-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.lk-levels-img {
  max-width: 960px;
  margin: 0 auto 40px;
  position: relative;
}

.lk-levels-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.lk-levels-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  position: relative;
}

.lk-levels-note strong {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   MOBILE / TELEGRAM
   ========================================= */
.lk-mobile {
  padding: 96px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.lk-mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-mobile-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.9375rem;
}

.lk-mobile-quote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.lk-mobile-quote p {
  font-size: 1.0625rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.7;
}

.lk-mobile-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.lk-mobile-visual img:hover {
  transform: scale(1.02);
}

/* =========================================
   PARA QUEM É
   ========================================= */
.lk-audience {
  padding: 96px 24px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.lk-audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-audience-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.lk-audience-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.9375rem;
}

.lk-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.lk-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.55;
}

.lk-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--lk-blue-glow);
  border: 1.5px solid var(--lk-blue);
  border-radius: 50%;
  margin-top: 1px;
  position: relative;
}

.lk-check::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--lk-blue);
  border-bottom: 2px solid var(--lk-blue);
  transform: rotate(45deg) translateY(-1px);
}

.lk-audience-note {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 3px solid var(--lk-blue);
}

/* =========================================
   OUTPLACEMENT
   ========================================= */
.lk-outplacement {
  padding: 96px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.lk-outplacement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lk-outplacement-text > p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 0.9375rem;
}

.lk-outplacement-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* =========================================
   CTA FINAL
   ========================================= */
.lk-cta {
  background: var(--off-white);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
}

.lk-cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.lk-cta-sub {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 40px;
}

.lk-cta-img {
  max-width: 840px;
  margin: 0 auto 48px;
}

.lk-cta-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.lk-cta-note {
  margin-top: 22px;
  font-size: 0.8125rem;
  color: var(--gray-light);
}

.lk-cta-note a {
  color: var(--cyan);
  font-weight: 600;
}

.lk-cta-note a:hover {
  text-decoration: underline;
}

/* =========================================
   RESPONSIVE — Tablet (≤ 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .lk-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .lk-hero-top {
    justify-content: center;
  }

  .lk-hero-sub,
  .lk-hero-support {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .lk-hero-actions {
    justify-content: center;
  }

  .lk-hero-stats {
    justify-content: center;
  }

  .lk-hero-visual {
    order: -1;
  }

  .lk-hero-img {
    max-width: 520px;
  }

  .lk-pain-inner,
  .lk-how-inner,
  .lk-speed-inner,
  .lk-alert-inner,
  .lk-search-inner,
  .lk-adapt-inner,
  .lk-mobile-inner,
  .lk-audience-inner,
  .lk-outplacement-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lk-ats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lk-levels-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .lk-how-visual img {
    position: static;
  }
}

/* =========================================
   RESPONSIVE — Mobile (≤ 640px)
   ========================================= */
@media (max-width: 768px) {
  .lk-hero {
    padding: 100px 16px 64px;
  }

  .lk-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .lk-hero-actions .btn-lk-blue,
  .lk-hero-actions .btn-lk-ghost {
    width: 100%;
    justify-content: center;
  }

  .lk-pain-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .lk-ats-grid {
    grid-template-columns: 1fr;
  }

  .lk-levels-grid {
    grid-template-columns: 1fr;
  }

  .lk-pain,
  .lk-how,
  .lk-speed,
  .lk-alert,
  .lk-search,
  .lk-adapt,
  .lk-mobile,
  .lk-audience,
  .lk-outplacement,
  .lk-cta,
  .lk-ats-banner,
  .lk-ats-grid-section,
  .lk-levels {
    padding: 64px 16px;
  }
}
