:root {
  --bg: #030912;
  --bg-2: #07111d;
  --panel: rgba(5, 14, 24, 0.82);
  --line: rgba(211, 151, 62, 0.52);
  --gold: #d79a3d;
  --gold-light: #f6c879;
  --cream: #fff8e7;
  --muted: #c7d0d7;
  --white: #ffffff;
  --font-display: "Bebas Neue", sans-serif;
  --font-serif: "Cinzel", serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Inter", sans-serif;
  --font-nav: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(
      circle at 8% 34%,
      rgba(215, 154, 61, 0.16),
      transparent 20rem
    ),
    radial-gradient(
      circle at 88% 48%,
      rgba(33, 119, 149, 0.22),
      transparent 22rem
    ),
    linear-gradient(180deg, #02060c 0%, var(--bg) 52%, #02060c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  z-index: -1;
}

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

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 56px, 1680px);
  max-width: 1680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gold-text {
  color: var(--gold-light);
  background: linear-gradient(90deg, #b87825 0%, #ffe1a0 48%, #d99b3e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.script-text {
  font-family: var(--font-script);
  font-weight: 400;
}

.cinzel {
  font-family: var(--font-serif);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.2rem;
}

#tsparticles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 25px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.btn-primary {
  color: #120c05;
  background: linear-gradient(180deg, #ffd280 0%, #d89435 52%, #ad641f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 9px 24px rgba(205, 130, 43, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffe0a3 0%, #e7a743 58%, #b86d21 100%);
}

.btn-outline,
.btn-outline-gold {
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  border-color: var(--line);
}

.btn-outline:hover,
.btn-outline-gold:hover {
  color: var(--gold-light);
  background: rgba(215, 154, 61, 0.08);
}

.btn-block {
  width: 100%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 28px 0 12px;
  transition:
    background 200ms ease,
    padding 200ms ease,
    box-shadow 200ms ease;
}

.header.scrolled {
  position: fixed;
  padding: 8px 0;
  background: rgb(2 8 14 / 69%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.header.scrolled .header-container {
  align-items: center;
}

.header.scrolled .image-logo img {
  width: 112px;
}

.header.scrolled .nav-list a {
  padding: 10px 0;
}

.header-container {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: start;
  gap: 30px;
}

.nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.nav-list a {
  position: relative;
  display: inline-flex;
  padding: 12px 0;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--gold-light);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 26px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--gold-light);
  background: transparent;
  font-size: 23px;
  cursor: pointer;
}

.image-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.image-logo img {
  width: 230px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

.hero {
  min-height: 950px;
  height: 950px;
  position: relative;
  display: flex;
  align-items: stretch;
  padding-top: 126px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(2, 7, 13, 0.98) 0%,
      rgba(3, 10, 17, 0.91) 36%,
      rgba(3, 10, 17, 0.32) 67%,
      rgba(3, 10, 17, 0.18) 100%
    ),
    url("../images/wis-hero.svg") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 62% 47%,
      rgba(222, 246, 255, 0.35),
      transparent 18rem
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(215, 154, 61, 0.16),
      transparent 14rem
    ),
    linear-gradient(180deg, transparent 72%, rgba(1, 7, 12, 0.92) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 55%;
  opacity: 0.28;
  mix-blend-mode: screen;
  clip-path: polygon(18% 18%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-container {
  width: 100%;
  max-width: none;
  min-height: calc(950px - 126px);
  height: calc(950px - 126px);
  margin: 0;
  padding-inline: clamp(112px, 9vw, 180px) clamp(24px, 4vw, 76px);
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) 1.08fr;
  align-items: center;
  gap: 28px;
  z-index: 3;
}

.hero-content {
  position: relative;
  max-width: 710px;
  padding: 30px 0 70px;
}

.side-label {
  position: absolute;
  left: -88px;
  top: 43%;
  gap: 6px !important;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg) translateY(50%);
}

.side-label::before,
.side-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 92px;
  background: var(--line);
  transform: translateY(-50%);
}

.side-label::before {
  left: -14px;
}

.side-label::after {
  right: -14px;
}

.hero-subtitle {
  margin-bottom: 0;
  font-size: clamp(44px, 4.6vw, 66px);
  transform: rotate(-4deg);
  transform-origin: left center;
}

