/* ======================================== */
/* GLOBAL / BASE STYLES */
/* ======================================== */
:root {
  --color-primary: #003B67;
  --color-accent: #015A9C;
  --color-accent-red: #9E2443;
  --color-dark: #121820;
  --color-text: #222222;
  --color-text-soft: #4a5560;
  --color-white: #ffffff;
  --color-off-white: #f3f6f9;
  --color-steel: #e6edf3;
  --color-border: #d4dde6;
  --font-heading: "Barlow", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --container: 1300px;
  --header-height-desktop: 120px;
  --header-height-mobile: 74px;
  --shadow-soft: 0 10px 30px rgba(0, 59, 103, 0.08);
  --shadow-header: 0 6px 20px rgba(0, 30, 55, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: var(--color-text);
  background:
    linear-gradient(180deg, rgba(243, 246, 249, 0.9) 0%, rgba(255, 255, 255, 1) 220px),
    var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--color-accent-red);
}

p {
  margin: 0 0 1em;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55em;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--color-white);
}

h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-primary);
}

h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--color-primary);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  width: 100%;
  padding: 80px 0;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-primary);
}

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

.section-lead {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: var(--color-text-soft);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.btn--accent {
  background: var(--color-accent-red);
  border-color: var(--color-accent-red);
  color: var(--color-white);
}

.btn--accent:hover {
  background: #7f1c36;
  border-color: #7f1c36;
  color: var(--color-white);
}

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

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--outline-blue {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--outline-blue:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================== */
/* HEADER SECTION */
/* ======================================== */
.top-bar {
  width: 100%;
  height: 40px;
  background: linear-gradient(90deg, #0d1c2a 0%, #15293b 50%, #0d1c2a 100%);
  color: var(--color-white);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: flex-end;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.top-bar__item:hover {
  color: #9fd0f5;
}

.top-bar__fax {
  color: rgba(255, 255, 255, 0.92);
}

.top-bar__icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.top-bar__address {
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height-desktop);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-header);
  background: #ffffff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 80px;
  width: auto;
  max-height: 80px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav__link {
  position: relative;
  display: inline-block;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: uppercase;
}

.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
  color: var(--color-accent);
}

.primary-nav__link:hover::after,
.primary-nav__link.is-active::after {
  transform: scaleX(1);
}

.primary-nav__link--cta {
  margin-left: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(1, 90, 156, 0.45);
  border-radius: 2px;
  background: rgba(1, 90, 156, 0.08);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}

.primary-nav__link--cta::after {
  display: none;
}

.primary-nav__link--cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ======================================== */
/* HERO SECTION */
/* ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 30, 55, 0.78) 0%, rgba(0, 59, 103, 0.6) 44%, rgba(1, 90, 156, 0.26) 70%, rgba(0, 0, 0, 0.06) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 18px;
  border: 1px solid rgba(159, 208, 245, 0.45);
  border-radius: 999px;
  background: rgba(0, 30, 55, 0.45);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #9fd0f5;
  backdrop-filter: blur(4px);
}

.hero__title {
  margin: 0 0 16px;
  font-size: 68px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.06;
  color: var(--color-white);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
  margin: 0 0 32px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero__gold {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  color: #e6b422;
  -webkit-text-stroke: 1.5px #2a1a00;
  paint-order: stroke fill;
  text-shadow: 0 1px 0 rgba(255, 230, 140, 0.45), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__cta {
  min-width: 240px;
}

.separator-bar {
  width: 100%;
  height: 20px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 35%, var(--color-accent-red) 68%, #9E2443 100%);
}

/* ======================================== */
/* PAGE TITLE BAR (SUBPAGES) */
/* ======================================== */
.page-title-bar {
  position: relative;
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(125deg, #002B4A 0%, #003B67 42%, #015A9C 100%);
}

.page-title-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.08) 0,
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
}

.page-title-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(159, 208, 245, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 40%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.page-title-bar__inner {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-title-bar__title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.page-title-bar__tagline {
  margin: 0;
  max-width: 720px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(159, 208, 245, 0.95);
}

/* ======================================== */
/* SECTION 1: COMPOUND DIE TOOLING */
/* ======================================== */
.section--intro {
  background:
    radial-gradient(circle at top right, rgba(1, 90, 156, 0.06), transparent 40%),
    var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

p.intro-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 4px 11px;
  border: 1px solid rgba(1, 90, 156, 0.35);
  border-radius: 999px;
  background: rgba(1, 90, 156, 0.12);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-accent);
}

.intro-grid__copy .section-heading {
  margin-bottom: 22px;
}

.section-heading--intro {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.18;
  color: var(--color-accent);
}

.section-heading__line2 {
  display: inline-block;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.18;
  color: var(--color-accent);
}

.intro-grid__copy p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.intro-grid__copy .btn {
  margin-top: 10px;
}

.intro-grid__media {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.intro-grid__media img {
  max-height: 560px;
  width: auto;
  margin: 0 auto;
}

.about-grid {
  align-items: start;
}

.about-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-gallery img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.intro-grid__copy a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-accent);
}

.intro-grid__copy a:hover {
  color: var(--color-accent-red);
}

/* ======================================== */
/* MASTER DIE / SPECS TABLES */
/* ======================================== */
.section--specs {
  background: var(--color-off-white);
}

.section--capacity {
  background: var(--color-white);
  padding-top: 60px;
}

.specs-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.specs-heading {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-primary);
}

