/* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ── BRAND TOKENS (Geely) ── */
    :root {
      --white:   #ffffff;
      --black:   #0e0e0e;
      --gray-bg: #f5f5f5;
      --gray-line: #e0e0e0;
      --gray-text: #555555;
      --accent:  #0057a8;   /* Geely blue */

      /* Typografia wg instrukcji */
      --fs-h1:   60px;
      --fs-h2:   30px;
      --fs-h3:   22px;
      --fs-body: 18px;
      --fs-body2: 16px;
      --fs-cta:  20px;
      --fs-cta-tile: 14px;

      /* Spacing */
      --section-gap: 90px;
      --section-w: 1595px;
      --tile-radius: 15px;
      --cta-radius: 11px;
      --cta-radius-sm: 7px;
    }

    body {
      font-family: 'Inter', sans-serif;
      font-size: var(--fs-body);
      color: var(--black);
      background: var(--white);
      line-height: 1.55;
    }

    /* ── GEELY BOLD = Inter 800 ── */
    .gb { font-weight: 800; }
    .ir { font-weight: 400; }
    .ib { font-weight: 700; }

    /* ── HELPERS ── */
    .section-wrap {
      width: 100%;
      max-width: var(--section-w);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--gray-line);
      padding: 0 32px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .site-header__logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .site-header__logo svg { width: 48px; height: auto; }

    .site-header__nav {
      display: flex;
      gap: 36px;
      font-size: 14px;
      font-weight: 500;
    }

    .site-header__nav a {
      text-decoration: none;
      color: var(--black);
      transition: opacity .18s;
    }

    .site-header__nav a:hover { opacity: .55; }

    /* ── TOP BAR ── */
    .site-topbar {
      background: var(--gray-bg);
      border-bottom: 1px solid var(--gray-line);
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 12px;
      color: var(--gray-text);
      padding: 0 32px;
    }

    .site-topbar__dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--gray-line);
      flex-shrink: 0;
    }

    .site-header__actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .site-header__cta--outline {
      background: var(--white);
      color: var(--black);
      border-color: var(--black);
    }

    .site-header__cta--outline:hover {
      background: var(--black);
      color: var(--white);
    }

    .site-header__cta {
      background: var(--black);
      color: var(--white);
      padding: 8px 20px;
      font-size: 13px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      text-decoration: none;
      transition: background .18s;
    }

    .site-header__cta:hover { background: var(--accent); }

    .hero-section {
      padding: var(--section-gap) 0 0;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 945fr 608fr;
      gap: 60px;
      align-items: flex-start;
    }

    .hero-img {
      width: 100%;
      aspect-ratio: 945 / 500;
      object-fit: cover;
      border-radius: var(--tile-radius);
      display: block;
    }

    .hero-text {
      padding-top: 8px;
    }

    .hero-text__eyebrow {
      font-size: var(--fs-body);
      font-weight: 400;
      color: var(--gray-text);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .hero-text__headline {
      font-size: var(--fs-h1);
      font-weight: 800;
      line-height: 1.0;
      text-transform: uppercase;
      letter-spacing: -.01em;
      margin-bottom: 16px;
    }

    .hero-text__sub {
      font-size: var(--fs-h3);
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero-text__body {
      font-size: var(--fs-body);
      font-weight: 400;
      color: var(--gray-text);
      margin-bottom: 32px;
    }

    .btn-cta {
      display: inline-block;
      background: var(--white);
      color: var(--black);
      border: 1.5px solid var(--black);
      padding: 12px 28px;
      font-size: var(--fs-cta);
      font-weight: 400;
      font-family: 'Inter', sans-serif;
      border-radius: var(--cta-radius);
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, color .2s;
    }

    .btn-cta:hover {
      background: var(--black);
      color: var(--white);
    }

    .btn-cta--dark {
      background: var(--black);
      color: var(--white);
      border-color: var(--black);
    }

    .btn-cta--dark:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .btn-cta--sm {
      border-radius: var(--cta-radius-sm);
    }

    .section-spacer {
      height: var(--section-gap);
    }

    .section-divider {
      border: none;
      border-top: 1px solid var(--gray-line);
      margin: 0 auto;
      max-width: var(--section-w);
      padding: 0 24px;
    }

    .tiles-2col {
      display: grid;
      grid-template-columns: 782fr 782fr;
      gap: 31px;
    }

    .tile-card {
      border-radius: var(--tile-radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .tile-card__img {
      width: 100%;
      aspect-ratio: 782 / 425;
      object-fit: cover;
      display: block;
    }

    .tile-card__body {
      padding: 20px 0 0;
    }

    .tile-card__title {
      font-size: var(--fs-h3);
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .tile-card__text {
      font-size: var(--fs-body2);
      font-weight: 400;
      color: var(--gray-text);
      line-height: 1.55;
    }

    .banner-full {
      width: 100%;
      height: 450px;
      object-fit: cover;
      display: block;
    }


    .body-text-block {
      font-size: var(--fs-body);
      font-weight: 400;
      color: var(--gray-text);
      line-height: 1.7;
    }


    .tiles-2col-content {
      display: grid;
      grid-template-columns: 782fr 782fr;
      gap: 31px;
    }

    .tile-content-card {
      border-radius: var(--tile-radius);
      border: 1px solid var(--gray-line);
      padding: 35px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .tile-content-card__title {
      font-size: var(--fs-h3);
      font-weight: 800;
      text-transform: uppercase;
    }

    .tile-content-card__text {
      font-size: var(--fs-body2);
      font-weight: 400;
      color: var(--gray-text);
      line-height: 1.6;
      flex: 1;
    }

    .link-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: var(--fs-cta-tile);
      font-weight: 700;
      color: var(--black);
      text-decoration: none;
      margin-top: 8px;
      transition: color .18s;
    }

    .link-cta:hover { color: var(--accent); }


    .cta-section {
      position: relative;
      width: 100%;
      min-height: 200px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .cta-section__bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 55%, transparent 100%),
        url('https://images.unsplash.com/photo-1617814076668-4de5ff4ce209?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
    }

    .cta-section__content {
      position: relative;
      z-index: 2;
      padding: 48px 0;
      width: 100%;
    }

    .cta-section__title {
      font-size: var(--fs-h2);
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 12px;
    }

    .cta-section__text {
      font-size: var(--fs-body);
      font-weight: 400;
      color: rgba(255,255,255,.8);
      margin-bottom: 28px;
      max-width: 520px;
    }


    .form-section {
      background: var(--gray-bg);
      padding: var(--section-gap) 0;
    }

    .form-section__title {
      font-size: var(--fs-h2);
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .form-section__sub {
      font-size: var(--fs-body);
      font-weight: 400;
      color: var(--gray-text);
      margin-bottom: 40px;
      max-width: 680px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 31px;
      max-width: 980px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .field--full { grid-column: 1 / -1; }

    .field label {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--black);
    }

    .field input[type="text"],
    .field input[type="email"],
    .field input[type="tel"] {
      padding: 13px 16px;
      font-family: 'Inter', sans-serif;
      font-size: var(--fs-body2);
      font-weight: 400;
      color: var(--black);
      background: var(--white);
      border: 1.5px solid var(--gray-line);
      border-radius: 4px;
      outline: none;
      transition: border-color .2s;
      -webkit-appearance: none;
    }

    .field input:focus { border-color: var(--black); }

    .consent-group {
      grid-column: 1 / -1;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 4px;
    }

    .consent-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .consent-item input[type="checkbox"] {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: var(--black);
      cursor: pointer;
    }

    .consent-item label {
      font-size: 13px;
      font-weight: 400;
      color: var(--gray-text);
      line-height: 1.55;
      cursor: pointer;
      text-transform: none;
      letter-spacing: 0;
    }

    .consent-item label a { color: var(--black); }
    .req::after { content: ' *'; color: #c00; }

    .form-submit-row {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    .form-note {
      font-size: 13px;
      color: var(--gray-text);
    }

    /* ── Messages ── */
    .form-msg {
      display: none;
      margin-top: 20px;
      padding: 14px 18px;
      font-size: 15px;
      border-left: 4px solid;
      max-width: 980px;
    }

    .form-msg.success { background: #e8f5e9; border-color: #2e7d32; color: #1b5e20; }
    .form-msg.error   { background: #fdecea; border-color: #c00;    color: #900; }


    .site-footer {
      background: var(--black);
      color: rgba(255,255,255,.45);
      font-size: 12px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .site-footer a { color: rgba(255,255,255,.55); text-decoration: none; }
    .site-footer a:hover { color: var(--white); }

    .site-footer__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 800;
      color: var(--white);
      text-transform: uppercase;
    }

    @media (max-width: 960px) {
      :root { --section-gap: 56px; }

      .site-topbar {
        flex-direction: column;
        height: auto;
        padding: 8px 16px;
        gap: 2px;
        text-align: center;
      }

      .site-topbar__dot { display: none; }

      .site-header__actions { gap: 8px; }

      .site-header__cta {
        padding: 7px 12px;
        font-size: 12px;
      }

      .hero-inner,
      .tiles-2col,
      .tiles-2col-content {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .hero-text__headline { font-size: 38px; }

      .form-grid { grid-template-columns: 1fr; }
      .field--full { grid-column: 1; }
      .form-submit-row { grid-column: 1; }
      .consent-group { grid-column: 1; }

      .cta-section__content {
  padding: 40px 24px;
}
    }