:root {
  --bg: #f3f8fb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-soft: #e8f5fd;
  --surface-dark: #0f2d3d;
  --text: #153042;
  --text-soft: #5f7686;
  --text-inverse: #f4fbff;
  --line: rgba(14, 54, 77, 0.12);
  --accent: #0d9dde;
  --accent-strong: #0577ab;
  --accent-soft: #d7f1ff;
  --accent-mint: #b9f0df;
  --accent-gold: #ffe6a9;
  --shadow-lg: 0 28px 90px rgba(14, 55, 80, 0.12);
  --shadow-md: 0 18px 50px rgba(14, 55, 80, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content-width: 1240px;
  --page-gutter: clamp(22px, 4vw, 56px);
  --section-space: clamp(72px, 10vw, 120px);
  --font-display: "Trebuchet MS", "Avenir Next Condensed", "Segoe UI", sans-serif;
  --font-body: "Segoe UI", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 157, 222, 0.16), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(185, 240, 223, 0.24), transparent 24%),
    linear-gradient(180deg, #f6fbfe 0%, #eef5f8 40%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding: var(--section-space) 0;
  scroll-margin-top: 120px;
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section-kicker-inverse {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-head p:last-child {
  margin: 18px 0 0;
  font-size: 1.03rem;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: rgba(246, 251, 254, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 52, 74, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0fb2ef 0%, #0979ae 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(9, 121, 174, 0.28);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
}

.brand-tagline {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(13, 157, 222, 0.1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 16px 40px rgba(13, 157, 222, 0.24);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(13, 157, 222, 0.3);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 8vw, 96px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 40px;
  background: radial-gradient(circle, rgba(13, 157, 222, 0.25), transparent 68%);
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -70px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(185, 240, 223, 0.45), transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11.5ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 40px rgba(13, 157, 222, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(13, 157, 222, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(21, 48, 66, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(13, 157, 222, 0.28);
  background: rgba(215, 241, 255, 0.6);
}

.btn-block {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-tags li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(14, 54, 77, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-dashboard {
  display: grid;
  gap: 18px;
}

.hero-card,
.hero-contact-card,
.about-story,
.feature-card,
.catalog-card,
.metric-card,
.product-card,
.news-card,
.review-card,
.contract-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-card {
  padding: 28px;
}

.hero-card-primary {
  position: relative;
  overflow: hidden;
  color: var(--text-inverse);
  background: linear-gradient(135deg, #0f2d3d 0%, #116189 100%);
}

.hero-card-primary::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 62%);
}

.eyebrow-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-primary h2,
.hero-card-primary p {
  position: relative;
  z-index: 1;
}

.hero-card-primary h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.95rem;
  line-height: 1.02;
}

.hero-card-primary p {
  margin: 16px 0 0;
  color: rgba(244, 251, 255, 0.82);
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.stat-tile {
  padding: 22px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #eef8fd 100%);
  border: 1px solid rgba(13, 157, 222, 0.1);
}

.stat-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-strong);
}

.stat-tile span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.hero-contact-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
}

.hero-contact-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ebf7fe 0%, #d5efff 100%);
}

.contact-visual-icon {
  width: 56px;
  height: 56px;
  stroke: #6cc6f0;
  stroke-width: 2.2;
  fill: #3ba8df;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-contact-title {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-contact-copy a,
.hero-contact-copy p:last-child {
  display: block;
  margin: 0 0 6px;
  text-decoration: none;
  color: var(--text-soft);
}

.hero-contact-copy a:hover {
  color: var(--accent-strong);
}

.metrics-strip {
  position: relative;
  margin-top: 8px;
}

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

.metric-card {
  padding: 24px;
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--accent-strong);
}

.metric-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.about-story {
  padding: 34px;
}

.about-story p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--text-soft);
}

.about-story p + p {
  margin-top: 18px;
}

.about-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 157, 222, 0.12) 0%, rgba(185, 240, 223, 0.2) 100%);
}

.about-highlight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #ffffff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.about-highlight p {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-card {
  padding: 26px;
}

.feature-card:nth-child(2) {
  background: linear-gradient(135deg, #f5fbff 0%, #ebfff7 100%);
}

.feature-card:nth-child(3) {
  background: linear-gradient(135deg, #ffffff 0%, #f8f3ff 100%);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.catalog {
  position: relative;
}

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

.catalog-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  padding: 26px;
}

.catalog-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 157, 222, 0.16), transparent 68%);
}

.catalog-card-featured {
  grid-column: span 6;
  color: var(--text-inverse);
  background: linear-gradient(135deg, #0d4462 0%, #0fa2dc 100%);
}

.catalog-card-featured::after {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 64%);
}

