/* LimTC website v14, single stylesheet */

:root {
  --green: #7AC54C;
  --green-soft: #E8F5DC;
  --green-dark: #5BA32E;
  --text: #1F2937;
  --body: #4B5563;
  --muted: #9CA3AF;
  --line: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF7;
  --shadow-sm: 0 1px 2px rgba(31,41,55,.06);
  --shadow: 0 4px 14px rgba(31,41,55,.08);
  --shadow-lg: 0 12px 32px rgba(31,41,55,.12);
  --radius: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; color: var(--text); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(36px, 5vw, 56px); letter-spacing: -1px; font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -.5px; }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: 18px; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
.highlight { color: var(--green); }
.muted { color: var(--muted); }

.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 16px; transition: all .2s; cursor: pointer; border: none; font-family: inherit; line-height: 1; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--text); border: 2px solid var(--line); }
.btn-secondary:hover { border-color: var(--green); color: var(--green-dark); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--container); margin: 0 auto; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { padding: 10px 20px !important; font-size: 14px !important; }
.nav-toggle { display: flex; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.nav-mobile { display: none; padding: 16px 24px; border-top: 1px solid var(--line); background: #fff; flex-direction: column; gap: 16px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text); font-weight: 500; }

.nav-clutch { display: none; margin-left: 16px; align-items: center; min-width: 200px; max-width: 240px; }
.nav-clutch .clutch-widget { display: block; width: 100%; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .nav-clutch { display: flex; }
}

section { padding: 80px 0; }
section.tight { padding: 48px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .sub { font-size: 19px; color: var(--body); }

.hero { padding: 64px 0 80px; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero-sub { font-size: 19px; color: var(--body); margin-bottom: 32px; max-width: 560px; }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 880px) {
  .hero { padding: 96px 0 120px; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

.trust-strip { padding: 48px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 28px; text-align: center; }
.trust-item .num { font-family: 'Poppins', sans-serif; font-size: 38px; font-weight: 800; color: var(--green); line-height: 1.05; letter-spacing: -0.5px; }
.trust-item .num .accent { color: inherit; }
.trust-item .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; line-height: 1.35; font-weight: 600; }
@media (min-width: 600px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; } .trust-item .num { font-size: 34px; } }

.cards-3 { display: grid; gap: 24px; }
@media (min-width: 880px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: all .2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: 12px; }
.card .num-badge { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; margin-bottom: 16px; font-family: 'Poppins'; }

.service-card { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.service-card h3 { color: var(--text); margin-bottom: 8px; }
.service-card .lead { font-weight: 500; color: var(--text); margin-bottom: 12px; }
.service-card ul { padding-left: 20px; margin: 16px 0; }
.service-card ul li { margin-bottom: 6px; }

.process { padding: 80px 0; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.process-head { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.process-head h2 { margin-bottom: 16px; }
.process-head .sub { font-size: 19px; color: var(--body); }
/* Timeline Journey (Variation C) */
.timeline-journey { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; position: relative; }
.timeline-track { display: none; }
@media (min-width: 600px) and (max-width: 1099px) { .timeline-journey { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 900px) and (max-width: 1099px) { .timeline-journey { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

@media (min-width: 1100px) {
  .timeline-journey {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0 20px;
    margin-top: 70px;
    margin-bottom: 30px;
    position: relative;
  }
  .timeline-journey .step { grid-row: 1; min-height: 220px; }
  .timeline-journey .step[data-step="1"] { grid-column: 1; }
  .timeline-journey .step[data-step="3"] { grid-column: 3; }
  .timeline-journey .step[data-step="5"] { grid-column: 5; }
  .timeline-journey .step[data-step="7"] { grid-column: 7; }
  .timeline-journey .step[data-step="2"] { grid-column: 2; grid-row: 3; }
  .timeline-journey .step[data-step="4"] { grid-column: 4; grid-row: 3; }
  .timeline-journey .step[data-step="6"] { grid-column: 6; grid-row: 3; }
  .timeline-journey .step[data-step="8"] { grid-column: 8; grid-row: 3; }

  /* The track row */
  .timeline-track {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column: 1 / -1;
    grid-row: 2;
    column-gap: 20px;
    position: relative;
    padding: 50px 0;
    align-items: center;
    justify-items: center;
  }
  .track-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #7AC54C 0%, #5BA32E 100%);
    border-radius: 3px;
    transform: translateY(-50%);
    z-index: 0;
  }
  .station {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 4px solid var(--green);
    box-shadow: 0 4px 10px rgba(122,197,76,.35);
    transition: transform .25s, background .25s, box-shadow .25s, border-color .25s;
  }
  .station .station-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--green);
    transition: color .25s;
  }
  .station.station-end {
    background: var(--green);
    border-color: var(--green-dark);
    width: 54px;
    height: 54px;
  }
  .station.station-end .station-num { color: #FFFFFF; }
  .station.hl {
    transform: scale(1.18);
    box-shadow: 0 8px 22px rgba(122,197,76,.6);
  }
  .station.hl:not(.station-end) { background: var(--green); border-color: var(--green-dark); }
  .station.hl:not(.station-end) .station-num { color: #FFFFFF; }
  .station.station-end.hl { box-shadow: 0 10px 26px rgba(122,197,76,.7); }

  .track-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--muted);
    z-index: 2;
    background: var(--bg-soft);
    padding: 2px 8px;
  }
  .track-label-start { left: -60px; }
  .track-label-end { right: -60px; color: var(--green-dark); }

  /* Dotted connector line between each card and its station */
  .timeline-journey .step::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 50px;
    border-left: 2px dashed var(--green);
    opacity: 0.45;
    transform: translateX(-50%);
    transition: opacity .25s, border-left-width .25s, border-left-style .25s;
    pointer-events: none;
  }
  .timeline-journey .step[data-step="1"]::after,
  .timeline-journey .step[data-step="3"]::after,
  .timeline-journey .step[data-step="5"]::after,
  .timeline-journey .step[data-step="7"]::after { top: 100%; }
  .timeline-journey .step[data-step="2"]::after,
  .timeline-journey .step[data-step="4"]::after,
  .timeline-journey .step[data-step="6"]::after,
  .timeline-journey .step[data-step="8"]::after { bottom: 100%; }
  .timeline-journey .step:hover::after,
  .timeline-journey .step:focus::after,
  .timeline-journey .step.is-open::after {
    opacity: 1;
    border-left-width: 3px;
    border-left-style: solid;
  }
}
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 56px 16px 20px; text-align: left; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .2s, z-index 0s .25s; cursor: pointer; min-height: 200px; box-shadow: var(--shadow-sm); z-index: 1; }
.step .badge { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-family: 'Poppins'; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(122,197,76,.35); transition: transform .25s; }
.step h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 6px; line-height: 1.25; }
.step .lbl-sub { font-size: 12.5px; color: var(--body); line-height: 1.4; margin: 0; }
.step .more { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease, opacity .2s ease, margin-top .3s ease; font-size: 13px; color: var(--body); line-height: 1.55; margin-top: 0; }
.step:hover, .step.is-open, .step:focus { transform: translateY(-10px) scale(1.04); box-shadow: var(--shadow-lg); border-color: var(--green); z-index: 5; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .2s; outline: none; }
.step:hover .badge, .step.is-open .badge { transform: translateX(-50%) scale(1.08); }
.step:hover .more, .step.is-open .more, .step:focus .more { max-height: 220px; opacity: 1; margin-top: 12px; }
.step.payoff { background: var(--green); border-color: var(--green-dark); }
.step.payoff h4 { color: #fff; }
.step.payoff .lbl-sub, .step.payoff .more { color: rgba(255,255,255,.96); }
.step.payoff .badge { background: #fff; color: var(--green); box-shadow: 0 4px 10px rgba(0,0,0,.15); }
.step.payoff:hover, .step.payoff.is-open { border-color: #fff; }
.process-note { text-align: center; margin-top: 40px; color: var(--muted); font-size: 14px; }

.proof-logos { padding: 64px 0 72px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-logos .proof-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.proof-logos .proof-head h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 8px; }
.proof-logos .proof-head .sub { color: var(--muted); font-size: 15px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); }
.logo-marquee-track { display: flex; width: max-content; animation: lim-marquee 90s linear infinite; }
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-row { display: flex; gap: 72px; padding-right: 72px; align-items: center; flex-shrink: 0; }
.logo-marquee-row img { height: 56px; width: auto; max-width: 180px; object-fit: contain; flex-shrink: 0; }
@keyframes lim-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-marquee-track { animation: none; } }

.ai-human { background: var(--bg-soft); padding: 80px 0; }
.ai-human-grid { display: grid; gap: 32px; align-items: center; }
.ai-human-quote { font-family: 'Poppins'; font-size: 22px; font-weight: 600; color: var(--text); border-left: 4px solid var(--green); padding-left: 24px; }
@media (min-width: 880px) { .ai-human-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; } }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item summary { font-weight: 600; color: var(--text); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 17px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--green); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; color: var(--body); }

.final-cta { background: var(--text); color: #fff; padding: 80px 0; text-align: center; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,.85); font-size: 19px; margin-bottom: 32px; }

.form-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
@media (min-width: 600px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; }
.field label { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.field input, .field textarea, .field select { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 16px; font-family: inherit; color: var(--text); background: #fff; transition: border-color .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(122,197,76,.15); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.field-note { font-size: 12.5px; color: var(--muted); margin: 6px 0 0; font-style: italic; }
.hp { position: absolute; left: -9999px; }
fieldset.field { border: none; padding: 0; margin: 0; }
fieldset.field legend { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 10px; padding: 0; }
.radio-group { display: grid; gap: 8px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .radio-group.cols-2 { grid-template-columns: 1fr 1fr; } }
.radio-group label { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; font-size: 15px; color: var(--text); transition: all .15s; background: #fff; }
.radio-group label:hover { border-color: var(--green); background: var(--bg-soft); }
.radio-group input[type="radio"] { accent-color: var(--green); width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; }
.form-error { background: #FEF2F2; border: 1px solid #FCA5A5; color: #B91C1C; padding: 12px 14px; border-radius: 10px; font-size: 14px; margin-top: 12px; display: none; }
.form-error.show { display: block; }

/* =========================================
   FOOTER — bulletproof grid layout
   ========================================= */
.site-footer { background: #F9FAFB; border-top: 1px solid var(--line); padding: 64px 0 32px; color: var(--body); }
.site-footer .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.footer-main {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}
@media (min-width: 760px) {
  .footer-main { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr) !important; gap: 80px; }
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand > img { height: 36px; width: auto; margin: 0 0 20px; display: block; }
.footer-brand .footer-tagline { font-size: 14px; line-height: 1.6; color: var(--body); max-width: 360px; margin: 0 0 24px; }
.footer-brand .social-links { display: flex; gap: 10px; align-items: center; margin: 0 0 16px; flex-wrap: wrap; padding: 0; list-style: none; }
.footer-brand .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--body); padding: 0; text-decoration: none; transition: all .15s ease; }
.footer-brand .social-links a:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-1px); }
.footer-brand .social-links a svg { display: block; }
.footer-brand .footer-email { font-size: 14px; color: var(--muted); text-decoration: none; }
.footer-brand .footer-email:hover { color: var(--green-dark); }

.footer-nav {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width: 760px) { .footer-nav { justify-self: end; gap: 64px; } }

.footer-col h5 { font-family: 'Poppins', 'Inter', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin: 0 0 16px; }
.footer-col ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-col ul li { margin: 0 0 8px !important; padding: 0 !important; list-style: none !important; }
.footer-col ul li::before, .footer-col ul li::marker { content: none !important; display: none !important; }
.footer-col ul li a { display: block !important; color: var(--body) !important; text-decoration: none !important; padding: 4px 0 !important; font-size: 14.5px !important; line-height: 1.4 !important; }
.footer-col ul li a:hover { color: var(--green-dark) !important; }

.footer-bottom { border-top: 1px solid var(--line); padding-top: 28px; font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom-left { flex: 1 1 auto; }
.footer-bottom-right { flex: 0 0 auto; }
@media (max-width: 599px) { .footer-bottom { justify-content: center; text-align: center; } .footer-bottom-left, .footer-bottom-right { flex: 1 1 100%; } }

/* page hero / values / utilities */
.page-hero { padding: 64px 0 32px; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.page-hero .container { max-width: 880px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.page-hero .sub { font-size: 19px; color: var(--body); }
.tiles-6 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .tiles-6 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .tiles-6 { grid-template-columns: repeat(3, 1fr); } }
.two-col { display: grid; gap: 48px; align-items: start; }
@media (min-width: 880px) { .two-col { grid-template-columns: 1fr 1fr; } }
.pull-quote { font-family: 'Poppins'; font-size: 24px; font-weight: 600; color: var(--text); border-left: 4px solid var(--green); padding: 12px 24px; margin: 32px 0; line-height: 1.4; }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }
hr.sep { border: none; border-top: 1px solid var(--line); margin: 48px 0; }
:target { scroll-margin-top: 100px; }

/* Full stack 12-card section */
.full-stack { padding: 80px 0 96px; background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); position: relative; }
.full-stack .section-head { margin-bottom: 32px; }
.stack-badge-wrap { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.stack-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(122,197,76,.3); }
.stack-badge::before { content: '✓'; font-size: 14px; line-height: 1; }

.stack-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stack-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .stack-grid { grid-template-columns: repeat(4, 1fr); } }

.stack-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .2s, z-index 0s .25s;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.stack-card .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-bottom: 12px; }
.stack-card h4 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin: 0 0 8px; line-height: 1.3; }
.stack-card .lbl-sub { font-size: 13.5px; color: var(--body); line-height: 1.5; margin: 0; }
.stack-card .more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  font-size: 13px;
  color: var(--body);
  line-height: 1.55;
  transition: max-height .35s ease, opacity .25s ease, margin-top .3s ease;
}
.stack-card:hover, .stack-card:focus, .stack-card.is-open {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  border-top-color: var(--green);
  outline: none;
  z-index: 5;
}
.stack-card:hover .more, .stack-card:focus .more, .stack-card.is-open .more {
  max-height: 320px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.stack-footnote { text-align: center; font-family: 'Poppins', sans-serif; font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: var(--text); margin-top: 48px; line-height: 1.4; }
.stack-footnote::before, .stack-footnote::after { content: ''; }

@media (min-width: 1100px) {
  .timeline-journey .step .badge { display: none; }
  .timeline-journey .step { padding: 24px 18px 22px; }
}

/* =========================================
   v14 homepage additions
   ========================================= */

/* Pain recognition (You are here) */
.pain-head-row { display: none; }
.pain-grid { max-width: 940px; margin: 0 auto; display: grid; gap: 16px; }
.pain-row { display: grid; grid-template-columns: 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; }
.pain-row:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pain-you { padding: 22px 24px; background: var(--bg-soft); color: var(--text); font-weight: 600; font-family: 'Poppins', sans-serif; font-size: 15.5px; line-height: 1.45; display: flex; align-items: center; }
.pain-help { padding: 22px 24px; color: var(--body); font-size: 15.5px; line-height: 1.5; display: flex; align-items: flex-start; gap: 12px; }
.pain-help::before { content: ''; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-top: 8px; }
@media (min-width: 760px) {
  .pain-row { grid-template-columns: 1fr 1.15fr; }
  .pain-you { border-right: 1px solid var(--line); }
  .pain-head-row { display: grid; grid-template-columns: 1fr 1.15fr; max-width: 940px; margin: 0 auto 10px; }
  .pain-head-row span { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--muted); padding: 0 24px; }
}

