* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #111918;
  --dark-2: #1e2423;
  --green: #078f52;
  --green-2: #0aa866;
  --green-light: #eaf7f1;
  --text: #111827;
  --muted: #5f6f7f;
  --light: #f6f8f7;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.logo-word {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  color: #101820;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.nav a:hover {
  color: var(--green);
}

.nav-button {
  background: var(--green);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(7, 143, 82, 0.22);
}

.nav-button:hover {
  background: var(--green-2);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: var(--dark);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 44%, #eef3f1 100%);
  min-height: 640px;
}

.hero .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, calc((100vw - 1180px) / 2 + 560px)) 1fr;
  align-items: center;
  min-height: 640px;
  gap: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 82px;
  padding-bottom: 74px;
  padding-left: max(4vw, calc((100vw - 1180px) / 2));
  padding-right: 44px;
}

.hero-content h1 {
  max-width: 620px;
  font-size: clamp(42px, 5.8vw, 66px);
  line-height: 1.07;
  letter-spacing: -2.3px;
  color: #111827;
  margin-bottom: 24px;
}

.hero-content p {
  max-width: 540px;
  font-size: 18px;
  color: #374151;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7, 143, 82, 0.22);
}

.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--green);
  border: 1px solid var(--green);
}

.btn-outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.hero-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: #374151;
  font-size: 14px;
}

.hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-checks span::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--green);
  border: 1px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.hero-image-area {
  position: relative;
  height: 640px;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #eef3f1;
}

.hero-image-area::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 190px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.70) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* AUDIENCE STRIP */

.audience-strip {
  background: linear-gradient(90deg, #1d2221, #252a29);
  color: var(--white);
  padding: 34px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.audience-card {
  text-align: center;
  padding: 18px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.audience-card:last-child {
  border-right: none;
}

.audience-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #ffffff;
}

.audience-card p {
  color: #d8dfdc;
  font-size: 14px;
  line-height: 1.5;
}

/* AUDIENCE 3D ICONS */

.audience-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  position: relative;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #dce7e2 100%);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.20),
    inset 0 2px 6px rgba(255, 255, 255, 0.95),
    inset 0 -6px 12px rgba(0, 0, 0, 0.12);
}

.audience-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 15px;
  background: linear-gradient(145deg, #2f3a38, #202726);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.08),
    inset 0 -2px 6px rgba(0, 0, 0, 0.35);
}

.audience-icon .icon-shape {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.icon-manufacturer .icon-shape::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 28px;
  height: 18px;
  background: linear-gradient(180deg, #26d07c, #078f52);
  border-radius: 4px 4px 6px 6px;
  box-shadow: 0 4px 10px rgba(7, 143, 82, 0.45);
}

.icon-manufacturer .icon-shape::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 18px;
  background:
    linear-gradient(135deg, transparent 0 30%, #33e18a 31% 52%, transparent 53%),
    linear-gradient(135deg, transparent 0 58%, #33e18a 59% 80%, transparent 81%);
}

.icon-importers .icon-shape::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 28px;
  height: 28px;
  background: linear-gradient(145deg, #27cf7c, #078f52);
  border-radius: 8px;
  transform: rotate(10deg);
  box-shadow: 0 6px 12px rgba(7, 143, 82, 0.38);
}

.icon-importers .icon-shape::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 18px;
  width: 4px;
  height: 26px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 4px;
}

.icon-exporters .icon-shape::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3ef09a, #078f52 70%);
  box-shadow: 0 6px 12px rgba(7, 143, 82, 0.4);
}

.icon-exporters .icon-shape::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 16px;
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow:
    -8px 15px 0 -7px rgba(255, 255, 255, 0.75),
    8px 15px 0 -7px rgba(255, 255, 255, 0.75);
}

.icon-distributors .icon-shape::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 32px;
  height: 11px;
  background: linear-gradient(180deg, #36df8d, #078f52);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 4px 10px rgba(7, 143, 82, 0.35);
}

.icon-distributors .icon-shape::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 29px;
  width: 26px;
  height: 14px;
  background: linear-gradient(180deg, #2bcf7d, #067847);
  border-radius: 2px 2px 6px 6px;
}

