@font-face {
  font-family: "Termina";
  src: url("../fonts/termina-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Termina";
  src: url("../fonts/termina-bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --black: #000;
  --white: #fff;
  --gold: #edbf20;
  --blue: #002eb7;
  --header-width: 982px;
  --content-width: 1001px;
  --header-height: 50px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Termina", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 10050;
  transform: translateY(-150%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 10px 0 auto;
  z-index: 1000;
  pointer-events: none;
}

.header-bar {
  width: min(var(--header-width), calc(100vw - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 18px 0 14px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
}

.header-logo {
  width: 120px;
  flex: 0 0 auto;
}

.header-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a.active::before {
  content: "•";
  position: absolute;
  left: -11px;
  top: -1px;
  color: #fff;
  font-size: 12px;
}

.whatsapp-link {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.whatsapp-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.whatsapp-link img {
  width: 17px;
  height: 17px;
  display: block;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  margin: auto;
  fill: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 22px;
  text-align: center;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 700;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-close svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.page {
  min-height: 100vh;
  background: #000;
}

.page-hero {
  position: relative;
  height: 300px;
  isolation: isolate;
  overflow: hidden;
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.12) 46%, #000 100%);
}

.page-title {
  width: min(100%, 1120px);
  margin: 0;
  padding: 18px 28px 0;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.02;
  text-align: center;
}

.page-main {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: 46px 50px 0;
}

.page-main.short {
  min-height: 411px;
}

.page-main.medium {
  min-height: 560px;
}

.page-main.products-main {
  min-height: 490px;
}

.content-block {
  max-width: 900px;
}

.content-block h2,
.contact-copy h2,
.policy-content h1,
.policy-content h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.05;
}

.content-block p,
.content-block li,
.contact-copy p,
.contact-copy address,
.policy-content p,
.policy-content li {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
}

.content-block p {
  margin: 0 0 20px;
}

.content-block ul {
  margin: 0 0 96px 30px;
  padding: 0;
  list-style: disc;
}

.content-block li {
  padding-left: 0;
}

.section-gap {
  margin-top: 32px;
}

.simple-lines p {
  margin: 0;
}

.partner-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.partner-list li {
  margin: 3px 0;
  list-style: none;
}

.home-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.home-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/home-hero.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 72%, rgba(0, 0, 0, 0.75) 100%);
}

.home-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 112px;
  text-align: center;
}

.home-copy {
  width: min(680px, 100%);
  transform: translateY(22px);
}

.home-copy h1 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.05;
}

.home-copy p {
  margin: 0 auto 20px;
  max-width: 650px;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.05;
}

.outline-button {
  width: 228px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease;
}

.outline-button:hover {
  background: #fff;
  color: #000;
}

.home-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 11px;
  line-height: 1.25;
}

.home-footer strong,
.footer-brand .gold {
  color: var(--gold);
}

.home-footer a,
.site-footer a {
  color: #fff;
}

.site-footer {
  position: relative;
  width: min(var(--content-width), 100%);
  min-height: 153px;
  margin: 0 auto;
  padding: 0 50px 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}

