@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --red: #e63946;
  --red-dark: #c1121f;
  --dark: #080d1a;
  --navy: #0f1f3d;
  --light: #f5f7ff;
  --white: #ffffff;
  --gray: #64748b;
  --border: #e4e8f0;
  --text: #1a2340;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(.16, 1, .3, 1), transform 0.75s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--dark);
  padding: 8px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left {
  display: flex;
  gap: 28px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.topbar-left a svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.topbar a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.social-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon svg path,
.social-icon svg rect,
.social-icon svg circle,
.social-icon svg line {
  stroke-width: 2;
}

.social-icon:hover {
  color: var(--white);
}

/* ── NAVBAR ── */
nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.nav-container img {
  height: 76px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: -0.1px;
}

.nav-links a:hover {
  background: #fef2f2;
  color: var(--red);
}

.nav-links .nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  margin-left: 10px;
  border-radius: 10px;
}

.nav-links .nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

/* ── HERO ── */
.hero {
  min-height: 60vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 0.45;
}

.hero-bg {
  display: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.4), transparent);
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  animation: heroIn 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.2);
  color: #fca5a5;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-pill svg {
  width: 12px;
  height: 12px;
}

.hero h1 {
  font-size: 62px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #e63946 0%, #ff8a94 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats-bar {
  display: flex;
  margin-top: 80px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.hero-stat {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
}

.hero-stat strong span {
  color: var(--red);
}

.hero-stat small {
  font-size: 11.5px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 5px;
  display: block;
  text-transform: uppercase;
}

/* ── SECTION COMMON ── */
section {
  padding: 100px 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-heading span {
  color: var(--red);
}

.section-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 60px;
  font-weight: 400;
}

.centered {
  text-align: center;
}

.centered .section-label {
  justify-content: center;
}

.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── ABOUT ── */
.about {
  background: var(--light);
}

.about-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-img-badge strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
}

.about-img-badge span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.about-body .section-label {
  margin-bottom: 14px;
}

.about-body p {
  font-size: 15.5px;
  color: #4b5675;
  line-height: 1.95;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-cta {
  margin-top: 10px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 26px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff8a94);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}

.about-card h3 {
  font-size: 40px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -2px;
  line-height: 1;
}

.about-card p {
  font-size: 11.5px;
  color: var(--gray);
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── PRODUCTS ── */
.products {
  background: var(--light);
}

.products-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 22px;
  text-align: center;
  transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--navy) 0%, #0a2240 100%);
  opacity: 0;
  transition: opacity 0.35s;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(8, 13, 26, 0.3);
  border-color: transparent;
}

.product-card:hover .p-icon {
  color: #ff8a94;
}

.product-card:hover h3 {
  color: var(--white);
}

.product-card:hover p {
  color: rgba(255, 255, 255, 0.5);
}

.p-img-wrap {
  position: relative;
  z-index: 1;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.35s;
  letter-spacing: -0.2px;
}

.product-card p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.75;
  position: relative;
  z-index: 1;
  transition: color 0.35s;
}

/* ── WHY US ── */
.why-us {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us .section-heading {
  color: var(--text);
}

.why-us .section-desc {
  color: var(--gray);
}

.why-us .section-label {
  color: var(--red);
}

.why-us .section-label::before {
  background: var(--red);
}

.why-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 26px;
  text-align: center;
  transition: all 0.35s;
}

.why-card:hover {
  background: var(--white);
  border-color: var(--red);
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(230, 57, 70, 0.15);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 57, 70, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all 0.35s;
  padding: 16px;
  color: var(--red);
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card:hover .why-icon {
  background: rgba(230, 57, 70, 0.14);
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.why-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}

/* ── INDUSTRIES ── */
.industries {
  background: var(--white);
}

.industries-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: all 0.35s cubic-bezier(.16, 1, .3, 1);
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--red);
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(230, 57, 70, 0.15);
}

.industry-card:hover .ind-img {
  transform: scale(1.07);
}

.industry-card:hover .ind-icon {
  color: var(--red-dark);
}

