/* 
===============================================
   Shorty's Shrimp - Core Styles
=============================================== 
*/

:root {
  /* Color Palette */
  --bg-dark: #070b10;
  --bg-darker: #040609;
  --bg-panel: #0f1620;
  --primary-orange: #ff541c;
  --primary-orange-hover: #e04513;
  --text-white: #ffffff;
  --text-gray: #aab2bd;
  --text-dark: #1e242d;
  --border-color: #2a3544;

  /* Typography */
  --font-heading: "Bebas Neue", sans-serif;
  --font-cursive: "Behavioline Regular", "Behavioline", "Pacifico", cursive;
  --font-body: "Inter", sans-serif;

  /* Layout */
  --container-width: 1400px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* ================== Typography ================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: 1px;
}

.section-subtitle {
  font-family: var(--font-cursive);
  color: var(--primary-orange);

  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.section-title {
  font-size: 5.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ================== Layout & Utilities ================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================== Buttons ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--text-white);
  border: 1px solid var(--primary-orange);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  border-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 84, 28, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

/* ================== Header ================== */
.header {
  background-color: rgb(7 11 16 / 0%);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  width: 100%;
  max-width: none;
  min-height: 78px;
  padding: 0 clamp(1.5rem, 4vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: auto;
  width: 160px;
  margin-bottom: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-family: var(--font-body);
  color: var(--primary-orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-subtitle hr {
  flex: 1;
  border: none;
  height: 1px;
  background-color: var(--primary-orange);
}

.nav-list {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-orange);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-orange);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  padding: 1rem 0;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  color: var(--text-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.header-price-btn {
  padding: 0.68rem 1.35rem;
  border-radius: 10px;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* ================== Hero Section ================== */
.hero {
  position: relative;
  padding: 7rem 0 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  display: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-wave {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: screen;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-graphic {
  flex: 1;
  position: relative;
  left: clamp(-4rem, -4vw, -1rem);
  min-width: 0;
}

.hero-character {
  width: min(54vw, 760px);
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.speech-bubble {
  position: absolute;
  background: white;
  color: var(--text-dark);
  font-family: var(--font-heading);
  padding: 1.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.bubble-left {
  top: 10%;
  left: -10%;
}

.bubble-right {
  top: 5%;
  right: 5%;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  width: 0;
  height: 0;
  border-style: solid;
}

.bubble-left::after {
  right: 20px;
  border-width: 20px 20px 0 0;
  border-color: white transparent transparent transparent;
}

.bubble-right::after {
  left: 20px;
  border-width: 20px 0 0 20px;
  border-color: white transparent transparent transparent;
}

.hero-content {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.hero-subtitle {
  margin-bottom: 1rem;
  color: var(--primary-orange);
  font-family: var(--font-cursive);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: none;
}

.hero-title {
  font-family:
    "Alternate Gothic Std No2", "Alternate Gothic Pro No2", "Bebas Neue",
    sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.features-products-bg {
  background:
    linear-gradient(180deg, rgba(4, 6, 9, 0.76) 0%, rgba(4, 6, 9, 0.58) 42%, rgba(4, 6, 9, 0.86) 100%),
    linear-gradient(90deg, rgba(4, 6, 9, 0.78), rgba(4, 6, 9, 0.52), rgba(4, 6, 9, 0.78)),
    radial-gradient(ellipse at 4% 4%, rgba(255, 84, 28, 0.18), transparent 28rem),
    radial-gradient(ellipse at 96% 18%, rgba(19, 86, 120, 0.22), transparent 34rem),
    url("../images/bg.jpg") center center / cover fixed;
  background-repeat: no-repeat;
}

/* ================== Features Strip ================== */
.features-strip {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 2rem clamp(1.5rem, 5vw, 6rem) 0;
  background: transparent;
}

.features-container {
  max-width: 1400px;
  padding: 2.6rem 2rem;
  margin-top: -70px;
  background-color: rgb(4 6 9 / 72%);

  border: 1px solid rgba(255, 84, 28, 0.2);
  border-radius: 3px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.feature-item {
  flex: 1 1 190px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:first-child {
  padding-left: 0;
}

.feature-item:last-child {
  padding-right: 0;
  border-right: none;
}

.feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.2;
}

/* ================== Products Section ================== */
.products {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 0rem;
  background: transparent;
}

.products > .container {
  position: relative;
  z-index: 1;
}

.products-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.products-title-area {
  flex: 0 0 270px;
}

.products-carousel {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
  overflow: visible;
  padding: 1rem 0;
  scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-control {
  display: none;
  background: transparent;
  border: none;
  color: var(--primary-orange);
  font-size: 2rem;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.carousel-control:hover {
  transform: scale(1.2);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(13, 31, 44, 0) 42%, rgba(3, 5, 8, 0.96) 100%),
    linear-gradient(160deg, rgba(18, 35, 48, 0.96), rgba(6, 14, 22, 0.98));
  border: 1px solid rgba(143, 178, 203, 0.32);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  min-width: 0;
  transition: all var(--transition-normal);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 84, 28, 0.16), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.42), transparent 58%);
  opacity: 0.65;
}

.product-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 84, 28, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-image-container {
  position: relative;
  height: 180px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.product-img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
  z-index: 1;
}

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

.product-bag {
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 60px;
  z-index: 2;
}

.product-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 1.55vw, 1.8rem);
  white-space: nowrap;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 0 rgba(255, 84, 28, 0.22);
}

.product-sizes {
  position: relative;
  z-index: 1;
  font-size: 1.0rem;
  margin-bottom: 1.7rem;
  color: #c8d7e7;
}

.product-card .btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(255, 84, 28, 0.18);
}

/* ================== Home Content Sections ================== */
.welcome-band,
.pricing-advantage,
.partner-band {
  position: relative;
  padding: clamp(3rem, 6vw, 2rem) 0;
}

.pricing-header,
.welcome-stack,
.partner-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.welcome-heading,
.partner-heading {

}

.welcome-stack .section-title,
.partner-stack .section-title,
.pricing-header .section-title {
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.welcome-copy {

  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--primary-orange);
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(90deg, rgba(255, 84, 28, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(4, 6, 9, 0.4);
}

.welcome-copy p,
.pricing-header p,
.partner-stack p {
  color: #d8e8f5;
  font-size: 1.08rem;
  line-height: 1.7;
}

.welcome-copy p:last-child,
.partner-stack p {
  margin-bottom: 0;
}

.comparison-table {
  margin-top: 2rem;
  border: 1px solid rgba(157, 188, 209, 0.34);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(3, 5, 8, 0.52);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.15fr 1fr;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(157, 188, 209, 0.18);
  color: #d8e8f5;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-head {
  background: rgba(255, 84, 28, 0.12);
  color: var(--text-white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-row.highlighted {
  color: var(--text-white);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 84, 28, 0.22), transparent 24rem),
    rgba(15, 22, 32, 0.86);
  font-weight: 800;
}

.guarantee-strip {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 84, 28, 0.4);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15, 22, 32, 0.96), rgba(3, 5, 8, 0.96));
}

.guarantee-strip i {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 84, 28, 0.46);
  border-radius: 50%;
  color: var(--primary-orange);
  font-size: 1.55rem;
  background: rgba(255, 84, 28, 0.08);
}

.guarantee-strip h3 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.guarantee-strip p {
  margin-bottom: 0;
  color: #c8d7e7;
}

.partner-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.partner-points span {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.2rem;
  border: 1px solid rgba(157, 188, 209, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 84, 28, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.01)),
    rgba(9, 17, 25, 0.78);
  color: var(--text-white);
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.partner-points i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 84, 28, 0.42);
  border-radius: 50%;
  background: rgba(255, 84, 28, 0.08);
  color: var(--primary-orange);
  font-size: 1.15rem;
}

/* ================== Contact & About Section ================== */
.contact-about {
  background: transparent;
  padding: 0rem 0;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.contact-form-wrapper {
      background-color: #0f162063;
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: none;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
}

.contact-form .form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-white);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.form-note {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
  color: var(--text-gray);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.about-content {
  flex: 1;
}

.about-stats {
  display: flex;
  gap: 2rem;
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.stat-item p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-white);
  line-height: 1.2;
}

.about-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.94) 0%, rgba(4, 6, 9, 0.72) 34%, rgba(4, 6, 9, 0.4) 62%, rgba(4, 6, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 6, 9, 0.2), rgba(4, 6, 9, 0.72));
  pointer-events: none;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

/* ================== Inner Pages ================== */
.inner-page {
  background:
    radial-gradient(ellipse at 8% 10%, rgba(255, 84, 28, 0.16), transparent 26rem),
    radial-gradient(ellipse at 92% 18%, rgba(19, 86, 120, 0.22), transparent 32rem),
    linear-gradient(140deg, #070b10 0%, #09121a 42%, #071018 100%);
}

.page-hero {
  position: relative;
  min-height: 520px;
  padding: 10rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero.compact {
  min-height: 430px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.94) 0%, rgba(4, 6, 9, 0.7) 44%, rgba(4, 6, 9, 0.48) 100%),
    linear-gradient(180deg, rgba(4, 6, 9, 0.2), rgba(4, 6, 9, 0.92));
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0;
}

.page-title {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.page-hero-content p {
  max-width: 700px;
  color: var(--text-white);
  font-size: 1.18rem;
  margin-bottom: 0;
}

.content-band {
  padding: 5rem 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.split-layout p {
  font-size: 1.05rem;
  max-width: 680px;
}

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

.info-tile {
  min-height: 220px;
  padding: 1.5rem;
  border: 1px solid rgba(143, 178, 203, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(15, 22, 32, 0.76);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.info-tile i,
.contact-info-panel i {
  color: var(--primary-orange);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-tile h4,
.contact-info-panel h3 {
  font-size: 1.65rem;
  margin-bottom: 0.6rem;
}

.info-tile p {
  margin-bottom: 0;
}

.about-page {
  position: relative;
  background:
    linear-gradient(180deg, rgba(4, 6, 9, 0.66) 0%, rgba(4, 6, 9, 0.48) 42%, rgba(4, 6, 9, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 6, 9, 0.66), rgba(4, 6, 9, 0.36), rgba(4, 6, 9, 0.66)),
    url("../images/bg.jpg") center top / cover fixed;
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 12%, rgba(255, 84, 28, 0.18), transparent 26rem),
    radial-gradient(ellipse at 88% 24%, rgba(19, 86, 120, 0.24), transparent 32rem);
}

.about-page > section {
  position: relative;
  z-index: 1;
}

.about-page .container {
  max-width: 1450px;
}

.about-page-band {
  padding-top: 4rem;
}

.about-kicker {
  color: var(--primary-orange);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.about-story {
  margin-bottom: 3rem;
}

.about-story .section-title {
  max-width: 920px;
  margin-bottom: 1.5rem;
}

.about-copy-block {
  max-width: 100%;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary-orange);
}

.about-copy-block h3,
.about-section-header h2,
.about-card h3,
.about-detail-card span {
  color: var(--text-white);
}

.about-copy-block h3 {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: none;
}

.about-copy-block p {
  color: #d8e8f5;
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 1240px;
}

.about-copy-block p:last-child {
  margin-bottom: 0;
}

.about-section {
  margin-bottom: 3.5rem;
}

.about-section-header {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 84, 28, 0.34);
}

.about-section-header span {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 84, 28, 0.46);
  border-radius: 999px;
  color: var(--primary-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section-header h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.about-card,
.about-detail-card {
  border: 1px solid rgba(157, 188, 209, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(14, 34, 49, 0.94), rgba(4, 8, 13, 0.96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.about-card {
  position: relative;
  min-height: 285px;
  padding: 1.55rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 38%),
    radial-gradient(circle at 100% 0%, rgba(255, 84, 28, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(16, 18, 22, 0.84), rgba(2, 4, 7, 0.92));
  backdrop-filter: blur(14px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 84, 28, 0.72), rgba(255, 255, 255, 0.14), rgba(255, 84, 28, 0.08)) top / 100% 2px no-repeat,
    radial-gradient(circle at 100% 0%, rgba(255, 84, 28, 0.1), transparent 34%);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 84, 28, 0.55);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 84, 28, 0.16),
    0 0 34px rgba(255, 84, 28, 0.08);
}

.about-card i {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 1.65rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(255, 84, 28, 0.42);
  border-radius: 50%;
  background: rgba(255, 84, 28, 0.08);
  box-shadow: 0 12px 26px rgba(255, 84, 28, 0.08);
}

.about-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.55rem, 1.6vw, 1.9rem);
  margin-bottom: 0.75rem;
  line-height: 0.95;
}

.about-card p,
.about-detail-card p {
  position: relative;
  z-index: 1;
  color: #d8e8f5;
  margin-bottom: 0;
}

.about-card p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.promise-vision-section,
.process-section {
  margin-bottom: 3.5rem;
}

.promise-vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  padding: 2rem 0 0;
}

.promise-vision-grid article {
  padding-left: 1.4rem;
  border-left: 3px solid var(--primary-orange);
}

.promise-vision-grid h3 {
  font-size: 2.35rem;
  margin-bottom: 0.7rem;
}

.promise-vision-grid p {
  max-width: 760px;
  color: #d8e8f5;
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.benefit-list {
  padding-left: 0;
  margin-bottom: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.7rem;
  color: #d8e8f5;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-orange);
}

.promise-pillars,
.cert-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.promise-pillars {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.cert-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.promise-pillars span,
.cert-grid span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid rgba(255, 84, 28, 0.4);
  border-radius: 8px;
  background: rgba(255, 84, 28, 0.08);
  color: var(--text-white);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 2.25rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 4.4rem;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 84, 28, 0.15), rgba(255, 84, 28, 0.85), rgba(255, 84, 28, 0.15));
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 155px;
  padding: 1rem 0.75rem;
  text-align: center;
}

.process-step span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 2px solid rgba(255, 84, 28, 0.82);
  border-radius: 50%;
  background: #070b10;
  color: var(--primary-orange);
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(255, 84, 28, 0.08);
}

