:root {
  --background: #f7f8f5;
  --surface: #ffffff;
  --surface-soft: #f0f4ef;
  --text: #18201b;
  --muted: #667068;
  --line: #dfe5df;
  --green: #176b4d;
  --green-dark: #0e4e38;
  --green-light: #dff2e9;
  --gold: #c7963e;
  --gold-light: #fff4d8;
  --blue: #635bff;
  --paypal: #003087;
  --danger: #a33a2b;
  --shadow-small: 0 8px 24px rgba(24, 32, 27, 0.07);
  --shadow-large: 0 20px 60px rgba(24, 32, 27, 0.12);
  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
}

img {
  display: block;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: #ffffff;
  color: #000000;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-small);
}

.skip-link:focus {
  top: 16px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.announcement-bar {
  background: var(--green-dark);
  color: #ffffff;
  font-size: 13px;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.announcement-inner a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-main {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.company-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  text-decoration: none;
}

.company-logo {
  width: 74px;
  height: 62px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px;
}

.company-name {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.company-name strong {
  font-size: 22px;
  line-height: 1.2;
  color: var(--green-dark);
}

.company-name span {
  color: var(--muted);
  font-size: 13px;
}

.brand-logo-link {
  display: block;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  height: 64px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 10px;
  transition: 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-navigation {
  border-top: 1px solid var(--line);
}

.nav-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 9px 11px;
  border-radius: 9px;
  color: #3b443e;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--green-light);
  color: var(--green-dark);
}

.login-link {
  margin-left: auto;
  background: var(--green);
  color: #ffffff;
}

.login-link:hover {
  background: var(--green-dark);
  color: #ffffff;
}

.support-count {
  min-width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #ffffff;
  border-radius: 999px;
  padding: 0 7px;
  font-size: 12px;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.section-header h2,
.about-section h2,
.technology-content h2,
.support-content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-heading > p:last-child,
.section-header > div > p:last-child {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(23, 107, 77, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  background: #ffffff;
  color: var(--green-dark);
  border-color: var(--line);
}

.button-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}

.button-light {
  background: #ffffff;
  color: var(--green-dark);
}

.button-ghost-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(199, 150, 62, 0.19), transparent 25%),
    radial-gradient(circle at 5% 80%, rgba(23, 107, 77, 0.13), transparent 30%),
    linear-gradient(135deg, #fbfcf8, #edf5ef);
  padding: 80px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(43px, 6.7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero-content h1 span {
  display: block;
  color: var(--green);
}

.hero-description {
  max-width: 700px;
  margin: 25px 0 0;
  color: #4e5b52;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(24, 32, 27, 0.12);
}

.highlight-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  max-width: 180px;
}

.highlight-item strong {
  color: var(--green-dark);
  font-size: 31px;
  line-height: 1;
}

.highlight-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-image-card {
  position: absolute;
  inset: 30px 30px 30px 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(24, 32, 27, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-large);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  background: rgba(14, 78, 56, 0.91);
  color: #ffffff;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.hero-card-label span {
  color: #d8efe5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card-label strong {
  margin-top: 3px;
  font-size: 27px;
}

.hero-card-label small {
  color: rgba(255, 255, 255, 0.8);
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  max-width: 230px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  box-shadow: var(--shadow-small);
}

.hero-card-one {
  top: 0;
  right: 0;
}

.hero-card-two {
  left: 0;
  bottom: 0;
}

.floating-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 12px;
}

.hero-floating-card strong,
.hero-floating-card small {
  display: block;
}

.hero-floating-card strong {
  font-size: 13px;
}

.hero-floating-card small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}


/* =========================================================
   FEATURE STRIP
   ========================================================= */

.feature-strip {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 30px;
}

.feature-item + .feature-item {
  border-left: 1px solid var(--line);
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 14px;
  color: var(--green-dark);
  font-size: 22px;
}

.feature-item h2 {
  margin: 0 0 5px;
  font-size: 17px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-copy {
  color: #465149;
  font-size: 17px;
}

.about-copy p {
  margin: 0 0 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}


/* =========================================================
   PRODUCT CATALOG
   ========================================================= */

.products-section {
  background: var(--background);
}

.section-header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  gap: 45px;
  align-items: end;
}

.catalog-tools {
  width: 100%;
}

.search-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-small);
}