.hero-title {
  margin: -2px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(108px, 11.8vw, 190px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f6f6f2;
  text-shadow: 0 9px 22px rgba(0, 0, 0, 0.72);
}

.hero-badge-ribbon {
  width: fit-content;
  display: grid;
  grid-template-columns: auto;
  justify-items: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.ribbon {
  position: relative;
  min-width: 430px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px 4px;
  color: #140e07;
  background: url("../images/ribbon.svg") center / 100% 100% no-repeat;
  font-family: var(--font-nav);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  z-index: 1;
  transform: perspective(220px) rotateX(5deg);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.42));
}

.flags {
  display: flex;
  gap: 15px;
  padding-top: 10px;

  justify-content: center;
}

.flag {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
}

.hero-text {
  width: min(100%, 540px);
  margin-bottom: 30px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-btn {
  min-height: 52px;
  padding-inline: 30px;
  border-radius: 6px;
}

.hero-image-wrapper {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 4% 0 0 2%;
  filter: contrast(1.08) saturate(1.08);
  clip-path: ellipse(50% 38% at 56% 52%);
  opacity: 0.88;
}

.hero-logo {
  width: clamp(260px, 30vw, 460px);
  z-index: 1;
}

.hero-banner-logo {
  width: clamp(430px, 38vw, 550px);
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.72));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

.floating-anim {
  animation: float 5.6s ease-in-out infinite;
}

.section-back {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(2, 8, 14, 0.63), rgba(2, 8, 14, 0.644)),
    url("../images/section-back.svg") center top / cover no-repeat;
}

.section-back::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 8% 32%,
      rgba(215, 154, 61, 0.12),
      transparent 18rem
    ),
    radial-gradient(
      circle at 92% 46%,
      rgba(48, 118, 132, 0.2),
      transparent 20rem
    );
  z-index: 1;
}

.section-back > * {
  position: relative;
  z-index: 2;
}

.section-back .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(28px, 4vw, 76px);
}

.features {
  padding: 34px 0;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: stretch;
  gap: 34px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.feature-item {
  min-height: 168px;
  display: grid;
  grid-template-rows: 58px 46px minmax(38px, auto);
  justify-items: center;
  align-items: start;
  align-content: center;
  gap: 8px;
  padding: 10px 18px;
  text-align: center;
  border-right: 1px solid rgba(215, 154, 61, 0.32);
}

.feature-icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 26px;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}

.feature-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  padding-top: 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--gold-light);
  text-transform: uppercase;
}

.feature-desc {
  max-width: 135px;
  min-height: 38px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.55;
}

.features-banner {
  min-height: 168px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: rgba(2, 8, 14, 0.22);
}

.features-banner::before {
  content: "";
  position: absolute;
  inset: 0;
}

.features-banner h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(43px, 4vw, 50px);
  text-align: center;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.74);
}

.products {
  position: relative;
  padding: 34px 0 38px;
}

.section-header {
  margin-bottom: 24px;
}

.section-subtitle {
  margin-bottom: -2px;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: capitalize;
  transform: rotate(-2deg);
  transform-origin: center;
}

.section-title {
  color: #fff8ec;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 500;
  padding-top: 10px;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: min(190px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider i {
  margin: 0 14px;
  font-size: 18px;
}

.products-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 154, 61, 0.92);
  border-radius: 20px;
  background: rgba(1, 7, 13, 0.9);
  box-shadow:
    0 15px 28px rgba(0, 0, 0, 0.46),
    inset 0 0 18px rgba(255, 255, 255, 0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-light);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(215, 154, 61, 0.2);
}

.product-image {
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.07) contrast(1.05);
  transition: transform 240ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-info {
  min-height: 116px;
  padding: 16px 15px 18px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(1, 7, 13, 0.88),
    rgba(1, 7, 13, 0.98)
  );
}

.product-name {
  margin-bottom: 8px;
  font-family: var(--font-nav);
  font-size: 21px;
  font-weight: 600;

  color: #fff;
  text-transform: uppercase;
}

.product-desc {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.why-choose-us {
  padding: 34px 0 30px;
  background:
    linear-gradient(rgb(0 0 0 / 65%), rgb(0 0 0)),
    url('../images/section-back.svg')
      center / cover no-repeat;
}

.why-container {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: 34px;
}

.why-content h4 {
  margin-bottom: 10px;
  font-size: 42px;
  transform: rotate(-3deg);
  transform-origin: left center;
}

.why-title {
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 41px);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}