.process-step p {
  color: var(--text-white);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 84, 28, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 84, 28, 0.24), transparent 30rem),
    linear-gradient(135deg, rgba(15, 22, 32, 0.98), rgba(3, 5, 8, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.about-cta span {
  display: block;
  color: var(--primary-orange);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.about-cta h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  margin-bottom: 0.75rem;
}

.about-cta p {
  max-width: 850px;
  color: #d8e8f5;
  margin-bottom: 0;
}

.about-cta .btn {
  flex: 0 0 auto;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-detail-card {
  min-height: 100%;
}

.products-page {
  position: relative;
  background:
    linear-gradient(180deg, rgba(4, 6, 9, 0.66) 0%, rgba(4, 6, 9, 0.48) 42%, rgba(4, 6, 9, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 6, 9, 0.66), rgba(4, 6, 9, 0.36), rgba(4, 6, 9, 0.66)),
    url("../images/bg.jpg") center top / cover fixed;
}

.products-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 12%, rgba(255, 84, 28, 0.18), transparent 26rem),
    radial-gradient(ellipse at 88% 24%, rgba(19, 86, 120, 0.24), transparent 32rem);
}

.products-page > section {
  position: relative;
  z-index: 1;
}

.products-page .container {
  max-width: 1450px;
}

.product-breadcrumb-wrap {
  padding: 0;
}

.product-breadcrumb-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url("../images/bg.jpg") center center / cover no-repeat;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.product-breadcrumb-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.96) 0%, rgba(4, 6, 9, 0.88) 52%, rgba(4, 6, 9, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 6, 9, 0.74) 0%, rgba(4, 6, 9, 0.62) 42%, rgba(4, 6, 9, 0.92) 100%);
  pointer-events: none;
}

