:root {
      --ink: #15201f;
      --muted: #60706d;
      --line: #d8ded7;
      --paper: #f7f5ef;
      --white: #ffffff;
      --green: #195848;
      --green-dark: #0f352c;
      --gold: #c6a15b;
      --blue: #28536b;
      --shadow: 0 24px 60px rgba(19, 32, 31, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--paper);
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      position: fixed;
      z-index: 20;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(247, 245, 239, 0.93);
      border-bottom: 1px solid rgba(216, 222, 215, 0.9);
      backdrop-filter: blur(14px);
    }

    .nav {
      width: min(1180px, calc(100% - 32px));
      min-height: 74px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 700;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--green);
      border-radius: 6px;
      font-size: 18px;
      line-height: 1;
      flex: 0 0 auto;
    }

    .brand-text {
      display: grid;
      gap: 1px;
    }

    .brand-text strong {
      font-size: 18px;
      white-space: nowrap;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
      color: #31423f;
      font-size: 14px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-weight: 700;
      line-height: 1;
      transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      background: var(--green);
      color: var(--white);
    }

    .button-secondary {
      border-color: rgba(255, 255, 255, 0.55);
      color: var(--white);
    }

.button-light {
  border-color: var(--line);
  color: var(--green);
  background: var(--white);
}

.button-full {
  width: 100%;
}

    .hero {
      min-height: 92vh;
      padding-top: 74px;
      position: relative;
      display: grid;
      align-items: end;
      overflow: hidden;
      background: var(--green-dark);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(15, 35, 31, 0.92) 0%, rgba(15, 35, 31, 0.78) 40%, rgba(15, 35, 31, 0.24) 72%, rgba(15, 35, 31, 0.1) 100%),
        url("hero.png") center / cover no-repeat;
      transform: scale(1.01);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 110px 0 56px;
      color: var(--white);
    }

    .eyebrow {
      margin: 0 0 18px;
      color: #d8c18d;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    h1 {
      max-width: 760px;
      margin: 0;
      font-size: clamp(44px, 7vw, 82px);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 630px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.55;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-strip {
      width: min(1180px, calc(100% - 32px));
      margin: 44px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
    }

    .hero-stat {
      padding: 22px;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-stat:last-child {
      border-right: 0;
    }

    .hero-stat strong {
      display: block;
      margin-bottom: 7px;
      font-size: 18px;
    }

    .hero-stat span {
      color: rgba(255, 255, 255, 0.72);
      font-size: 14px;
      line-height: 1.45;
    }

    main {
      background: var(--paper);
    }

    section {
      padding: 84px 0;
    }

    .section-inner {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
      gap: 48px;
      align-items: end;
      margin-bottom: 34px;
    }

    h2 {
      margin: 0;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .section-heading p,
    .text-block p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(19, 32, 31, 0.06);
  display: grid;
  align-content: start;
  gap: 18px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 88, 72, 0.45);
}

    .service-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 6px;
      color: var(--green);
      background: #edf3ed;
      font-size: 22px;
    }

    .service-card h3 {
      margin: 0;
      font-size: 22px;
      letter-spacing: 0;
    }

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  align-self: end;
  color: var(--green);
  font-weight: 700;
}

.lead-band {
  background: #f0eee6;
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: start;
}

.lead-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.lead-point {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.lead-point span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.lead-point strong {
  display: block;
  margin-bottom: 3px;
}

.lead-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.lead-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 36px);
}

.lead-form p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: #334541;
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.consent a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 700;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-item {
  min-height: 190px;
  padding: 26px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 18px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.reg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.reg-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(25, 88, 72, 0.24);
  border-radius: 5px;
  background: #f3f6f1;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.fiba-logo {
  display: inline-block;
  width: 96px;
  height: auto;
  vertical-align: middle;
}

.footer-reg .fiba-logo {
  width: 78px;
  filter: brightness(1.08);
}

.regulatory-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.regulatory-strip span {
  max-width: 760px;
}