.why-desc {
  width: min(100%, 560px);
  margin-bottom: 22px;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-feature {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 13px;
  padding: 26px 18px;
  text-align: center;
  border: 2px solid rgba(215, 154, 61, 0.62);
  border-radius: 20px;
  background: rgba(1, 7, 13, 0.64);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.why-feature:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
}

.why-icon {
  color: var(--gold-light);
  font-size: 48px;
}

.why-feature-title {
  font-family: var(--font-nav);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (min-width: 901px) and (max-width: 1366px) {
  .why-title br {
    display: none;
  }

  .why-title {
    white-space: nowrap;
  }

  .why-title br::after {
    content: " ";
  }

  .why-feature-title {
    font-size: clamp(14px, 1.15vw, 16px);
  }

  .why-desc {
    width: 100%;
    max-width: none;
    white-space: nowrap;
  }
}

.why-feature-desc {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  position: relative;
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 154, 61, 0.08), transparent 22rem),
    linear-gradient(180deg, #02070d 0%, #01050a 100%);
}

.footer p {
  margin-bottom: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(150px, 0.7fr) minmax(230px, 0.95fr) minmax(270px, 1fr);
  align-items: start;
  gap: clamp(28px, 3.5vw, 58px);
  padding: 44px 0 34px;
}

.footer-col {
  min-height: 100%;
  padding-left: 24px;
  border-left: 1px solid rgba(215, 154, 61, 0.32);
}

.footer-brand {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: 14px 28px;
  padding-left: 0;
  border-left: 0;
}

.footer-logo {
  width: 190px;
  grid-row: 1 / 3;
}

.footer-logo img {
  width: 190px;
  height: auto;
}

.footer-title {
  margin-bottom: 16px;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-text,
.footer-links a,
.footer-contact li {
  color: var(--cream);
  font-size: 13px;
  line-height: 1.65;
}

.footer-text {
  max-width: 360px;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-bottom: 11px;
}

.footer-contact i {
  padding-top: 5px;
}

.social-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
}

.social-links a:hover {
  color: #160d05;
  border-color: var(--gold);
  background: var(--gold);
}

.newsletter-form {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(215, 154, 61, 0.28);
}

.footer-bottom-container {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cream);
  font-size: 12px;
  text-transform: none;
}

.footer-slogan {
  font-size: 29px;
}