.product-breadcrumb-content {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #d8e8f5;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb-nav a {
  color: var(--primary-orange);
}

.breadcrumb-nav a:hover {
  color: var(--text-white);
}

.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.72);
}

.product-breadcrumb-banner .page-title {
  margin-bottom: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.product-catalog-band {
  padding-top: 3rem;
}

.product-catalog-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.product-catalog-intro .section-title {
  margin-bottom: 0;
}

.product-catalog-intro p {
  max-width: 520px;
  margin-bottom: 0.75rem;
  color: #c8d7e7;
  font-size: 1.02rem;
}

.product-section {
  margin-bottom: 3.5rem;
}

.product-section:last-child {
  margin-bottom: 0;
}

.product-section-header {
  display: block;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 84, 28, 0.34);
}

.product-section-header span {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 84, 28, 0.46);
  border-radius: 999px;
  color: var(--primary-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-section-header h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
}

.product-section-header p {
  max-width: 760px;
  margin-bottom: 0;
  color: #c8d7e7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-section:last-child .catalog-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-section:last-child .catalog-card-body {
  padding: 0.9rem;
}

.product-section:last-child .catalog-card-body h3 {
  font-size: clamp(1.55rem, 1.75vw, 2rem);
      padding-top: 10px;
}

.catalog-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(157, 188, 209, 0.38);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 20%),
    linear-gradient(160deg, rgba(14, 34, 49, 0.98), rgba(4, 8, 13, 0.98));
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 84, 28, 0.16), transparent 34%),
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.2));
}