.icon-service .icon-shape::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 30px;
  height: 5px;
  background: linear-gradient(90deg, #3dec96, #078f52);
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(7, 143, 82, 0.35);
}

.icon-service .icon-shape::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 34px;
  width: 30px;
  height: 5px;
  background: linear-gradient(90deg, #3dec96, #078f52);
  transform: rotate(-45deg);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(7, 143, 82, 0.35);
}

/* GENERAL SECTIONS */

.section {
  padding: 78px 0;
}

.section-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-center h2,
.traceability-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -1.4px;
  color: var(--text);
  margin-bottom: 16px;
}

.label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 16px;
}

/* HOW IT WORKS */

.how-section {
  background: #ffffff;
}

.steps-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -42px;
  width: 70px;
  border-top: 2px dashed #d1d5db;
}

.step-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 24px;
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #dfe8e3 100%);
  box-shadow:
    0 18px 32px rgba(15, 23, 42, 0.10),
    inset 0 2px 6px rgba(255, 255, 255, 0.95),
    inset 0 -8px 14px rgba(0, 0, 0, 0.08);
}

.step-icon::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #edf3ef);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.step-icon .step-shape {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.step-upload .step-shape::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 24px;
  width: 24px;
  height: 24px;
  background: linear-gradient(180deg, #30da86, #078f52);
  clip-path: polygon(50% 0%, 100% 58%, 68% 58%, 68% 100%, 32% 100%, 32% 58%, 0% 58%);
  filter: drop-shadow(0 6px 8px rgba(7, 143, 82, 0.28));
}

.step-upload .step-shape::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 23px;
  width: 44px;
  height: 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d3ddd8, #bfcac5);
}

.step-qr .step-shape::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  width: 40px;
  height: 40px;
  background:
    linear-gradient(90deg, #078f52 25%, transparent 25%) 0 0 / 10px 10px,
    linear-gradient(#078f52 25%, transparent 25%) 0 0 / 10px 10px,
    #ffffff;
  border: 4px solid #26d07c;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(7, 143, 82, 0.2);
}

.step-share .step-shape::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 38px;
  width: 46px;
  height: 6px;
  background: linear-gradient(90deg, #30da86, #078f52);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(7, 143, 82, 0.22);
}

.step-share .step-shape::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-top: 6px solid #078f52;
  border-right: 6px solid #078f52;
  transform: rotate(45deg);
  border-radius: 2px;
}

.step-access .step-shape::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  width: 36px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(180deg, #1f2c2a, #111918);
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.18);
}

.step-access .step-shape::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 28px;
  width: 24px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #35de8d, #078f52);
}

.step-item > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.step-item h3 {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}

.step-item p {
  color: var(--muted);
  font-size: 14px;
  max-width: 210px;
  margin: 0 auto;
}

/* TRACEABILITY */

.traceability-section {
  background: #f6f7f7;
}

.traceability-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.traceability-content p {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

.stats-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-item::before {
  content: "◎";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--green);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.stat-item strong {
  display: block;
  font-size: 24px;
  color: var(--green);
  line-height: 1;
}

.stat-item span {
  display: block;
  max-width: 120px;
  font-size: 12px;
  color: #374151;
  line-height: 1.25;
}

/* TRACEABILITY CARDS */

.dashboard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.platform-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(236,245,240,0.94));
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.12),
    inset 0 1px 3px rgba(255,255,255,0.95),
    inset 0 -10px 24px rgba(15,23,42,0.04);
}

.card-glow {
  position: absolute;
  right: -65px;
  top: -65px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(10, 168, 102, 0.14);
  filter: blur(6px);
}

.platform-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.platform-card-header h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 2px;
}

.platform-card-header p {
  color: #6b7280;
  font-size: 13px;
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(145deg, #172320, #0d1513);
  box-shadow:
    0 14px 26px rgba(15, 23, 42, 0.22),
    inset 0 2px 4px rgba(255,255,255,0.08),
    inset 0 -8px 14px rgba(0,0,0,0.30);
}

.dashboard-icon-3d::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 15px;
  width: 30px;
  height: 24px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #35de8d 0 35%, transparent 35% 100%),
    linear-gradient(180deg, #35de8d 0 35%, transparent 35% 100%),
    rgba(255,255,255,0.08);
  border: 2px solid #35de8d;
  box-shadow: 0 6px 12px rgba(7,143,82,0.32);
}

.document-icon-3d::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 11px;
  width: 24px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #dfe8e3);
  box-shadow: 0 8px 14px rgba(15,23,42,0.20);
}