.footer-logo {
  width: 225px;
  align-self: center;
  justify-self: start;
  margin-top: 32px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-center {
  justify-self: center;
  text-align: center;
  margin-bottom: 35px;
  font-size: 10px;
  line-height: 1.25;
}

.footer-brand {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.designer-credit {
  position: absolute;
  right: 50px;
  bottom: 7px;
  width: 125px;
}

.contact-main {
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  padding: 45px 50px 0;
}

.contact-copy {
  max-width: 900px;
  margin-bottom: 112px;
}

.contact-copy p {
  margin: 0 0 20px;
}

.office {
  margin-top: 22px;
}

.office h2 {
  margin-bottom: 3px;
}

.office address {
  margin: 0;
  text-transform: uppercase;
}

.contact-form {
  max-width: 854px;
  margin: 0 auto 94px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 22px;
}

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

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

.field label,
.consent {
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 3px 0 8px;
}

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

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  appearance: none;
  border: 2px solid #fff;
  background: transparent;
  flex: 0 0 auto;
}

.consent input:checked {
  background:
    linear-gradient(45deg, transparent 58%, #fff 58% 72%, transparent 72%),
    linear-gradient(-45deg, transparent 47%, #fff 47% 61%, transparent 61%);
  background-color: transparent;
}

.consent a {
  text-decoration: underline;
}

.submit-button {
  grid-column: 1 / -1;
  min-height: 45px;
  border: 2px solid #fff;
  border-radius: 24px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.submit-button:hover,
.submit-button:focus {
  background: #fff;
  color: #000;
}

.policy-main {
  width: min(var(--content-width), 100%);
  min-height: 700px;
  margin: 0 auto;
  padding: 104px 50px 34px;
}

.policy-content {
  max-width: 900px;
}

.policy-content h1 {
  margin-bottom: 28px;
  text-transform: none;
}

.policy-content h2 {
  margin-top: 24px;
  font-size: 20px;
}

.policy-content p,
.policy-content li {
  margin: 0 0 14px;
}

.policy-content ul {
  margin: 0 0 16px 26px;
  padding: 0;
}

.fingerprint {
  position: fixed;
  left: 36px;
  bottom: 35px;
  z-index: 1050;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background: #0733bd;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.fingerprint svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
}

.about-hero {
  background-image: url("../images/about-hero.jpg");
  background-position: center 48%;
}

.products-hero {
  background-image: url("../images/products-hero.jpg");
}

.services-hero {
  background-image: url("../images/services-hero.jpg");
}

.logistics-hero {
  background-image: url("../images/logistics-hero.jpg");
}

.partners-hero {
  background-image: url("../images/partners-hero.jpg");
}

.contact-hero {
  background-image: url("../images/contact-hero.jpg");
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  z-index: 9999;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  animation: slideUp 0.4s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

#cookie-banner.hidden {
  display: none !important;
}

.cookie-content {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: center;
}

.cookie-text {
  color: #333;
  font-size: 14px;
}

.cookie-text a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 36px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

.cookie-btn-reject {
  background: #f0f0f0;
  color: #333;
  border: 1px solid #d0d0d0;
}

.cookie-btn-reject:hover {
  background: #e5e5e5;
  border-color: #bbb;
}

.cookie-btn-accept {
  background: #0066cc;
  color: white;
}

.cookie-btn-accept:hover {
  background: #0052a3;
}

.cookie-close {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  color: #333;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 28px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: popIn 0.3s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

@keyframes popIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 20px;
  color: #222;
  margin: 0;
}

.modal-close {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #666;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #333;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.category-name {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.category-desc {
  font-size: 13px;
  color: #666;
}

.toggle-switch {
  width: 40px;
  height: 24px;
  background: #ccc;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.toggle-switch::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.2s;
}

.toggle-switch:checked {
  background: #0066cc;
}

.toggle-switch:checked::after {
  left: 18px;
}

.toggle-switch:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.modal-footer button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

.modal-btn-reject {
  background: #f0f0f0;
  color: #333;
}

.modal-btn-reject:hover {
  background: #e0e0e0;
}

.modal-btn-accept {
  background: #0066cc;
  color: white;
}

.modal-btn-accept:hover {
  background: #0052a3;
}

.cookie-settings-link {
  color: #0066cc;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.cookie-settings-link:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  :root {
    --header-height: 60px;
  }

  .header-bar {
    width: min(92vw, var(--header-width));
    padding: 0 18px;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .header-logo {
    width: 139px;
  }

  .site-nav,
  .header-bar > .whatsapp-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .page-title {
    font-size: 40px;
  }

  .page-main,
  .contact-main,
  .policy-main {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 10px;
  }

  .header-logo {
    width: 165px;
    margin-left: auto;
  }

  .page-hero {
    height: 400px;
    place-items: center start;
  }

  .page-title {
    width: 82%;
    padding: 28px 0 0 7vw;
    text-align: left;
  }

  .home-copy {
    transform: translateY(0);
  }

  .home-copy h1 {
    font-size: 36px;
  }

  .home-copy p {
    font-size: 17px;
  }

  .page-main.medium,
  .page-main.short,
  .page-main.products-main {
    min-height: auto;
    padding-bottom: 48px;
  }

  .content-block h2,
  .contact-copy h2,
  .policy-content h1 {
    font-size: 24px;
  }

  .content-block p,
  .content-block li,
  .contact-copy p,
  .contact-copy address,
  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }

  .content-block ul {
    margin-bottom: 56px;
  }

  .contact-copy {
    margin-bottom: 48px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .site-footer {
    min-height: 210px;
    padding: 0 7vw 30px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .footer-logo {
    justify-self: center;
    width: 220px;
    margin-top: 30px;
  }

  .footer-center {
    margin-bottom: 0;
  }

  .designer-credit {
    position: static;
    width: 120px;
    justify-self: center;
  }

  .fingerprint {
    left: 22px;
    bottom: 24px;
    width: 56px;
    height: 56px;
  }

  #cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    align-items: stretch;
  }

  .cookie-content {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-btn {
    flex: 1;
    min-height: 40px;
  }

  .modal-content {
    padding: 20px;
  }
}