.regulatory-strip .fiba-logo {
  width: 112px;
  flex: 0 0 auto;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.case-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 14px 0 10px;
  color: var(--white);
}

.case-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.page-hero {
  padding: 154px 0 72px;
  background:
    linear-gradient(90deg, rgba(15, 35, 31, 0.94) 0%, rgba(15, 35, 31, 0.8) 54%, rgba(15, 35, 31, 0.38) 100%),
    url("hero.png") center / cover no-repeat;
  color: var(--white);
}

.page-hero h1 {
  max-width: 850px;
}

.page-hero .hero-copy {
  max-width: 700px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.article-copy {
  display: grid;
  gap: 30px;
}

.article-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.article-copy h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.article-copy p,
.article-copy li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.article-copy p {
  margin: 0;
}

.article-copy ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.sidebar-panel {
  position: sticky;
  top: 98px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(19, 32, 31, 0.06);
}

.sidebar-panel h2 {
  font-size: 26px;
}

.sidebar-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.sidebar-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.sidebar-links a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin-bottom: 8px;
}

    .band {
      background: var(--green-dark);
      color: var(--white);
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
      gap: 70px;
      align-items: start;
    }

    .about-layout h2 {
      color: var(--white);
    }

    .about-layout p {
      color: rgba(255, 255, 255, 0.78);
    }

    .principles {
      display: grid;
      gap: 14px;
    }

    .principle {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .principle strong {
      color: var(--gold);
      font-size: 15px;
    }

    .principle p {
      margin: 4px 0 0;
      line-height: 1.6;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
    }

    .process-step {
      padding: 28px;
      background: var(--white);
      min-height: 220px;
    }

    .process-step span {
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .process-step h3 {
      margin: 18px 0 12px;
      font-size: 21px;
    }

    .process-step p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .contact {
      background: var(--white);
    }

    .contact-panel {
      display: grid;
      grid-template-columns: minmax(300px, 1fr) 380px;
      gap: 48px;
      align-items: center;
      padding: 46px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: linear-gradient(135deg, #ffffff 0%, #f6f8f5 100%);
    }

    .contact-details {
      display: grid;
      gap: 14px;
    }

    .contact-line {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    .contact-line strong {
      display: block;
      color: var(--ink);
    }

.site-footer {
  padding: 32px 0;
  background: #101716;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.footer-inner strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-disclaimer {
  max-width: 920px;
  margin: 0;
  line-height: 1.55;
}

.footer-reg {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.legal-page {
  padding-top: 154px;
  background: var(--white);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h1 {
  color: var(--ink);
}

.legal-copy h2 {
  margin: 42px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-copy a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

    @media (max-width: 860px) {
      .nav {
        min-height: 66px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        min-height: auto;
        padding-top: 66px;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(15, 35, 31, 0.84) 0%, rgba(15, 35, 31, 0.77) 62%, rgba(15, 35, 31, 0.93) 100%),
          url("hero.png") center / cover no-repeat;
      }

      .hero-inner {
        padding: 92px 0 34px;
      }

      .hero-strip,
      .section-heading,
      .services-grid,
      .about-layout,
      .process,
      .contact-panel,
      .content-grid,
      .lead-layout,
      .trust-grid,
      .case-grid {
        grid-template-columns: 1fr;
      }

      .page-hero {
        padding: 128px 0 56px;
      }

      .sidebar-panel {
        position: static;
      }

      .hero-strip {
        margin-top: 34px;
      }

      .hero-stat,
      .hero-stat:last-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      }

      .hero-stat:last-child {
        border-bottom: 0;
      }

      section {
        padding: 62px 0;
      }

      .contact-panel {
        padding: 28px;
      }
    }

    @media (max-width: 520px) {
      .brand-text span {
        display: none;
      }

      .button {
        width: 100%;
      }

      .hero-actions {
        width: 100%;
      }

      .service-card,
      .process-step,
      .lead-form,
      .trust-item,
      .case-card,
      .regulatory-strip {
        padding: 22px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .contact-panel {
        padding: 22px;
      }
    }