.document-icon-3d::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: #078f52;
  box-shadow:
    0 8px 0 #078f52,
    0 16px 0 rgba(7,143,82,0.45);
}

.metric-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.metric-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(239,246,242,0.92));
  border: 1px solid rgba(229,231,235,0.90);
  box-shadow:
    0 12px 24px rgba(15,23,42,0.06),
    inset 0 1px 2px rgba(255,255,255,0.90);
}

.metric-pill span {
  color: #4b5563;
  font-size: 14px;
  font-weight: 700;
}

.metric-pill strong {
  color: #078f52;
  font-size: 24px;
  line-height: 1;
}

.mini-chart {
  position: relative;
  z-index: 2;
  height: 76px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, #101918, #1f2927);
  box-shadow:
    inset 0 1px 4px rgba(255,255,255,0.08),
    inset 0 -10px 20px rgba(0,0,0,0.22);
  margin-bottom: 20px;
}

.mini-chart span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #44ee9d, #078f52);
  box-shadow: 0 6px 14px rgba(7,143,82,0.35);
}

/* NEW DOCUMENT PREVIEW BOX */

.document-preview-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(239,246,242,0.92));
  border: 1px solid rgba(229,231,235,0.90);
  box-shadow:
    0 14px 28px rgba(15,23,42,0.07),
    inset 0 1px 2px rgba(255,255,255,0.92);
  margin-bottom: 18px;
  min-height: 170px;
}

.document-paper {
  width: 76px;
  height: 96px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #edf3ef);
  border: 1px solid rgba(229,231,235,0.90);
  box-shadow:
    0 18px 28px rgba(15,23,42,0.12),
    inset 0 1px 2px rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #172320, #0d1513);
  color: #35de8d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.10);
}

.document-content strong {
  display: block;
  font-size: 16px;
  color: #111827;
  margin-bottom: 14px;
}

.doc-line {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9e5df, #eef4f1);
  margin-bottom: 9px;
}

.doc-line.medium {
  width: 82%;
}

.doc-line.short {
  width: 58%;
}

.document-tags {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.document-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(7, 143, 82, 0.10);
  color: #078f52;
  font-size: 12px;
  font-weight: 900;
}

.small-button {
  position: relative;
  z-index: 2;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0aa866, #078f52);
  color: white;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(7,143,82,0.24);
}

.small-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #11b872, #078f52);
}

/* WHAT IS DOXAPORTA SECTION */

.what-is-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(10, 168, 102, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.what-is-preview-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(232,242,237,0.94));
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.14),
    inset 0 1px 3px rgba(255,255,255,0.95),
    inset 0 -12px 28px rgba(15,23,42,0.04);
}

.what-is-preview-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(10, 168, 102, 0.16);
  filter: blur(5px);
}

.what-is-preview-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.what-is-preview-label {
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  color: #078f52;
  margin-bottom: 6px;
}

.what-is-preview-top h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #111827;
}

.what-is-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 143, 82, 0.10);
  color: #078f52;
  font-size: 12px;
  font-weight: 900;
}