.catalog-card:hover {
  border-color: rgba(255, 84, 28, 0.82);
  transform: translateY(-4px);
  transition: all var(--transition-normal);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 84, 28, 0.18);
}

.catalog-image-slot {
  position: relative;
  z-index: 1;
  min-height: 245px;
  border-bottom: 1px solid rgba(157, 188, 209, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 10px, transparent 10px 20px);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.catalog-image-slot img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.catalog-image-placeholder {
  min-height: 245px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.catalog-image-placeholder i {
  color: var(--primary-orange);
  font-size: 1.75rem;
}

.catalog-image-placeholder span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 1rem;
}

.catalog-card-body h3 {
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  color: var(--text-white);
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
  line-height: 0.9;
  margin-bottom: 0.75rem;
}

.catalog-note {
  min-height: 48px;
  color: #d5e1ec;
  font-size: 0.88rem;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.catalog-card-body .catalog-meta:last-child {
  padding-bottom: 0;
}

.catalog-meta {
  padding: 0.85rem 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}

.catalog-meta h4 {
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.catalog-meta p {
  color: var(--text-white);
  font-size: 0.91rem;
  line-height: 1.38;
  margin-bottom: 0;
}

.catalog-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(157, 188, 209, 0.2);
  background: rgba(0, 0, 0, 0.24);
}

.catalog-card-footer span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #d8e8f5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.catalog-card-footer i {
  color: var(--primary-orange);
}

.catalog-card-footer a {
  color: var(--primary-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: start;
  gap: 1.5rem;
}

.contact-page {
  position: relative;
  background:
    linear-gradient(180deg, rgba(4, 6, 9, 0.66) 0%, rgba(4, 6, 9, 0.48) 42%, rgba(4, 6, 9, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 6, 9, 0.66), rgba(4, 6, 9, 0.36), rgba(4, 6, 9, 0.66)),
    url("../images/bg.jpg") center top / cover fixed;
}

.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 12%, rgba(255, 84, 28, 0.18), transparent 26rem),
    radial-gradient(ellipse at 88% 24%, rgba(19, 86, 120, 0.24), transparent 32rem);
}