.footer-made-in {
  font-family: var(--font-nav);
  font-weight: 500;
  gap:4px !important;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .header-container {
    grid-template-columns: 180px 1fr auto;
  }

  .header .image-logo img {
    width: 170px;
  }

  .nav-list {
    gap: 18px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .features-banner {
    min-height: 150px;
  }

  .why-container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) and (max-height: 820px) {
  .header {
    padding: 18px 0 8px;
  }

  .header-container {
    grid-template-columns: 170px 1fr auto;
    gap: 18px;
  }

  .header .image-logo img {
    width: 150px;
  }

  .nav-list {
    gap: clamp(12px, 1.25vw, 20px);
  }

  .nav-list a {
    font-size: 11px;
  }

  .header-actions .btn {
    min-height: 42px;
    padding-inline: 20px;
  }

  .hero {
    min-height: 720px;
    height: 720px;
    padding-top: 104px;
  }

  .hero-container {
    min-height: calc(720px - 104px);
    height: calc(720px - 104px);
    padding-inline: clamp(82px, 7vw, 120px) 34px;
  }

  .hero-content {
    max-width: 560px;
    padding: 10px 0 32px;
  }

  .side-label {
    left: -66px;
    font-size: 10px;
  }

  .hero-subtitle {
    font-size: clamp(38px, 4vw, 50px);
  }

  .hero-title {
    font-size: clamp(90px, 8vw, 124px);
  }

  .ribbon {
    min-width: 330px;
    min-height: 50px;
    font-size: 13px;
  }

  .flag {
    width: 58px;
    height: 42px;
  }

  .hero-text {
    width: min(100%, 430px);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-btn {
    min-height: 44px;
    padding-inline: 22px;
  }

  .footer-container {
    grid-template-columns: minmax(330px, 1.35fr) minmax(150px, 0.7fr) minmax(230px, 0.95fr) minmax(270px, 1fr);
    gap: 28px;
    padding: 34px 0 28px;
  }

  .footer-brand {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 12px 20px;
  }

  .footer-logo,
  .footer-logo img {
    width: 150px;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 12px;
  }

  .social-links a {
    width: 34px;
    height: 34px;
  }

  .footer-bottom-container {
    min-height: 56px;
  }

  .footer-slogan {
    font-size: 25px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 34px, 1680px);
    max-width: 1680px;
  }

  .header-container {
    grid-template-columns: 150px 1fr auto;
    align-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(215, 154, 61, 0.34);
    background: rgba(2, 8, 14, 0.96);
  }

  .nav-list {
    flex-direction: column;
    gap: 6px;
  }

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

  .header .image-logo img {
    width: 138px;
  }

  .hero {
    min-height: 950px;
    height: 950px;
    padding-top: 150px;
  }

  .hero-container {
    min-height: calc(950px - 150px);
    height: calc(950px - 150px);
    padding-inline: clamp(74px, 8vw, 96px) 34px;
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 20px 0 12px;
  }

  .hero-image-wrapper {
    min-height: 360px;
  }

  .hero-banner-logo {
    width: min(78vw, 540px);
  }

  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item,
  .feature-item:first-child {
    border: 1px solid rgba(215, 154, 61, 0.32);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1680px);
  }

  .header {
    padding: 22px 0 10px;
  }

  .header-actions .btn {
    display: none;
  }

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

  .header .image-logo img {
    width: 118px;
  }

  .header .image-logo {
    justify-content: flex-start;
    margin-left: -2px;
  }

  .header-actions {
    justify-content: end;
    margin-left: auto;
    margin-right: -4px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    margin: 0;
    font-size: 22px;
  }

  .nav {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
  }

  .hero {
    padding-top: 104px;
    height: auto;
    min-height: 760px;
    background-position: 58% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(1, 5, 10, 0.9) 0%, rgba(1, 5, 10, 0.7) 52%, rgba(1, 5, 10, 0.42) 100%),
      linear-gradient(180deg, rgba(1, 5, 10, 0.38) 0%, rgba(1, 5, 10, 0.12) 42%, rgba(1, 5, 10, 0.86) 100%);
  }

  .hero-container {
    min-height: calc(760px - 104px);
    height: auto;
    padding-inline: 24px;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0px 0 28px;
  }

  .side-label {
    display: none;
  }

  .hero-title {
    font-size: clamp(72px, 21vw, 104px);
  }

  .hero-subtitle {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-badge-ribbon {
    grid-template-columns: 1fr;
    margin-bottom: 22px;
  }

  .ribbon {
    min-width: min(100%, 260px);
    min-height: 40px;
    font-size: 10px;
    padding: 0 16px 3px;
  }

  .flags {
    gap: 10px;
    padding-top: 8px;
  }

  .flag {
    width: 58px;
    height: 42px;
    border-radius: 6px;
  }

  .hero-text {
    width: min(100%, 330px);
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-image-wrapper {
    min-height: 270px;
  }

  .hero-banner-logo {
    width: min(88vw, 430px);
  }

  .features-grid,
  .products-grid,
  .why-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: 156px;
  }

  .why-feature {
    min-height: 180px;
  }

  .why-choose-us {
    padding: 44px 0 38px;
  }

  .why-container {
    gap: 28px;
  }

  .why-content h4 {
    font-size: 38px;
  }

  .why-title {
    font-size: clamp(30px, 9vw, 38px);
  }

  .why-desc {
    font-size: 15px;
  }

  .footer-col {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 154, 61, 0.24);
  }

  .footer-brand {
    grid-template-columns: 1fr;
    padding-top: 0;
    border-top: 0;
    gap: 14px;
  }

  .footer-logo {
    width: 170px;
    grid-row: auto;
  }

  .footer-logo img {
    width: 170px;
  }

  .social-links {
    grid-column: auto;
  }

  .newsletter-form {
    max-width: none;
  }

  .newsletter-form input {
    height: 46px;
  }

  .newsletter-form .btn {
    min-height: 46px;
  }

  .footer-bottom-container {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

}
