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

:root {
  /* Primary — navy / blue, drawn from the "NDR" wordmark */
  --brand-dark: #14274d;
  --brand-mid: #1d5c9c;
  --brand-light: #3fa9dc;
  --brand-pale: #dceaf6;
  --brand-ultra: #f1f7fc;

  --accent: #1b8f76;
  --accent-light: #4fcbaa;
  --accent-ultra: #e7f7f2;

  --ink: #101b2e;
  --ink-mid: #26374f;
  --muted: #5c6c82;
  --border: #d9e3ee;
  --white: #ffffff;
  --off-white: #f7fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

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

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

nav .logo-mark img {
  height: auto;
  width: 150px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
  margin-right: 40px;
}
.mobile-cta-item {
  display: none;
}
.nav-links > li {
  position: relative;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links > li > a {
  position: relative;
  display: inline-block;
  padding: 6px 1px;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-mid), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--brand-dark);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

/* ---------- Products dropdown ---------- */
.has-dropdown {
  display: flex;
  align-items: center;
}
.nav-drop-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
}
.nav-link-main {
  position: relative;
  display: inline-block;
  padding: 6px 1px;
}
.nav-link-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-mid), var(--accent));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link-main:hover,
.nav-link-main.active {
  color: var(--brand-dark);
}
.nav-link-main:hover::after,
.nav-link-main.active::after,
.has-dropdown:hover .nav-link-main::after,
.has-dropdown.open .nav-link-main::after {
  transform: scaleX(1);
}
.has-dropdown:hover .nav-link-main,
.has-dropdown.open .nav-link-main {
  color: var(--brand-dark);
}

.nav-drop-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  border-radius: 5px;
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.3s ease;
}
.nav-drop-caret svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
.nav-drop-caret:hover,
.nav-drop-caret:focus-visible {
  color: var(--brand-dark);
  background: var(--brand-ultra);
}
.has-dropdown:hover .nav-drop-caret svg,
.has-dropdown.open .nav-drop-caret svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(20, 39, 77, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  transition:
    opacity 0.25s ease,
    transform 0.25s cubic-bezier(0.65, 0, 0.35, 1),
    visibility 0.25s;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  white-space: nowrap;
  transition:
    background 0.2s,
    color 0.2s,
    padding-left 0.2s;
}
.dropdown-menu a::after {
  display: none;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active {
  background: var(--brand-ultra);
  color: var(--brand-dark);
  padding-left: 20px;
}

@media (min-width: 901px) {
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}
.nav-cta {
  background: var(--brand-dark);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--brand-mid);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}
.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);
}

/* HERO (home) */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5% 60px;
  max-width: 1600px;
  margin: 0 auto;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--brand-ultra);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-left {
  position: relative;
  z-index: 1;
  padding-right: 5%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-ultra);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid var(--accent-light);
}
.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero h1 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-dark);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--brand-dark);
  color: white;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.btn-ghost:hover {
  gap: 12px;
}
.hero-right {
  position: relative;
  z-index: 1;
  padding-left: 6%;
}
.hero-visual {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(20, 39, 77, 0.1);
}
.hero-visual-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.stat-card {
  background: var(--brand-ultra);
  border-radius: 10px;
  padding: 18px;
  border: 1px solid var(--brand-pale);
}
.stat-num {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--brand-pale);
  color: var(--brand-mid);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.tag.gold {
  background: var(--accent-ultra);
  color: var(--accent);
}

/* MARQUEE */
.marquee-strip {
  background: var(--brand-dark);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 20s linear infinite;
}
.marquee-inner span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 40px;
}
.marquee-inner span.dot {
  color: var(--accent-light);
  padding: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION SHARED */
section {
  padding: 25px 5%;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mid);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--brand-mid);
  display: inline-block;
}
.section-title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
}

/* PAGE TITLE BAR (shared light breadcrumb header — used by Contact and any
   interior page that needs a simple title instead of a full hero) */
.page-title-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);

  /* Navbar ke just niche */
  margin-top: 80px;
  padding: 30px 5% 30px;
}

.page-title-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.page-title-bar h1 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--ink);
}

.page-title-bar .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.page-title-bar .breadcrumb a {
  color: var(--brand-mid);
  text-decoration: none;
  font-weight: 500;
}

.page-title-bar .breadcrumb a:hover {
  text-decoration: underline;
}

.page-title-bar .breadcrumb span[aria-hidden] {
  color: var(--border);
}

.page-title-bar .breadcrumb .current {
  color: var(--ink-mid);
}
@media (max-width: 600px) {
  .page-title-bar { padding: 104px 6% 18px; }
}