/* Industries served tiles */
.ind-tiles { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .ind-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ind-tiles { grid-template-columns: repeat(4, 1fr); } }
.ind-tile { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s; }
.ind-tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ind-tile h4 { font-family: 'Poppins', sans-serif; font-size: 16px; margin: 0 0 8px; color: var(--text); line-height: 1.3; }
.ind-tile p { font-size: 14px; color: var(--body); margin: 0; line-height: 1.5; }

/* AI governance line */
.ai-gov { font-size: 14.5px; color: var(--muted); border-left: 3px solid var(--line); padding-left: 16px; margin-top: 8px; }

/* Honest fit qualifier */
.fit-grid { display: grid; gap: 24px; max-width: 980px; margin: 0 auto; }
@media (min-width: 760px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
.fit-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.fit-col.yes { border-top: 3px solid var(--green); }
.fit-col.no { border-top: 3px solid var(--muted); }
.fit-col h3 { margin-bottom: 12px; }
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li { padding: 12px 0 12px 30px; position: relative; border-bottom: 1px solid var(--line); color: var(--body); font-size: 15.5px; line-height: 1.45; }
.fit-col li:last-child { border-bottom: none; }
.fit-col.yes li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.fit-col.no li::before { content: '\00D7'; position: absolute; left: 2px; color: var(--muted); font-weight: 800; font-size: 18px; line-height: 1.2; }

/* ============================================================
   Case studies carousel
   ============================================================ */
.case-studies .cs-wrap { display: grid; grid-template-columns: minmax(0,0.82fr) minmax(0,1.28fr); background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cs-aside { background: #111827; padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.cs-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-size: 12px; letter-spacing: 2px; font-weight: 700; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.cs-eyebrow::before { content: ""; width: 24px; height: 3px; background: var(--green); border-radius: 2px; }
.cs-aside h2 { color: #fff; font-size: 32px; line-height: 1.14; margin: 0; }
.cs-aside .cs-sub { color: rgba(255,255,255,.64); font-size: 16px; margin-top: 14px; max-width: 300px; line-height: 1.55; }
.cs-cta { margin-top: 24px; }
.cs-nav { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.cs-arrow { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.cs-arrow svg { width: 20px; height: 20px; }
.cs-arrow-prev { background: transparent; border: 1px solid rgba(255,255,255,.2); color: #fff; }
.cs-arrow-prev:hover { border-color: rgba(255,255,255,.55); }
.cs-arrow-next { background: var(--green); border: none; color: #fff; }
.cs-arrow-next:hover { background: var(--green-dark); }
.cs-arrow:active { transform: scale(.94); }
.cs-panel { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.cs-slide { display: none; }
.cs-slide.is-active { display: flex; flex-direction: column; animation: csFade .3s ease; }
@keyframes csFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.cs-tagrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cs-icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--green-soft); color: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-icon svg { width: 24px; height: 24px; }
.cs-tag { font-size: 13px; font-weight: 600; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; padding: 6px 15px; }
.cs-panel h3 { font-size: 24px; line-height: 1.25; margin: 0 0 10px; }
.cs-desc { color: var(--body); font-size: 16px; margin: 0 0 28px; line-height: 1.6; }
.cs-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cs-stat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 18px; }
.cs-stat-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cs-stat-num { font-family: 'Poppins', sans-serif; font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -1.5px; color: var(--text); }
.cs-badge { display: inline-flex; align-items: center; justify-content: center; background: var(--green-soft); color: var(--green-dark); border-radius: 8px; padding: 5px 8px; }
.cs-badge svg { width: 16px; height: 16px; }
.cs-stat-label { color: var(--body); font-size: 14px; margin-top: 12px; font-weight: 500; }
@media (max-width: 860px) {
  .case-studies .cs-wrap { grid-template-columns: 1fr; }
  .cs-aside { padding: 34px 26px; }
  .cs-aside h2 { font-size: 27px; }
  .cs-panel { padding: 32px 26px; }
  .cs-stat-num { font-size: 38px; }
}
@media (max-width: 460px) { .cs-stats { grid-template-columns: 1fr; } }

/* ---- Case studies: full-bleed stretched override ---- */
.case-studies { padding: 0; }
.case-studies .container { max-width: none; padding: 0; }
.case-studies .cs-wrap { border: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); grid-template-columns: minmax(0,0.78fr) minmax(0,1.3fr); }
.cs-aside { padding: clamp(40px,5vw,56px) clamp(28px,5vw,72px); }
.cs-panel { padding: clamp(40px,5vw,56px) clamp(28px,5vw,72px); }
.cs-aside h2 { font-size: clamp(30px,3vw,40px); }
.cs-aside .cs-sub { font-size: 17px; max-width: 320px; }
.cs-panel h3 { font-size: clamp(22px,2.2vw,30px); }
.cs-desc { font-size: 17px; max-width: 640px; }
.cs-stats { max-width: 700px; }
.cs-stat-num { font-size: clamp(40px,4vw,56px); }
.cs-arrow { width: 50px; height: 50px; }
@media (max-width: 860px) {
  .case-studies .cs-wrap { grid-template-columns: 1fr; }
  .cs-aside h2 { font-size: 28px; }
  .cs-stat-num { font-size: 40px; }
}
@media (max-width: 460px) { .cs-stats { grid-template-columns: 1fr; } }

/* ---- How we work: keyword cards, balanced ladder, click-to-open panel ---- */
.step .badge { display: none; }
.step .lbl-sub { display: none; }
.step .more { display: none; }
.step { cursor: pointer; padding: 18px 16px; min-height: auto; transition: box-shadow .18s, border-color .18s; }
.step h4 { font-size: 14.5px; line-height: 1.2; margin: 0; }
.step:hover { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); transform: none; }
.step.is-open, .step:focus { border-color: var(--green); box-shadow: 0 0 0 2px var(--green), 0 10px 26px rgba(31,41,55,.16); outline: none; transform: none; }

.step-detail { max-width: 720px; margin: 44px auto 0; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--green); border-radius: 14px; padding: 26px 32px; box-shadow: var(--shadow); }
.step-detail .sd-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; padding: 5px 14px; margin-bottom: 12px; }
.step-detail h3 { font-family: 'Poppins', sans-serif; font-size: 24px; color: var(--text); margin: 0 0 8px; }
.step-detail p { font-size: 16px; color: var(--body); line-height: 1.6; margin: 0; }

@media (min-width: 1100px) {
  .timeline-journey { display: block; position: relative; width: 1040px; max-width: 100%; height: 385px; margin: 36px auto 0; padding: 0; gap: 0; }
  .timeline-journey .step { position: absolute; width: 140px; height: 52px; min-height: 0; padding: 0 12px; display: flex; align-items: center; justify-content: center; text-align: center; }
  .timeline-journey .step h4 { font-size: 14.5px; margin: 0; }
  .timeline-journey .step[data-step="1"] { left: 0; top: 20px; }
  .timeline-journey .step[data-step="3"] { left: 257px; top: 56px; }
  .timeline-journey .step[data-step="5"] { left: 514px; top: 20px; }
  .timeline-journey .step[data-step="7"] { left: 771px; top: 56px; }
  .timeline-journey .step[data-step="2"] { left: 129px; top: 283px; }
  .timeline-journey .step[data-step="4"] { left: 386px; top: 327px; }
  .timeline-journey .step[data-step="6"] { left: 643px; top: 283px; }
  .timeline-journey .step[data-step="8"] { left: 900px; top: 327px; }

  .timeline-journey .step::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 4px; border: none !important; background: #9BD96B; border-radius: 3px; opacity: 1; }
  .timeline-journey .step[data-step="1"]::after, .timeline-journey .step[data-step="3"]::after,
  .timeline-journey .step[data-step="5"]::after, .timeline-journey .step[data-step="7"]::after { top: 100%; bottom: auto; }
  .timeline-journey .step[data-step="2"]::after, .timeline-journey .step[data-step="4"]::after,
  .timeline-journey .step[data-step="6"]::after, .timeline-journey .step[data-step="8"]::after { bottom: 100%; top: auto; }
  .timeline-journey .step[data-step="1"]::after { height: 100px; }
  .timeline-journey .step[data-step="3"]::after { height: 64px; }
  .timeline-journey .step[data-step="5"]::after { height: 100px; }
  .timeline-journey .step[data-step="7"]::after { height: 64px; }
  .timeline-journey .step[data-step="2"]::after { height: 65px; }
  .timeline-journey .step[data-step="4"]::after { height: 109px; }
  .timeline-journey .step[data-step="6"]::after { height: 65px; }
  .timeline-journey .step[data-step="8"]::after { height: 109px; }
  .timeline-journey .step.is-open::after, .timeline-journey .step:hover::after { background: #7AC54C; }

  .timeline-journey .timeline-track { display: block; position: absolute; inset: 0; padding: 0; }
  .timeline-journey .track-line { position: absolute; left: 40px; right: auto; width: 960px; top: 192px; height: 6px; background: linear-gradient(90deg, #7AC54C, #5BA32E); border-radius: 3px; transform: none; z-index: 0; }
  .timeline-journey .station { position: absolute; top: 172px; width: 46px; height: 46px; z-index: 10; background: #FFFFFF; }
  .timeline-journey .station-end { width: 46px; height: 46px; background: var(--green); }
  .timeline-journey .station[data-step="1"] { left: 47px; }
  .timeline-journey .station[data-step="2"] { left: 176px; }
  .timeline-journey .station[data-step="3"] { left: 304px; }
  .timeline-journey .station[data-step="4"] { left: 433px; }
  .timeline-journey .station[data-step="5"] { left: 561px; }
  .timeline-journey .station[data-step="6"] { left: 690px; }
  .timeline-journey .station[data-step="7"] { left: 818px; }
  .timeline-journey .station[data-step="8"] { left: 947px; }
  .timeline-journey .track-label-start { left: 0; top: 167px; }
  .timeline-journey .track-label-end { right: 0; top: 167px; }
}

/* The Loop teaser (v15) */
.loop-teaser { padding: 80px 0; }
.loop-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 880px) { .loop-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.loop-point { display: flex; gap: 14px; margin-bottom: 22px; font-size: 16px; }
.loop-point svg { width: 22px; height: 22px; stroke: var(--green-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.loop-point strong { color: var(--text); }
.loop-point p { margin: 0; }
.loop-badge { display: inline-block; background: var(--green-soft); color: var(--green-dark); border: 1px solid var(--green); border-radius: 999px; font-size: 13px; font-weight: 600; padding: 7px 18px; margin-top: 4px; }
.loop-preview { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.loop-bar { background: #F3F4F6; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 6px; padding: 9px 14px; }
.loop-dot { width: 9px; height: 9px; border-radius: 50%; background: #D1D5DB; }
.loop-url { flex: 1; text-align: center; font-size: 12px; color: var(--muted); background: #fff; border-radius: 6px; padding: 2px 10px; margin: 0 10px; }
.loop-app { display: grid; grid-template-columns: 104px 1fr; }
.loop-side { background: #10151C; padding: 14px 10px; }
.loop-side-label { font-size: 10px; letter-spacing: 2.5px; color: var(--green); font-weight: 700; margin: 2px 0 14px 8px; font-family: 'Poppins'; }
.loop-nav-item { font-size: 11.5px; color: #94A0AC; padding: 7px 9px; border-radius: 6px; margin-bottom: 2px; }
.loop-nav-item.active { background: #232E3B; color: #fff; display: flex; justify-content: space-between; align-items: center; }
.loop-nav-count { background: var(--green); color: #10151C; border-radius: 999px; font-size: 10px; font-weight: 700; padding: 0 7px; }
.loop-nav-cta { background: var(--green); color: #fff; font-size: 11px; font-weight: 700; padding: 7px 9px; border-radius: 6px; margin-top: 12px; text-align: center; }
.loop-main { background: #F6F8FA; padding: 16px; }
.loop-main-title { font-family: 'Poppins', 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.loop-cand { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px; box-shadow: var(--shadow-sm); }
.loop-cand-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.loop-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loop-avatar.gray { background: var(--line); color: var(--body); }
.loop-cand-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.loop-cand-role { font-size: 11px; color: var(--muted); }
.loop-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.loop-chip { font-size: 10.5px; font-weight: 600; background: var(--green-soft); color: var(--green-dark); padding: 3px 9px; border-radius: 6px; }
.loop-actions { display: flex; gap: 8px; }
.loop-btn { flex: 1; text-align: center; font-size: 12px; border-radius: 7px; padding: 7px 0; }
.loop-btn.reject { color: var(--body); border: 1px solid var(--line); background: #fff; }
.loop-btn.approve { background: var(--green); color: #fff; font-weight: 700; }
.loop-next { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 13px; margin-top: 9px; display: flex; align-items: center; gap: 9px; opacity: .75; font-size: 12px; color: var(--body); }

/* Founder cards (v16) */
.founder-card { overflow: hidden; }
.founder-photo { position: relative; margin: -32px -32px 20px; }
.founder-photo img { width: 100%; height: 300px; object-fit: cover; object-position: center 25%; display: block; }
.founder-li { position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px; border-radius: 9px; background: #0A66C2; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: all .2s; }
.founder-li:hover { background: #084D92; color: #fff; transform: translateY(-2px); }
.founder-li svg { width: 19px; height: 19px; }

/* Careers hero + Glassdoor (v17) */
.careers-hero { position: relative; min-height: 540px; display: flex; align-items: flex-end; overflow: hidden; padding: 0; }
.careers-hero .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.careers-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,21,28,.10) 0%, rgba(16,21,28,.82) 82%); }
.careers-hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 56px; }
.careers-hero .eyebrow { color: var(--green); }
.careers-hero h1 { color: #fff; max-width: 720px; }
.careers-hero .sub { color: #E5EAF0; font-size: 19px; max-width: 640px; }
.gd-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 9px 20px; color: #fff; font-weight: 600; font-size: 14.5px; margin-top: 22px; text-decoration: none; transition: all .2s; }
.gd-pill:hover { background: rgba(255,255,255,.22); color: #fff; }
.gd-pill .stars { color: #7AC54C; letter-spacing: 2px; }
.gd-widget { display: flex; align-items: center; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 32px; max-width: 600px; margin: 0 auto; flex-wrap: wrap; }
.gd-logo { width: 56px; height: 56px; border-radius: 12px; background: #0CAA41; color: #fff; font-family: 'Poppins'; font-weight: 800; font-size: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gd-score { font-family: 'Poppins'; font-size: 36px; font-weight: 800; color: var(--text); line-height: 1; }
.gd-stars { color: #0CAA41; font-size: 17px; letter-spacing: 3px; margin-top: 4px; }
.gd-meta { font-size: 13px; color: var(--muted); margin-top: 4px; }
.gd-link { margin-left: auto; }
@media (max-width: 640px) { .careers-hero { min-height: 440px; } .gd-widget { justify-content: center; text-align: center; } .gd-link { margin: 8px auto 0; } }

/* Careers split hero (v18) */
.careers-hero-split { padding: 72px 0 64px; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.chs-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 880px) { .chs-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }
.chs-grid h1 { margin-bottom: 16px; }
.chs-grid .sub { font-size: 19px; color: var(--body); }
.gd-pill-light { display: inline-flex; align-items: center; gap: 10px; background: var(--green-soft); border: 1px solid var(--green); border-radius: 999px; padding: 9px 20px; color: var(--text); font-weight: 600; font-size: 14.5px; margin-top: 20px; transition: all .2s; }
.gd-pill-light:hover { background: #DDF0CC; color: var(--text); transform: translateY(-1px); }
.gd-pill-light .stars { color: var(--green-dark); letter-spacing: 2px; }
.chs-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* One fee, everything included (v19) */
.onefee-h2 .fee-box { background: var(--green); color: #fff; border-radius: 12px; padding: 2px 18px 6px; display: inline-block; }
.onefee-hint { font-size: 13px; color: var(--muted); margin-top: 14px; }
.inc-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 880px) { .inc-grid { grid-template-columns: repeat(4, 1fr); } }
.inc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); cursor: default; transition: all .2s; outline: none; }
.inc-card .inc-num { font-family: 'Poppins'; font-size: 12px; font-weight: 700; color: var(--green-dark); display: block; margin-bottom: 6px; }
.inc-card h3 { font-size: 16px; margin: 0; }
.inc-card p { font-size: 13.5px; color: var(--body); margin: 0; max-height: 0; opacity: 0; overflow: hidden; transition: all .25s ease; }
.inc-card:hover, .inc-card:focus, .inc-card:focus-within { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.inc-card:hover p, .inc-card:focus p, .inc-card:focus-within p { max-height: 160px; opacity: 1; margin-top: 8px; }

/* Apply page (v20) */
.apply-wrap { position: relative; padding: 72px 0 88px; overflow: hidden; background: var(--text); }
.apply-bg { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.apply-bg img { width: 100%; height: 100%; object-fit: cover; }
.apply-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(16,21,28,.74); }
.apply-wrap .container { position: relative; z-index: 2; }
.apply-card { background: #fff; border-radius: 18px; max-width: 600px; margin: 0 auto; padding: 44px 40px; box-shadow: var(--shadow-lg); }
.apply-card h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 10px; }
.apply-intro { font-size: 15.5px; color: var(--body); margin-bottom: 26px; }
.af-grid { display: grid; gap: 0 14px; }
@media (min-width: 560px) { .af-grid { grid-template-columns: 1fr 1fr; } }
.af-row { margin-bottom: 16px; }
.af-row label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.af-row input, .af-row select { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; font-family: inherit; color: var(--text); background: #fff; outline: none; transition: border-color .15s; box-sizing: border-box; }
.af-row input:focus, .af-row select:focus { border-color: var(--green); }
.af-row input[type=file] { padding: 9px 10px; font-size: 13.5px; background: var(--bg-soft); cursor: pointer; }
.af-row input[type=file]::file-selector-button { background: var(--green); color: #fff; border: none; border-radius: 7px; padding: 7px 14px; font-weight: 600; font-family: inherit; margin-right: 12px; cursor: pointer; }
.af-fine { font-size: 12px; color: var(--muted); margin: 6px 0 0; line-height: 1.5; }
.af-captcha { margin: 18px 0; display: flex; justify-content: center; }
.apply-btn { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }
@media (max-width: 640px) { .apply-card { padding: 32px 22px; } .apply-bg { grid-template-columns: 1fr; } .apply-bg img:nth-child(n+2) { display: none; } }

/* Homepage redesigned sections (v21) */
.svc-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
.svc-card { background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: 0 0 14px 14px; padding: 24px 20px; display: flex; flex-direction: column; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: all .2s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.svc-card .picon2 { width: 38px; height: 38px; border-radius: 10px; background: var(--green-soft); display: flex; align-items: center; justify-content: center; }
.svc-card .picon2 svg { width: 20px; height: 20px; stroke: var(--green-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-size: 18px; margin: 12px 0 0; }
.svc-card p { font-size: 14px; color: var(--body); line-height: 1.55; margin: 8px 0 16px; }
.svc-more { margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--green-dark); }
.svc-card:hover .svc-more { color: var(--green); }
.pain2-list { display: flex; flex-direction: column; gap: 14px; max-width: 880px; margin: 0 auto; }
.pain2-row { display: grid; grid-template-columns: 1fr; gap: 8px; align-items: stretch; }
@media (min-width: 760px) { .pain2-row { grid-template-columns: 1fr 44px 1fr; gap: 0; } }
.pain2-you { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.pain2-fix { background: #fff; border: 1px solid #C9E8A4; border-radius: 14px; padding: 20px; box-shadow: 0 2px 10px rgba(122,197,76,.12); }
.pain2-tag { display: flex; align-items: center; gap: 7px; font-size: 10.5px; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 8px; }
.pain2-you .pain2-tag { color: var(--muted); }
.pain2-fix .pain2-tag { color: var(--green-dark); }
.pain2-tag svg { width: 15px; height: 15px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.pain2-you .pain2-tag svg { stroke: var(--muted); }
.pain2-fix .pain2-tag svg { stroke: var(--green-dark); }
.pain2-you p { font-weight: 600; color: var(--text); font-size: 15px; line-height: 1.55; margin: 0; }
.pain2-fix p { color: var(--body); font-size: 15px; line-height: 1.55; margin: 0; }
.pain2-arrow { display: flex; align-items: center; justify-content: center; }
.pain2-arrow span { width: 28px; height: 28px; border-radius: 50%; background: var(--green); display: inline-flex; align-items: center; justify-content: center; }
.pain2-arrow svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 759px) { .pain2-arrow svg { transform: rotate(90deg); } }

/* Case studies billboard (v22) */
.csb { position: relative; padding: 0 0 72px; background: #fff; }
.csb-progress { height: 4px; background: #EDEFE9; }
.csb-progress span { display: block; height: 100%; background: var(--green); transition: width .35s ease; }
.csb .section-head { padding-top: 56px; }
.csb-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 880px) { .csb-grid { grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 48px; } }
.csb-logo { display: inline-flex; align-items: center; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 10px 20px; }
.csb-logo img { height: 30px; width: auto; display: block; }
.csb h3 { font-size: clamp(22px, 2.6vw, 30px); margin: 18px 0 0; line-height: 1.25; }
.csb-desc { font-size: 16px; color: var(--body); line-height: 1.65; margin: 12px 0 18px; max-width: 520px; }
.csb-pills { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.csb-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--green-soft); border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 600; color: #27500A; }
.csb-pill svg { width: 15px; height: 15px; stroke: #27500A; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.csb-big { text-align: center; }
.csb-num { font-family: 'Poppins', sans-serif; font-size: clamp(80px, 10vw, 128px); font-weight: 800; color: var(--green-dark); line-height: 1; letter-spacing: -3px; }
.csb-num small { font-size: .5em; font-weight: 800; }
.csb-marker { display: inline-block; height: 12px; width: 170px; background: #C9E8A4; border-radius: 99px; margin-top: -10px; }
.csb-big-label { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-top: 12px; }
.csb-big-label svg { width: 16px; height: 16px; stroke: var(--green-dark); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; vertical-align: -2px; }
.csb-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; gap: 12px; }
.csb-teaser { font-size: 13.5px; color: var(--muted); }
.csb-nav { display: flex; gap: 10px; flex-shrink: 0; }
.csb-arrow { width: 46px; height: 46px; border-radius: 50%; border: 1px solid #D9DEE3; background: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.csb-arrow svg { width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.csb-arrow:hover { border-color: var(--green); }
.csb-arrow:hover svg { stroke: var(--green-dark); }
.csb-arrow-primary { background: var(--green); border-color: var(--green); }
.csb-arrow-primary svg { stroke: #fff; }
.csb-arrow-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.csb-arrow-primary:hover svg { stroke: #fff; }