.specs-heading--center {
  text-align: center;
  margin-bottom: 24px;
}

.specs-table-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.specs-table-wrap--scroll {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th,
.specs-table td {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.specs-table th {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.specs-table tbody tr:nth-child(even) {
  background: #f5f8fb;
}

.specs-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-table--parts td:first-child {
  width: 70px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  text-align: center;
}

.specs-table--capacity th,
.specs-table--capacity td {
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-text);
}

.specs-table--capacity th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--color-white);
}

.specs-options {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.options-card {
  padding: 28px 26px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-accent);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.options-card--parts {
  padding-bottom: 20px;
}

.options-card--parts .specs-table-wrap {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.options-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.options-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.45;
  color: var(--color-text-soft);
  border-bottom: 1px solid var(--color-steel);
}

.options-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.options-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
}

/* ======================================== */
/* PRODUCT PAGES (ROUND / SPECIAL INSERTS) */
/* ======================================== */
.product-page {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.product-page__copy {
  margin-bottom: 40px;
}

.product-page__copy .intro-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.product-page__copy .section-heading--intro,
.product-page__copy .section-heading__line2 {
  text-align: center;
}

.product-page__copy p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.product-page__copy p a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-accent);
}

.product-page__copy p a:hover {
  color: var(--color-accent-red);
}

.product-page__copy .btn {
  margin-top: 8px;
}

.product-page__gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.product-page__gallery img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  background: var(--color-white);
}

.page-round-inserts,
.page-round-inserts .section--intro,
.page-round-inserts #main-content {
  background: var(--color-white);
}

.page-round-inserts .section--intro {
  background: var(--color-white);
}

.page-round-inserts .round-inserts-gallery img {
  border: none;
  box-shadow: none;
  background: transparent;
}

.page-round-inserts .round-inserts-gallery img:first-child {
  max-width: 360px;
  margin: 0 auto;
}

.page-round-inserts .round-inserts-gallery__diagram {
  width: auto;
  max-width: 280px;
  max-height: 340px;
  margin: 0 auto;
}

.page-special-inserts,
.page-special-inserts .section--intro,
.page-special-inserts #main-content {
  background: var(--color-white);
}

.page-special-inserts .section--intro {
  background: var(--color-white);
}

.page-special-inserts .special-inserts-gallery img {
  border: none;
  box-shadow: none;
}

.page-special-inserts .special-inserts-gallery__diagram {
  width: auto;
  max-width: 220px;
  max-height: 380px;
  margin: 0 auto;
}