.what-is-preview-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.portal-visual-box {
  height: 165px;
  border-radius: 24px;
  background: linear-gradient(145deg, #111918, #26312f);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 4px rgba(255,255,255,0.08),
    inset 0 -12px 28px rgba(0,0,0,0.28);
}

.portal-visual-card {
  position: absolute;
  border-radius: 18px;
  background: linear-gradient(145deg, #35de8d, #078f52);
  box-shadow:
    0 18px 28px rgba(7, 143, 82, 0.30),
    inset 0 3px 6px rgba(255,255,255,0.22),
    inset 0 -8px 16px rgba(0,0,0,0.18);
}

.portal-visual-card.main {
  width: 86px;
  height: 58px;
  left: 26px;
  top: 54px;
}

.portal-visual-card.small.one {
  width: 48px;
  height: 34px;
  right: 26px;
  top: 34px;
  background: linear-gradient(145deg, #ffffff, #dfe8e3);
}

.portal-visual-card.small.two {
  width: 60px;
  height: 40px;
  right: 18px;
  bottom: 26px;
  background: linear-gradient(145deg, #1b2725, #0d1513);
}

.portal-info-lines {
  display: grid;
  gap: 12px;
}

.portal-line {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4e2dc, #eef5f1);
}

.portal-line.long {
  width: 100%;
}

.portal-line.medium {
  width: 84%;
}

.portal-line.short {
  width: 60%;
}

.portal-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 10px;
}

.portal-mini-grid div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.portal-mini-grid span {
  display: block;
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 4px;
}

.portal-mini-grid strong {
  display: block;
  font-size: 14px;
  color: #078f52;
}

.what-is-preview-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, #101918, #1f2927);
  color: #ffffff;
  box-shadow:
    inset 0 1px 4px rgba(255,255,255,0.08),
    inset 0 -10px 20px rgba(0,0,0,0.22);
}

.what-is-mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background:
    linear-gradient(90deg, #35de8d 25%, transparent 25%) 0 0 / 14px 14px,
    linear-gradient(#35de8d 25%, transparent 25%) 0 0 / 14px 14px,
    #ffffff;
  border: 4px solid #ffffff;
}

.what-is-preview-bottom strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.what-is-preview-bottom p {
  color: #cdd8d3;
  font-size: 13px;
}

.what-is-content h2 {
  max-width: 640px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.7px;
  color: #111827;
  margin-bottom: 18px;
}

.what-is-content > p {
  max-width: 620px;
  color: #5f6f7f;
  font-size: 17px;
  margin-bottom: 16px;
}

.what-is-button {
  margin-top: 18px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, #0aa866, #078f52);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(7, 143, 82, 0.22);
}

.what-is-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #12b974, #078f52);
}

.what-is-feature-grid {
  display: grid;
  gap: 14px;
}

.what-is-feature-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(236,245,240,0.94));
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow:
    0 18px 38px rgba(15,23,42,0.08),
    inset 0 1px 2px rgba(255,255,255,0.95);
}

.what-is-feature-card h3 {
  font-size: 17px;
  color: #111827;
  margin-bottom: 6px;
}

.what-is-feature-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.what-is-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  position: relative;
  background: linear-gradient(145deg, #172320, #0d1513);
  box-shadow:
    0 14px 24px rgba(15,23,42,0.18),
    inset 0 1px 3px rgba(255,255,255,0.10);
}

.data-icon-box::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 24px;
  height: 28px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, #35de8d 0 18%, transparent 18% 100%),
    linear-gradient(180deg, transparent 0 40%, #35de8d 40% 54%, transparent 54% 100%),
    linear-gradient(180deg, transparent 0 72%, #35de8d 72% 86%, transparent 86% 100%);
  border: 2px solid #35de8d;
  box-shadow: 0 6px 12px rgba(7,143,82,0.30);
}

.docs-icon-box::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 11px;
  width: 24px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #dfe8e3);
  box-shadow: 0 8px 14px rgba(15,23,42,0.20);
}

.docs-icon-box::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 23px;
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: #078f52;
  box-shadow:
    0 8px 0 #078f52,
    0 16px 0 rgba(7,143,82,0.45);
}

.qr-icon-box::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 26px;
  height: 26px;
  background:
    linear-gradient(90deg, #35de8d 25%, transparent 25%) 0 0 / 9px 9px,
    linear-gradient(#35de8d 25%, transparent 25%) 0 0 / 9px 9px,
    rgba(255,255,255,0.08);
  border: 3px solid #35de8d;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(7,143,82,0.28);
}

/* PRODUCT PAGE EXAMPLE */

.product-example-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(10, 168, 102, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.product-example-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.product-example-content h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -1.8px;
  color: #111827;
  margin-bottom: 20px;
}

.product-example-content > p {
  max-width: 620px;
  color: #5f6f7f;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.product-example-points {
  display: grid;
  gap: 14px;
}

.product-example-points div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(229,231,235,0.9);
  box-shadow:
    0 14px 30px rgba(15,23,42,0.06),
    inset 0 1px 2px rgba(255,255,255,0.9);
}