.contact-page > section {
  position: relative;
  z-index: 1;
}

.contact-page .container {
  max-width: 1450px;
}

.contact-page-band {
  padding-top: 4rem;
}

.contact-page .contact-form-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 38%),
    radial-gradient(circle at 100% 0%, rgba(255, 84, 28, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(16, 18, 22, 0.86), rgba(2, 4, 7, 0.94));
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-page .contact-form-wrapper .section-title {
  font-size: clamp(3.3rem, 6vw, 5.5rem);
}

.contact-info-panel {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 38%),
    radial-gradient(circle at 100% 0%, rgba(255, 84, 28, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(16, 18, 22, 0.86), rgba(2, 4, 7, 0.94));
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-info-panel ul {
  padding-left: 0;
  margin-bottom: 0;
}

.contact-info-panel li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.45rem;
}

.contact-info-panel li:last-child {
  margin-bottom: 0;
}

.contact-info-panel i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 84, 28, 0.42);
  border-radius: 50%;
  background: rgba(255, 84, 28, 0.08);
  font-size: 1.1rem;
  margin-bottom: 0;
  margin-top: 0;
}

.contact-info-panel span {
  display: block;
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.qr-panel {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid rgba(157, 188, 209, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.qr-panel img {
  width: 118px;
  height: 118px;
  border-radius: 6px;
  background: #ffffff;
  padding: 0.35rem;
}

.qr-panel strong {
  display: block;
  color: #d8e8f5;
  line-height: 1.35;
}

/* ================== Footer ================== */
.footer {
  background:
    radial-gradient(ellipse at 14% 18%, rgba(255, 84, 28, 0.16), transparent 26rem),
    radial-gradient(ellipse at 82% 12%, rgba(19, 86, 120, 0.18), transparent 30rem),
    linear-gradient(180deg, #05080c 0%, #020304 100%);
  padding-top: 2.5rem;
  border-top: none;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  opacity: 0.18;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(150px, 190px) minmax(190px, 230px) minmax(270px, 320px);
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2.25rem, 5vw, 5.5rem);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

.footer-logo .logo {
  display: inline-flex;
}

.footer-logo-img {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.footer h4 {
  font-size: 26px;
  margin-bottom: 1.1rem;
  color: var(--text-white);
}

.footer-links,
.footer-contact {
  min-width: 0;
  text-align: left;
}

.footer-links ul,
.footer-contact ul {
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links ul li {
  margin-bottom: 0.65rem;
}

.footer-links ul li a {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.footer-links ul li a:hover {
  color: var(--primary-orange);
}

.footer-contact ul li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  color: var(--text-gray);
  font-size: 1.0rem;
}

.footer-contact ul li i {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-top: 0.15rem;
  text-align: center;
}

.footer-contact span {
  display: block;
  color: var(--text-white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.bottom-container p {
  margin-bottom: 0;
}

.footer-bottom-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-gray);
}

.footer-bottom-social span {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-bottom-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(170, 178, 189, 0.32);
  border-radius: 50%;
  color: var(--text-white);
  transition: all var(--transition-fast);
}

.footer-bottom-social a:hover {
  color: var(--text-white);
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

/* ================== Responsive ================== */
@media (max-width: 1366px) {
  .header-container {
    min-height: 72px;
    padding: 0 clamp(1.25rem, 3vw, 3rem);
  }

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

  .nav-list {
    gap: 2rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-character {
    width: min(50vw, 660px);
    max-height: calc(100vh - 7rem);
  }

  .hero-title {
    font-size: clamp(3rem, 4.3vw, 4.7rem);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .products-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .products-title-area {
    flex: none;
    margin-bottom: 2rem;
  }

  .products-carousel {
    width: 100%;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 3rem;
  }

  .split-layout,
  .contact-page-grid,
  .welcome-stack,
  .pricing-header,
  .partner-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-list-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .catalog-grid,
  .product-section:last-child .catalog-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .about-card-grid,
  .about-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-vision-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .promise-pillars,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .guarantee-strip {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .guarantee-strip .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .process-timeline::before {
    display: none;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-container {
    justify-content: center;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-subtitle {
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(3.15rem, 14vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
  }

  .section-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .header-container {
    min-height: 68px;
    padding: 0 1.1rem;
  }

  .logo-img {
    width: 128px;
  }

  .hero {
    padding-top: 8.25rem;
    padding-bottom: 2.5rem;
    min-height: auto;
  }

  .hero::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.56) 0%, rgba(4, 6, 9, 0.18) 32%, rgba(4, 6, 9, 0.62) 100%),
      radial-gradient(ellipse at 50% 24%, rgba(4, 6, 9, 0.48), transparent 42%);
  }

  .hero-container {
    gap: 1.5rem;
  }

  .hero-graphic {
    left: 0;
  }

  .hero-character {
    width: min(82vw, 360px);
    max-height: none;
  }

  .hero-title {
    font-size: clamp(3rem, 13vw, 3.5rem);
    white-space: normal;
  }

  .page-hero,
  .page-hero.compact {
    min-height: 380px;
    padding: 8rem 0 3.5rem;
  }

  .page-title {
    font-size: clamp(3.25rem, 14vw, 4.4rem);
    line-height: 0.95;
  }

  .page-hero-content p {
    font-size: 1rem;
  }

  .products-page {
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.72) 0%, rgba(4, 6, 9, 0.54) 42%, rgba(4, 6, 9, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 6, 9, 0.72), rgba(4, 6, 9, 0.46), rgba(4, 6, 9, 0.72)),
      url("../images/bg.jpg") center top / cover scroll;
  }

  .about-page {
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.72) 0%, rgba(4, 6, 9, 0.54) 42%, rgba(4, 6, 9, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 6, 9, 0.72), rgba(4, 6, 9, 0.46), rgba(4, 6, 9, 0.72)),
      url("../images/bg.jpg") center top / cover scroll;
  }

  .contact-page {
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.72) 0%, rgba(4, 6, 9, 0.54) 42%, rgba(4, 6, 9, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 6, 9, 0.72), rgba(4, 6, 9, 0.46), rgba(4, 6, 9, 0.72)),
      url("../images/bg.jpg") center top / cover scroll;
  }

  .product-breadcrumb-wrap {
    padding-top: 0;
  }

  .product-breadcrumb-banner {
    min-height: 300px;
  }

  .product-breadcrumb-banner::before {
    background:
      linear-gradient(90deg, rgba(4, 6, 9, 0.96) 0%, rgba(4, 6, 9, 0.88) 58%, rgba(4, 6, 9, 0.78) 100%),
      linear-gradient(180deg, rgba(4, 6, 9, 0.76) 0%, rgba(4, 6, 9, 0.64) 42%, rgba(4, 6, 9, 0.92) 100%);
  }

  .product-breadcrumb-content {
    padding: 6.5rem 0 2rem;
  }

  .content-band {
    padding: 3.25rem 0;
  }

  .product-catalog-intro {
    display: block;
    margin-bottom: 1.6rem;
  }

  .product-catalog-intro p {
    margin-top: 0.85rem;
  }

  .product-section {
    margin-bottom: 2.5rem;
  }

  .about-page-band {
    padding-top: 3.25rem;
  }

  .about-copy-block,
  .about-detail-card {
    padding: 1.25rem;
  }

  .about-card-grid,
  .about-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .promise-vision-grid,
  .process-timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .promise-pillars,
  .cert-grid,
  .partner-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-timeline {
    display: block;
    padding-top: 1.25rem;
    padding-left: 0.25rem;
  }

  .process-timeline::before {
    display: block;
    top: 1.25rem;
    bottom: 1.25rem;
    left: 2rem;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 84, 28, 0.2), rgba(255, 84, 28, 0.9), rgba(255, 84, 28, 0.2));
  }

  .process-step {
    min-height: 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 0.9rem 0;
    margin-bottom: 0.65rem;
  }

  .process-step span {
    margin-bottom: 0;
    background: #070b10;
  }

  .about-cta {
    padding: 1.75rem 1.25rem;
  }

  .welcome-copy {
    padding-left: 1rem;
  }

  .comparison-table {
    display: grid;
    gap: 0.9rem;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(157, 188, 209, 0.28);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
      rgba(4, 6, 9, 0.68);
  }

  .comparison-head {
    display: none;
  }

  .comparison-row span {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    margin-bottom: 0;
    color: #d8e8f5;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .comparison-row span::before {
    color: var(--primary-orange);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .comparison-row span:nth-child(1)::before {
    content: "Option";
  }

  .comparison-row span:nth-child(2)::before {
    content: "Quality";
  }

  .comparison-row span:nth-child(3)::before {
    content: "Traceability";
  }

  .comparison-row span:nth-child(4)::before {
    content: "Price";
  }

  .comparison-row span:first-child {
    color: var(--text-white);
    font-weight: 900;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .guarantee-strip {
    display: block;
    padding: 1.25rem;
  }

  .guarantee-strip i {
    margin-bottom: 1rem;
  }

  .guarantee-strip .btn {
    margin-top: 1rem;
  }

  .about-card {
    min-height: 0;
  }

  .product-section-header {
    padding: 1rem 0;
  }

  .catalog-grid,
  .product-section:last-child .catalog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-card {
    min-height: 0;
  }

  .catalog-image-slot {
    min-height: 210px;
  }

  .catalog-image-slot img,
  .catalog-image-placeholder {
    height: 210px;
    min-height: 210px;
  }

  .catalog-card-body h3 {
    min-height: 0;
    font-size: 2rem;
  }

  .catalog-note {
    min-height: 0;
  }

  .split-layout {
    gap: 2rem;
  }

  .feature-grid,
  .product-list-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .info-tile {
    min-height: 0;
    padding: 1.25rem;
  }

  .contact-page-grid {
    gap: 1rem;
  }

  .contact-info-panel {
    padding: 1.5rem 1.25rem;
  }

  .qr-panel {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .qr-panel img {
    width: 96px;
    height: 96px;
  }

  .features-container {
    margin-top: -36px;
    padding: 1.75rem 1.25rem;
    justify-content: center;
    gap: 1.25rem;
  }

  .features-products-bg {
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.8) 0%, rgba(4, 6, 9, 0.64) 42%, rgba(4, 6, 9, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 6, 9, 0.8), rgba(4, 6, 9, 0.58), rgba(4, 6, 9, 0.8)),
      radial-gradient(ellipse at 4% 4%, rgba(255, 84, 28, 0.18), transparent 28rem),
      radial-gradient(ellipse at 96% 18%, rgba(19, 86, 120, 0.22), transparent 34rem),
      url("../images/bg.jpg") center center / cover scroll;
    background-repeat: no-repeat;
  }

  .feature-item,
  .feature-item:first-child,
  .feature-item:last-child {
    flex: 1 1 220px;
    padding: 0;
    border-right: none;
  }

  .products-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .products {
    padding-top: 2.25rem;
  }

  .products-header {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .products-title-area {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .product-card {
    padding: 0.85rem;
  }

  .contact-container {
    margin-bottom: 3.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.25rem;
    border-radius: 6px;
  }

  .contact-desc,
  .about-desc {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .contact-form-wrapper .section-subtitle {
    margin-bottom: 0.55rem;
  }

  .contact-form .form-group {
    margin-bottom: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 52px;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .about-container {
    gap: 2rem;
    min-height: auto;
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .about-content {
    max-width: 420px;
  }

  .about-content .section-subtitle {
    margin-bottom: 0.85rem;
  }

  .about-content .section-title {
    margin-bottom: 1.35rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .about-image {
    display: block;
    height: 100%;
  }

  .about-image::after {
    background:
      linear-gradient(180deg, rgba(4, 6, 9, 0.86) 0%, rgba(4, 6, 9, 0.66) 42%, rgba(4, 6, 9, 0.9) 100%),
      radial-gradient(ellipse at 50% 18%, rgba(7, 33, 46, 0.52), transparent 62%);
  }

  .about-bg-img {
    opacity: 0.42;
    object-position: center;
  }

  .footer-container {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo,
  .footer-logo .logo {
    align-items: center;
    justify-content: center;
  }

  .footer-logo-img {
    width: min(240px, 78vw);
  }

  .footer h4 {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
  }

  .footer-links,
  .footer-contact {
    text-align: center;
  }

  .footer-links ul li {
    margin-bottom: 0.45rem;
  }

  .footer-links ul li a,
  .footer-contact ul li {
    font-size: 1rem;
  }

  .footer-contact ul li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
  }

  .bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.9rem;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 420px) {
  .section-title {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
    padding-top: 6px;
  }

  .contact-form-wrapper {
    padding: 1.65rem 1rem;
  }

  .btn {
    min-height: 44px;
    padding: 0.7rem 1.25rem;
    font-size: 0.82rem;
  }

  .footer {
    padding-top: 2rem;
  }
}