.page-applications,
.page-applications .section--intro,
.page-applications #main-content {
  background: var(--color-white);
}

.page-applications .section--intro {
  background: var(--color-white);
}

.applications-intro {
  max-width: none;
  width: 100%;
}

.applications-intro .section-heading--intro {
  margin-bottom: 22px;
}

.applications-intro p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.applications-intro a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-accent);
}

.applications-intro a:hover {
  color: var(--color-accent-red);
}

.section--apps-lists {
  background: var(--color-off-white);
  padding-top: 40px;
}

.apps-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.apps-list-card .specs-heading {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--color-primary);
}

.options-list--dense li {
  padding: 8px 0 8px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-text-soft);
}

.options-list--dense li::before {
  top: 13px;
}

/* ======================================== */
/* SECTION 2: PRODUCT CARDS */
/* ======================================== */
.section--cards {
  background:
    linear-gradient(180deg, var(--color-off-white) 0%, #eef3f7 100%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 26px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-soft);
  color: inherit;
  overflow: hidden;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.product-card:hover {
  color: inherit;
  transform: translateY(-4px);
  border-top-color: var(--color-accent-red);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card__index {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: var(--color-accent);
}

.product-card__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--color-primary);
  text-transform: uppercase;
}

.product-card__text {
  flex: 1;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: var(--color-text-soft);
}

.product-card__link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--color-accent-red);
  text-transform: uppercase;
}

.product-card:hover .product-card__link {
  color: var(--color-primary);
}

/* ======================================== */
/* SECTION 3: VIDEO */
/* ======================================== */
.section--video {
  background: var(--color-white);
}

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

.video-block__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-accent);
}

.video-block .section-heading {
  margin-bottom: 28px;
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 28px;
  aspect-ratio: 16 / 9;
  background: var(--color-dark);
  box-shadow: 0 18px 40px rgba(0, 30, 55, 0.18);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ======================================== */
/* SECTION 4: TESTIMONIALS */
/* ======================================== */
.section--testimonials {
  background:
    linear-gradient(180deg, #e8eef4 0%, #f5f8fb 100%);
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 56px;
}

.testimonial-slider__viewport {
  overflow: hidden;
}

.testimonial-slider__track {
  position: relative;
  min-height: 240px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 40px 44px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  will-change: transform, opacity;
}

.testimonial.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.testimonial.is-enter-right {
  opacity: 0;
  visibility: visible;
  transform: translateX(100%);
}

.testimonial.is-enter-left {
  opacity: 0;
  visibility: visible;
  transform: translateX(-100%);
}

.testimonial.is-exit-left {
  opacity: 0;
  visibility: visible;
  transform: translateX(-100%);
  z-index: 1;
}

.testimonial.is-exit-right {
  opacity: 0;
  visibility: visible;
  transform: translateX(100%);
  z-index: 1;
}

.testimonial__quote {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text);
}

.testimonial__cite {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-accent);
}

.testimonial-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.testimonial-slider__nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.testimonial-slider__nav--prev {
  left: 0;
}

.testimonial-slider__nav--next {
  right: 0;
}

.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #b7c5d3;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.testimonial-slider__dot.is-active,
.testimonial-slider__dot:hover {
  background: var(--color-primary);
  transform: scale(1.15);
}

/* ======================================== */
/* SECTION 5: CTA BAR */
/* ======================================== */
.section--cta {
  padding: 0;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 35%, var(--color-accent-red) 68%, #9E2443 100%);
}

.cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 20px;
}

.cta-bar__heading {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--color-white);
}

.cta-bar__copy p {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cta-bar__copy a {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.6;
  color: #9fd0f5;
}

.cta-bar__copy a:hover {
  color: var(--color-white);
}

.cta-bar .btn--primary {
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--color-accent);
  border-color: var(--color-white);
  color: var(--color-white);
}

.cta-bar .btn--primary:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary);
}