.search-box > span {
  padding-left: 15px;
  color: var(--muted);
  font-size: 22px;
}

.search-box input {
  width: 100%;
  min-height: 51px;
  padding: 11px 43px 11px 10px;
  border: 0;
  outline: 0;
  background: transparent;
}

.clear-search {
  position: absolute;
  right: 10px;
  width: 31px;
  height: 31px;
  border: 0;
  background: var(--surface-soft);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.filter-button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: #4d5951;
  border-radius: 999px;
  padding: 9px 15px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.catalog-status,
.no-results {
  margin-top: 35px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  text-align: center;
}

.catalog-error {
  color: var(--danger);
  border-color: #e7b1aa;
  background: #fff5f3;
}

.product-catalog {
  margin-top: 45px;
}

.product-group {
  scroll-margin-top: 170px;
  padding: 38px 0 62px;
}

.product-group + .product-group {
  border-top: 1px solid var(--line);
}

.product-group-header {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: start;
  margin-bottom: 28px;
}

.product-group-number {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-group-header h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.13;
}

.product-group-description {
  max-width: 790px;
  margin: 12px 0 0;
  color: var(--muted);
}

.product-count {
  flex: 0 0 auto;
  padding: 7px 12px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.product-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.product-media {
  min-width: 0;
  padding: 15px;
  background: #f1f4f1;
}

.main-product-image-wrapper {
  height: 300px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 17px;
}

.main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.image-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.thumbnail-button {
  width: 65px;
  height: 58px;
  flex: 0 0 65px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #ffffff;
  border-radius: 9px;
  padding: 3px;
  cursor: pointer;
}

.thumbnail-button.active {
  border-color: var(--green);
}

.thumbnail-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.video-gallery {
  margin-top: 15px;
}

.media-heading {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.video-wrapper {
  margin-top: 9px;
}

.video-wrapper video {
  width: 100%;
  max-height: 245px;
  display: block;
  background: #000000;
  border-radius: 14px;
}

.media-placeholder {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px;
  background: #f2f3f2;
  color: var(--muted);
  border: 1px dashed #bdc6bf;
  border-radius: 14px;
  text-align: center;
}

.media-placeholder small {
  overflow-wrap: anywhere;
}

.product-card-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.product-category {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-content h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.23;
}

.product-price {
  margin: 13px 0 12px;
  color: var(--green-dark);
  font-size: 27px;
  font-weight: 800;
}

.product-specifications {
  margin: 0 0 21px;
  padding-left: 20px;
  color: #4c5850;
  font-size: 14px;
}

.product-specifications li {
  margin: 5px 0;
}

.payment-section {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.payment-title {
  margin: 0 0 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.payment-button {
  min-height: 44px;
  flex: 1 1 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: 0.2s ease;
}

.payment-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.stripe-button {
  background: var(--blue);
}

.paypal-button {
  background: var(--paypal);
}

.unavailable-button {
  background: #9ca49f;
  cursor: not-allowed;
}

.test-payment-notice {
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.4;
}

.product-question-link {
  margin-top: 15px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.group-shipping {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  background: var(--gold-light);
  border: 1px solid #ead8aa;
  border-radius: var(--radius-medium);
}

.shipping-icon {
  font-size: 23px;
}

.group-shipping strong {
  display: block;
  color: #674e1c;
}

.group-shipping p {
  margin: 3px 0 0;
  color: #725c2d;
  font-size: 13px;
}


/* =========================================================
   TECHNOLOGY
   ========================================================= */

.technology-section {
  background: #ffffff;
}

.technology-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.technology-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--surface-soft);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.technology-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  padding: 20px;
}

.image-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 13px;
  background: rgba(14, 78, 56, 0.9);
  color: #ffffff;
  border-radius: 10px;
  font-size: 12px;
}

.technology-content p {
  color: var(--muted);
}

.technology-points {
  margin-top: 28px;
}

.technology-points > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.technology-points span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.technology-points p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}


/* =========================================================
   FUTURE PRODUCTS
   ========================================================= */

.future-section {
  background: #eef4ef;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.future-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-small);
}

.future-card-image {
  position: relative;
  min-height: 330px;
  background: #f3f5f3;
}

.future-card-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
  padding: 15px;
}

.future-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  background: var(--gold);
  color: #ffffff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.future-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.future-card-content h3 {
  margin: 0;
  font-size: 26px;
}

