@font-face { font-family: 'TT Firs Neue'; font-weight: 300; font-style: normal;
    font-display: swap; font-display: swap; src: url(../fonts/tt-firs-neue-300.woff2) format('woff2'); }
@font-face { font-family: 'TT Firs Neue'; font-weight: 400; font-style: normal;
    font-display: swap; font-display: swap; src: url(../fonts/tt-firs-neue-400.woff2) format('woff2'); }
@font-face { font-family: 'TT Firs Neue'; font-weight: 500; font-style: normal;
    font-display: swap; font-display: swap; src: url(../fonts/tt-firs-neue-500.woff2) format('woff2'); }
@font-face { font-family: 'TT Firs Neue'; font-weight: 600; font-style: normal;
    font-display: swap; font-display: swap; src: url(../fonts/tt-firs-neue-600.woff2) format('woff2'); }
@font-face { font-family: 'TT Firs Neue'; font-weight: 700; font-style: normal;
    font-display: swap; font-display: swap; src: url(../fonts/tt-firs-neue-700.woff2) format('woff2'); }

  :root {
    --black: #111111;
    --ink: #1a1a1a;
    --grey: #4d4d4d;
    --grey-light: #8a8a8a;
    --line: #e2e2e2;
    --bg-soft: #f5f5f5;
    --green: #23cf9d;
    --green-dark: #28a68c;
    --amber: #e8a13c;
    --red: #d6395f;
    --radius: 14px;
    --maxw: 1140px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'TT Firs Neue', 'Inter', -apple-system, sans-serif;
    color: var(--ink);
    background: #ffffff;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  img, svg { display: block; max-width: 100%; }

  /* niemieckie zlozenia nie lamia sie same — bez tego H1 rozpycha strone ponizej 366px.
     Dotyczy wylacznie DE; EN/FR/IT nie maja slow dluzszych niz kolumna. */
  html[lang="de"] h1,
  html[lang="de"] h2,
  html[lang="de"] h3,
  html[lang="de"] h4 { hyphens: auto; overflow-wrap: break-word; }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  .kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 14px;
  }
  h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.12;
    margin-bottom: 14px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--grey);
    max-width: 640px;
    margin-bottom: 42px;
  }
  section { padding: 84px 0; }

  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--green); color: var(--black);
    padding: 12px 20px; border-radius: 0 0 10px 0; font-weight: 600;
  }
  .skip-link:focus { left: 0; }

  /* ---------- buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-green { background: var(--green); color: var(--black); }
  .btn-green:hover { background: #2fe0ae; }
  .btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
  .btn-outline { border-color: #111111; color: #111111; background: transparent; }
  .btn-outline:hover { background: #111111; color: #ffffff; }
  .btn-ghost:hover { border-color: #fff; }

  /* ---------- nav ---------- */
  nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17,17,17,.92);
    backdrop-filter: blur(10px);
    color: #fff;
  }
  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .logo svg { height: 30px; width: auto; }
  .logo svg path, .logo svg rect, .logo svg polygon { fill: #ffffff; }
  .nav-links { display: flex; flex: 1; align-items: center; justify-content: center; gap: 26px; font-size: 14px; font-weight: 500; }
  .nav-links a { display: inline-flex; align-items: center; justify-content: center; text-align: center; color: #cfcfcf; transition: color .15s; }
  .nav-links a:hover { color: var(--green); }
  nav .btn { padding: 10px 20px; font-size: 14px; }
  @media (max-width: 820px) { .nav-links { display: none; } }

  /* ---------- brand column: logo + language switcher stacked ---------- */
  .nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* ---------- language switcher ---------- */
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 2px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
  }
  .lang-switch a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1;
    color: #cfcfcf;
    padding: 4px 9px;
    border-radius: 999px;
    transition: color .15s ease, background .15s ease;
  }
  .lang-switch a:hover { color: #fff; }
  .lang-switch a[aria-current="true"] { background: var(--green); color: var(--black); }
  /* The logo SVG has ~15px of blank space before the "DONE" wordmark; nudge the
     switcher right by that much so its left edge lines up under the lettering. */
  .nav-brand .lang-switch { margin-left: 15px; }

  /* ---------- hero ---------- */
  .hero {
    background: var(--black);
    color: #fff;
    padding: 96px 0 0;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }
  .hero .kicker { color: var(--green); display: flex; align-items: center; gap: 10px; }
  .hero .kicker::before { content: "●"; font-size: 9px; }
  .hero h1 {
    font-size: clamp(38px, 5.4vw, 60px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .hero h1 em { font-style: normal;
    font-display: swap; color: var(--green); }
  .hero-sub {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.6;
    color: #c9c9c9;
    max-width: 520px;
  }
  .hero-sub strong { color: #fff; font-weight: 600; }
  .hero-ctas { display: inline-flex; flex-direction: column; gap: 14px; margin-top: 34px; }
  .hero-ctas .cta-row { display: flex; gap: 14px; }
  .hero-ctas .btn-wide { align-self: stretch; justify-content: center; text-align: center; }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .hero-stat { flex: 1 1 160px; padding: 22px 26px 34px 0; }
  .hero-stat + .hero-stat { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.14); }
  .hero-stat b { display: block; font-size: 30px; font-weight: 700; color: var(--green); letter-spacing: -0.01em; }
  .hero-stat span { font-size: 13px; color: #9a9a9a; }

  /* ---------- hero visual ---------- */
  .hero-visual { padding: 10px 0; }
  .hero-video { width: 100%; height: auto; display: block; border-radius: 14px; }
  .hero-visual svg text { font-family: 'TT Firs Neue', 'Inter', sans-serif; }
  .hero-visual figcaption {
    margin-top: 14px;
    font-size: 12.5px;
    color: #8a8a8a;
    text-align: center;
  }

  /* ---------- market strip ---------- */
  .market {
    background: var(--bg-soft);
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
  }
  .market-inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
  .market p { font-size: 14px; color: var(--grey); max-width: 380px; }
  .market p strong { color: var(--ink); font-weight: 600; }
  .market-stats { display: flex; gap: 40px; flex-wrap: wrap; }
  .mstat b { display: block; font-size: 28px; font-weight: 700; letter-spacing: -0.01em; }
  .mstat span { font-size: 12.5px; color: var(--grey-light); }
  .mstat.up b { color: var(--red); }
  .mstat.down b { color: var(--green-dark); }

  /* ---------- steps ---------- */
  .steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  @media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }
  .step-card {
    background: var(--bg-soft);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 30px 28px;
    position: relative;
  }
  .step-card.yours { background: #ffffff; border-color: var(--line); }
  .step-card .num { display: block; font-size: 32px; font-weight: 700; letter-spacing: -0.02em;
    color: var(--green-dark); line-height: 1; margin-bottom: 16px; }
  .step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
  .step-card p { font-size: 14.5px; color: var(--grey); line-height: 1.55; max-width: 400px; }

  /* ---------- calculator ---------- */
  .calc { background: var(--black); color: #fff; }
  .calc .kicker { color: var(--green); }
  .calc-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
  @media (max-width: 920px) { .calc-grid { grid-template-columns: 1fr; } }
  .calc .section-sub { color: #b5b5b5; }

  .slider-block { margin-bottom: 34px; }
  .slider-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
  .slider-head label { font-size: 15px; font-weight: 600; }
  .slider-value { font-size: 13.5px; font-weight: 500; color: var(--green); }
  .slider-scale { display: flex; justify-content: space-between; font-size: 11.5px; color: #8a8a8a; margin-top: 8px; }

  input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    /* 36px = obszar dotyku; scieżka rysowana w ::-webkit-slider-runnable-track.
       Przy height:6px palec nie ma w co trafic. */
    height: 36px;
    background: transparent;
    outline: none;
    margin-top: 0;
    cursor: pointer;
  }
  input[type="range"]::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: #3a3a3a;
  }
  input[type="range"]::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #3a3a3a;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -9px;   /* (6px sciezki - 24px kciuka) / 2 */
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--green);
    border: 4px solid var(--black);
    box-shadow: 0 0 0 2px var(--green);
    cursor: pointer;
    transition: transform .12s;
  }
  input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.12); }
  input[type="range"]::-moz-range-thumb {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--green);
    border: 4px solid var(--black);
    box-shadow: 0 0 0 2px var(--green);
    cursor: pointer;
  }

  .result-card {
    background: #1b1b1b;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 30px;
    position: sticky;
    top: 92px;
  }
  .result-label { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #9a9a9a; }
  .result-value { font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -0.01em; margin: 10px 0 4px; transition: color .2s; }
  .result-value.low { color: var(--red); }
  .result-value.medium { color: var(--amber); }
  .result-value.high { color: var(--green); }

  .meter { height: 8px; border-radius: 4px; background: #3a3a3a; margin: 18px 0 22px; overflow: hidden; }
  .meter-fill { height: 100%; width: 0%; border-radius: 4px; background: var(--green); transition: width .3s ease, background .3s ease; }

  .result-why { font-size: 14px; color: #c9c9c9; }
  .result-why ul { list-style: none; margin-top: 10px; }
  .result-why li { padding-left: 20px; position: relative; margin-bottom: 8px; line-height: 1.45; }
  .result-why li::before { content: "→"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
  .result-why li.minus::before { content: "→"; color: var(--amber); }

  .result-disclaimer {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 12px;
    color: #8a8a8a;
    line-height: 1.5;
  }
  .result-card .btn { margin-top: 18px; width: 100%; justify-content: center; }

  /* ---------- compare table ---------- */
  /* ---------- compare table ---------- */
  .compare-wrap { position: relative; }
  /* kolumna DONE jako osobne pudelko nalozone na tabele */
  .compare-wrap::after {
    content: "";
    position: absolute;
    box-sizing: border-box;   /* reset * nie obejmuje pseudo-elementow */
    top: -8px; bottom: -8px;
    left: calc(18% - 8px);          /* kolumna DONE zaczyna sie za 18% kolumna "Area" */
    width: calc(41% + 16px);
    border: 3px solid var(--green);
    border-radius: 20px;
    pointer-events: none;
  }
  .compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
  .compare-table th, .compare-table td { padding: 16px 20px; text-align: left; font-size: 14.5px; vertical-align: top; }
  .compare-table thead th { background: var(--black); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
  .compare-table thead th.dst { color: var(--green); }
  .compare-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
  .compare-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
  .compare-table tbody tr:last-child td:first-child { border-radius: 0 0 0 var(--radius); }
  .compare-table tbody tr:last-child td:last-child { border-radius: 0 0 var(--radius) 0; }
  .compare-table tbody tr:nth-child(odd) td { background: var(--bg-soft); }
  .compare-table tbody td:nth-child(2) { background: rgba(35, 207, 157, .06); }
  .compare-table tbody tr:nth-child(odd) td:nth-child(2) { background: rgba(35, 207, 157, .11); }
  .compare-table tbody td:first-child { font-weight: 600; width: 18%; }
  .compare-table tbody td:nth-child(2) { width: 41%; }
  .compare-table tbody td:nth-child(3) { color: var(--grey); width: 41%; }
  .compare-table td .yes { color: var(--green-dark); font-weight: 600; }
  @media (max-width: 700px) {
    .compare-wrap::after { display: none; }
    .compare-table thead { display: none; }
    .compare-table, .compare-table tbody, .compare-table tr, .compare-table td { display: block; width: 100% !important; }
    .compare-table td { padding: 10px 16px; }
    .compare-table td:first-child { padding-top: 18px; }
    .compare-table td:nth-child(2)::before,
    .compare-table td:nth-child(3)::before { content: attr(data-label) ": "; font-weight: 600; }
    .compare-table td:nth-child(2)::before { color: var(--green-dark); }
    .compare-table td:nth-child(3)::before { color: var(--ink); }
    .compare-table tbody td:nth-child(2) { border-left: 3px solid var(--green); border-radius: 0; }
    .compare-table tbody tr:last-child td:last-child { border-radius: 0 0 var(--radius) var(--radius); }
  }

  /* ---------- tiers ---------- */
  .tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  @media (max-width: 980px) { .tiers-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .tiers-grid { grid-template-columns: 1fr; } }
  .tier {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    background: #fff;
  }
  .tier.featured { border-color: var(--green-dark); box-shadow: 0 8px 30px rgba(40,166,140,.12); position: relative; }
  .tier-specs { list-style: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
  .tier-specs li { display: flex; gap: 9px; font-size: 13px; line-height: 1.45; color: var(--ink); }
  .tier-specs li::before {
    content: ""; flex: 0 0 15px; height: 15px; margin-top: 1px; border-radius: 50%;
    background: var(--green-dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.3l2.4 2.4 4.6-5' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/9px no-repeat;
  }
  .tier-specs .load { display: block; font-weight: 600; color: var(--green-dark); }
  .tier.featured::after {
    content: "Shared Truck";
    position: absolute; top: -11px; left: 20px;
    background: var(--green); color: var(--black);
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 999px;
  }
  .tier .fam { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 8px; }
  .tier h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
  .tier .tag { font-size: 13.5px; font-weight: 500; color: var(--green-dark); margin-bottom: 14px; }
  .tier p { font-size: 13.5px; color: var(--grey); line-height: 1.5; }


  /* ---------- sensitive cargo ---------- */
  .cargo { background: var(--bg-soft); }
  .cargo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 920px) { .cargo-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .cargo-grid { grid-template-columns: 1fr; } }
  .cargo-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; }
  .cargo-card svg { width: 34px; height: 34px; margin-bottom: 14px; stroke: var(--green-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .cargo-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
  .cargo-card p { font-size: 13.5px; color: var(--grey); line-height: 1.5; }
  .cargo-note { margin-top: 30px; font-size: 17px; font-weight: 600; }
  .cargo-note span { color: var(--green-dark); }

  /* ---------- technology ---------- */
  .tech { background: var(--black); color: #fff; }
  .tech .kicker { color: var(--green); }
  .tech .section-sub { color: #b5b5b5; }
  .tech-head { max-width: 720px; margin-bottom: 40px; }
  .tech-grid { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(0, 619px); gap: 44px; align-items: center; }
  @media (max-width: 980px) { .tech-grid { grid-template-columns: 1fr; gap: 32px; } }
  .demo-video { width: 100%; max-width: 619px; height: auto; display: block; border-radius: var(--radius); }
  .tech-checks { list-style: none; }
  .tech-checks li { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .tech-checks li:last-child { border-bottom: none; }
  .tech-checks .n { font-weight: 700; font-size: 13px; color: var(--green); flex: 0 0 24px; }
  .tech-checks h3 { font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
  .tech-checks p { font-size: 12.5px; color: #9a9a9a; line-height: 1.5; }
  .match-card { background: #1b1b1b; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 26px; }
  .match-card .mc-title { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #9a9a9a; margin-bottom: 14px; }
  .match-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
  .match-row:last-of-type { border-bottom: none; }
  .match-row .lbl { font-weight: 500; }
  .match-row .val { color: #8a8a8a; font-size: 13px; margin-left: auto; text-align: right; }
  .match-row .ok { color: var(--green); font-weight: 700; }
  .match-verdict { margin-top: 18px; background: rgba(35,207,157,.12); border: 1px solid rgba(35,207,157,.4); color: var(--green); border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 600; text-align: center; }
  .tech-footnote { margin-top: 16px; font-size: 13px; color: #8a8a8a; text-align: center; }


  /* ---------- combined options + sensitive cargo ---------- */
  .combo { background: var(--bg-soft); }
  .combo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
  @media (max-width: 920px) { .combo-grid { grid-template-columns: 1fr; } }
  .col-title { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 16px; }
  .combo .tier { padding: 20px 22px; margin-bottom: 14px; }
  .combo .tier:last-child { margin-bottom: 0; }
  .combo .tier p { font-size: 13px; }
  .cargo-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px 18px; }
  .combo .tier.featured .fam { display: none; }
  .cargo-cta { margin-top: 22px; text-align: center; }
  .cargo-cta .btn { width: 100%; justify-content: center; }
  .cargo-cta p { margin-top: 10px; font-size: 12.5px; color: var(--grey-light); }
  .cargo-item { display: flex; gap: 14px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .cargo-item:last-of-type { border-bottom: none; }
  .cargo-item svg { width: 26px; height: 26px; flex: 0 0 26px; margin-top: 2px; stroke: var(--green-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .cargo-item h4 { font-size: 14.5px; font-weight: 600; }
  .cargo-item p { font-size: 12.5px; color: var(--grey); line-height: 1.45; }
  .cargo-panel .cargo-note { margin-top: 14px; font-size: 13.5px; font-weight: 600; }
  .cargo-panel .cargo-note span { color: var(--green-dark); }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 780px; }
  details { border-bottom: 1px solid var(--line); }
  details summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 40px 22px 0;
    font-size: 17px;
    font-weight: 600;
    position: relative;
  }
  details summary::-webkit-details-marker { display: none; }
  details summary::after {
    content: "+";
    position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    font-size: 24px; font-weight: 400; color: var(--green-dark);
    transition: transform .2s;
  }
  details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
  details .faq-body { padding: 0 0 22px; font-size: 15px; color: var(--grey); max-width: 680px; }

  /* ---------- meeting form ---------- */
  .meeting { background: var(--bg-soft); }
  .meeting-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
  @media (max-width: 920px) { .meeting-grid { grid-template-columns: 1fr; gap: 36px; } }
  .meeting-pitch .section-sub { margin-bottom: 26px; }
  .meeting-points { list-style: none; display: grid; gap: 12px; }
  .meeting-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
  .meeting-points li::before { content: ""; flex: 0 0 18px; height: 18px; margin-top: 2px; border-radius: 50%;
    background: var(--green-dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.3l2.4 2.4 4.6-5' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat; }

  .meeting-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
  @media (max-width: 560px) { .meeting-card { padding: 22px 18px; } }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
  .field.full { grid-column: 1 / -1; }
  .field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--grey-light); margin-bottom: 7px; }
  .field label .req { color: var(--green-dark); }
  .field input, .field select { width: 100%; padding: 12px 14px; font: inherit; font-size: 14.5px;
    color: var(--ink); background: var(--bg-soft); border: 1px solid transparent; border-radius: 10px;
    transition: background .15s, border-color .15s, box-shadow .15s; }
  .field input::placeholder { color: var(--grey-light); }
  .field select { appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7376' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 11px; padding-right: 38px; }
  .field select:invalid { color: var(--grey-light); }
  .field input:hover, .field select:hover { border-color: var(--line); }
  .field input:focus, .field select:focus { outline: none; background: #fff;
    border-color: var(--green); box-shadow: 0 0 0 3px rgba(35,207,157,.16); }
  .field input:user-invalid, .field select:user-invalid { border-color: var(--red); background: #fff; }

  .field textarea { width: 100%; padding: 12px 14px; font: inherit; font-size: 14.5px; color: var(--ink);
    background: var(--bg-soft); border: 1px solid transparent; border-radius: 10px;
    resize: vertical; min-height: 84px; line-height: 1.5;
    transition: background .15s, border-color .15s, box-shadow .15s; }
  .field textarea::placeholder { color: var(--grey-light); }
  .field textarea:hover { border-color: var(--line); }
  .field textarea:focus { outline: none; background: #fff; border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(35,207,157,.16); }
  .field .opt { color: var(--grey-light); font-weight: 400; letter-spacing: 0; text-transform: none; }
  .consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start;
    margin-top: 4px; padding-top: 18px; border-top: 1px solid var(--line); }
  .consent input { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 2px; accent-color: var(--green-dark); cursor: pointer; }
  .consent label { font-size: 12.5px; font-weight: 400; letter-spacing: 0; text-transform: none;
    color: var(--grey); line-height: 1.5; margin: 0; cursor: pointer; }
  .consent a { color: var(--green-dark); font-weight: 500; text-decoration: underline; }
  .form-submit { grid-column: 1 / -1; }
  .form-submit .btn { width: 100%; justify-content: center; border: 0; cursor: pointer;
    font: inherit; font-size: 15px; font-weight: 600; }
  .form-submit .btn:disabled { opacity: .55; cursor: default; }
  .form-note { grid-column: 1 / -1; font-size: 12.5px; color: var(--grey-light); text-align: center; }
  .form-note a { color: var(--green-dark); font-weight: 600; }
  .form-done { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 54px 30px; text-align: center; }
  .form-done .tick { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%;
    background: var(--green-dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.3l2.4 2.4 4.6-5' fill='none' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/24px no-repeat; }
  .form-done h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
  .form-done p { font-size: 14.5px; color: var(--grey); }

  /* ---------- final CTA ---------- */
  .final { background: var(--black); color: #fff; text-align: center; }
  .final h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 700; }
  .final h2 em { font-style: normal;
    font-display: swap; color: var(--green); }
  .final p { color: #b5b5b5; max-width: 560px; margin: 0 auto 34px; }
  .final .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .final .contact-line { margin-top: 30px; font-size: 14px; color: #8a8a8a; }
  .final .contact-line a { color: var(--green); font-weight: 500; }

  footer {
    background: var(--black);
    color: #8a8a8a;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 28px 0;
    font-size: 13px;
  }
  .footer-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