/* ABOUT (home teaser section) */
.about {
  background: white ;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
}
.about-left .section-desc {
  margin-bottom: 36px;
}
.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.val-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.val-icon svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-right-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.about-right-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--brand-pale);
  z-index: 0;
}
.mission-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mid);
  font-weight: 600;
  margin-bottom: 14px;
}
.mission-text {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.founder-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.founder-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.founder-title {
  font-size: 12px;
  color: var(--muted);
}

/* MISSION / VISION cards (About page) */
.mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.mv-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(20, 39, 77, 0.1);
}
.mv-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--brand-pale);
  z-index: 0;
}
.mv-card.accent::after {
  background: var(--accent-ultra);
}
.mv-card > * {
  position: relative;
  z-index: 1;
}
.mv-card h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--ink);
}
.mv-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 14px;
}
.mv-card p:last-of-type {
  margin-bottom: 0;
}
.mv-card .section-tag {
  margin-bottom: 10px;
}
.mv-card.accent .section-tag {
  color: var(--accent);
}
.mv-card.accent .section-tag::before {
  background: var(--accent);
}

/* ==========================================================
                        FOOTER
   Compact, left-aligned, premium corporate footer.
========================================================== */

footer {
  background: var(--off-white);
  color: var(--muted);
  padding: 64px 5% 0;
  border-top: 1px solid var(--border);
  position: relative;
  text-align: left;
}

footer::before {
  content: "";
  position: absolute;

  left: 0;
  width: 100%;
 
  background: linear-gradient(90deg, var(--brand-mid), var(--accent), var(--brand-light));
}

/* ==========================================================
                    GRID
========================================================== */

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  text-align: left;
  padding-bottom: 40px;
}

.footer-top > * {
  min-width: 0;
}

/* ==========================================================
                    BRAND
========================================================== */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 320px;
}

.footer-brand .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  margin-bottom: 0;
}

.logo-mark {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
}

.logo-mark img {
  width: 168px;
  height: auto;
  display: block;
}

.footer-brand-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* ==========================================================
                    COLUMNS
========================================================== */

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}

.footer-col h4 {
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  transition:
    color 0.2s,
    padding-left 0.2s;
  width: fit-content;
}

.footer-col a:last-child {
  margin-bottom: 0;
}

.footer-col a:hover {
  color: var(--brand-mid);
  padding-left: 4px;
}

/* ==========================================================
                    BOTTOM
========================================================== */

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  text-align: left;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.footer-green {
  color: var(--brand-dark);
  font-weight: 600;
}

/* ==========================================================
                    TABLET
========================================================== */

@media (max-width: 992px) {
  footer {
    padding: 56px 6% 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
  }

  .footer-brand {
    grid-column: 1/-1;
    max-width: 420px;
    margin: 0;
  }
}

/* ==========================================================
                    MOBILE
========================================================== */