.future-card-content p {
  color: var(--muted);
}

.future-card-content .button {
  align-self: flex-start;
  margin-top: 8px;
}


/* =========================================================
   SUPPORT
   ========================================================= */

.support-section {
  background: #ffffff;
}

.support-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 45px;
  padding: 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(199, 150, 62, 0.25), transparent 25%),
    var(--green-dark);
  color: #ffffff;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

.support-content .eyebrow {
  color: #bfe5d3;
}

.support-content h2 {
  color: #ffffff;
}

.support-content p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.support-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}


/* =========================================================
   CUSTOMER ACTIONS
   ========================================================= */

.customer-actions-section {
  background: var(--background);
}

.action-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.action-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
}

.action-card-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.action-card h2 {
  margin: 0;
  font-size: 21px;
}

.action-card p {
  color: var(--muted);
}

.action-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}


/* =========================================================
   PAYMENT NOTICE
   ========================================================= */

.payment-notice {
  padding: 28px 0;
  background: var(--gold-light);
  border-top: 1px solid #ead8aa;
  border-bottom: 1px solid #ead8aa;
}

.payment-notice-inner {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.notice-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
}

.payment-notice h2 {
  margin: 0;
  font-size: 18px;
}

.payment-notice p {
  margin: 4px 0 0;
  color: #6c562b;
  font-size: 13px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #111c16;
  color: #ffffff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 45px;
  padding-bottom: 50px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logos img {
  width: 100px;
  height: 65px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 11px;
  padding: 5px;
}

.footer-brand p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 7px;
  font-size: 15px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}


/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1120px) {
  .hero-grid {
    gap: 35px;
  }

  .product-items-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  }

  .future-card {
    grid-template-columns: 1fr;
  }

  .future-card-image {
    min-height: 260px;
  }

  .future-card-image img {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .announcement-inner {
    justify-content: center;
    text-align: center;
  }

  .announcement-inner span {
    display: none;
  }

  .header-main {
    grid-template-columns: 1fr auto auto;
    min-height: 80px;
  }

  .brand-logo {
    width: 115px;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    display: none;
  }

  .main-navigation.open {
    display: block;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 12px;
    padding-bottom: 15px;
    overflow: visible;
  }

  .nav-link {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .login-link {
    margin-left: 0;
  }

  .hero-grid,
  .about-grid,
  .technology-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 510px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item + .feature-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-header {
    grid-template-columns: 1fr;
  }

  .future-grid {
    grid-template-columns: 1fr;
  }

  .support-panel {
    grid-template-columns: 1fr;
  }

  .support-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .action-card-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 60px 0;
  }

  .company-logo {
    width: 55px;
    height: 51px;
  }

  .company-name strong {
    font-size: 17px;
  }

  .company-name span {
    display: none;
  }

  .brand-logo {
    width: 85px;
    height: 52px;
  }

  .hero-section {
    padding: 55px 0 65px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    gap: 18px;
  }

  .highlight-item {
    max-width: 145px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-card {
    inset: 20px 6px 20px;
  }

  .hero-floating-card {
    display: none;
  }

  .product-group-header {
    flex-direction: column;
    gap: 13px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .main-product-image-wrapper {
    height: 310px;
  }

  .future-card {
    grid-template-columns: 1fr;
  }

  .support-panel {
    padding: 31px 22px;
  }

  .support-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .header-main {
    gap: 8px;
  }

  .brand-logo-link {
    display: none;
  }

  .header-main {
    grid-template-columns: 1fr auto;
  }

  .nav-inner {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 37px;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .highlight-item {
    max-width: none;
  }

  .hero-visual {
    min-height: 365px;
  }

  .main-product-image-wrapper {
    height: 265px;
  }

  .product-card-content {
    padding: 21px;
  }

  .payment-buttons {
    flex-direction: column;
  }

  .payment-button {
    flex: none;
    width: 100%;
  }
}