.product-example-points strong {
  color: #111827;
  font-size: 15px;
}

.product-example-points span {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* Browser card */

.product-browser-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(232,242,237,0.94));
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow:
    0 38px 90px rgba(15,23,42,0.14),
    inset 0 1px 3px rgba(255,255,255,0.95),
    inset 0 -14px 28px rgba(15,23,42,0.04);
}

.product-browser-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(10, 168, 102, 0.16);
  filter: blur(5px);
}

.browser-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.06);
  margin-bottom: 24px;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9ca3af;
}

.browser-top strong {
  margin-left: 10px;
  color: #374151;
  font-size: 13px;
  font-weight: 800;
}

.browser-product-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.browser-product-image {
  height: 150px;
  border-radius: 26px;
  background: linear-gradient(145deg, #111918, #26312f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 4px rgba(255,255,255,0.08),
    inset 0 -12px 28px rgba(0,0,0,0.28);
}

.browser-product-object {
  width: 86px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, #35de8d, #078f52);
  box-shadow:
    0 18px 28px rgba(7, 143, 82, 0.30),
    inset 0 3px 6px rgba(255,255,255,0.28),
    inset 0 -8px 16px rgba(0,0,0,0.18);
  position: relative;
}

.browser-product-object::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -20px;
  width: 52px;
  height: 28px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(145deg, #1b2725, #0d1513);
}

.browser-product-object::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 34px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(145deg, #202c2a, #0d1513);
}

.browser-small-label {
  display: inline-flex;
  color: #078f52;
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 6px;
}

.browser-product-header h3 {
  font-size: 25px;
  color: #111827;
  margin-bottom: 7px;
}

.browser-product-header p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.browser-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.browser-info-grid div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(229,231,235,0.9);
}

.browser-info-grid span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 5px;
}

.browser-info-grid strong {
  display: block;
  color: #078f52;
  font-size: 17px;
}

.browser-document-row,
.browser-qr-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(229,231,235,0.9);
  margin-bottom: 14px;
}

.browser-doc-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #172320, #0d1513);
  color: #35de8d;
  font-size: 11px;
  font-weight: 900;
  box-shadow:
    0 12px 20px rgba(15,23,42,0.18),
    inset 0 1px 3px rgba(255,255,255,0.10);
}

.browser-document-row strong,
.browser-qr-row strong {
  display: block;
  color: #111827;
  font-size: 15px;
  margin-bottom: 4px;
}

.browser-document-row span,
.browser-qr-row span {
  display: block;
  color: #6b7280;
  font-size: 13px;
}

.browser-qr-row {
  background: linear-gradient(145deg, #101918, #1f2927);
  color: #ffffff;
  margin-bottom: 0;
}

.browser-qr {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background:
    linear-gradient(90deg, #35de8d 25%, transparent 25%) 0 0 / 12px 12px,
    linear-gradient(#35de8d 25%, transparent 25%) 0 0 / 12px 12px,
    #ffffff;
  border: 4px solid #ffffff;
}

.browser-qr-row strong {
  color: #ffffff;
}

.browser-qr-row span {
  color: #cdd8d3;
}
/* READINESS */

.readiness-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(10, 168, 102, 0.18), transparent 30%),
    linear-gradient(135deg, #111918 0%, #1f2927 55%, #111918 100%);
  color: #ffffff;
  overflow: hidden;
}

.readiness-modern-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.dark-label {
  background: rgba(10, 168, 102, 0.16);
  color: #44ee9d;
  border: 1px solid rgba(68, 238, 157, 0.28);
}

.readiness-content h2 {
  max-width: 640px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.7px;
  color: #ffffff;
  margin-bottom: 20px;
}

.readiness-content p {
  max-width: 620px;
  color: #d6dfdb;
  font-size: 17px;
  margin-bottom: 22px;
}

.readiness-disclaimer {
  max-width: 620px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 247, 237, 0.08);
  border: 1px solid rgba(254, 215, 170, 0.28);
  color: #ffe8cc;
  font-size: 14px;
  line-height: 1.6;
}

.readiness-disclaimer strong {
  color: #ffffff;
}

.readiness-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.32),
    inset 0 1px 3px rgba(255,255,255,0.18),
    inset 0 -12px 28px rgba(0,0,0,0.18);
  backdrop-filter: blur(14px);
}