.ind-img-wrap {
  height: 120px;
  overflow: hidden;
}

.ind-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ind-body {
  padding: 16px 14px 20px;
}

.ind-icon {
  width: 36px;
  height: 36px;
  display: block;
  margin: 0 auto 10px;
  color: var(--red);
  transition: all 0.35s;
}

.ind-icon svg {
  width: 100%;
  height: 100%;
}

.industry-card h3 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

/* ── CONTACT ── */
.contact {
  background: var(--light);
}

.contact-wrap {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: start;
}

.contact-left {
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark) 100%);
  border-radius: 22px;
  padding: 48px 38px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-left h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}

.contact-left>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-bottom: 40px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.c-icon {
  width: 44px;
  height: 44px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 11px;
  color: var(--red);
}

.c-icon svg {
  width: 100%;
  height: 100%;
}

.c-text label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 5px;
}

.c-text a,
.c-text span {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  line-height: 1.65;
  transition: color 0.2s;
}

.c-text a:hover {
  color: #ff8a94;
}

.contact-right {
  background: var(--light);
  border-radius: 22px;
  padding: 48px 44px;
  border: 1px solid var(--border);
}

.contact-right h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 30px;
  letter-spacing: -0.8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  background: var(--white);
  color: var(--text);
  transition: border 0.2s, box-shadow 0.2s;
  margin-bottom: 14px;
  font-weight: 500;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #a0aec0;
}

.contact-right input:focus,
.contact-right textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.07);
}

.contact-right textarea {
  height: 130px;
  resize: vertical;
}

.contact-right button {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: -0.2px;
}

.contact-right button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.35);
}

/* ── FOOTER ── */
footer {
  background: #04080f;
}

.footer-top {
  max-width: 1280px;
  margin: auto;
  padding: 72px 48px 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1.2fr;
  gap: 56px;
  border-bottom: 1px solid rgba(241, 237, 237, 0.897);
}

.fc-brand img {
  height: 75px;
  margin-bottom: 20px;
  display: block;
}

.fc-brand p {
  font-size: 14px;
  color: rgba(245, 243, 243, 0.986);
  line-height: 1.9;
}

.fc h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.fc ul {
  list-style: none;
}

.fc ul li {
  margin-bottom: 11px;
}

.fc ul li a {
  font-size: 13px;
  color: rgba(245, 241, 241, 0.973);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.fc ul li a::before {
  content: '›';
  color: var(--red);
  font-size: 16px;
  line-height: 1;
}

.fc ul li a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.fc-products {
  column-count: 2;
  column-gap: 24px;
}

.fc-products li {
  break-inside: avoid;
}

.fc-contact {
  list-style: none;
}

.fc-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(245, 240, 240, 0.952);
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.fc-contact li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 3px;
}

.fc-contact li a {
  color: rgba(241, 235, 235, 0.932);
  text-decoration: none;
  transition: color 0.2s;
}

.fc-contact li a:hover {
  color: var(--red);
}

.footer-bottom {
  max-width: 1280px;
  margin: auto;
  padding: 22px 48px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(245, 231, 231, 0.973);
  font-weight: 500;
}

.footer-bottom p span {
  color: var(--red);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  section {
    padding: 80px 28px;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .section-heading {
    font-size: 32px;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
  }

  .nav-links.open {
    max-height: 400px;
    opacity: 1;
    padding: 10px 20px 20px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 13px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links .nav-cta {
    margin: 14px 0 0;
    text-align: center;
  }

  section {
    padding: 64px 20px;
  }

  .hero {
    padding: 90px 20px 64px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .hero p {
    font-size: 15px;
  }

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

  .why-grid,
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 44px 20px;
  }

  .footer-bottom {
    padding: 18px 20px;
  }

  .contact-right {
    padding: 32px 24px;
  }

  .contact-left {
    padding: 36px 28px;
  }
}

@media (max-width: 420px) {

  .products-grid,
  .why-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats-bar {
    grid-template-columns: 1fr 1fr;
  }
}