/* ================================================================
   EUNIAN GLOBAL STYLESHEET
   Shared header, footer, animations, forms, and utilities.
   All pages link to this file to ensure uniform design.
   ================================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --blue: #004a99;
  --blue-dk: #003270;
  --blue-lt: #e8f0fb;
  --red: #e31e24;
  --green: #16a34a;
  --green-lt: #f0fdf4;
  --teal: #0d9488;
  --teal-lt: #f0fdfa;
  --wa: #25D366;
  --dark: #0b1829;
  --mid: #1e2d42;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1a1a2e;
  overflow-x: hidden;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Syne', sans-serif;
}

a {
  text-decoration: none;
}

/* ── HEADER ────────────────────────────────────────────────────── */
#hdr {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 74, 153, 0.08);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}

#hdr.slim {
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LOGO ──────────────────────────────────────────────────────── */
.logo-box {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8898aa;
}

/* ── NAV LINKS ─────────────────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  font-weight: 600;
}

/* ── DROPDOWN (simple — kept for backward compat) ──────────────── */
.nav-has-dd {
  position: relative;
}

.nav-has-dd:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dd {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: white;
  border-radius: 14px;
  padding: 8px;
  min-width: 260px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.11);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  pointer-events: none;
}

.dd-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a0aec0;
  padding: 8px 12px 4px;
}

.dd a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.18s;
}

.dd a:hover {
  background: var(--blue-lt);
  color: var(--blue);
  padding-left: 16px;
}

.dd-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── MEGA MENU ─────────────────────────────────────────────────── */
.nav-has-mega {
  position: static;
  /* The hover zone includes the ::after pseudo-element bridge */
}

.nav-mega-arrow {
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.7rem;
}

.mega {
  position: absolute;
  top: calc(100% - 12px);
  /* overlap 12px into header to eliminate gap */
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 18px 18px;
  padding: 12px 0 0;
  /* top padding matches the overlap */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10),
    0 1px 0 rgba(0, 74, 153, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.28s;
  pointer-events: none;
  z-index: 100;
}

.mega-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.mega-col {
  padding: 0 8px;
}

.mega-col:not(:last-child) {
  border-right: 1px solid #f0f4f8;
}

.mega-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f4f8;
}

.mega-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mega-cat {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0b1829;
  line-height: 1.2;
}

.mega-cat-sub {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 2px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #475569;
  transition: all 0.18s;
}

.mega-link:hover {
  background: var(--blue-lt);
  color: var(--blue);
  padding-left: 14px;
}

.mega-link i {
  width: 16px;
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.5;
}

.mega-link:hover i {
  opacity: 1;
}

.mega-link .ml-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: auto;
}

.mega-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  padding: 8px 10px;
  margin-top: 4px;
  border-radius: 6px;
  transition: all 0.18s;
}

.mega-view:hover {
  background: var(--blue-lt);
  padding-left: 14px;
}

/* Mobile mega accordion */
.mob-section {
  border-bottom: 1px solid #f1f5f9;
}

.mob-section-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0b1829;
}

.mob-section-btn i:last-child {
  font-size: 0.7rem;
  color: #94a3b8;
  transition: transform 0.3s;
}

.mob-section.open .mob-section-btn i:last-child {
  transform: rotate(180deg);
}

.mob-section-body {
  display: none;
  padding: 0 0 14px 12px;
}

.mob-section.open .mob-section-body {
  display: block;
}

.mob-cat-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  padding: 8px 0 4px;
}

.mob-sub-link {
  display: block;
  padding: 9px 0;
  font-size: 0.88rem;
  color: #475569;
  font-weight: 500;
}

.mob-sub-link:hover {
  color: var(--blue);
}

/* ── NAV CTA BUTTON ────────────────────────────────────────────── */
.btn-nav {
  background: var(--blue);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-nav:hover {
  background: var(--blue-dk);
  transform: translateY(-1px);
}

/* ── MOBILE MENU ───────────────────────────────────────────────── */
.mob-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

#mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: white;
  z-index: 999;
  padding: 20px;
  overflow-y: auto;
}

.mob-link {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
}

/* ── BREADCRUMB ────────────────────────────────────────────────── */
.bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bc a {
  color: rgba(255, 255, 255, 0.45);
}

.bc a:hover {
  color: white;
}

.bc-sep {
  opacity: 0.4;
  font-size: 0.6rem;
}

.bc-cur {
  color: #93c5fd;
  font-weight: 600;
}

/* ── SECTION SHARED ────────────────────────────────────────────── */
.sec {
  padding: 88px 0;
}