@media (max-width: 768px) {
  footer {
    padding: 48px 6% 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-col {
    align-items: flex-start;
  }

  .logo-mark img {
    width: 148px;
  }

  .footer-brand p {
    font-size: 13.5px;
  }

  .footer-col h4 {
    font-size: 12.5px;
    margin-bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px 0 24px;
  }

  .footer-bottom p {
    font-size: 12.5px;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-badge {
  animation-delay: 0.1s;
}
.hero h1 {
  animation-delay: 0.22s;
}
.hero-desc {
  animation-delay: 0.34s;
}
.hero-actions {
  animation-delay: 0.46s;
}
.hero-right {
  animation: fadeUp 0.9s 0.3s ease both;
}
.cs-inner > * {
  animation: fadeUp 0.7s ease both;
}
.cs-inner > *:nth-child(2) {
  animation-delay: 0.1s;
}
.cs-inner > *:nth-child(3) {
  animation-delay: 0.2s;
}
.cs-inner > *:nth-child(4) {
  animation-delay: 0.3s;
}
.cs-inner > *:nth-child(5) {
  animation-delay: 0.4s;
}
.cs-inner > *:nth-child(6) {
  animation-delay: 0.5s;
}

/* SCROLL TOP BUTTON */
#topBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--brand-dark);
  color: white;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(20, 39, 77, 0.25);
  transition: background 0.2s;
}
#topBtn:hover {
  background: var(--brand-mid);
}
#topBtn svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .hero::before {
    display: none;
  }
  .hero-right {
    padding-left: 0;
    margin-top: 40px;
  }
  .about-grid,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mv-row {
    grid-template-columns: 1fr;
  }
  nav .nav-links {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(20, 39, 77, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0 6%;
    transition:
      max-height 0.3s ease,
      opacity 0.25s ease,
      padding 0.3s ease;
  }
  nav .nav-links.open {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 10px 6% 20px;
  }
  nav .nav-links li {
    width: 100%;
  }
  nav .nav-links > li > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  nav .nav-links > li:last-child > a {
    border-bottom: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .mobile-cta-item {
    display: block !important;
    margin-top: 8px;
  }
  .mobile-cta-item a {
    background: var(--brand-dark) !important;
    color: white !important;
    text-align: center;
    border-radius: 8px;
    border-bottom: none !important;
    padding: 13px !important;
    font-weight: 500;
  }

  /* Products dropdown becomes an inline accordion on mobile */
  .has-dropdown {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-drop-wrap {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
  }
  .nav-link-main {
    flex: 1;
    padding: 10px 0;
    border-bottom: none;
    font-size: 15px;
  }
  .nav-drop-caret {
    width: 36px;
    height: 36px;
  }
  .nav-drop-caret svg {
    width: 14px;
    height: 14px;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    background: var(--brand-ultra);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown-menu::before {
    display: none;
  }
  .has-dropdown.open .dropdown-menu {
    max-height: 260px;
    border-bottom: 1px solid var(--border);
  }
  .dropdown-menu a {
    padding: 12px 0 12px 22px;
    border-radius: 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(217, 227, 238, 0.6);
  }
  .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible,
  .dropdown-menu a.active {
    padding-left: 28px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 6%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-brand .logo-mark img {
    width: 130px;
  }
  nav .logo-mark img {
    width: 160px;
  }
}

/* ============================================================
   FORM CONTROLS — shared base for Contact page + Get In Touch modal
   (Loaded globally so the popup form looks right on every page.)
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group:has(input:required) label::after,
.form-group:has(textarea:required) label::after {
  content: " *";
  color: var(--brand-mid);
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px ;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off-white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #96a3b7;
}
.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--brand-light);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 4px var(--brand-pale);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ============================================================
   GET IN TOUCH — MODAL POPUP
   ============================================================ */
body.modal-open {
  overflow: hidden;
}

.ndrx-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 15, 30, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.ndrx-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.ndrx-modal {
  position: relative;
  background: white;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 16px;
  padding: 26px 24px 22px;
  box-shadow: 0 30px 80px rgba(9, 15, 30, 0.35);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1.2),
    opacity 0.28s ease;
}
.ndrx-modal-overlay.open .ndrx-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ndrx-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.ndrx-modal-close:hover {
  background: var(--brand-ultra);
  color: var(--brand-dark);
  transform: rotate(90deg);
}

.ndrx-modal h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
  padding-right: 26px;
}
.ndrx-modal-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.ndrx-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ndrx-modal-form .form-group {
  margin-bottom: 0;
}
.ndrx-modal-form .form-group input.invalid,
.ndrx-modal-form .form-group textarea.invalid,
.contact-form .form-group input.invalid,
.contact-form .form-group textarea.invalid {
  border-color: #c6432f;
  background: #fbeae6;
}
.ndrx-modal-form .form-group input.invalid:focus,
.ndrx-modal-form .form-group textarea.invalid:focus,
.contact-form .form-group input.invalid:focus,
.contact-form .form-group textarea.invalid:focus {
  box-shadow: 0 0 0 3px rgba(198, 67, 47, 0.15);
}
.field-error {
  display: block;
  font-size: 12.5px;
  color: #c6432f;
  min-height: 2px;
  margin-top: -2px;
  font-weight: 500;
}
.ndrx-modal-form textarea {
  min-height: 64px;
}
.ndrx-modal-submit,
.contact-form .btn-primary {
  box-shadow: 0 12px 26px rgba(20, 39, 77, 0.18);
}
.ndrx-modal-submit:hover,
.contact-form .btn-primary:hover {
  box-shadow: 0 14px 30px rgba(20, 39, 77, 0.24);
}

.ndrx-modal-status,
.contact-form-status {
  display: none;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  line-height: 1.5;
}
.ndrx-modal-status.success,
.contact-form-status.success {
  display: block;
  background: var(--accent-ultra);
  color: var(--accent);
  border: 1px solid var(--accent-light);
}
.ndrx-modal-status.error,
.contact-form-status.error {
  display: block;
  background: #fbeae6;
  color: #c6432f;
  border: 1px solid #f0b8ab;
}

.ndrx-modal-submit,
.contact-form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
}
.ndrx-modal-submit[disabled],
.contact-form .btn-primary[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}
.btn-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: white;
  animation: btnSpin 0.7s linear infinite;
}
.ndrx-modal-submit.loading .btn-spinner,
.contact-form .btn-primary.loading .btn-spinner {
  display: inline-block;
}
.ndrx-modal-submit.loading .btn-label,
.contact-form .btn-primary.loading .btn-label {
  opacity: 0.85;
}
@keyframes btnSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 560px) {
  .ndrx-modal {
    padding: 22px 18px 18px;
    border-radius: 14px;
  }
  .ndrx-modal h3 {
    font-size: 17px;
  }
}