/* ======================================== */
/* SECTION: REQUEST A QUOTE FORM */
/* ======================================== */
.page-quote .section--quote {
  padding: 72px 0 80px;
  background:
    linear-gradient(180deg, rgba(243, 246, 249, 0.95) 0%, rgba(255, 255, 255, 1) 180px);
}

.quote-intro {
  max-width: 720px;
  margin: 0 0 36px;
}

.quote-intro .section-heading--intro {
  margin-bottom: 12px;
  color: #015A9C;
}

.quote-intro__lead {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.quote-intro__lead a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-accent);
}

.quote-form {
  max-width: 960px;
  margin: 0;
}

.quote-section {
  margin: 0 0 28px;
  padding: 28px 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.quote-section__legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--color-primary);
}

.quote-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  color: var(--color-white);
  flex-shrink: 0;
}

.quote-section__note {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

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

.quote-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
}

.quote-label .req {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.3;
  color: var(--color-accent-red);
}

.quote-input {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-off-white);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-text);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-input::placeholder {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  color: #8a97a5;
}

.quote-input:hover {
  border-color: #b7c5d3;
}

.quote-input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(1, 90, 156, 0.15);
}

.quote-textarea {
  min-height: 130px;
  resize: vertical;
}

.quote-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23003B67' d='M1.4.3L6 4.9 10.6.3 12 1.7 6 7.7 0 1.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 40px;
  cursor: pointer;
}

.order-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.order-card {
  padding: 20px 18px 18px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 55%);
}

.order-card__title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 59, 103, 0.12);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.25;
  color: var(--color-primary);
}

.order-card__title span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.25;
  color: var(--color-accent);
}

.order-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-disclaimer {
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.quote-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 8px;
}

.quote-submit {
  width: 100%;
  max-width: 360px;
  align-self: flex-start;
  padding: 15px 28px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.quote-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-text);
}

.quote-status.is-success {
  background: rgba(1, 90, 156, 0.1);
  border: 1px solid rgba(1, 90, 156, 0.35);
  color: var(--color-primary);
}