.card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(13, 157, 222, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card-featured .card-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.catalog-card h3 {
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.02;
}

.catalog-card p {
  margin: 0;
  color: inherit;
  opacity: 0.9;
  line-height: 1.68;
}

.catalog-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.catalog-card li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.wholesale {
  padding-top: 18px;
}

.wholesale-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 22px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 36px;
  background: linear-gradient(135deg, #102d3d 0%, #1a5879 50%, #0ea4df 100%);
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(10, 52, 78, 0.22);
}

.wholesale-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.wholesale-copy p:last-child {
  margin: 18px 0 0;
  max-width: 56ch;
  color: rgba(244, 251, 255, 0.78);
  line-height: 1.75;
}

.wholesale-points {
  display: grid;
  gap: 14px;
}

.wholesale-point {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.wholesale-point h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.wholesale-point p {
  margin: 0;
  color: rgba(244, 251, 255, 0.82);
  line-height: 1.65;
}

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

.product-card {
  padding: 18px;
}

.product-visual {
  position: relative;
  height: 240px;
  border-radius: 26px;
  overflow: hidden;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.94);
}

.product-visual::before {
  bottom: 22px;
  width: 112px;
  height: 156px;
  border-radius: 28px 28px 34px 34px;
  box-shadow: 0 20px 30px rgba(20, 51, 71, 0.14);
}

.product-visual::after {
  bottom: 166px;
  width: 58px;
  height: 34px;
  border-radius: 18px 18px 10px 10px;
}

.product-visual-citrus {
  background: linear-gradient(180deg, #fff2c1 0%, #ffc65d 100%);
}

.product-visual-aqua {
  background: linear-gradient(180deg, #def8ff 0%, #84dfff 100%);
}

.product-visual-mint {
  background: linear-gradient(180deg, #e2ffe9 0%, #7cd6af 100%);
}

.product-visual-rose {
  background: linear-gradient(180deg, #ffe3eb 0%, #ffaac4 100%);
}

.product-badge {
  display: inline-flex;
  margin: 18px 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 157, 222, 0.12);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.product-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.contract-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.contract-copy h2 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contract-copy > p:last-of-type {
  margin: 18px 0 0;
  max-width: 60ch;
  color: var(--text-soft);
  line-height: 1.74;
}

.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0fb2ef 0%, #0979ae 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
}

.process-list p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.contract-panel {
  padding: 28px;
}

.panel-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contract-panel h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(14, 54, 77, 0.14);
  border-radius: 18px;
  padding: 16px 18px;
  background: #ffffff;
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(13, 157, 222, 0.5);
  box-shadow: 0 0 0 4px rgba(13, 157, 222, 0.12);
}

.lead-form textarea {
  resize: vertical;
  min-height: 124px;
}

.panel-note {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.68;
}

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

.news-card,
.review-card {
  padding: 24px;
}

.news-meta {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.news-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.news-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.news-card a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent-strong);
}

.news-card a:hover {
  color: var(--text);
}

.review-card {
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: rgba(13, 157, 222, 0.16);
}

.review-card p,
.review-card footer {
  position: relative;
  z-index: 1;
}

.review-card p {
  margin: 26px 0 20px;
  color: var(--text);
  line-height: 1.8;
}

.review-card footer {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.care {
  padding-top: 18px;
}

.care-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #083149 0%, #096796 52%, #0fb2ef 100%);
  box-shadow: 0 30px 80px rgba(6, 58, 87, 0.22);
}

.care-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.care-copy p:last-child {
  margin: 18px 0 0;
  max-width: 58ch;
  color: rgba(244, 251, 255, 0.8);
  line-height: 1.74;
}

.care-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.care-links a,
.care-links span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-decoration: none;
}

.care-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-footer {
  margin-top: var(--section-space);
  padding: 56px 0 28px;
  color: rgba(244, 251, 255, 0.88);
  background: linear-gradient(180deg, #0c2635 0%, #081a25 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 1fr));
  gap: 24px;
  align-items: start;
}

.brand-footer .brand-name,
.brand-footer .brand-tagline {
  color: #ffffff;
}

.footer-brand p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: rgba(244, 251, 255, 0.68);
  line-height: 1.75;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

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

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a,
.footer-contact-list li {
  color: rgba(244, 251, 255, 0.68);
  text-decoration: none;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(244, 251, 255, 0.58);
}

.footer-bottom a {
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
}

.footer-bottom a:hover {
  color: var(--accent-soft);
}

@media (max-width: 1120px) {
  .header-shell,
  .hero-grid,
  .contract-grid,
  .about-grid,
  .wholesale-shell,
  .care-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .header-cta {
    justify-self: start;
  }

  .hero-copy h1,
  .wholesale-copy h2,
  .contract-copy h2,
  .care-copy h2 {
    max-width: none;
  }

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

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

@media (max-width: 920px) {
  .metrics-grid,
  .catalog-grid,
  .news-grid,
  .review-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-card,
  .catalog-card-featured {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand-name {
    font-size: 1.6rem;
  }

  .main-nav {
    gap: 6px;
  }

  .main-nav a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero-card-stats,
  .metrics-grid,
  .product-grid,
  .news-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact-card,
  .process-list li,
  .about-highlight {
    grid-template-columns: 1fr;
  }

  .process-list span,
  .about-highlight span {
    width: 54px;
    height: 54px;
  }

  .care-links,
  .footer-bottom {
    justify-items: stretch;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }
}