.si {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Aliases for pages using longer names */
.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 8px;
}

.sec-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 8px;
}

.sb {
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  margin-bottom: 14px;
}

.sec-bar {
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  margin-bottom: 14px;
}

.sb.c,
.sec-bar.c {
  margin-left: auto;
  margin-right: auto;
}

.st {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0b1829;
  margin-bottom: 14px;
}

.sec-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #0b1829;
  margin-bottom: 14px;
}

.sd {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.72;
}

.sec-desc {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.72;
}

/* ── REVEAL ANIMATION (unified) ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Legacy alias — fade-up maps to reveal */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Stagger delays */
.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

.d5 {
  transition-delay: 0.40s;
}

.d6 {
  transition-delay: 0.48s;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: #94a3b8;
}

.fti {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.ftg {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 40px;
  margin-bottom: 48px;
}

.fth {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.ftl {
  color: #94a3b8;
  font-size: 0.83rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.ftl:hover {
  color: white;
}

.ftbar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.ftico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.ftico:hover {
  transform: translateY(-2px);
}

/* Legacy footer aliases for pages not yet migrated */
.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 40px;
  margin-bottom: 48px;
}

.ft-h {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.ft-link {
  color: #94a3b8;
  font-size: 0.83rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.ft-link:hover {
  color: white;
}

.ft-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.ft-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.ft-ico:hover {
  transform: translateY(-2px);
}

/* ── WHATSAPP FAB ──────────────────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.42);
  transition: transform 0.22s;
  animation: waPulse 2.5s infinite;
}

.wa-btn:hover {
  transform: scale(1.12);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ── BACK TO TOP ───────────────────────────────────────────────── */
#tbtn,
#top-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 9000;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s;
  box-shadow: 0 4px 16px rgba(0, 74, 153, 0.28);
}

#tbtn.show,
#top-btn.show {
  opacity: 1;
  pointer-events: all;
}

/* ── FORM ──────────────────────────────────────────────────────── */
.form-wrap {
  background: white;
  border-radius: 22px;
  padding: 48px;
  box-shadow: 0 4px 48px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f4f8;
}

.flabel,
.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.finput,
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.94rem;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}

.finput:focus,
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.08);
}

.bsub,
.btn-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  padding: 14px;
  border-radius: 11px;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.bsub:hover,
.btn-submit:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 74, 153, 0.35);
}

/* ── HERO SHARED ───────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  animation: badgeBlink 2s infinite;
}

@keyframes badgeBlink {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ── CAROUSEL SHARED ───────────────────────────────────────────── */
.car-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #1e2d42;
}

.car-slide {
  display: none;
  width: 100%;
  height: 420px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.car-slide.active {
  display: flex;
  animation: cfade 0.5s ease;
}

@keyframes cfade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.car-nav {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.car-btn {
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s;
  color: #374151;
}

.car-btn:hover {
  background: white;
  transform: scale(1.05);
}

.car-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.car-dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.car-dot.active {
  background: white;
  width: 20px;
  border-radius: 4px;
}

.slide-svg {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #0b1829, #004a99);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

/* ── PRODUCT CARDS (shared pattern) ────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}

.prod-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8edf3;
  cursor: pointer;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.38s, border-color 0.38s;
  position: relative;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(0, 74, 153, 0.12);
  border-color: transparent;
}

.prod-card-img {
  height: 195px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(11, 24, 41, 0.65) 100%);
}

.prod-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 74, 153, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.32s;
  z-index: 5;
}

.prod-card:hover .prod-overlay {
  opacity: 1;
}

.overlay-btn {
  background: white;
  color: var(--blue);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transform: translateY(8px);
  transition: transform 0.28s;
  border: none;
  cursor: pointer;
}

.prod-card:hover .overlay-btn {
  transform: translateY(0);
}

.prod-num {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  background: var(--blue);
  color: white;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
}

.prod-status {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.prod-body {
  padding: 20px;
}

.prod-h {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0b1829;
  margin-bottom: 8px;
  line-height: 1.3;
}

.prod-p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.62;
  margin-bottom: 14px;
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.prod-tag {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: #eff6ff;
  color: #1d4ed8;
}

.prod-arrow {
  width: 28px;
  height: 28px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.22s;
  flex-shrink: 0;
}

.prod-card:hover .prod-arrow {
  background: var(--blue);
  color: white;
  transform: translateX(3px);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .car-wrap.hero-car {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mob-btn {
    display: block;
  }

  .ftg,
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {

  .ftg,
  .ft-grid {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 28px 18px;
  }
}