.quote-status.is-error {
  background: rgba(158, 36, 67, 0.08);
  border: 1px solid rgba(158, 36, 67, 0.35);
  color: #7a1c34;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

/* ======================================== */
/* FAT FOOTER SECTION */
/* ======================================== */
.fat-footer {
  width: 100%;
  padding: 70px 0 60px;
  background:
    linear-gradient(160deg, #0b1520 0%, #121f2d 45%, #0a121b 100%);
  color: rgba(255, 255, 255, 0.88);
}

.fat-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.fat-footer__col {
  display: flex;
  flex-direction: column;
}

.fat-footer__col--map .fat-footer__heading {
  margin-bottom: 20px;
}

.fat-footer__heading {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-white);
}

.fat-footer__col--contact .fat-footer__heading {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: var(--color-white);
}

.fat-footer__address {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.fat-footer__phone {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #9fd0f5;
}

.fat-footer__phone:hover {
  color: var(--color-white);
}

.fat-footer__meta {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.fat-footer__email {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
}

.fat-footer__email:hover {
  color: #9fd0f5;
}

.fat-footer__resources {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.fat-footer__resources a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.94);
  text-transform: uppercase;
}

.fat-footer__resources a:hover {
  color: #9fd0f5;
}

.fat-footer__resources a:hover .fat-footer__icon {
  background: rgba(159, 208, 245, 0.18);
  color: #9fd0f5;
}

.fat-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border: 1px solid rgba(159, 208, 245, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #9fd0f5;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.fat-footer__icon svg {
  width: 32px;
  height: 32px;
}

.fat-footer__map {
  position: relative;
  width: 100%;
  height: 230px;
  max-height: 230px;
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 12px;
  background: #0a121b;
}

.fat-footer__col--map .fat-footer__map-link {
  margin-top: auto;
}

.fat-footer__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.fat-footer__map-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: #9fd0f5;
}

.fat-footer__map-link:hover {
  color: var(--color-white);
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR */
/* ======================================== */
.copyright-bar {
  width: 100%;
  background: #070d14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}

.copyright-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright-bar p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.copyright-bar a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  color: #9fd0f5;
}

.copyright-bar a:hover {
  color: var(--color-white);
}

/* ======================================== */
/* SCROLL-TO-TOP + MOBILE CALL BAR */
/* ======================================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-primary);
}

.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}

.mobile-call-bar:hover {
  color: var(--color-white);
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */
@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .primary-nav__link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--color-primary);
    padding: 8px 8px;
  }

  .top-bar__address span {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-grid__media {
    order: 0;
    max-width: 420px;
    margin: 0 auto;
  }

  .fat-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-bar {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 46px;
  }

  .top-bar {
    display: none;
  }

  .site-header {
    height: var(--header-height-mobile);
    z-index: 1100;
  }

  .site-logo img {
    height: 54px;
    max-height: 54px;
  }

  .nav-toggle {
    display: flex;
    z-index: 1102;
  }

  .primary-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 24px 20px 80px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 1090;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  body.nav-open {
    padding-top: 74px;
  }

  body.nav-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: var(--shadow-header);
  }

  body.nav-open .primary-nav {
    top: 74px;
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .primary-nav__link {
    display: block;
    padding: 14px 8px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.3;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
  }

  .primary-nav__link--cta {
    margin: 16px 0 0;
    text-align: center;
    border-bottom: 1px solid rgba(1, 90, 156, 0.45);
    background: rgba(1, 90, 156, 0.08);
    color: var(--color-accent);
  }

  .page-title-bar {
    min-height: 140px;
  }

  .page-title-bar__title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.15;
    color: var(--color-white);
  }

  .page-title-bar__tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    color: rgba(159, 208, 245, 0.95);
  }

  .specs-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .apps-lists {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero {
    height: 420px;
  }

  .hero__brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    color: #9fd0f5;
    padding: 7px 14px;
  }

  .hero__title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--color-white);
  }

  .hero__subtitle {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0;
  }

  .section-heading--intro,
  .section-heading__line2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.015em;
    line-height: 1.18;
    color: var(--color-accent);
  }

  .hero__gold {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: #e6b422;
  }

  .primary-nav__link::after {
    display: none;
  }

  .hero__cta {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading,
  h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--color-primary);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    padding: 0 44px;
  }

  .testimonial {
    padding: 28px 22px;
  }

  .testimonial__quote {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--color-text);
  }

  .cta-bar__heading {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: var(--color-white);
  }

  .page-quote .section--quote {
    padding: 48px 0 56px;
  }

  .quote-section {
    padding: 22px 18px 18px;
  }

  .quote-section__legend {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--color-primary);
  }

  .quote-grid,
  .order-cards,
  .order-card__grid {
    grid-template-columns: 1fr;
  }

  .quote-submit {
    max-width: none;
    width: 100%;
  }

  .fat-footer__phone {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #9fd0f5;
  }

  .fat-footer__address {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
  }

  .fat-footer__email {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.96);
  }

  .fat-footer__resources a {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.94);
  }

  .hero__subtitle .hero__gold {
    font-family: var(--font-heading);
    font-size: 1.15em;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: inherit;
    color: #e6b422;
  }

  .copyright-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-call-bar {
    display: flex;
  }

  .scroll-top {
    bottom: 62px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 360px;
  }

  .hero__brand {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    color: #9fd0f5;
  }

  .hero__title {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: var(--color-white);
  }

  .hero__subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
  }

  .top-bar__item {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.92);
  }

  .testimonial-slider {
    padding: 0;
  }

  .testimonial-slider__nav {
    top: auto;
    bottom: -8px;
    transform: none;
  }

  .testimonial-slider__nav--prev {
    left: 0;
  }

  .testimonial-slider__nav--next {
    right: 0;
  }

  .testimonial-slider__dots {
    margin-top: 36px;
  }
}
