:root {
    --bg-light: #ecf5e2;
    --bg-mid: #d7e3a5;
    --form-field-bg: rgba(215, 227, 165, 0.4);
    --text-dark: #2a1001;
    --accent-yellow: #d5c04d;
    --accent-green: #667733;
    --accent-red: #b85a45;
    --white: #ffffff;
    --page-gutter: 160px;
    --ui-scale: 1;
  }

  html {
    zoom: 1;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
  }

  /* Лише великий десктоп — як раніше на ~67% масштабу браузера */
  @media (min-width: 1101px) {
    :root {
      --ui-scale: 0.67;
    }
    html {
      zoom: var(--ui-scale);
    }
  }

  @supports not (zoom: 1) {
    @media (min-width: 1101px) {
      html {
        font-size: calc(16px * 0.67);
      }
    }
  }
  
  body {
    font-family: var(--font-body);
    font-weight: 400;
    margin: 0;
    padding: 150px 0 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
    -webkit-user-select: none;
  }

  .phone-number,
  .copyable-phone,
  .product-card,
  input,
  textarea,
  select {
    user-select: text;
    -webkit-user-select: text;
  }
  
  .container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
    box-sizing: border-box;
  }

  .page-frame {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
  }

  /* Figma node 1:2 — Header pill + Info 1 layout */
  
  @media (max-width: 1200px) {
    :root {
      --page-gutter: 60px;
    }
  }
  
  @media (max-width: 1100px) {
    :root {
      --page-gutter: 20px;
      --ui-scale: 1;
    }
  }

  @media (max-width: 768px) {
    :root {
      --page-gutter: 16px;
    }
  }
  
  h1,
  h2,
  h3,
  h4,
  p {
    margin: 0;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    transition: opacity 0.2s ease;
    gap: 10px;
    min-height: 80px;
    box-sizing: border-box;
  }

  .btn-icon {
    width: 80px;
    min-width: 80px;
    padding: 16px;
  }
  
  .btn:hover {
    opacity: 0.9;
  }
  
  .btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
  }
  
  .btn-dark {
    background-color: var(--text-dark);
    color: var(--bg-light);
  }
  
  .btn-green {
    background-color: var(--accent-green);
    color: var(--bg-light);
  }
  
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    padding: 28px 0 38px;
    /* Figma 25:198 — почти прозорий fill + progressive BACKGROUND_BLUR 4→12 */
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    box-sizing: border-box;
  }

  .site-header {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
  }

  /* Той самий gutter зліва і справа, що й у hero */
  #header .site-header.container {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    max-width: 1920px;
  }

  .header-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    /* Figma I25:198;11:223 — суцільний #D7E3A5 */
    background-color: var(--bg-mid);
    border: none;
    padding: 24px 48px;
    border-radius: 999px;
    box-sizing: border-box;
    box-shadow: 0 8px 28px rgba(42, 16, 1, 0.08);
  }
  .header-brand-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }
  .logo-wrap {
    width: 88px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .logo {
    background-color: var(--accent-green);
    color: var(--accent-yellow);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    text-decoration: none;
  }
  .main-nav {
    position: relative;
    display: flex;
    gap: 4px;
  }
  .nav-indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    min-height: 0;
    width: 0;
    border-radius: 999px;
    background-color: var(--bg-light);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform: translateX(0);
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      top 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease;
  }
  .nav-indicator.is-ready {
    opacity: 1;
  }
  .nav-link {
    position: relative;
    z-index: 1;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.17;
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  .nav-link:hover {
    background-color: transparent;
  }
  .nav-link:hover:not(.active) {
    background-color: rgba(236, 245, 226, 0.45);
  }
  .nav-link.active {
    background-color: transparent;
  }
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    .nav-indicator {
      transition: none;
    }
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    margin-left: auto;
  }
  .phone-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.17;
    color: var(--text-dark);
  }
  .phone-number {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .header-actions .btn {
    min-height: 60px;
    padding: 16px 36px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.17;
  }
  @media (max-width: 1400px) {
    .header-nav-wrapper {
      gap: 24px;
      padding: 14px 20px;
    }
    .header-brand-nav {
      gap: 4px;
    }
    .nav-link {
      padding: 10px 14px;
      font-size: 18px;
    }
    .header-actions .btn {
      min-height: 48px;
      padding: 12px 20px;
      font-size: 18px;
    }
    .phone-wrapper {
      padding: 12px 18px;
      font-size: 18px;
    }
    .logo {
      width: 48px;
      height: 48px;
      font-size: 28px;
    }
    .logo-wrap {
      width: 56px;
    }
  }
  
  #hero,
  #about,
  #catalog,
  #terms,
  #form,
  #contacts {
    scroll-margin-top: 140px;
  }

  .hero-section {
    background-color: var(--bg-light);
    padding-bottom: 100px;
    width: 100%;
    overflow: hidden;
  }
  .hero-info {
    display: flex;
    align-items: stretch;
    gap: 29px;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 826px;
    box-sizing: border-box;
  }
  .hero-info-left {
    flex: 0 0 61.09375%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    align-items: flex-start;
    background-color: var(--bg-mid);
    padding: 48px var(--page-gutter);
    box-sizing: border-box;
    position: relative;
    border-radius: 0;
  }
  /* Тільки зелений фон — до лівого краю екрана, текст не рухаємо */
  .hero-info-left::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100vw;
    background-color: var(--bg-mid);
    pointer-events: none;
  }
  .hero-info-right {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--bg-mid);
    padding: 57px var(--page-gutter);
    box-sizing: border-box;
    position: relative;
    border-radius: 0;
  }
  /* Тільки зелений фон — до правого краю екрана */
  .hero-info-right::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 100vw;
    background-color: var(--bg-mid);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-weight: 400;
    font-size: 24px;
    min-height: 81px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .hero-badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-green);
    flex-shrink: 0;
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 0.906;
    font-weight: 700;
  }
  .hero-desc {
    font-size: 36px;
    line-height: 1.17;
    font-weight: 300;
  }
  .hero-desc strong {
    font-weight: 600;
  }
  .hero-buttons {
    display: flex;
    gap: 12px;
  }
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100%;
    max-width: 493px;
  }
  .stat-card {
    background-color: var(--accent-yellow);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    min-height: 193px;
    box-sizing: border-box;
    width: 100%;
  }
  .stat-card:first-child {
    border-radius: 48px 48px 48px 0;
  }
  .stat-card:nth-child(2) {
    border-radius: 48px 48px 0 48px;
  }
  .stat-card:nth-child(3) {
    border-radius: 48px 0 48px 48px;
  }
  .stat-value {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
  }
  .stat-label {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
  }
  @media (max-width: 1400px) {
    .hero-title {
      font-size: 72px;
    }
    .hero-desc {
      font-size: 28px;
    }
    .hero-info-left {
      padding: 48px var(--page-gutter);
    }
    .hero-info-right {
      padding: 48px var(--page-gutter);
    }
    .hero-stats {
      width: 100%;
      max-width: 400px;
      gap: 40px;
    }
    .stat-card {
      padding: 30px;
    }
    .stat-value {
      font-size: 48px;
    }
  }
  @media (max-width: 1100px) {
    .hero-info {
      flex-direction: column;
      min-height: 0;
      gap: 20px;
    }
    .hero-info-left {
      flex: 1 1 auto;
      align-items: center;
      text-align: center;
      padding: 48px var(--page-gutter);
    }
    .hero-info-right {
      padding: 48px var(--page-gutter);
    }
    .hero-stats {
      flex: 1 1 auto;
      width: 100%;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .stat-card {
      width: calc(33.333% - 14px);
      padding: 20px;
    }
  }
  @media (max-width: 768px) {
    .hero-title {
      font-size: 48px;
    }
    .hero-desc {
      font-size: 20px;
    }
    .hero-badge {
      font-size: 18px;
    }
    .btn {
      font-size: 18px;
      min-height: 64px;
    }
    .btn-icon {
      width: 64px;
      min-width: 64px;
    }
    .stat-card {
      width: calc(50% - 10px);
    }
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }
    .hero-buttons .btn {
      width: 100%;
    }
  }
  @media (max-width: 480px) {
    .stat-card {
      width: 100%;
    }
  }
  
  .about-section {
    padding: 100px 0;
    background-color: var(--bg-light);
  }
  .about-container {
    display: flex;
    gap: 48px;
    align-items: stretch;
  }
  .about-image-wrapper {
    position: relative;
    flex: 0 0 627px;
    width: 627px;
    height: 984px;
    border-radius: 36px;
    overflow: hidden;
  }
  .about-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 36px;
  }
  .about-image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 354px;
    min-height: 138px;
    box-sizing: border-box;
    background-color: var(--accent-green);
    color: var(--bg-light);
    padding: 32px 24px;
    border-radius: 0 36px 0 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }
  .badge-date {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.173;
  }
  .badge-label {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.173;
    text-transform: uppercase;
  }
  .about-content {
    flex: 1;
    min-width: 0;
    min-height: 984px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .about-subtitle {
    margin: 0;
  }
  .about-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 0.906;
  }
  .about-desc-img {
    display: block;
    max-width: 925px;
    width: 100%;
    height: auto;
    -webkit-user-drag: none;
    user-drag: none;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 924px;
    margin-top: auto;
  }
  .feature-item {
    background-color: var(--bg-mid);
    padding: 16px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.173;
  }
  .feature-item img {
    flex-shrink: 0;
  }
  @media (max-width: 1400px) {
    .about-image-wrapper {
      flex: 0 0 450px;
      width: 450px;
      height: 706px;
    }
    .about-content {
      min-height: 706px;
    }
    .about-title {
      font-size: 48px;
    }
  }
  @media (max-width: 1100px) {
    .about-container {
      flex-direction: column;
      align-items: stretch;
    }
    .about-image-wrapper {
      width: 100%;
      max-width: 627px;
      height: auto;
      aspect-ratio: 627 / 984;
      flex: none;
    }
    .about-content {
      min-height: 0;
    }
    .features-grid {
      margin-top: 0;
      max-width: none;
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 768px) {
    .about-section {
      padding: 64px 0;
    }
    .about-title {
      font-size: 36px;
    }
    .about-desc-img {
      max-width: 100%;
    }
    .about-image-badge {
      width: min(354px, 100%);
    }
    .badge-date {
      font-size: 28px;
    }
    .badge-label {
      font-size: 20px;
    }
    .feature-item {
      font-size: 20px;
    }
    .features-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .catalog-section {
    background-color: var(--bg-mid);
    padding: 100px 0;
  }
  .catalog-header {
    text-align: center;
    max-width: 924px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .catalog-subtitle {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 20px;
  }
  .catalog-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
  }
  .catalog-desc {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.17;
  }
  .catalog-filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .catalog-update-badge {
    background-color: var(--accent-yellow);
    padding: 16px 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 400;
  }
  .catalog-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .filter-btn {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: none;
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 400;
    cursor: pointer;
    font-size: 24px;
    transition:
      background-color 0.2s,
      color 0.2s;
  }
  .filter-btn.active,
  .filter-btn:hover {
    background-color: var(--accent-green);
    color: var(--bg-light);
  }
  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }
  .product-card {
    background-color: var(--bg-light);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    height: 376px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    height: 78px;
    margin-bottom: 36px;
    flex-shrink: 0;
    overflow: hidden;
  }
  .card-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
  }
  .product-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-spec {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.17;
    color: var(--text-dark);
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-country {
    background-color: var(--bg-mid);
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 48%;
  }
  .card-flag {
    display: block;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .card-flag-stack {
    position: relative;
    width: 24px;
    height: 16px;
    flex-shrink: 0;
  }
  .card-flag-layer {
    position: absolute;
    display: block;
    pointer-events: none;
  }
  .card-flag-layer--base {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .card-flag-layer--china-star {
    top: 1px;
    left: 2px;
    width: 12px;
    height: 10px;
  }
  .card-flag-layer--tm-crescent {
    top: 1px;
    left: 12px;
    width: 6px;
    height: 5px;
  }
  .card-flag-layer--tm-stripe {
    top: 0;
    left: 4px;
    width: 4px;
    height: 16px;
  }
  .card-flag-layer--pl-bottom {
    top: 8px;
    left: 0;
    width: 24px;
    height: 8px;
  }
  .card-price {
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 16px;
    height: 48px;
    flex-shrink: 0;
  }
  .price-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    flex: 0 1 auto;
    min-width: 0;
  }
  .price-value--long {
    font-size: 36px;
    line-height: 1.05;
  }
  .price-unit {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .price-trend {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 6px;
    animation: price-trend-in 0.45s ease-out both;
  }
  .price-trend svg {
    display: block;
  }
  .price-trend--down {
    background: rgba(102, 119, 51, 0.16);
    color: var(--accent-green);
    box-shadow: inset 0 0 0 1px rgba(102, 119, 51, 0.22);
  }
  .price-trend--up {
    background: rgba(184, 90, 69, 0.12);
    color: var(--accent-red);
    box-shadow: inset 0 0 0 1px rgba(184, 90, 69, 0.2);
  }
  @keyframes price-trend-in {
    from {
      opacity: 0;
      transform: translateY(4px) scale(0.85);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .product-card--unavailable .price-trend {
    opacity: 0.45;
  }
  .card-spacer {
    flex: 1 1 auto;
    min-height: 36px;
  }
  .card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-bottom: 24px;
    flex-shrink: 0;
    min-height: 48px;
  }
  .meta-item {
    background-color: var(--bg-mid);
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 400;
    white-space: nowrap;
    min-height: 48px;
    box-sizing: border-box;
  }
  .meta-yellow {
    background-color: var(--accent-yellow);
  }
  .product-card .card-btn {
    width: 100%;
    padding: 10px 20px;
    min-height: 64px;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 400;
    flex-shrink: 0;
  }
  @media (max-width: 1200px) {
    .catalog-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 768px) {
    .catalog-grid {
      grid-template-columns: 1fr;
    }
    .product-card {
      height: auto;
      min-height: 376px;
    }
    .catalog-title {
      font-size: 40px;
    }
    .price-value {
      font-size: 36px;
    }
    .catalog-filters-wrapper {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* Figma node 69:3939 — Terms */
  .terms-section {
    background-color: var(--bg-mid);
    padding: 86px 0;
    border-top: 6px solid var(--accent-green);
    border-bottom: 6px solid var(--accent-green);
  }
  .terms-row {
    display: flex;
    gap: 64px;
    align-items: stretch;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
  .terms-card {
    box-sizing: border-box;
    border-radius: 36px;
    padding: 88px;
    height: 600px;
  }
  .terms-card--left {
    flex: 0 0 908px;
    max-width: 908px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 36px;
    background-color: var(--bg-light);
    border: 3px solid var(--accent-green);
  }
  .terms-card--right {
    flex: 0 0 628px;
    max-width: 628px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-green);
  }
  .type-eyebrow {
    font-family: var(--font-body);
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.173;
    letter-spacing: 0;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    color: var(--accent-green);
  }
  .type-t1-regular {
    font-family: var(--font-body);
    font-size: var(--type-t1-regular-size);
    font-weight: var(--type-t1-regular-weight);
    font-style: normal;
    line-height: var(--type-t1-regular-line-height);
    letter-spacing: 0;
    font-synthesis: none;
    font-synthesis-weight: none;
    -webkit-font-smoothing: antialiased;
  }
  .type-t1-light {
    font-family: var(--font-body);
    font-size: var(--type-t1-light-size);
    font-weight: var(--type-t1-light-weight);
    font-style: normal;
    line-height: var(--type-t1-light-line-height);
    letter-spacing: 0;
    font-synthesis: none;
    font-synthesis-weight: none;
    -webkit-font-smoothing: antialiased;
  }
  .type-t1-semibold {
    font-family: var(--font-body);
    font-size: var(--type-t1-semibold-size);
    font-weight: var(--type-t1-semibold-weight);
    font-style: normal;
    line-height: var(--type-t1-semibold-line-height);
    letter-spacing: 0;
    font-synthesis: none;
    font-synthesis-weight: none;
    -webkit-font-smoothing: antialiased;
  }
  .terms-eyebrow {
    margin: 0;
    color: var(--accent-green);
  }
  .terms-eyebrow,
  .terms-points {
    font-family: var(--font-body);
    font-size: var(--type-t1-light-size);
    font-weight: var(--type-t1-light-weight);
    font-style: normal;
    line-height: var(--type-t1-light-line-height);
    letter-spacing: 0;
    font-synthesis: none;
  }
  .terms-heading {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    line-height: 58px;
    color: var(--text-dark);
  }
  .terms-points {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--text-dark);
  }
  .terms-points li {
    position: relative;
    margin: 0;
    padding: 0 0 0 36px;
    font: inherit;
  }
  .terms-points li::before {
    content: '•';
    position: absolute;
    left: 12px;
    font: inherit;
    color: var(--text-dark);
  }
  .terms-cta-body {
    width: 100%;
    max-width: 452px;
    height: 424px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .terms-cta-text {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .terms-cta-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    line-height: 29px;
    color: var(--bg-light);
  }
  .terms-cta-points {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--bg-light);
  }
  .terms-cta-points li {
    position: relative;
    margin: 0;
    padding: 0 0 0 24px;
    font: inherit;
  }
  .terms-cta-points li::before {
    content: '•';
    position: absolute;
    left: 8px;
    font: inherit;
    color: var(--bg-light);
  }
  .terms-cta-btn {
    width: 100%;
    min-height: 81px;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
  }
  @media (max-width: 1680px) {
    .terms-card--left,
    .terms-card--right {
      flex: 1 1 0;
      max-width: none;
    }
  }
  @media (max-width: 1400px) {
    .terms-card {
      padding: 60px;
      height: auto;
      min-height: 520px;
    }
    .terms-heading {
      font-size: 52px;
      line-height: 1.1;
    }
    .terms-cta-body {
      height: auto;
      gap: 36px;
    }
  }
  @media (max-width: 992px) {
    .terms-row {
      flex-direction: column;
      gap: 40px;
    }
    .terms-card {
      padding: 40px;
      min-height: 0;
    }
  }
  @media (max-width: 576px) {
    .terms-heading {
      font-size: 40px;
    }
    .terms-cta-title {
      font-size: 28px;
    }
    .terms-points,
    .terms-eyebrow {
      font-size: 24px;
      line-height: 1.33;
      font-weight: 300;
    }
  }
  
  /* Figma node 75:2802 — Form / Bid */
  .form-section {
    background-color: var(--bg-light);
    padding: 100px 208px;
    position: relative;
    overflow: hidden;
  }
  .form-stage {
    position: relative;
    width: 100%;
    max-width: 1503px;
    margin: 0 auto;
  }
  .form-bg-wrapper {
    position: absolute;
    left: 0;
    top: 426px;
    width: 100%;
    max-width: 1503px;
    aspect-ratio: 1503 / 1424;
    pointer-events: none;
    z-index: 0;
  }
  .form-bg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .form-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 98px;
    max-width: 1024px;
    margin: 0 auto;
  }
  .form-header {
    text-align: center;
    max-width: 924px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .form-subtitle {
    margin: 0;
  }
  .form-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    line-height: 0.906;
    color: var(--text-dark);
  }
  .form-desc {
    margin: 0;
    color: var(--text-dark);
  }
  .request-form {
    background-color: var(--bg-light);
    border: 6px solid var(--text-dark);
    border-radius: 36px;
    padding: 64px;
    width: 100%;
    max-width: 1024px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .form-group.full-width {
    grid-column: 1 / -1;
  }
  .form-group label {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.173;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    color: var(--text-dark);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background-color: var(--form-field-bg);
    border: 3px solid var(--text-dark);
    border-radius: 24px;
    min-height: 81px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.173;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    color: var(--text-dark);
    width: 100%;
    box-sizing: border-box;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent-green);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(42, 16, 1, 0.4);
  }
  .form-group textarea {
    height: 211px;
    min-height: 211px;
    resize: vertical;
  }
  .select-wrapper {
    position: relative;
  }
  .select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    cursor: pointer;
    padding-right: 72px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .select-arrow {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 20px;
    height: 20px;
  }
  .submit-btn {
    width: 100%;
    min-height: 81px;
    border-radius: 24px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.173;
  }
  .consent-text {
    text-align: center;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.173;
    font-synthesis: none;
    color: var(--text-dark);
    margin: 0;
  }
  @media (max-width: 1200px) {
    .form-section {
      padding: 80px 60px;
    }
    .form-bg-wrapper {
      top: 360px;
    }
  }
  @media (max-width: 768px) {
    .form-section {
      padding: 60px 20px;
    }
    .form-bg-wrapper {
      top: 300px;
    }
    .form-container {
      gap: 64px;
    }
    .form-grid {
      grid-template-columns: 1fr;
    }
    .request-form {
      padding: 32px;
      border-width: 4px;
    }
    .form-title {
      font-size: 40px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 16px 24px;
    }
    .select-wrapper select {
      padding-right: 56px;
    }
  }

  /* Unavailable products */
  .product-card--unavailable {
    background-color: #d4d8c4;
    border: 1px solid rgba(42, 16, 1, 0.06);
    opacity: 1;
  }
  .product-card--unavailable .product-name,
  .product-card--unavailable .product-spec {
    color: rgba(42, 16, 1, 0.5);
  }
  .product-card--unavailable .card-country {
    background-color: rgba(42, 16, 1, 0.08);
    color: rgba(42, 16, 1, 0.45);
  }
  .product-card--unavailable .card-flag,
  .product-card--unavailable .card-flag-stack,
  .product-card--unavailable .card-flag-layer {
    opacity: 0.5;
  }
  .product-card--unavailable .price-value {
    color: rgba(42, 16, 1, 0.45);
  }
  .product-card--unavailable .price-unit {
    color: rgba(42, 16, 1, 0.4);
  }
  .product-card--unavailable .meta-item:not(.meta-unavailable) {
    background-color: rgba(42, 16, 1, 0.08);
    color: rgba(42, 16, 1, 0.45);
  }
  .product-card--unavailable .card-unavailable-label {
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    padding: 10px 16px;
    min-height: 64px;
    border-radius: 24px;
    background-color: rgba(42, 16, 1, 0.1);
    color: rgba(42, 16, 1, 0.55);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
    border: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-card.hidden {
    display: none;
  }
  .meta-unavailable {
    background-color: rgba(42, 16, 1, 0.1);
    color: rgba(42, 16, 1, 0.6);
  }

  /* Alerts & form errors */
  .alert {
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .alert--success {
    background-color: #e8f5ea;
    color: #2d5f24;
    border: 2px solid #667733;
  }
  .alert--error {
    background-color: #fde8e8;
    color: #8b1a1a;
    border: 2px solid #c44;
  }
  .form-error {
    color: #8b1a1a;
    font-size: 14px;
    font-weight: 600;
  }
  .form-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  /* Footer */
  .site-footer {
    background-color: var(--accent-green);
    color: var(--bg-light);
    padding: 64px 0;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.17;
    margin-bottom: 4px;
  }
  .footer-brand p {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.17;
    opacity: 0.85;
  }
  .footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .footer-contact-btn {
    background: rgba(215, 227, 165, 0.35);
    border: none;
    color: var(--bg-light);
    padding: 16px 36px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.17;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    min-width: 360px;
    transition: background 0.2s;
  }
  .footer-contact-btn:hover {
    background: rgba(215, 227, 165, 0.5);
  }
  @media (max-width: 768px) {
    .site-footer {
      padding: 48px 0;
    }
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 32px;
    }
    .footer-contacts {
      align-items: stretch;
      width: 100%;
    }
    .footer-contact-btn {
      min-width: 0;
      width: 100%;
      white-space: normal;
    }
  }

  /* Success page */
  .success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    background-color: var(--bg-mid);
  }
  .success-page__inner {
    text-align: center;
    max-width: 520px;
    background: var(--bg-light);
    padding: 64px 48px;
    border-radius: 36px;
    border: 3px solid var(--accent-green);
  }
  .success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--accent-green);
    color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
  }
  .success-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .success-page p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  /* Contact modal */
  .contact-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .contact-modal[hidden] { display: none; }
  .contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 16, 1, 0.5);
  }
  .contact-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: var(--bg-light);
    border-radius: 28px;
    padding: 40px 36px 32px;
    border: 3px solid var(--text-dark);
    box-shadow: 0 16px 48px rgba(42, 16, 1, 0.18);
  }
  .contact-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-dark);
    padding: 4px 8px;
  }
  .contact-modal__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    padding-right: 36px;
  }
  .contact-modal__subtitle {
    font-size: 1.125rem;
    opacity: 0.7;
    margin-bottom: 28px;
    line-height: 1.4;
  }
  .contact-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .contact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 104px;
    padding: 20px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--bg-mid);
    color: var(--text-dark);
    background: rgba(215, 227, 165, 0.35);
  }
  .contact-action__icon {
    font-size: 1.75rem;
    line-height: 1;
  }
  .contact-action:hover { background: var(--bg-mid); }

  .nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: none;
    border-radius: 12px;
    background: var(--accent-green);
    color: var(--bg-light);
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
  }
  .nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-link--cta {
    display: none;
  }

  .mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px;
    background: var(--accent-green);
    color: var(--bg-light);
    border: none;
    font-weight: 700;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 768px) {
    .mobile-call-bar { display: flex; }
    body {
      padding-bottom: 56px;
    }
  }

  .phone-wrapper--btn {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
  }
  .phone-wrapper--btn:hover {
    opacity: 0.8;
  }

  /* ========== Mobile / tablet adaptation ========== */
  @media (max-width: 1100px) {
    :root {
      --page-gutter: 16px;
      --ui-scale: 1;
    }

    html {
      zoom: 1 !important;
    }

    body,
    main {
      width: 100%;
      max-width: 100%;
    }

    html {
      overflow-x: clip;
    }

    #hero,
    #about,
    #catalog,
    #terms,
    #form,
    #contacts {
      scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
    }

    #header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 300;
      padding: max(10px, env(safe-area-inset-top, 0px)) 12px 8px;
      background: rgba(255, 255, 255, 0.01);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-sizing: border-box;
    }

    #header .site-header.container {
      padding-left: 0;
      padding-right: 0;
      max-width: none;
    }

    body {
      padding: calc(72px + env(safe-area-inset-top, 0px)) 0 0;
    }

    body.nav-open {
      overflow: hidden;
      touch-action: none;
    }

    .header-nav-wrapper {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 10px 12px;
      border-radius: 20px;
      background-color: var(--bg-mid);
      border: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      max-height: calc(100dvh - 24px - env(safe-area-inset-top, 0px));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .header-brand-nav {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
      gap: 8px;
    }

    .logo-wrap {
      order: 1;
    }

    .nav-toggle {
      display: inline-flex;
      order: 2;
      margin-left: auto;
    }

    .header-nav-wrapper.is-open .nav-toggle__bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .header-nav-wrapper.is-open .nav-toggle__bar:nth-child(2) {
      opacity: 0;
    }
    .header-nav-wrapper.is-open .nav-toggle__bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
      display: none;
      order: 3;
      flex: 1 1 100%;
      flex-direction: column;
      width: 100%;
      gap: 4px;
      padding-top: 10px;
      margin-top: 8px;
      border-top: 1px solid rgba(42, 16, 1, 0.1);
    }

    .header-nav-wrapper.is-open .main-nav {
      display: flex;
    }

    .nav-indicator {
      display: none !important;
    }

    .nav-link {
      width: 100%;
      box-sizing: border-box;
      text-align: left;
      padding: 12px 16px;
      font-size: 17px;
      border-radius: 14px;
    }

    .nav-link.active {
      background-color: var(--bg-light);
    }

    .nav-link--cta {
      display: flex;
      justify-content: center;
      margin-top: 6px;
      background: var(--text-dark);
      color: var(--bg-light);
      font-weight: 600;
    }

    .header-actions {
      display: none;
    }

    .logo {
      width: 44px;
      height: 44px;
      font-size: 24px;
      border-radius: 10px;
    }
    .logo-wrap {
      width: auto;
    }

    .btn {
      font-size: 16px;
      min-height: 52px;
      padding: 12px 20px;
    }
    .btn-icon {
      width: 52px;
      min-width: 52px;
      padding: 12px;
    }

    .hero-section {
      padding-bottom: 40px;
      width: 100%;
    }
    .hero-info {
      min-height: 0;
      gap: 0;
      flex-direction: column;
      width: 100%;
      max-width: none;
    }
    .hero-info-left,
    .hero-info-right {
      flex: none;
      width: 100%;
      max-width: none;
      padding: 28px var(--page-gutter);
      box-sizing: border-box;
    }
    .hero-info-left {
      align-items: flex-start;
      text-align: left;
      gap: 20px;
    }
    .hero-info-left::before,
    .hero-info-right::after {
      display: none;
    }
    .hero-badge {
      font-size: 14px;
      min-height: 44px;
      padding: 10px 16px;
      width: auto;
      max-width: 100%;
      justify-content: flex-start;
    }
    .hero-title {
      font-size: clamp(32px, 9vw, 42px);
      line-height: 1.05;
    }
    .hero-desc {
      font-size: 16px;
      line-height: 1.35;
    }
    .hero-buttons {
      flex-direction: column;
      width: 100%;
      gap: 10px;
    }
    .hero-buttons .btn {
      width: 100%;
    }
    .hero-buttons .btn-icon {
      display: none;
    }
    .hero-stats {
      width: 100%;
      max-width: none;
      flex-direction: column;
      gap: 12px;
    }
    .stat-card {
      width: 100%;
      max-width: none;
      min-height: 0;
      padding: 20px 16px;
      border-radius: 20px !important;
      box-sizing: border-box;
    }
    .stat-value {
      font-size: 36px;
    }
    .stat-label {
      font-size: 14px;
    }

    .about-section {
      padding: 48px 0;
      width: 100%;
    }
    .about-container {
      flex-direction: column;
      gap: 24px;
      width: 100%;
    }
    .about-image-wrapper {
      width: 100%;
      max-width: none;
      flex: none;
      height: auto;
      aspect-ratio: 4 / 5;
      border-radius: 24px;
    }
    .about-image {
      border-radius: 24px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .about-image-badge {
      width: min(220px, 70%);
      min-height: 96px;
      padding: 16px 12px;
      border-radius: 0 24px 0 24px;
      gap: 6px;
    }
    .badge-date {
      font-size: 22px;
    }
    .badge-label {
      font-size: 14px;
    }
    .about-content {
      min-height: 0;
      gap: 20px;
      width: 100%;
    }
    .about-title {
      font-size: clamp(28px, 8vw, 36px);
    }
    .about-subtitle,
    .type-eyebrow {
      font-size: 14px !important;
    }
    .about-desc-img {
      width: 100%;
      max-width: 100%;
      height: auto;
    }
    .features-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 0;
      width: 100%;
    }
    .feature-item {
      font-size: 15px;
      padding: 14px 16px;
      border-radius: 16px;
      gap: 12px;
    }

    .catalog-section {
      padding: 48px 0;
      width: 100%;
    }
    .catalog-header {
      margin-bottom: 28px;
      gap: 12px;
    }
    .catalog-subtitle {
      font-size: 14px;
    }
    .catalog-title {
      font-size: clamp(28px, 8vw, 36px);
    }
    .catalog-desc {
      font-size: 16px;
      line-height: 1.35;
    }
    .catalog-filters-wrapper {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      margin-bottom: 24px;
    }
    .catalog-update-badge {
      font-size: 14px;
      padding: 10px 14px;
      width: fit-content;
    }
    .catalog-filters {
      gap: 8px;
      overflow-x: auto;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 4px;
    }
    .filter-btn {
      font-size: 14px;
      padding: 10px 14px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .catalog-grid {
      grid-template-columns: 1fr;
      gap: 16px;
      width: 100%;
    }
    .product-card {
      height: auto;
      min-height: 0;
      width: 100%;
      max-width: none;
      padding: 18px;
      border-radius: 20px;
      box-sizing: border-box;
    }
    .card-header {
      height: auto;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .product-name {
      font-size: 22px;
    }
    .product-spec {
      font-size: 14px;
    }
    .card-country {
      font-size: 16px;
      padding: 8px 12px;
      max-width: 100%;
    }
    .card-price {
      height: auto;
      gap: 10px;
      flex-wrap: wrap;
    }
    .price-value {
      font-size: 36px;
    }
    .price-value--long {
      font-size: 28px;
    }
    .price-unit {
      font-size: 18px;
    }
    .card-spacer {
      min-height: 16px;
    }
    .card-meta {
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
      min-height: 0;
    }
    .meta-item {
      font-size: 14px;
      padding: 8px 12px;
      min-height: 40px;
      border-radius: 10px;
    }
    .product-card .card-btn,
    .product-card--unavailable .card-unavailable-label {
      min-height: 52px;
      font-size: 16px;
      padding: 12px 16px;
      border-radius: 16px;
    }

    .terms-section {
      padding: 40px 0;
      border-top-width: 4px;
      border-bottom-width: 4px;
      width: 100%;
    }
    .terms-row {
      flex-direction: column;
      gap: 16px;
      max-width: none;
      width: 100%;
    }
    .terms-card,
    .terms-card--left,
    .terms-card--right {
      flex: none;
      width: 100%;
      max-width: none;
      height: auto;
      padding: 28px 20px;
      border-radius: 24px;
      box-sizing: border-box;
    }
    .terms-heading,
    .terms-cta-title {
      font-size: clamp(26px, 7vw, 32px);
    }
    .terms-points,
    .terms-cta-points,
    .terms-eyebrow {
      font-size: 16px !important;
    }
    .terms-points li,
    .terms-cta-points li {
      padding-left: 24px;
    }

    .form-section {
      padding: 40px 16px;
      width: 100%;
      box-sizing: border-box;
    }
    .form-bg-wrapper {
      display: none;
    }
    .form-container {
      gap: 28px;
      width: 100%;
      max-width: none;
    }
    .form-title {
      font-size: clamp(28px, 8vw, 36px);
    }
    .form-desc,
    .form-subtitle,
    .consent-text {
      font-size: 15px;
    }
    .request-form {
      padding: 20px 16px;
      border-width: 3px;
      border-radius: 24px;
      gap: 20px;
      width: 100%;
      box-sizing: border-box;
    }
    .form-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .form-group label {
      font-size: 14px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 14px 16px;
      font-size: 16px;
      border-radius: 14px;
      min-height: 48px;
      width: 100%;
      box-sizing: border-box;
    }
    .select-wrapper select {
      padding-right: 48px;
    }
    .select-arrow {
      right: 16px;
      width: 16px;
      height: 16px;
    }
    .submit-btn {
      width: 100%;
      font-size: 16px;
      min-height: 52px;
    }

    .site-footer {
      padding: 40px 0 72px;
      width: 100%;
    }
    .footer-inner {
      flex-direction: column;
      align-items: stretch;
      gap: 24px;
      width: 100%;
    }
    .footer-brand strong {
      font-size: 28px;
    }
    .footer-brand p {
      font-size: 15px;
    }
    .footer-contacts {
      width: 100%;
      align-items: stretch;
    }
    .footer-contact-btn {
      min-width: 0;
      width: 100%;
      white-space: normal;
      font-size: 15px;
      padding: 14px 18px;
      box-sizing: border-box;
    }

    .success-page {
      padding: 80px 16px;
    }
    .success-page__inner {
      padding: 36px 20px;
    }
    .success-page h1 {
      font-size: 28px;
    }

    .contact-modal {
      padding: 16px;
      align-items: flex-end;
    }
    .contact-modal__dialog {
      max-width: none;
      width: 100%;
      border-radius: 24px 24px 16px 16px;
      padding: 28px 20px 24px;
    }
    .contact-modal__title {
      font-size: 1.5rem;
    }
    .contact-modal__subtitle {
      font-size: 1rem;
      margin-bottom: 20px;
    }
    .contact-action {
      min-height: 88px;
      padding: 16px 12px;
      font-size: 0.9375rem;
    }

    .container {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  }

  