.readiness-panel-glow {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(68, 238, 157, 0.18);
  filter: blur(6px);
}

.readiness-panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.readiness-panel-header h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 4px;
}

.readiness-panel-header p {
  color: #cdd8d3;
  font-size: 14px;
}

.readiness-3d-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(145deg, #ffffff, #dce7e2);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.28),
    inset 0 2px 6px rgba(255,255,255,0.9),
    inset 0 -8px 14px rgba(0,0,0,0.12);
}

.readiness-3d-icon::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 28px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #35de8d 0 20%, transparent 20% 100%),
    linear-gradient(180deg, transparent 0 44%, #35de8d 44% 58%, transparent 58% 100%),
    linear-gradient(180deg, transparent 0 75%, #35de8d 75% 88%, transparent 88% 100%);
  border: 3px solid #078f52;
  box-shadow: 0 8px 16px rgba(7,143,82,0.35);
}

.readiness-check-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.readiness-check-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.08),
    0 12px 24px rgba(0,0,0,0.10);
}

.readiness-check-item > span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(145deg, #35de8d, #078f52);
  position: relative;
  box-shadow:
    0 10px 18px rgba(7,143,82,0.28),
    inset 0 2px 4px rgba(255,255,255,0.25);
}

.readiness-check-item > span::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.readiness-check-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.readiness-check-item p {
  color: #cdd8d3;
  font-size: 13px;
  line-height: 1.45;
}

.readiness-status-bar {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.14);
}

.readiness-status-bar span {
  display: block;
  color: #cdd8d3;
  font-size: 12px;
  margin-bottom: 4px;
}

.readiness-status-bar strong {
  display: block;
  color: #44ee9d;
  font-size: 18px;
  margin-bottom: 12px;
}

.readiness-progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.readiness-progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #35de8d, #078f52);
  box-shadow: 0 0 22px rgba(68,238,157,0.35);
}

/* CTA */

.cta-strip {
  background: linear-gradient(90deg, #1d2221, #252a29);
  color: var(--white);
  padding: 36px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-icon {
  width: 58px;
  height: 58px;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
}

.cta-grid h2 {
  font-size: 26px;
  line-height: 1.3;
  max-width: 720px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.cta-actions span {
  color: #cbd5d1;
}

.contact-link {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  font-weight: 700;
}

/* FOOTER */

.footer {
  background: #ffffff;
  padding: 44px 0 20px;
  color: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 46px;
}

.footer-brand p {
  max-width: 280px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: #101820;
}

.footer-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer h4 {
  font-size: 15px;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: #4b5563;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .nav,
  .nav-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav.open {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 24px;
  }

  .hero {
    background: #ffffff;
    min-height: auto;
  }

  .hero .container {
    width: min(1180px, 92%);
    margin: 0 auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .hero-content {
    padding: 70px 0 20px;
  }

  .hero-image-area {
    height: 430px;
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .hero-image-area::before {
    display: none;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .steps-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-item::after {
    display: none;
  }

  .traceability-grid,
  .what-is-grid,
  .product-page-grid,
  .readiness-modern-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-container {
    height: 72px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-word {
    font-size: 20px;
  }

  .hero-content {
    padding: 54px 0 10px;
  }

  .hero-content h1 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-checks {
    gap: 12px;
  }

  .hero-image-area {
    height: 360px;
    border-radius: 18px;
  }

  .hero-main-image {
    object-position: center;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .steps-line {
    grid-template-columns: 1fr;
  }

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: auto;
    padding: 22px;
  }

  .document-preview-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .document-paper {
    margin: 0 auto;
  }

  .what-is-preview-body,
  .preview-body {
    grid-template-columns: 1fr;
  }

  .portal-mini-grid,
  .preview-specs {
    grid-template-columns: 1fr;
  }

  .what-is-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .what-is-feature-icon {
    margin: 0 auto;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .readiness-panel {
    padding: 22px;
  }

  .readiness-check-item {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
  }

  .cta-grid h2 {
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}