/* =========================================================
   RESET & GLOBAL
========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
}

html {
  overflow-x: clip; /* use clip instead of hidden — doesn't break sticky */
}

body {
  overflow-x: clip;
}

/* sticky button */
.sticky-circle-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 65px;
  height: 65px;
  background: #00bdb6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.sticky-circle-btn .material-symbols-outlined {
  font-size: 32px;
}

.sticky-circle-btn:hover {
  transform: translateY(-5px) scale(1.05);
  color: #fff;
  background: #00bdb6;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #00bdb6;
  }
  70% {
    box-shadow: 0 0 0 18px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

@media (max-width: 768px) {
  .sticky-circle-btn {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 15px;
  }

  .sticky-circle-btn .material-symbols-outlined {
    font-size: 28px;
  }
}

/* =========================================================
   MOBILE SPACING FIXES — horizontal padding throughout
========================================================= */

/* ── Restore Bootstrap container gutters on mobile
   (overridden by products page layout rules) ── */

/* ── Shared mobile section padding ── */
@media (max-width: 767px) {
  /* Home page sections */
  .hero-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .accessories-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .news-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* .technical-section {
    padding-left: 16px;
    padding-right: 16px;
  } */

  /* About page sections */
  .work-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .vision-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .engineering-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cta-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Product detail page */
  .product-detail {
    padding-left: 16px;
    padding-right: 16px;
  }
  .features-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .features-left {
    padding-left: 0;
    padding-right: 0;
  } /* reset inner override */
  .tab-main-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .downloads-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Products listing page */
  .gen-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .main-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Banner search box */
  .banner-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Extra small screens — slightly tighter but still breathing room ── */
@media (max-width: 480px) {
  .product-detail {
    padding-left: 12px;
    padding-right: 12px;
  }
  .features-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .downloads-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .tab-main-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
  .gen-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Feat boxes — remove inner margin that was causing overflow */
  .feat-box {
    margin-left: 0;
    margin-right: 0;
  }

  /* Vision & engineering on very small screens */
  .vision-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .engineering-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --primary: #00022b;
  --teal: #00bdb6;
  --teal-dark: #006a66;
  --white: #ffffff;
  --light-bg: #f7f6ff;
  --text-muted-col: #47464f;
  --border-col: #e5e5e5;

  --secondary-color: #f5f5f5;
  --text-size: 14px;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --background-color: #ffffff;

  --bg: #f5f5f5;
  --bg2: #f5f5f5;
  --bg3: #f5f5f5;

  --text-muted: #6b7280;
  --text-dim: #9ca3af;

  --card-bg: #ffffff;

  --radius: 6px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --container-width: 1184px;
}

/* =========================================================
   COMMON ICON
========================================================= */

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.google-material {
  line-height: 1;
  vertical-align: middle;
}

.icon {
  color: var(--teal);
}

.text_dec_glob {
  text-decoration: none;
  color: #000;
}

/* =========================================================
   BANNER SECTION
========================================================= */

.banner-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    76deg,
    rgba(0, 2, 43, 0.95) 0%,
    rgba(0, 2, 43, 0) 87%
  );
}

.banner-content {
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: 2;
  width: min(850px, 92%);
  padding: clamp(20px, 4vw, 40px);

  color: #fff;

  border: 5px solid rgba(255, 255, 255, 1);
  border-left: 0 !important;

  backdrop-filter: blur(10px);

  background: linear-gradient(
    100deg,
    rgba(0, 2, 43, 0.85) 41%,
    rgba(0, 7, 145, 0.35) 100%
  );
}

.banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.banner-heading {
  margin: 18px 0;

  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
}

/* =========================================================
   SEARCH BOX
========================================================= */

.search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-input-wrap {
  position: relative;
  width: 368px; /* matches input default width */
  max-width: 100%;
  box-sizing: border-box;
}

.search-input-wrap .myicon {
  position: absolute;
  top: 50%;
  left: 14px;

  transform: translateY(-50%);

  color: #fff;
  font-size: 18px;
}

.search-input-wrap input {
  width: 368px;
  max-width: 100%;
  height: 52px;
  padding: 0 14px 0 42px;

  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);

  color: #fff;
  outline: none;

  box-sizing: border-box;
}

.search-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-btn-cta {
  height: 52px;
  padding: 0 28px;

  border: none;
  border-radius: 6px;

  background: #fff;
  color: var(--teal);

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .search-input-wrap input {
    width: 100%;
  }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
  padding: clamp(80px, 12vw, 160px) 0 80px;
}

.hero-box {
  padding: 20px;
}

.hero-box .icon {
  display: block;
  margin-bottom: 16px;
  font-size: 30px;
}

.hero-box h2 {
  margin-bottom: 12px;

  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
}

.hero-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* =========================================================
   ACCESSORIES
========================================================= */

.accessories-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.section-headline {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary);
}

.section-headline .line {
  width: 100px;
  height: 4px;
  margin-top: 14px;
  background: var(--teal);
  border-radius: 20px;
}

.sub-tag {
  color: var(--teal);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.sub-title {
  margin: 10px 0 14px;

  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
}

.body-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* =========================================================
   ACCESSORIES CARDS
========================================================= */

.acc-big-card,
.acc-small-card {
  background: #fff;

  border-radius: 12px;

  box-shadow: 0 15px 40px rgba(25, 21, 67, 0.06);
}

.acc-big-card {
  /* height: 100%; */
}

.acc-big-card img,
.acc-small-card img {
  width: 100%;
  object-fit: cover;
}

.acc-big-card img {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.acc-small-card img {
  height: 220px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.acc-big-card .card-text,
.acc-small-card .card-text {
  padding: 24px;
}

.acc-small-card h3 {
  margin-bottom: 10px;

  font-size: 20px;
  font-weight: 800;
}

/* =========================================================
   BADGES
========================================================= */

.acc-badge-container {
  position: relative;
}

.acc-badge {
  position: absolute;
  top: 14px;
  left: 14px;

  z-index: 10;

  padding: 5px 10px;

  border-radius: 4px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;

  text-transform: uppercase;
}

.badge__1 {
  background: var(--teal);
  color: #fff;
}

.badge__2 {
  background: #3c0048;
  color: #ba68c6;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  margin-top: 14px;

  color: var(--teal);

  font-size: 12px;
  font-weight: 800;

  text-decoration: none;
}

.explore-link:hover {
  color: var(--teal-dark);
}

/* =========================================================
   TECHNICAL SECTION
========================================================= */

.technical-section {
  background: linear-gradient(101deg, #3f59a7 24%, #744199 73%, #71ccd2 120%);
  padding: 80px 0;
}

.tech-accent {
  color: var(--teal);
}

.tech_para {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  color: white !important;
}

.tech-cards-row {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.tech-card {
  height: 100%;
  min-height: 100%;

  padding: 50px 34px;

  border-right: 1px solid rgba(255, 255, 255, 0.12);

  transition: 0.3s ease;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tech-card .icon {
  margin-bottom: 16px;
  font-size: 32px;
}

.tech-card h3 {
  margin-bottom: 10px;

  color: #fff;

  font-size: 22px;
  font-weight: 700;
}

.tech-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

.tech-main-heading {
  font-size: clamp(57px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  line-height: 1.2;
}

/* Tablet */
@media (max-width: 767px) {
  .tech-main-heading {
    font-size: 35px;
    line-height: 1.25;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .tech-main-heading {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: -0.5px;
  }

  .tech-main-heading br {
    display: none;
  }

  .tech-accent {
    display: inline !important;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .tech-main-heading {
    font-size: 35px;
    line-height: 1.4;
  }
}

/* =========================================================
   NEWS SECTION
========================================================= */

.news-section {
  padding: 90px 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;

  gap: 20px;

  margin-bottom: 40px;
}

.news-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--primary);
}

.news-subline {
  color: #666;
  font-size: 15px;
}

.news-card img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-date {
  display: block;
  margin-top: 14px;

  color: var(--teal);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.news-card h3 {
  margin: 10px 0;

  font-size: 18px;
  font-weight: 800;
}

.news-card p {
  color: #555;

  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
  margin-top: 60px;
}

.contact-col {
  position: relative;
  overflow: hidden;

  height: clamp(320px, 45vw, 700px);
}

.contact-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-col::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-col.left::before {
  background: linear-gradient(
    90deg,
    rgba(0, 2, 43, 0.9) 0%,
    rgba(0, 2, 43, 0.45) 55%,
    rgba(0, 2, 43, 0) 100%
  );
}

.contact-col.right::before {
  background: linear-gradient(
    270deg,
    rgba(0, 106, 102, 0.9) 0%,
    rgba(0, 106, 102, 0.45) 55%,
    rgba(0, 106, 102, 0) 100%
  );
}

.overlay-text {
  position: absolute;
  top: 50%;
  z-index: 2;

  transform: translateY(-50%);

  max-width: 400px;

  color: #fff;
}

.contact-col.left .overlay-text {
  left: clamp(24px, 6vw, 80px);
}

.contact-col.right .overlay-text {
  right: clamp(24px, 6vw, 80px);
}

.overlay-text h1 {
  margin-bottom: 16px;

  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
}

.overlay-text p {
  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 14px;
  line-height: 1.8;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-pdf,
.btn-contact-cta {
  padding: 14px 30px;

  border: none;
  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  cursor: pointer;
  transition: 0.3s ease;
}

.btn-pdf {
  background: #fff;
  color: #041266;
}

.btn-contact-cta {
  background: #041266;
  color: #fff;
}

.btn-pdf:hover,
.btn-contact-cta:hover {
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .banner-section {
    height: 85vh;
  }

  .tech-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .banner-section {
    height: 75vh;
  }

  .banner-content {
    bottom: 15px;
    width: calc(100% - 20px);
  }

  .contact-col.left .overlay-text,
  .contact-col.right .overlay-text {
    left: 50%;
    right: auto;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .banner-section {
    min-height: 420px;
  }

  .search-btn-cta {
    width: 100%;
  }

  .hero-box {
    text-align: center;
  }
}

/* =========================================================
   ROOT VARIABLES — CONFIGURE PAGE ADDITIONS
========================================================= */

:root {
  --navy-light: #1a1c45;
  --yellow: #ffb800;
  --yellow-hover: #e6a600;
  --purple-bg: #f6f1ff;
  --purple-muted: #eae5ff;
  --border: #c8c5d0;
  --text-dark: #1a1a2e;
  --card-shadow: 0 20px 60px rgba(25, 21, 67, 0.08);
  /* --navy        → use --primary  (#00022b) */
  /* --text-muted  → use --text-muted-col (#47464f) */
}

/* =========================================================
   CONFIGURE PAGE — BODY BACKGROUND
   Scoped so it doesn't affect other pages
========================================================= */

.configure-page {
  background: #f4f2fb;
  color: var(--text-dark);
  min-height: 100vh;
}

/* =========================================================
   CONFIGURE PAGE — LAYOUT
========================================================= */

.page-wrapper {
  padding: 40px 0 60px;
}

/* ── HEADER ── */
.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.config-title h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--primary); /* was --navy */
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1.1;
}

.config-title p {
  font-size: 15px;
  color: var(--text-muted-col); /* was --text-muted */
  margin: 0;
}

/* ── SUPPORT BADGE ── */
.support-badge {
  background: var(--purple-muted);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 13.5px;
  color: var(--primary); /* was --navy */
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  max-width: 100%;
}

.support-badge .badge-icon {
  width: 28px;
  height: 28px;
  background: orange; /* was --navy */
  border-radius: 50%;
  z-index: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.support-badge p {
  margin: 0;
  line-height: 1.4;
}
.support-badge strong {
  font-weight: 600;
  text-decoration: underline;
}

/* ── MAIN CARD ── */
.config-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 40px 44px;
}

/* ── SECTION BLOCK ── */
.section-block {
  width: 100%;
  margin: 22px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary); /* was --navy */
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-label h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin: 0;
  color: var(--primary); /* was --navy */
}

/* ── TOGGLE BUTTONS ── */
.btn-group-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.toggle-btn {
  padding: 9px 18px;
  height: 42px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
}

.toggle-btn:hover {
  border-color: var(--primary); /* was --navy */
  color: var(--primary);
  background: var(--purple-bg);
}

.toggle-btn.active {
  background: var(--primary); /* was --navy */
  color: #fff;
  border-color: var(--primary);
}

/* ── SELECT WRAPPER ── */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after,
.small-select-wrapper::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted-col); /* was #47464f */
  border-bottom: 2px solid var(--text-muted-col);
  pointer-events: none;
}

.small-select-wrapper::after {
  right: 12px;
  width: 7px;
  height: 7px;
}

/* ── CONFIG SELECT ── */
.config-select {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 9px;
  background: var(--purple-bg);
  padding: 0 44px 0 16px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.config-select:focus {
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(0, 2, 43, 0.12);
}

.field-hint {
  font-size: 12px;
  color: var(--text-muted-col); /* was --text-muted */
  margin-top: 7px;
  display: block;
}

/* ── SEGMENT CONTROL ── */
.segment-control {
  display: inline-flex;
  align-items: center;
  background: var(--purple-bg);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
}

.segment-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #888;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.segment-btn.active {
  background: var(--primary); /* was --navy */
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 2, 43, 0.18);
}

.segment-btn:not(.active):hover {
  color: var(--primary);
}

/* ── SPEED ROW ── */
.speed-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.value-input {
  width: 90px;
  height: 52px !important;
  border: none;
  border-radius: 8px;
  background: var(--purple-bg);
  padding: 0 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.value-input::placeholder {
  color: #aaa;
}
.value-input:focus {
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(0, 2, 43, 0.12);
}

.small-select-wrapper {
  position: relative;
  flex: 1;
  min-width: 150px;
  max-width: 340px;
}

.small-select {
  width: 100%;
  height: 49px;
  border: none;
  border-radius: 8px;
  background: var(--purple-bg);
  padding: 0 36px 0 14px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.small-select:focus {
  outline: none;
  box-shadow: 0 0 0 2.5px rgba(0, 2, 43, 0.12);
}

/* ── FOOTER ACTIONS ── */
.footer-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-actions-left {
  flex: 1;
  min-width: 220px;
}
.footer-actions-left > p {
  font-size: 13.5px;
  color: var(--text-muted-col); /* was --text-muted */
  margin-bottom: 14px;
}

.action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-add {
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--primary); /* was --navy */
  color: #fff;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-add:hover {
  background: var(--navy-light);
}

.btn-reset {
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-reset:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-show {
  height: 52px;
  padding: 0 28px;
  border-radius: 9px;
  background: var(--yellow);
  color: var(--primary); /* was --navy */
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn-show:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}
.btn-show:active {
  transform: translateY(0);
}

.footer-actions-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
}

.tube-limit-note {
  font-size: 12px;
  color: var(--text-muted-col); /* was --text-muted */
  text-align: right;
}

/* ── TRUST BADGES ── */
.trust-strip {
  margin-top: 24px;
}

.trust-card {
  background: var(--purple-muted);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 373px;
  height: 112px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary); /* was --navy */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon .material-symbols-outlined {
  font-size: 26px;
}

.trust-text h6 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--primary); /* was --navy */
  margin-bottom: 4px;
}

.trust-text p {
  font-size: 12px;
  color: var(--text-muted-col); /* was --text-muted */
  margin: 0;
  line-height: 1.4;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.config-header {
  animation: fadeUp 0.45s ease both;
}
.config-card {
  animation: fadeUp 0.5s 0.1s ease both;
}
.trust-strip {
  animation: fadeUp 0.5s 0.2s ease both;
}

/* ── RESPONSIVE — CONFIGURE PAGE ── */
@media (max-width: 991.98px) {
  .config-card {
    padding: 28px 24px;
  }
  .support-badge {
    max-width: 100%;
    white-space: normal;
  }
  .footer-actions-right {
    align-items: flex-start;
  }
  .tube-limit-note {
    text-align: left;
  }
  .btn-show {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .page-wrapper {
    padding: 24px 0 40px;
  }
  .config-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 13px;
  }
  .config-card {
    padding: 22px 16px;
    border-radius: 12px;
  }
  .config-title h1 {
    font-size: 26px;
  }
  .support-badge {
    width: 100%;
  }
  .footer-actions {
    flex-direction: column;
  }
  .footer-actions-right {
    width: 100%;
    align-items: stretch;
  }
  .btn-show {
    width: 100%;
    text-align: center;
    height: 48px;
  }
  .small-select-wrapper {
    max-width: 100%;
  }
  .trust-card {
    margin: 0 13px;
  }
}

@media (max-width: 575.98px) {
  .config-card {
    padding: 18px 14px;
  }
  .toggle-btn {
    font-size: 12.5px;
    padding: 8px 14px;
    height: 38px;
  }
  .trust-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .trust-icon {
    width: 46px;
    height: 46px;
  }
  .segment-btn {
    padding: 0 14px;
    font-size: 12.5px;
  }
  .value-input {
    width: 70px;
  }
}

/* =========================================================
   ABOUT PAGE — HERO
========================================================= */

.about-hero {
  position: relative;
  width: 100%;
  height: 620px;
}

.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 2, 43, 0.92) 0%,
    rgba(0, 2, 43, 0.6) 45%,
    rgba(0, 2, 43, 0.08) 100%
  );
  z-index: 1;
}

.about-hero__card {
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 2;
  border-top: 5px solid rgba(255, 255, 255, 0.75);
  border-right: 5px solid rgba(255, 255, 255, 0.75);
  border-bottom: 5px solid rgba(255, 255, 255, 0.75);
  border-left: none;
  background: linear-gradient(
    100.4deg,
    #00022b 41.43%,
    rgba(0, 7, 145, 0.34) 99.63%
  );
  backdrop-filter: blur(8.5px);
  -webkit-backdrop-filter: blur(10px);
  width: clamp(300px, 55%, 800px);
  height: auto;
  min-height: 420px;
  padding: 44px 52px;
  color: #fff;
}

.about-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  display: block;
}

.about-hero__heading {
  font-size: clamp(32px, 5.5vw, 82px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.about-hero__text {
  font-size: clamp(24px, 3vw, 16.5px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 688px;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 1199.98px) {
  .about-hero {
    height: 580px;
  }
  .about-hero__card {
    width: clamp(300px, 65%, 680px);
    padding: 36px 40px;
    min-height: 380px;
  }
}

@media (max-width: 991.98px) {
  .about-hero {
    height: 540px;
  }
  .about-hero__overlay {
    background: linear-gradient(
      140deg,
      rgba(0, 2, 43, 0.92) 0%,
      rgba(0, 2, 43, 0.7) 55%,
      rgba(0, 2, 43, 0.2) 100%
    );
  }
  .about-hero__card {
    width: clamp(280px, 80%, 560px);
    padding: 30px 32px;
    min-height: unset;
    bottom: -40px;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .about-hero__img {
    position: relative;
    inset: unset;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    display: block;
    flex-shrink: 0;
  }
  .about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 240px;
    background: linear-gradient(
      180deg,
      rgba(0, 2, 43, 0.15) 0%,
      rgba(0, 2, 43, 0.55) 100%
    );
    z-index: 1;
  }
  .about-hero__card {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    width: 100%;
    min-height: unset;
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0;
    padding: 28px 20px 36px;
    z-index: 2;
    background: linear-gradient(
      160deg,
      #00022b 50%,
      rgba(0, 7, 145, 0.45) 100%
    );
  }
  .about-hero__heading {
    font-size: clamp(28px, 7vw, 40px);
    margin-bottom: 14px;
  }
  .about-hero__text {
    font-size: 17px;
    line-height: 1.72;
  }
}

@media (max-width: 575.98px) {
  .about-hero__img {
    height: 200px;
  }
  .about-hero__overlay {
    height: 200px;
  }
  .about-hero__card {
    padding: 24px 16px 32px;
  }
  .about-hero__eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .about-hero__heading {
    font-size: clamp(24px, 8vw, 32px);
    margin-bottom: 12px;
  }
  .about-hero__text {
    font-size: 17px;
  }
}

@media (max-width: 400px) {
  .about-hero__img {
    height: 180px;
  }
  .about-hero__overlay {
    height: 180px;
  }
  .about-hero__heading {
    font-size: 24px;
  }
}

/* =========================================================
   ABOUT PAGE — WHO WE WORK WITH
========================================================= */

.work-section {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}

.work-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.work-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #05072c;
  margin: 0;
  white-space: nowrap;
}

.work-header .line {
  flex: 1;
  height: 1px;
  background: #d8d8d8;
}

.work-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.work-card {
  width: 100%;
  padding: 35px 28px;
  background: #fff;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.work-card:hover {
  background: #fafafa;
}

.work-card .material-symbols-outlined {
  font-size: 30px;
  color: var(--teal-dark); /* was #00707b — closest global variable */
  margin-bottom: 20px;
}

.work-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #12153d;
  margin-bottom: 18px;
}
.work-card p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

@media (max-width: 1280px) {
  .work-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .work-section {
    padding: 60px 20px;
  }
  .work-header h2 {
    font-size: 38px;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-card {
    padding: 30px 24px;
  }
  .work-card h4 {
    font-size: 18px;
  }
  .work-card p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .work-section {
    padding: 50px 15px;
  }
  .work-header {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
  }
  .work-header h2 {
    font-size: 28px;
    white-space: normal;
  }
  .work-header .line {
    display: none;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card {
    padding: 24px 18px;
  }
  .work-card .icon {
    margin-bottom: 20px;
  }
  .work-card h4 {
    font-size: 16px;
  }
  .work-card p {
    font-size: 15px;
  }
}

/* =========================================================
   ABOUT PAGE — VISION SECTION
========================================================= */

.vision-section {
  background-color: #041266;
  padding: 100px 0;
  overflow: hidden;
}

.vision-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
}

.vision-heading {
  font-size: 66px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.08;
  margin: 8px 0 0;
}

.vision-left .accent-word {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--teal);
  display: block;
  margin: 20px 0;
  line-height: 1.08;
}

.vision-left p {
  margin-top: 30px;
}

.vision-body {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  width: 100%;
  max-width: 544px;
  padding: 10px 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.vision-card {
  padding: 32px 26px;
  min-height: 172px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.vision-card:hover {
  background: rgba(0, 210, 255, 0.05);
}
.vision-card.active {
  border-left: 3px solid var(--teal);
}

.vision-card h5 {
  font-size: 12px;
  letter-spacing: 3.5px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 14px;
}

.vision-card p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 991.98px) {
  .vision-section {
    padding: 70px 0 80px;
  }
  .vision-left {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .vision-section {
    padding: 60px 0 70px;
  }
  .vision-body {
    font-size: 14px;
    padding: 10px 0;
    max-width: 100%;
  }
  .vision-heading {
    font-size: 50px !important;
  }
  .vision-left .accent-word {
    font-size: 50px !important;
    margin: 0;
  }
  .vision-grid {
    gap: 0;
  }
  .vision-card {
    padding: 24px 18px;
    min-height: unset;
  }
}

@media (max-width: 575.98px) {
  .vision-section {
    padding: 50px 0 60px;
  }
  .vision-label {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-card {
    min-height: unset;
    padding: 22px 18px;
  }
  .vision-heading {
    font-size: 45px;
  }
  .vision-left .accent-word {
    margin-top: 7px;
    font-size: 45px;
  }
}

/* =========================================================
   ABOUT PAGE — ENGINEERING SECTION
========================================================= */

.engineering-section {
  width: 100%;
  padding: 100px 0 0;
  background: #ffffff;
}

.eng-image-wrap {
  width: 100%;
  max-width: 544px;
  border-radius: 16px;
  overflow: hidden;
}

.eng-image-wrap img {
  width: 100%;
  height: 512px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.eng-tag {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eng-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
}

.feature-num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 2, 43, 0.2);
  line-height: 1;
}

.feature-text h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--primary);
}
.feature-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #5e5d68;
  margin: 0;
}

.engin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  height: 58px;
  padding: 0 28px;
  border-radius: 10px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}

.engin-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #0a0f4a;
}
.engin-btn svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .engineering-section {
    padding: 70px 0 0;
  }
  .eng-image-wrap {
    max-width: 100%;
  }
  .eng-image-wrap img {
    height: 380px;
  }
}

@media (max-width: 767.98px) {
  .engineering-section {
    padding: 60px 0 0;
  }
  .eng-title {
    font-size: 50px;
    margin-bottom: 28px;
  }
  .eng-tag {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  .feature-item {
    gap: 12px;
    margin-bottom: 22px;
  }
  .feature-num {
    width: 36px;
    height: 36px;
    font-size: 32px;
    margin-right: 12px;
  }
  .feature-text h6 {
    font-size: 16px;
  }
  .feature-text p {
    font-size: 13px;
    line-height: 1.7;
  }
  .engin-btn {
    width: 100%;
    min-width: unset;
    height: 52px;
    font-size: 12px;
  }
  .eng-image-wrap img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .engineering-section {
    padding: 45px 0 0;
  }
  .eng-image-wrap img {
    height: 220px;
    border-radius: 10px;
  }
  .eng-title {
    font-size: 45px;
  }
  .feature-num {
    font-size: 26px;
  }
}

/* =========================================================
   ABOUT PAGE — CTA HERO BANNER
========================================================= */

.cta-hero {
  margin: 40px 0 0;
  padding: 60px 24px;
  background: rgba(240, 235, 255, 1);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.cta-hero h2 {
  font-size: clamp(22px, 4vw, 52px);
  font-weight: 700;
  max-width: 804px;
  width: 100%;
  line-height: 1.15;
  color: #0a0e3d;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn_primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  color: #fff;
}
.btn_primary:active {
  transform: translateY(0);
}

.btn_secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  background: transparent;
  color: #0a0e3d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(10, 14, 61, 0.25);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.btn_secondary:hover {
  border-color: rgba(10, 14, 61, 0.5);
  background: rgba(10, 14, 61, 0.04);
  transform: translateY(-2px);
  color: #0a0e3d;
}
.btn_secondary:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cta-hero {
    padding: 48px 20px;
    margin: 30px 0 0;
  }
  .cta-hero h2 {
    font-size: clamp(20px, 5vw, 32px);
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .cta-hero {
    padding: 40px 16px;
  }
  .cta-hero h2 {
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .btn_primary,
  .btn_secondary {
    width: 100%;
    height: 52px;
    padding: 0 24px;
  }
}

/* =========================================================
   ROOT VARIABLES — PRODUCTS PAGE ADDITIONS
   ⚠️ Confirm --accent2 and --font-mono before going live
========================================================= */

:root {
  --accent: #00bdb6; /* = --teal; confirm if different */
  --accent2: #7c3aed; /* purple badge; confirm exact value */
  --text: #1a1a2e; /* primary dark text */
  --font-head: "Manrope", sans-serif;
  --font-mono: "DM Mono", monospace;
}

/* =========================================================
   GLOBAL — SCROLLBAR (intentionally global)
========================================================= */

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* =========================================================
   PRODUCTS PAGE — HERO HEADER
========================================================= */

.hero-header {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 433px;
}

.hero-header img {
  width: 100vw;
  height: 433px;
  object-fit: cover;
  display: block;
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(0, 2, 43, 0.95) 10%,
    rgba(0, 7, 145, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  color: #fff;
}

.hero-content .d-flex {
  align-items: center;
  gap: 14px !important;
  margin-bottom: 12px;
}

.hero-content h2 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.subtitle-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: #d9d9d9;
  margin-top: 14px;
  display: inline-block;
}

.hero-content .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  width: 95%;
  color: #f2f2f2;
  margin: 0;
}

@media (max-width: 992px) {
  .hero-header {
    height: 380px;
  }
  .hero-header img {
    height: 380px;
  }
  .hero-content {
    width: 92%;
  }
}

@media (max-width: 768px) {
  .hero-header {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    flex-shrink: 0;
  }
  .hero-content {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 24px 20px 30px;
    background: #00022b;
  }
  .hero-content .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px !important;
    margin-bottom: 14px;
  }
  .hero-content h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .subtitle-sub {
    margin-top: 0;
    font-size: 14px;
  }
  .hero-content .subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-header img {
    height: 180px;
  }
  .hero-content {
    padding: 20px 16px 24px;
  }
  .hero-content h2 {
    font-size: 24px;
  }
  .subtitle-sub {
    font-size: 13px;
  }
  .hero-content .subtitle {
    font-size: 15px;
  }
  .hero-content p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================================================
   PRODUCTS PAGE — TOPBAR
========================================================= */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-brand {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
}

.topbar-brand span {
  color: var(--accent);
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar-actions button {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.topbar-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.quote-count {
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 1px;
  border: none;
}

/* =========================================================
   PRODUCTS PAGE — LAYOUT
========================================================= */

.page-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: calc(100vh - 49px);
}

.remove-sidebar {
  display: none;
}

.sidebar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background-color: #000;
  border-radius: 5px;
}

.sidebar-toggle span {
  width: 22px;
  height: 2px;
  background-color: white;
  display: block;
  border-radius: 2px;
  transition: 0.2s;
}

/* =========================================================
   PRODUCTS PAGE — SIDEBAR
========================================================= */

.sidebar {
  width: 224px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  transition: transform 0.3s ease;
  padding-left: 16px;
  padding-right: 16px;
}

.sb-brand h6 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.3;
  color: var(--text);
}

.sb-brand small {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.sb-nav {
  text-align: start;
  list-style: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.sb-nav li {
  display: flex;
  justify-content: left;
  padding: 10px 0;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: all 0.15s;
}

.sb-nav li:hover {
  color: var(--text-dim);
}
.sb-nav li.active {
  color: var(--accent);
}

.sb-nav li .nav-icon {
  width: 45px;
  height: 16px;
  display: flex;
  flex-shrink: 0;
}

.sb-nav li .nav-icon svg {
  width: 14px;
  height: 14px;
}

.filter-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  font-weight: 800;
  margin-bottom: 14px;
}

/* =========================================================
   PRODUCTS PAGE — CHECKBOXES
========================================================= */

.check-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 8px;
  margin: auto;
  margin-bottom: 12px;
}

.check-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
  margin-left: 10px;
  font-size: 13px;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 600;
}

.check-item label {
  margin-left: 10px;
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1;
}

/* =========================================================
   PRODUCTS PAGE — RANGE SLIDER
   ⚠️ Scoped to .sidebar to avoid styling ALL range inputs globally
========================================================= */

.range-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.range-row span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.range-row span.hi {
  color: var(--accent);
}

.sidebar input[type="range"] {
  appearance: none;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) 65%,
    var(--border) 65%
  );
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.sidebar input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg2);
  cursor: pointer;
}

/* =========================================================
   PRODUCTS PAGE — PILLS
========================================================= */

.app-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.app-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.app-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

/* =========================================================
   PRODUCTS PAGE — MAIN CONTENT
========================================================= */

.main-content {
  flex: 1;
  padding: 28px 28px 40px;
  min-width: 0;
}

/* =========================================================
   PRODUCTS PAGE — PRODUCT GRID
========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-group {
    display: block;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-group {
    display: block;
  }
}

/* =========================================================
   PRODUCTS PAGE — GEN / CTA WRAPPER
========================================================= */

.gen-wrapper {
  max-width: 902px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: auto;
}

.first-gen {
  background: var(--primary);
  color: white;
  padding: 48px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 12px;
  box-sizing: border-box;
}

.first-gen span {
  font-size: 12px;
  color: rgba(140, 244, 237, 1);
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.first-gen h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
  width: 100%;
}

.gen-para {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted-col);
  margin-bottom: 20px;
  font-weight: 400;
}

.gen-para__2 {
  font-size: 16px;
  line-height: 1.7;
  color: #7681d4;
  margin-bottom: 20px;
  font-weight: 400;
}

.first-gen .gen-btn {
  width: fit-content;
  min-width: 220px;
  height: 40px;
  padding: 0 24px;
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.first-gen .gen-btn:hover {
  transform: translateY(-2px);
}

.second-gen {
  min-width: 260px;
  background: rgba(240, 235, 255, 1);
  border: 1px solid rgba(200, 197, 208, 0.2);
  padding: 32px;
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.second-gen h3 {
  font-size: 26px;
  line-height: 1.4;
  margin: 18px 0 16px;
  font-weight: 700;
}

.second-gen .content {
  font-size: 15px;
  line-height: 1.8;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gen-support {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  margin-top: auto;
}

@media (max-width: 1280px) {
  .first-gen h2 {
    font-size: 30px;
  }
  .gen-para__2 {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .first-gen,
  .second-gen {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .gen-wrapper {
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
  }
  .first-gen,
  .second-gen {
    width: 100%;
  }
  .first-gen {
    padding: 32px 24px;
  }
  .first-gen h2 {
    font-size: 32px;
  }
  .second-gen {
    padding: 28px 24px;
  }
  .second-gen h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .first-gen {
    padding: 24px 20px;
  }
  .first-gen h2 {
    font-size: 26px;
  }
  .gen-para {
    font-size: 14px;
  }
  .first-gen .gen-btn {
    width: 100%;
    min-width: unset;
  }
}

/* =========================================================
   PRODUCTS PAGE — PRODUCT CARD
========================================================= */

.product-card {
  background: var(--card-bg);
  border: 1px solid rgba(200, 197, 208, 0.35);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition:
    border-color 0.2s,
    transform 0.2s;
  background-color: rgba(255, 255, 255, 1);
}

.product-card:hover {
  border-color: rgba(0, 212, 184, 0.35);
  transform: translateY(-2px);
}

.product-img {
  background: #f6f1ff;
  mix-blend-mode: multiply;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: auto;
  display: flex;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 80%;
  background: #f6f1ff;
  height: 100%;
  margin: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  text-transform: uppercase;
}

.badge-refrigerated {
  background: var(--accent);
  color: #000;
}
.badge-clinical {
  background: var(--accent2);
  color: #fff;
}
.badge-high-volume {
  background: #f59e0b;
  color: #000;
}
.badge-new {
  background: #ef4444;
  color: #fff;
}

.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: white;
}

.product-body h5 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 6px;
}

.product-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.stat-cell {
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}

.card-actions {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.btn-specs {
  padding: 9px;
  background: transparent;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
  transition: all 0.15s;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-specs:hover {
  color: cyan;
}

.btn-quote {
  padding: 9px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-quote:hover {
  opacity: 0.85;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  background: #e8e9eb;
}

/* =========================================================
   PRODUCTS PAGE — RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .page-layout {
    flex-direction: column;
  }
  .sidebar-toggle {
    display: flex !important;
  }
  .sidebar {
    position: fixed;
    top: 50px;
    left: 0;
    height: calc(100vh - 50px);
    z-index: 200;
    transform: translateX(-100%);
    background: var(--bg2);
    width: 280px;
    min-width: 260px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
  }
  .sidebar-overlay.open {
    display: block;
  }
  .remove-sidebar {
    display: block;
    cursor: pointer;
    padding: 10px;
    font-weight: 700;
  }
  .main-content {
    padding: 20px 16px 36px;
    width: 100%;
  }
  .topbar {
    padding: 10px 16px;
  }
  .container-xl.d-flex {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .sidebar-toggle {
    display: none;
  }
}

@media (max-width: 575px) {
  .page-layout {
    flex-direction: column;
    width: 100%;
  }
  .product-img {
    width: 100% !important;
  }
  .main-content {
    padding: 14px 10px 28px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card {
    padding: 14px;
  }
  .product-body {
    padding: 14px 10px;
  }
  .product-body h5 {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .product-subtitle {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .stat-cell {
    padding: 8px 4px;
  }
  .stat-value {
    font-size: 13px;
  }
  .stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .btn-specs {
    font-size: 10px;
    padding: 8px 4px;
  }
  .btn-quote {
    font-size: 9px;
    padding: 8px 10px;
  }
  .topbar {
    padding: 10px 12px;
  }
}
/* =========================================================
   PRODUCT DETAIL PAGE — PRODUCT DETAIL SECTION
========================================================= */

.product-detail {
  background-color: #ffffff;
  padding: 60px 0;
}

.detail-main-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.detail-img-col {
  /* flex: 1 1 420px; */
  /* display: flex; */
  justify-content: center;
  align-items: center;
  max-width: 520px;
}

/* Zoom */
.img-zoom-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}

.product-detail-img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: #f5f7fa;
  padding: 12px;
}

.zoom-lens {
  position: absolute;
  border: 2px solid #00bdb6;
  border-radius: 4px;
  width: 120px;
  height: 120px;
  cursor: crosshair;
  display: none;
  background-color: rgba(0, 189, 182, 0.08);
  pointer-events: none;
}

.zoom-result {
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 16px);
  width: 400px;
  height: 400px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 100;
  overflow: hidden;
}

@media (max-width: 900px) {
  .zoom-result {
    display: none !important;
  }
  .zoom-lens {
    display: none !important;
  }
}

.product-detail-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  display: block;
}

.detail-content-container {
  flex: 1 1 340px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.text-teal {
  color: var(--teal);
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-content-container h1 {
  font-size: clamp(2.8rem, 4vw, 72px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--primary);
}

.detail-content-container .text-muted {
  font-size: 15px;
  line-height: 1.7;
  color: #5b6e8c !important;
  max-width: 440px;
  margin-bottom: 28px;
}

.detail-btn-con {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.btn-teal:hover {
  background: var(--teal-dark);
}

.contact-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.contact-link:hover {
  color: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* galary images*/

.detail-img-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-gallery {
  display: flex;
  flex-direction: row; /* horizontal row */
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  opacity: 0.6;
  transition:
    opacity 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.gallery-thumb:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

.gallery-thumb.active {
  border-color: #00897b;
  opacity: 1;
}

/* =========================================================
   PRODUCT DETAIL PAGE — FEATURES SECTION
========================================================= */

.features-section {
  background-color: #ffffff;
  padding: 72px 0 64px;
}

.features-inner {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.features-left {
  flex: 1 1 340px;
  max-width: 500px;
}

.features-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0b0f5c;
  margin-bottom: 18px;
}

.text-muted-para {
  font-size: 15px;
  line-height: 1.8;
  color: #5b6e8c;
  margin: 0;
}

.features-right {
  flex: 1 1 340px;
  max-width: 540px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.feat-box {
  height: 150px !important;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feat-box .box-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

.feat-box .box-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.feat-box .box-body p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
  max-width: 380px;
}

.box-light {
  background: #fff;
  border-left: 4px solid var(--teal);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.box-light .box-body h3 {
  color: #0b0f5c;
}
.box-light .box-body p {
  color: #5b6e8c;
}

.box-dark {
  background: #0b0f5c;
}
.box-dark .box-body h3 {
  color: #fff;
}
.box-dark .box-body p {
  color: #a8b4cc;
}

/* =========================================================
   PRODUCT DETAIL PAGE — TABS SECTION
   Scoped to .navTabs and .product-detail-tabs to avoid
   overriding Bootstrap .tab-content globally
========================================================= */
.tab-main-wrapper {
  width: 100%;
  background: transparent;
  padding-top: 16px;
}

.navTabs {
  border-bottom: 2px solid #e2e8f0;
  padding-left: 0;
  margin-bottom: 0;
  gap: 4px;
  flex-wrap: wrap;
}

.navTabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #2d3e50;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  padding: 12px 16px 14px;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.navTabs .nav-link:hover {
  color: var(--teal);
}

.navTabs .nav-link.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-weight: 700;
}

.tab-main-wrapper .tab-content {
  background: #f8f4ff;
  border: 2px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 20px 20px;
  padding: 48px 40px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.tab-pane {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .navTabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap; /* keep tabs in one row, scrollable */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* hide scrollbar Firefox */
  }

  .navTabs::-webkit-scrollbar {
    display: none; /* hide scrollbar Chrome/Safari */
  }

  .navTabs .nav-link {
    font-size: 0.82rem;
    padding: 10px 12px 12px;
    flex-shrink: 0; /* prevent tabs from squishing */
  }

  .tab-main-wrapper .tab-content {
    padding: 24px 16px;
    min-height: auto;
    border-radius: 0 0 12px 12px;
  }

  .tab-pane {
    gap: 24px; /* reduce massive gap on mobile */
    flex-direction: column; /* stack children vertically */
    align-items: flex-start;
  }
}

/* =========================================================
   PRODUCT DETAIL PAGE — SPECS
========================================================= */

.spec-left {
  flex: 0 0 300px;
  max-width: 340px;
}

.spec-title {
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: #1e2a3e;
  margin-bottom: 12px;
}

.spec-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5b6e8c;
  margin-bottom: 0;
}

.spec-box {
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  margin-top: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #edeff2;
}

.certified-badge {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-box p {
  font-size: 11.5px;
  line-height: 1.6;
  color: #3a4a6e;
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-list-container {
  flex: 1 1 300px;
}

.spec-item {
  border-bottom: 2px solid #e2e8f0;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8896a9;
  text-transform: uppercase;
}

.spec-item strong {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #0b2b3b;
}

/* =========================================================
   PRODUCT DETAIL PAGE — ROTORS & ACCESSORIES PANEL
========================================================= */

.rotors-panel,
.accessories-panel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.rotors-card-grid,
.accessories-grid {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  width: 100%;
  max-width: 740px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.rotors-card-grid h3,
.accessories-grid h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b0f5c;
  margin-bottom: 4px;
}

.rotor-spec-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.rotor-metric {
  flex: 1 1 160px;
  background: #f5f7ff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #eaecf6;
}

.rotor-metric .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #8896a9;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.rotor-metric .value {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0b0f5c;
  line-height: 1.2;
}

.rotor-metric .unit {
  font-size: 0.72rem;
  color: #8896a9;
  margin-top: 4px;
}

/* ⚠️ Renamed from .acc-badge → .acc-pill (conflicts with global .acc-badge) */
/* Update your HTML: class="acc-badge" → class="acc-pill" in accessories list */
.accessories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.acc-pill {
  background: #f0f2f9;
  color: #2d4059;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
}

/* =========================================================
   PRODUCT DETAIL PAGE — DOWNLOADS SECTION
========================================================= */

.downloads-section {
  background-color: #fcf8ff;
  padding: 72px 0;
}

.down-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: start;
  color: #0b0f5c;
  margin-bottom: 40px;
}

.down-con {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.down-box {
  flex: 1 1 240px;
  max-width: 320px;
  min-height: 94px;
  padding: 22px 24px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.25s,
    transform 0.2s;
  border: 1px solid #ece8f5;
}

.down-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.down-box .material-symbols-outlined {
  font-size: 25px;
  color: var(--teal-dark);
  flex-shrink: 0;
}

.down-box h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0b0f5c;
  margin: 0 0 4px;
}
.down-box small {
  font-size: 12px;
  color: #8896a9;
}

/* =========================================================
   PRODUCT DETAIL PAGE — FOOTER PLACEHOLDER
========================================================= */

.footer-placeholder {
  background: #0b0f5c;
  color: #a8b4cc;
  text-align: center;
  padding: 28px 16px;
  font-size: 13px;
}

/* =========================================================
   PRODUCT DETAIL PAGE — ROTOR CARDS GRID
========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 1100px;
  width: 100%;
}

@media (max-width: 860px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .rotors-grid {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}

.rotor_card {
  padding: clamp(10px, 3.5vw, 28px);
  display: flex;
  background-color: white;
  flex-direction: column;
  transition: box-shadow 0.25s ease;
}

.rotor_card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.13);
  z-index: 2;
}

.rotor_card_header {
  margin: auto;
}

.card-title {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  color: #e8930a;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.card-subtitle {
  font-size: clamp(11px, 1.2vw, 13px);
  color: #666;
  font-weight: 400;
  margin-top: 3px;
}

.card-tagline {
  font-size: clamp(11.5px, 1.2vw, 13.5px);
  font-weight: 700;
  color: #222;
  margin-top: 12px;
}

.rotor-section {
  margin-bottom: 10px;
}
.rotor-section:last-child {
  margin-bottom: 0;
}

.rotor-label {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.spec-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.spec-text {
  font-size: clamp(12px, 1.2vw, 13.5px);
  font-weight: 300;
  color: #333;
  margin: 0 4px;
}

/* =========================================================
   PRODUCT DETAIL PAGE — RESPONSIVE
========================================================= */

@media (max-width: 992px) {
  .product-detail {
    padding: 20px 8px;
  }
  .detail-main-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .gallery-thumb {
    width: 80px;
    height: 80px;
  }

  .detail-img-col {
    max-width: 512px;
  }
  .detail-content-container {
    align-items: center;
    max-width: 100%;
  }
  .detail-content-container .text-muted {
    max-width: 92%;
  }
  .detail-btn-con {
    justify-content: center;
  }
  .features-section {
    padding: 56px 0 48px;
  }
  .features-inner {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .features-left {
    max-width: 100%;
  }
  .features-right {
    max-width: 100%;
  }
  .feat-box .box-body p {
    max-width: 100%;
  }
  .tab-main-wrapper .tab-content {
    padding: 32px 24px;
    min-height: unset;
  }
  .tab-pane {
    flex-direction: column;
    gap: 10px;
  }
  .spec-left {
    flex: unset;
    max-width: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .spec-list-container {
    flex: unset;
    width: 100%;
  }
  .rotors-card-grid,
  .accessories-grid {
    padding: 28px 24px;
  }
  .down-con {
    gap: 16px;
  }
  .down-box {
    max-width: 100%;
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .product-detail {
    padding: 20px 8px;
  }
  .detail-img-col {
    max-width: 280px;
  }
  .detail-content-container h1 {
    font-size: 2.25rem;
  }
  .features-section {
    padding: 44px 0 36px;
  }
  .tab-main-wrapper .tab-content {
    padding: 24px 16px;
    border-radius: 0 0 14px 14px;
  }
  .navTabs .nav-link {
    font-size: 0.82rem;
    padding: 10px;
    border: none !important;
  }
  .spec-title {
    font-size: 1.25rem;
  }
  .spec-desc {
    font-size: 14px;
  }
  .spec-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .spec-item strong {
    font-size: 1.35rem;
  }
  .rotor-metric {
    flex: 1 1 calc(50% - 8px);
  }
  .rotors-card-grid h3,
  .accessories-grid h3 {
    font-size: 1.25rem;
  }
  .down-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .detail-img-col {
    max-width: 300px;
  }
  .detail-btn-con {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .feat-box {
    padding: 18px 20px;
  }
  .feat-box .box-icon {
    font-size: 22px;
  }
  .feat-box .box-body h3 {
    font-size: 15px;
  }
  .feat-box .box-body p {
    font-size: 13px;
  }
  .rotor-metric {
    flex: 1 1 100%;
  }
  .acc-pill {
    font-size: 12.5px;
    padding: 8px 14px;
  }
  .downloads-section {
    padding: 48px 0;
  }
  .rotors-card-grid,
  .accessories-grid {
    padding: 22px 18px;
  }
}

/* comparison */

/* ── Page wrapper ── */
.page-wrap {
  /* max-width: 780px; */
  background-color: #f6f1ff;
}

/* ── Top bar ── */
.top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.top-bar__meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #7a7f9a;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.top-bar__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #0d0f2b;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 18px;
  background: #0d0f2b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}
.btn-export:hover {
  background: #1e2260;
  transform: translateY(-1px);
}

/* ── Comparison grid ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Product card ── */
.compare-grid .product-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__header {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #f0f0f5;
}

.product-card__img-wrap {
  width: 192px;
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 14px;
  overflow: hidden;
  padding: 8px;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.18;
}

.product-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0d0f2b;
  margin: 0 0 6px;
  text-align: center;
}

.product-card__remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e04b4b;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.2s;
}
.product-card__remove:hover {
  opacity: 0.65;
}

/* ── Spec rows ── */
.spec-list {
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 20px;
  border-bottom: 1px solid #f2f2f7;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8a8faa;
  flex-shrink: 0;
  line-height: 1.4;
}

.spec-value {
  font-size: 13px;
  font-weight: 600;
  color: #0d0f2b;
  text-align: right;
  flex-shrink: 0;
}

.spec-value.dash {
  color: #c0c4d6;
  font-size: 16px;
  font-weight: 300;
}

.spec-value.check {
  color: #00b89c;
  font-size: 16px;
}

/* ── Add product card ── */
.add-card {
  background: transparent;
  border: 2px dashed #c8c6dc;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  background-color: #f7f4ff;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  min-height: 200px;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.add-card:hover {
  border-color: #9d98c8;
  background: rgba(157, 152, 200, 0.05);
}

.add-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid #b8b5d4;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #b8b5d4;
  font-size: 20px;
  font-weight: 300;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.add-card:hover .add-card__icon {
  border-color: #7b77b8;
  color: #7b77b8;
}

.add-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b8b5d4;
  text-align: center;
  padding: 0 16px;
  transition: color 0.2s;
}

.add-card:hover .add-card__label {
  color: #7b77b8;
}

/* ── Bottom action bar ── */
.action-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-clear {
  height: 44px;
  padding: 0 24px;
  background: #fff;
  color: #0d0f2b;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(13, 15, 43, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-clear:hover {
  border-color: rgba(13, 15, 43, 0.4);
  background: #f8f8fc;
  transform: translateY(-1px);
}

.btn-add-products {
  height: 44px;
  padding: 0 24px;
  background: #f5a623;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-add-products:hover {
  background: #e09518;
  transform: translateY(-1px);
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Move add-card to full width below */
  .add-card {
    grid-column: 1 / -1;
    min-height: 90px;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
  }

  .add-card__label {
    padding: 0;
  }

  .product-card__img-wrap {
    width: 100px;
    height: 88px;
  }

  .spec-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .spec-value {
    font-size: 12px;
  }
  .spec-row {
    padding: 9px 14px;
  }
  .product-card__header {
    padding: 16px 14px 12px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 576px) {
  .top-bar {
    margin-bottom: 20px;
    gap: 10px;
  }
  .top-bar__title {
    font-size: 22px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .add-card {
    grid-column: auto;
    flex-direction: column;
    min-height: 72px;
    padding: 16px 20px;
  }

  .product-card__img-wrap {
    width: 150px;
    height: 150px;
  }
  .product-card__name {
    font-size: 15px;
  }

  .action-bar {
    justify-content: stretch;
  }
  .btn-clear,
  .btn-add-products {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .spec-label {
    font-size: 8.5px;
  }
  .spec-row {
    padding: 8px 12px;
  }
  .btn-export {
    font-size: 9px;
    padding: 0 12px;
  }
}

/* ── Certificate ── */
.cp-ph {
  padding: 12px 40px 0; /* FIX: base padding defined */
  font-family: "Manrope", sans-serif !important;
}
.cp-ph__h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #0f0e2e;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
  font-family: "Manrope", sans-serif;
}

/* ── BODY WRAPPER ── */
.cp-body {
  padding: 30px 0px;
}

/* ── TWO-COLUMN LAYOUT ── */
.cp-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 56px;
  align-items: start;
}

/* ══════════════════════════════════
           LEFT PANEL
        ══════════════════════════════════ */

.cp-qa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eae5ff;
  border: 1px solid #e2e0f0;
  border-radius: 40px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 18px;
  font-family: "Manrope", sans-serif !important;
}
.cp-qa__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4f46e5;
  flex-shrink: 0;
}
.cp-qa__txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3730a3;
}

.cp-left__h2 {
  font-size: clamp(25px, 2.5vw, 30px) !important;
  font-weight: 900 !important;
  color: #0f0e2e !important;
  padding: 8px 0px;
  line-height: 1.2;
  margin: 0 0 16px;
  text-align: left !important;
  font-family: "Manrope", sans-serif;
}

.cp-left__p {
  font-size: 20px !important;
  font-family: "Manrope", sans-serif;

  line-height: 1.85;
  color: #6b7280;
  font-weight: 400;
  text-align: left !important;
  margin-bottom: 32px;
  max-width: 100%;
  margin-top: 0;
}

.cp-ent__label {
  font-size: 20px !important;
  font-weight: 800;
  color: #111827;
  font-family: "Manrope", sans-serif;
  margin-bottom: 20px !important;
  display: block;
  letter-spacing: 0.02em;
}

.cp-ent__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cp-ent__card {
  background: #ffffff;
  border-bottom: 4px solid #006a6633;
  border-radius: 12px;
  font-family: "Manrope", sans-serif !important;

  padding: 14px 16px 16px;
  box-shadow: none;
}
.cp-ent__card-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.cp-ent__card--a .cp-ent__card-ico {
  background: #dbeafe;
}
.cp-ent__card--b .cp-ent__card-ico {
  background: #d1fae5;
}
.cp-ent__card-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}
.cp-ent__card-sub {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

/* ══════════════════════════════════
           RIGHT — CERT CARDS GRID
        ══════════════════════════════════ */
.cp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cp-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #ececf8;
  font-family: "Manrope", sans-serif !important;
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.cp-card:hover {
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

.cp-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cp-card__ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-card__ico--indigo {
  background: #ede9fe;
}
.cp-card__ico--green {
  background: white;
  color: green;
}
.cp-card__ico--purple {
  background: #f3e8ff;
}
.cp-card__ico--slate {
  background: #f1f5f9;
}

.cp-card__tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 40px;
  white-space: nowrap;
  line-height: 1.4;
}
.cp-card__tag--filled {
  background: #0f0e2e;
  color: #ffffff;
}
.cp-card__tag--outline {
  background: transparent;
  border: 1.5px solid #d1d5db;
  color: #6b7280;
}

.cp-card__h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f0e2e;
  line-height: 1.2;
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
}

.cp-card__p {
  font-size: 14px !important;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  text-align: left !important;
  padding-left: 0;
}

.cp-card__lnk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #4f46e5;
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}
.cp-card__lnk:hover {
  gap: 7px;
  color: #3730a3;
  text-decoration: none;
}
.cp-card__lnk-arr {
  font-size: 15px;
  line-height: 1;
}

/* ══════════════════════════════════
   DOWNLOADS BAND
══════════════════════════════════ */

.cp-dl {
  background: #0d1745;
  /* FIXED: removed max-height: 386px — clips stacked content on mobile */
  padding: 52px 0 48px;
  margin: auto;
  border-radius: 0; /* desktop: flush edges */
}

.cp-dl__inner {
  padding: 0 40px;
}

.cp-dl__h2 {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-family: "Manrope", sans-serif;
}

.cp-dl__sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 32px;
  max-width: 440px;
  line-height: 1.65;
}

.cp-dl__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.cp-dl__item {
  background: #00022b;
  border: 1px solid #7681d433;
  border-radius: 8px;
  padding: 14px 16px;
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-sizing: border-box;
}

.cp-dl__item:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.cp-dl__item-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-dl__item-ico--r1,
.cp-dl__item-ico--r2,
.cp-dl__item-ico--r3,
.cp-dl__item-ico--r4 {
  background: #ffdad6;
  color: rgba(186, 26, 26, 1);
}

.cp-dl__item-info {
  flex: 1;
  min-width: 0;
}

.cp-dl__item-name {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cp-dl__item-meta {
  font-size: 10.5px;
  color: #7681d4;
  margin: 0;
}

.cp-dl__item-arr {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════ */

/* Large tablet ≤ 1024px */
@media (max-width: 1024px) {
  .cp-layout {
    grid-template-columns: 340px 1fr;
    gap: 36px;
  }
  .cp-dl__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .cp-page {
    padding: 60px 0;
  }
  .cp-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cp-left__p {
    max-width: 100%;
    font-size: 17px !important;
  }
  .cp-dl__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cp-dl {
    margin: 0 24px 48px;
  }
}

/* Tablet ≤ 768px */
@media (max-width: 768px) {
  .cp-page {
    padding: 48px 0;
  }
  .cp-bc__inner,
  .cp-ph {
    padding-left: 24px;
    padding-right: 24px;
  }
  .cp-body {
    padding: 36px 24px 56px;
  }
  .cp-dl {
    margin: 0 16px 40px;
    padding: 40px 0 36px;
    border-radius: 16px;
  }
  .cp-dl__inner {
    padding: 0 24px;
  }
  .cp-card {
    min-height: 260px;
  }
  .cp-dl__sub {
    max-width: 100%; /* ADDED: let subtitle breathe on tablet */
  }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .cp-dl {
    margin: 0 16px 32px 16px; /* FIX: explicit 4-value margin — left AND right */
    padding: 32px 0 28px;
    border-radius: 14px;
    width: auto; /* FIX: prevents parent overflow from stretching it */
    box-sizing: border-box;
  }
  .cp-page {
    padding: 36px 0;
  }
  .cp-bc__inner,
  .cp-ph {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cp-body {
    padding: 28px 20px 48px;
  }
  .cp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cp-card {
    min-height: unset;
  }
  .cp-ent__row {
    grid-template-columns: 1fr 1fr;
  }
  .cp-left__p {
    font-size: 16px !important;
  }
  .cp-dl {
    margin: 0 12px 32px; /* FIXED: was cutting into screen edge */
    padding: 32px 0 28px;
    border-radius: 14px;
  }
  .cp-dl__inner {
    padding: 20px 20px;
  }
  .cp-dl__h2 {
    margin-bottom: 8px; /* ADDED: tighter on mobile */
  }
  .cp-dl__sub {
    font-size: 13px;
    margin-bottom: 24px; /* ADDED: reduce bottom gap on mobile */
    max-width: 100%;
  }
  .cp-dl__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cp-dl__item {
    min-height: 64px; /* ADDED: slightly smaller tap target is fine */
    padding: 12px 14px;
  }
}

/* Small mobile ≤ 400px */
@media (max-width: 400px) {
  .cp-page {
    padding: 28px 0;
  }
  .cp-card__top {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cp-ent__row {
    grid-template-columns: 1fr;
  }
  .cp-dl {
    margin: 0 8px 28px; /* FIXED: minimal margin on very small screens */
    border-radius: 12px;
  }
  .cp-dl__inner {
    padding: 20px 16px; /* ADDED: tighter inner padding */
  }
  .cp-dl__item-name {
    font-size: 11px;
  }
  .cp-dl__item-ico {
    width: 30px; /* ADDED: slightly smaller icon on tiny screens */
    height: 30px;
  }
  .cp-dl__item {
    gap: 10px;
    padding: 10px 12px;
  }
}

/* Clean and care */

/* ── Breadcrumb ── */

.certificate-page {
  font-family: "Manrope", sans-serif;
  background: #f5f4fc;
  padding: 100px 0px;
  margin-bottom: 30px;
  color: #111;
}

.sp-breadcrumb {
  padding: 25px 0 0;
}

.sp-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-breadcrumb__item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
}

.sp-breadcrumb__item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.sp-breadcrumb__item a:hover {
  color: #0d0f2b;
}

.sp-breadcrumb__sep {
  font-size: 10px;
  color: #cbd5e1;
}

.sp-breadcrumb__item--active {
  color: #0d0f2b;
}

.sp-hero__heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  margin-top: 30px;
  line-height: 1.04;
  color: #0d0f2b;
  letter-spacing: -2px;
}

/* ── Care Section ── */

.care-sec-container {
  padding: 60px 0px 72px;
}

.care-sec-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ── Left text column ── */
.care-col__text {
  flex: 1 1 0;
}

.care-col__text span {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 106, 102, 1);
  margin-bottom: 16px;
}

.care-col__text p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  max-width: 700px;
  line-height: 1.85;
  font-weight: 400;
  color: #4b5563;
  margin: 0;
}

/* ── Right image column ── */
.care-col__img {
  flex: 0 0 auto;
  width: 374px;
}

.care-img-container {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.care-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* youtube vedio play */

.resource-card__media_video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* or use padding-top: 56.25% trick */
  overflow: hidden;
}

.resource-card__media_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════ */

/* Tablet ≤ 1024px — shrink image */
@media (max-width: 1024px) {
  .care-col__img {
    width: 300px;
  }
  .care-sec-inner {
    gap: 36px;
  }
}

/* Tablet ≤ 768px — stack vertically */
@media (max-width: 768px) {
  .care-sec-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .care-col__img {
    width: 100%;
  }
  .care-img-container {
    aspect-ratio: 16 / 9; /* landscape ratio when stacked */
    border-radius: 12px;
  }
  .care-sec-container {
    padding: 40px 0 56px;
  }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .certificate-page {
    padding: 20px 0px;
    margin-bottom: 20px;
  }
  .care-col__text p {
    font-size: 15px;
  }
  .care-sec-container {
    padding: 32px 0 48px;
  }
}

/* Why section */
.why-sec {
  background: #f6f1ff;
  padding: 80px 0;
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

.why-sec__hd {
  text-align: center;
  margin: 0 auto 72px;
  padding: 0 20px;
}

.why-sec__h2 {
  font-size: clamp(22px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #111132;
  margin: 16px auto;
  max-width: 1020px;
}
.why-sec__sub {
  font-size: 15px;
  line-height: 1.8;
  color: #7b8191;
  max-width: 580px;
  margin: 0 auto;
}

.why-sec__rows {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.why-sec__rows::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dde0f0;
  transform: translateX(-50%);
  z-index: 0;
}

/* ── Row grid: 3 cols — text | icon | text ── */
.why-row {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: start;
  margin-bottom: 72px;
  position: relative;
}
.why-row:last-child {
  margin-bottom: 0;
}

/* Normal: text in col 1, icon in col 2, col 3 empty */
.why-row .why-row__txt {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-right: 36px;
  max-width: 100%;
}
.why-row .why-row__ico {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.why-row .why-row__empty {
  grid-column: 3;
  grid-row: 1;
}

/* Reversed: col 1 empty, icon col 2, text col 3 */
.why-row--rev .why-row__empty {
  grid-column: 1;
  grid-row: 1;
}
.why-row--rev .why-row__ico {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.why-row--rev .why-row__txt {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
  padding-left: 36px;
  padding-right: 0;
  max-width: 100%;
}

.why-row__ico-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #06b6b4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(6, 182, 180, 0.22);
}

.why-row__ico-ring .material-symbols-outlined {
  font-size: 30px;
  color: white;
}

.why-row__h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #17173a;
  margin-bottom: 12px;
  line-height: 1.25;
}
.why-row__p {
  font-size: 14px;
  line-height: 1.9;
  color: #6f7482;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .why-sec {
    padding: 56px 0;
  }
  .why-sec__hd {
    margin-bottom: 48px;
  }
  .why-sec__rows::before {
    left: 28px;
    transform: none;
  }

  .why-row,
  .why-row--rev {
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
    margin-bottom: 52px;
  }
  .why-row .why-row__ico,
  .why-row--rev .why-row__ico {
    grid-column: 1;
    grid-row: 1;
  }

  .why-row .why-row__txt,
  .why-row--rev .why-row__txt {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    padding: 0;
    max-width: 100%;
  }
  .why-row .why-row__empty,
  .why-row--rev .why-row__empty {
    display: none;
  }

  .why-row__ico-ring {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .why-sec__rows::before {
    left: 24px;
  }
  .why-row,
  .why-row--rev {
    grid-template-columns: 50px 1fr;
    gap: 0 14px;
    margin-bottom: 40px;
  }
  .why-row__ico-ring {
    width: 46px;
    height: 46px;
  }
  .why-row__h3 {
    font-size: 20px;
  }
}

/* ── Technical Resource Hub ── */
.resource-hub {
  font-family: "Manrope", sans-serif;
  background: #fff;
  padding: 72px 0;
}

.resource-hub__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0bbfb8;
  margin-bottom: 10px;
}

.resource-hub__heading {
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 900;
  color: #0d0f2b;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 40px;
}

.resource-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Card ── */
.resource-card {
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 16px;
  padding: 28px 28px 0;
  height: 634px;
  display: flex;
  flex-direction: column;
}

.resource-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 20px; */
}

.resource-card__badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e6f7f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #0bbfb8;
  flex-shrink: 0;
}

.resource-card__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
}

.resource-card__title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #0d0f2b;
  line-height: 1.25;
  margin: 12px 0px;
}

.resource-card__desc {
  font-size: 16px;
  line-height: 1.85;
  color: #6b7280;
  margin-bottom: 24px;
}

/* ── Media area ── */
.resource-card__media {
  width: 100%;
  border-radius: 12px 12px 0 0;
  position: relative;
  aspect-ratio: 16 / 10;
}

.resource-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.resource-card__media_video {
  width: 100%;
  max-height: 297px;
  border-radius: 12px 12px 0 0;
  position: relative;
  margin-top: 60px;
}

.resource-card__media_video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* Play button overlay */
.resource-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0bbfb8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 16px rgba(11, 191, 184, 0.35);
}

.resource-card__play:hover {
  background: #09a8a2;
  transform: translate(-50%, -50%) scale(1.07);
}

.resource-card__play svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-left: 3px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .resource-hub__grid {
    gap: 18px;
  }
  .resource-card {
    padding: 22px 22px 0;
  }
  .resource-card {
    height: auto;
  }
  .resource-card__media_video {
    margin-top: 0px;
  }
}

@media (max-width: 640px) {
  .resource-hub {
    padding: 48px 0;
  }
  .resource-hub__grid {
    grid-template-columns: 1fr;
  }
  .resource-card__title {
    font-size: 20px;
  }
  .resource-card__media {
    aspect-ratio: 16 / 9;
  }
  .resource-card__media_video {
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  .resource-hub {
    padding: 36px 0;
  }
  .resource-card {
    padding: 20px 20px 0;
  }
  .resource-card__badge {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .resource-card__media_video {
    margin-top: 0px;
  }
}

/* ══════════════════════════════════
   CONTACT US PAGE
══════════════════════════════════ */
/* ── Hero Banner ── */
.cu-hero {
  background: #f0effe;
  padding: 72px 0 80px;
  font-family: "Manrope", sans-serif;
  overflow: hidden;
  position: relative;
}

.cu-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #0d0f2b;
  letter-spacing: -2.5px;
  line-height: 1.04;
  margin-bottom: 14px;
}
.cu-hero p {
  font-size: 13.5px;
  color: #6b7280;
  font-weight: 500;
}

/* ── Scroll-reveal base ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays for info columns */
.cu-info__col:nth-child(1) {
  transition-delay: 0s;
}
.cu-info__col:nth-child(2) {
  transition-delay: 0.12s;
}
.cu-info__col:nth-child(3) {
  transition-delay: 0.24s;
}

/* hero text stagger */
.cu-hero h1 {
  transition-delay: 0s;
}
.cu-hero p {
  transition-delay: 0.14s;
}
/* ── Info Strip ── */
.cu-info {
  padding: 72px 0;
  font-family: "Manrope", sans-serif;
  background: #fff;
}
.cu-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 180px;
}
.cu-info__col {
  display: flex;
  flex-direction: column;
  justify-content: center; /* ← content centered inside column */
  align-items: flex-start;
  padding: 0 130px;
  border-right: 1px solid #dde0ef;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cu-info__col:first-child {
  padding-left: 0;
}
.cu-info__col:last-child {
  border-right: none;
  padding-right: 0;
}
.cu-info__col:hover {
  transform: translateY(-4px);
}
.cu-info__col:nth-child(1) {
  transition-delay: 0s;
}
.cu-info__col:nth-child(2) {
  transition-delay: 0.1s;
}
.cu-info__col:nth-child(3) {
  transition-delay: 0.2s;
}

.cu-info__label {
  font-size: 21px;
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0 0 16px 0;
}
.cu-info__line {
  font-size: 14.5px;
  color: #47464f;
  font-weight: 400;
  display: block;
}
.cu-info__line--gap {
  margin-top: 8px;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .cu-info__col {
    padding: 0 40px;
  }
  .cu-info__col:first-child {
    padding-left: 0;
  }
  .cu-info__col:last-child {
    padding-right: 0;
  }
}
/* ── Mobile ── */
@media (max-width: 768px) {
  .cu-info {
    padding: 44px 0;
  }
  .cu-info__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .cu-info__col {
    padding: 28px 0 !important;
    border-right: none;
    border-bottom: 1px solid #dde0ef;
    height: auto;
  }
  .cu-info__col:first-child {
    padding-top: 0 !important;
  }
  .cu-info__col:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }
}
/* ── Small mobile ── */
@media (max-width: 480px) {
  .cu-info {
    padding: 36px 0;
  }
  .cu-info__label {
    font-size: 18px;
  }
  .cu-info__line {
    font-size: 14px;
  }
}
/* ── Form Section ── */
.cu-form-sec {
  padding: 60px 0 80px;
}

.cu-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin: 0 auto;
}
.cu-form-heading {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900;
  color: #0d0f2b;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cu-form-sub {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 28px;
  line-height: 1.75;
  font-weight: 500;
}

/* ── Form Controls ── */
.cu-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cu-input,
.cu-select,
.cu-textarea {
  width: 100%;
  border: 1px solid #e0e0ee;
  border-radius: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  color: #0d0f2b;
  background: #fff;
  outline: none;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.18s;
}
.cu-input:focus,
.cu-select:focus,
.cu-textarea:focus {
  border-color: #0bbfb8;
  box-shadow: 0 0 0 3px rgba(11, 191, 184, 0.12);
  transform: translateY(-1px);
}

.cu-input {
  height: 44px;
  padding: 0 14px;
}
.cu-input::placeholder {
  color: #b0b7c3;
  font-size: 12.5px;
}

.cu-select {
  height: 44px;
  padding: 0 14px;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  color: #b0b7c3;
}
.cu-select {
  height: 44px;
  padding: 0 40px 0 14px; /* ← right padding makes room for the icon */
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0b7c3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  cursor: pointer;
  color: #b0b7c3; /* placeholder color */
}

/* darken arrow when a real option is selected */
.cu-select.selected {
  color: #0d0f2b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230d0f2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.cu-select:focus {
  border-color: #0bbfb8;
  box-shadow: 0 0 0 3px rgba(11, 191, 184, 0.12);
  outline: none;
}
.cu-select option {
  color: #0d0f2b;
}

.cu-textarea {
  padding: 12px 14px;
  resize: none;
  height: 100px;
}
.cu-textarea::placeholder {
  color: #b0b7c3;
  font-size: 12.5px;
}

.cu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ── Submit button ── */
.cu-submit {
  width: 100%;
  height: 50px;
  background: #0bbfb8;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.22s,
    transform 0.15s,
    box-shadow 0.22s;
}
/* ripple layer */
.cu-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 65%
  );
  opacity: 0;
  transform: scale(0);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  border-radius: 6px;
}
.cu-submit:hover {
  background: #09a8a2;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 191, 184, 0.3);
}
.cu-submit:hover::after {
  opacity: 1;
  transform: scale(2.2);
}
.cu-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Spinner inside button ── */
.cu-submit .btn-text {
  transition: opacity 0.2s;
}
.cu-submit .btn-spin {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.cu-submit.loading .btn-text {
  opacity: 0;
}
.cu-submit.loading .btn-spin {
  display: block;
}

/* ── Success message ── */
.cu-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #065f46;
  font-weight: 600;
  margin-top: 4px;
  animation: slideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cu-success.show {
  display: flex;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cu-success svg {
  flex-shrink: 0;
}

.cu-info__line_1 {
  text-align: justify;
}

/* ── Side Image ── */
.cu-img-wrap {
  border-radius: 14px;
  width: 100%;
  max-width: 590px;
  height: 500px;
  overflow: hidden;
  position: relative;
}
/* shimmer overlay on load */
.cu-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 2.2s ease infinite;
  pointer-events: none;
  z-index: 1;
  border-radius: 14px;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.cu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cu-img-wrap:hover img {
  transform: scale(1.04);
}

/* ── Field error state ── */
.cu-input.error,
.cu-select.error,
.cu-textarea.error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cu-info__col {
    padding: 0 24px 0 0;
  }
  .cu-info__col + .cu-info__col {
    padding-left: 24px;
  }
  .cu-form-wrap {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .cu-hero {
    padding: 48px 0 56px;
  }
  .cu-info {
    padding: 40px 0;
  }
  .cu-info__grid {
    flex-direction: column;
    gap: 0;
  }

  .cu-info__col {
    border-right: none;
    border-bottom: 1px solid #e0e0ee;
    padding: 28px 0 !important;
    margin-bottom: 0;
  }
  .cu-info__col:first-child {
    padding-top: 0 !important;
  }
  .cu-info__col:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }
  .cu-form-sec {
    padding: 40px 0 56px;
  }
  .cu-form-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cu-img-wrap {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .cu-img-wrap img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .cu-hero {
    padding: 36px 0 44px;
  }
  .cu-hero h1 {
    letter-spacing: -1.5px;
  }
  .cu-info {
    padding: 32px 0;
  }
  .cu-form-sec {
    padding: 32px 0 44px;
  }
  .cu-row {
    grid-template-columns: 1fr;
  }
}
/* ══════════════════════════════════════
   SPARE PARTS PAGE  —  prefix: sp-
══════════════════════════════════════ */

/* ── Breadcrumb ── */
.sp-breadcrumb {
  padding: 25px 0 0;
}

.sp-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-breadcrumb__item a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.sp-breadcrumb__item a:hover {
  color: #0d0f2b;
}

.sp-breadcrumb__sep {
  font-size: 12px;
  font-weight: 400;
  color: #cbd5e1;
}

.sp-breadcrumb__item--active {
  font-size: 12px;
  font-weight: 400;
  color: #0d0f2b;
}

/* ══════════════════════════════════════
   SECTION 1 — Hero
══════════════════════════════════════ */
.sp-hero {
  padding: 28px 0 52px;
}

.sp-hero__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

/* Left */
.sp-hero__left {
  flex: 0 0 auto;
}

.sp-hero__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b998b;
  margin-bottom: 16px;
}

.sp-hero__heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  color: #0d0f2b;
  letter-spacing: -2px;
}

/* Right */
.sp-hero__right {
  flex: 1 1 auto;
  max-width: 500px;
  padding-top: 20px;
}

.sp-hero__body {
  font-size: 18px;
  line-height: 1.8;
  color: #47464f;
  font-weight: 400;
  margin: 0;
}

/* ══════════════════════════════════════
   SECTION 2 — Full-Width Image
══════════════════════════════════════ */
.sp-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.sp-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Label overlay — bottom left */
.sp-banner__label {
  position: absolute;
  bottom: 22px;
  left: 40px;
  backdrop-filter: blur(12px);
  border: 1px solid #ffffff33;
  background: #ffffff1a;
  border-radius: 8px;

  backdrop-filter: blur(12px);
  padding: 12px 20px;
}

.sp-banner__label-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 3px;
}

.sp-banner__label-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════
   SECTION 3 — Technical Continuity
══════════════════════════════════════ */
.sp-tech {
  padding: 56px 0 64px;
}

.sp-tech__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Left column */
.sp-tech__left {
  flex: 1 1 auto;
}

/* Heading with teal left accent */
.sp-tech__heading {
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.sp-tech__heading .sp-line {
  border-bottom: 3px solid #00c9bb;
  width: 60px;
}

.sp-tech__body {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  font-weight: 400;
  max-width: 600px;
  margin: 0 0 40px 0;
}

/* Feature mini-cards row */
.sp-feat-row {
  display: flex;
  gap: 16px;
}

.sp-feat-card {
  flex: 1 1 0;
  background: #f6f1ff;
  max-width: 256px;
  height: 182px;
  border: 1px solid #e8e6f4;
  border-radius: 12px;
  padding: 20px 18px;
}

.sp-feat-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #eef9f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.sp-feat-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: #1b998b;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sp-feat-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0d0f2b;
  margin-bottom: 8px;
}

.sp-feat-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
  font-weight: 400;
}

/* Right column — dark card */
.sp-tech__right {
  flex: 0 0 600px;
}

.sp-partner-card {
  background: #0d0f2b;
  border-radius: 16px;
  padding: 36px 32px 32px;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-partner-card__eyebrow {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.sp-partner-card__heading {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 28px 0;
}

.sp-partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #00c9bb;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.sp-partner-card__link:hover {
  gap: 14px;
}

.sp-partner-card__link svg {
  width: 14px;
  height: 14px;
  stroke: #00c9bb;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .sp-hero__inner {
    gap: 32px;
  }

  .sp-hero__right {
    padding-top: 28px;
  }

  .sp-banner {
    height: 280px;
  }

  .sp-tech__inner {
    gap: 28px;
  }

  .sp-tech__right {
    flex: 0 0 240px;
  }

  .sp-partner-card {
    padding: 28px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 660px)
══════════════════════════════════════ */
@media (max-width: 660px) {
  .sp-feat-card {
    max-width: 100%;
    margin: 0px 5px;
  }

  /* Hero — stack */
  .sp-hero {
    padding: 20px 0 36px;
  }

  .sp-hero__inner {
    flex-direction: column;
    gap: 20px;
  }

  .sp-hero__left {
    max-width: 100%;
  }

  .sp-hero__right {
    max-width: 100%;
    padding-top: 0;
  }

  .sp-hero__heading {
    font-size: clamp(34px, 9vw, 50px);
    letter-spacing: -1.5px;
  }

  /* Banner shorter on mobile */
  .sp-banner {
    height: 220px;
  }

  .sp-banner__label {
    left: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }

  /* Tech — stack */
  .sp-tech {
    padding: 40px 0 48px;
  }

  .sp-tech__inner {
    flex-direction: column;
    gap: 32px;
  }

  .sp-tech__left {
    width: 100%;
  }

  .sp-tech__body {
    max-width: 100%;
  }

  .sp-tech__right {
    flex: none;
    width: 100%;
  }

  .sp-partner-card {
    min-height: unset;
    padding: 28px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 420px)
══════════════════════════════════════ */
@media (max-width: 420px) {
  .sp-hero__heading {
    font-size: clamp(30px, 10vw, 42px);
    letter-spacing: -1px;
  }

  .sp-feat-row {
    flex-direction: column;
  }

  .sp-banner {
    height: 180px;
  }
}

/* protfolio */

/* =========================================================
   SERVICE PORTFOLIO SECTION
========================================================= */

.sp-section {
  background: #ffffff;
  color: #111827;
  overflow: hidden;
}

/* =========================================================
   HERO SECTION
========================================================= */

.sp-hero {
  width: 100%;
  padding: 50px 0px;
  margin: auto;
  background: #f6f1ff;
}

.sp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c9e9e;
  margin-bottom: 14px;
}

.sp-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: #111827;
}

.sp-intro {
  /* max-width:780px; */
  font-size: 18px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 38px;
}

.sp-blurb {
  padding-top: 10px;
}

.sp-blurb h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.sp-blurb p {
  font-size: 18px;
  width: 100%;
  line-height: 1.75;
  color: #6b7280;
}

/* =========================================================
   CARDS SECTION
========================================================= */

.sp-cards-section {
  width: 100%;
  padding: 60px 0px;
}

.sp-cards-inner {
  width: 100%;
  margin: auto;
}

.sp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================================================
   CARD
========================================================= */

.sp-card {
  background: #ffffff;
  transition: 0.3s ease;
  max-width: 384px;
  max-height: 490px;
}

.sp-card {
  padding: 10px 0px;
}

.sp-card:hover {
  transform: translateY(-4px);
}

.sp-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.sp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.sp-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(0, 2, 43, 1);
  margin: 14px 0px;
}

.sp-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #6b7280;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .sp-title {
    font-size: 52px;
  }

  .sp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sp-hero {
    padding: 55px 20px 0;
  }

  .sp-cards-section {
    padding: 45px 20px;
  }

  .sp-title {
    font-size: 40px;
  }

  .sp-intro {
    font-size: 15px;
  }

  .sp-cards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ── Blog ── */

.certificate-page {
  font-family: "Manrope", sans-serif;
  background: #f5f4fc;
  padding: 100px 0px;
  color: #111;
}

.sp-hero__heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  margin-top: 5px;
  line-height: 1.04;
  color: #0d0f2b;
  letter-spacing: -2px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #bfc7d3;
  color: #555;
  background: #f5f5f5;
  transition: 0.3s ease;
}

.pagination a.active {
  background: #12c7bf;
  border-color: #12c7bf;
  color: #fff;
  font-weight: 600;
}

.pagination a:hover {
  background: #12c7bf;
  border-color: #12c7bf;
  color: #fff;
}

.pagination .arrow {
  font-size: 22px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 480px) {
  .pagination {
    gap: 8px;
  }

  .pagination a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.news-card {
  width: 100%;
  cursor: pointer;
}

.news-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* =========================================================
   BLOG DETAILS SECTION
========================================================= *

/* =========================================================
   MAIN WRAPPER
========================================================= */

.blog-details-section {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 40px 0 60px;
}

.blog-details-container {
  width: 100%;
  margin: auto;
  padding: 0 24px;
}

/* =========================================================
   ARTICLE HEADER
========================================================= */

.blog-article-header {
  margin-bottom: 12px;
}

.blog-article-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.22;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.blog-article-date {
  font-size: 13px;
  font-weight: 400;
  color: #888888;
}

/* =========================================================
   CONTENT GRID
========================================================= */

.blog-content-grid {
  display: grid;
  grid-template-columns: 1fr 362px;
  gap: 28px;
  margin-top: 20px;
  align-items: start;
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.blog-main-content {
  width: 100%;
}

.blog-hero-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #c8d8e8 0%, #b0c4d4 40%, #8fa8bc 100%);
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article-body p {
  font-size: 15px;
  line-height: 1.72;
  color: #444444;
  margin-bottom: 18px;
}

.blog-article-body p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   SIDEBAR
========================================================= */

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* =========================================================
   SIDEBAR CARD
========================================================= */

.blog-sidebar-card {
  margin-bottom: 18px;
  background: #ffffff;
}

.blog-sidebar-card:last-child {
  margin-bottom: 0;
}

.blog-sidebar-image {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 362px;
  max-height: 204px;
}

.blog-sidebar-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.blog-sidebar-body {
  padding: 12px 14px 16px;
}

/* =========================================================
   TAGS
========================================================= */

.blog-sidebar-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
  color: #ffffff;
}

.blog-tag-academy {
  background: #1a5fa8;
}

.blog-tag-exhibition {
  background: #0d6655;
}

/* =========================================================
   SIDEBAR TEXT
========================================================= */

.blog-sidebar-date {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 6px;
}

.blog-sidebar-title {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 7px;
}

.blog-sidebar-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #666666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 640px) {
  .blog-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .blog-article-title {
    font-size: 28px;
  }

  .blog-sidebar {
    gap: 18px;
  }

  .blog-sidebar-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    margin-bottom: 0;
  }

  .blog-sidebar-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 110px;
  }

  .blog-sidebar-body {
    padding: 10px 12px;
  }
}

@media (max-width: 400px) {
  .blog-sidebar-card {
    grid-template-columns: 1fr;
  }

  .blog-sidebar-image {
    aspect-ratio: 16/9;
    height: auto;
  }
}

/* comparsion page */

/* ── Top bar ── */
.top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.top-bar__meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #7a7f9a;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.top-bar__title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #0d0f2b;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.btn-export {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 18px;
  background: #0d0f2b;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}
.btn-export:hover {
  background: #1e2260;
  transform: translateY(-1px);
}

/* ── Comparison grid ── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Product card ── */
.product-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card__header {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #f0f0f5;
}

.product-card__img-wrap {
  width: 130px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: #f8f8fc;
  border-radius: 10px;
  overflow: hidden;
  padding: 8px;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* placeholder image via CSS */
.product-card__img-wrap.placeholder-img {
  background: #f0eef8;
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.18;
}

.product-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #0d0f2b;
  margin: 0 0 6px;
  text-align: center;
}

.product-card__remove {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e04b4b;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.2s;
}
.product-card__remove:hover {
  opacity: 0.65;
}

/* ── Spec rows ── */
.spec-list {
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 20px;
  border-bottom: 1px solid #f2f2f7;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8a8faa;
  flex-shrink: 0;
  line-height: 1.4;
}

.spec-value {
  font-size: 13px;
  font-weight: 600;
  color: #0d0f2b;
  text-align: right;
  flex-shrink: 0;
}

.spec-value.dash {
  color: #c0c4d6;
  font-size: 16px;
  font-weight: 300;
}

.spec-value.check {
  color: #00b89c;
  font-size: 16px;
}

/* ── Add product card ── */
.add-card {
  background: transparent;
  border: 2px dashed #c8c6dc;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  min-height: 200px;
  transition:
    border-color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.add-card:hover {
  border-color: #9d98c8;
  background: rgba(157, 152, 200, 0.05);
}

.add-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #b8b5d4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b5d4;
  font-size: 20px;
  font-weight: 300;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.add-card:hover .add-card__icon {
  border-color: #7b77b8;
  color: #7b77b8;
}

.add-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b8b5d4;
  text-align: center;
  padding: 0 16px;
  transition: color 0.2s;
}

.add-card:hover .add-card__label {
  color: #7b77b8;
}

/* ── Bottom action bar ── */
.action-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-clear {
  height: 44px;
  padding: 0 24px;
  background: #fff;
  color: #0d0f2b;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(13, 15, 43, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-clear:hover {
  border-color: rgba(13, 15, 43, 0.4);
  background: #f8f8fc;
  transform: translateY(-1px);
}

.btn-add-products {
  height: 44px;
  padding: 0 24px;
  background: #f5a623;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-add-products:hover {
  background: #e09518;
  transform: translateY(-1px);
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Move add-card to full width below */
  .add-card {
    grid-column: 1 / -1;
    min-height: 90px;
    flex-direction: row;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
  }

  .add-card__label {
    padding: 0;
  }

  .product-card__img-wrap {
    width: 100px;
    height: 88px;
  }

  .spec-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .spec-value {
    font-size: 12px;
  }
  .spec-row {
    padding: 9px 14px;
  }
  .product-card__header {
    padding: 16px 14px 12px;
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 576px) {
  .top-bar {
    margin-bottom: 20px;
    gap: 10px;
  }
  .top-bar__title {
    font-size: 22px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .add-card {
    grid-column: auto;
    flex-direction: row;
    min-height: 72px;
    padding: 16px 20px;
  }

  .product-card__img-wrap {
    width: 90px;
    height: 78px;
  }
  .product-card__name {
    font-size: 15px;
  }

  .action-bar {
    justify-content: stretch;
  }
  .btn-clear,
  .btn-add-products {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .spec-label {
    font-size: 8.5px;
  }
  .spec-row {
    padding: 8px 12px;
  }
  .btn-export {
    font-size: 9px;
    padding: 0 12px;
  }
}

/* ── FOOTER ── */
.footer-section {
  background: linear-gradient(108deg, #00022b 0%, #000580 60%, #000791 100%);
  color: #ffffff;
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
}

/* subtle star-field noise layer */
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 18% 30%,
      rgba(79, 142, 247, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 70%,
      rgba(0, 7, 145, 0.25) 0%,
      transparent 60%
    );
  pointer-events: none;
}

/* ── GRID ROW ── */
.footer-wrapper {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) repeat(4, minmax(130px, 1fr));
  gap: 30px;
  /* align-items: start; */
  padding-bottom: 52px;
}
/* ── BRAND COLUMN ── */
.footer-brand {
  max-width: 362px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* SVG logo placeholder – replace <img> with your real asset */
.logo-mark {
  width: 52px;
  height: 72px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}

.footer-text {
  font-size: 14px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 28px;
}

/* social icons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.2s;
  background: transparent;
  text-decoration: none;
}

.social-btn:hover {
  border-color: #4f8ef7;
  background: rgba(79, 142, 247, 0.12);
  transform: translateY(-2px);
}

.social-btn .material-symbols-outlined {
  font-size: 18px;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 20;
}

/* ── NAV COLUMNS ── */
.footer-col {
  min-width: 130px;
}

.footer-heading {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  font-size: 13.5px;
  font-weight: 400;
  transition:
    color 0.22s,
    padding-left 0.22s;
  display: inline-block;
}

.footer-col a:hover {
  color: #7eb3ff;
  padding-left: 4px;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 22px;
}

.footer-bottom p {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #8b96b2;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    max-width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-section {
    padding-top: 52px;
  }
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom p {
    font-size: 10px;
  }
}

/* ── Compare Bar ─────────────────────────────────────────── */
.compare-bar {
  position: fixed;
  bottom: -120px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-top: 2px solid #00b5a9;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  transition: bottom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.compare-bar.visible {
  bottom: 0;
}

.compare-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.compare-bar__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: #00b5a9;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-bar__text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
}

.compare-bar__items {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-bar__item {
  font-size: 12px;
  background: #e8faf8;
  color: #007a72;
  border: 1px solid #00b5a9;
  border-radius: 4px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.compare-bar__item .remove-item {
  cursor: pointer;
  font-size: 14px;
  color: #00b5a9;
  line-height: 1;
}

.compare-bar__item .remove-item:hover {
  color: #e74c3c;
}

.compare-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.compare-bar__btn {
  background: #00b5a9;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.compare-bar__btn:hover {
  background: #009e94;
}

.compare-bar__clear {
  font-size: 13px;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
  white-space: nowrap;
}

.compare-bar__clear:hover {
  color: #e74c3c;
}

/* ── Tablet (≤768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
  .compare-bar {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    bottom: -160px;
  }

  .compare-bar.visible {
    bottom: 0;
  }

  .compare-bar__left {
    width: 100%;
    gap: 8px;
  }

  .compare-bar__text {
    font-size: 13px;
  }

  .compare-bar__items {
    width: 100%;
  }

  .compare-bar__item {
    font-size: 11px;
    padding: 3px 8px;
  }

  .compare-bar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .compare-bar__btn {
    flex: 1;
    text-align: center;
    padding: 9px 14px;
    font-size: 12px;
  }

  .compare-bar__clear {
    font-size: 12px;
  }
}

/* ── Mobile (≤480px) ─────────────────────────────────────── */
@media (max-width: 480px) {
  .compare-bar {
    padding: 10px 12px;
    bottom: -180px;
  }

  .compare-bar.visible {
    bottom: 0;
  }

  .compare-bar__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .compare-bar__info-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .compare-bar__count {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .compare-bar__text {
    font-size: 12px;
  }

  .compare-bar__items {
    gap: 5px;
  }

  .compare-bar__item {
    font-size: 11px;
    padding: 3px 7px;
    gap: 4px;
  }

  .compare-bar__actions {
    width: 100%;
    gap: 8px;
  }

  .compare-bar__btn {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .compare-bar__clear {
    font-size: 11px;
  }
}

/* ── Compare checkbox: hidden by default, show on card hover ── */
.compare-label {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-card:hover .compare-label {
  opacity: 1;
}

/* Accessories page */

.ac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  font-family: "Manrope", sans-serif;
}

.ac-cell {
  position: relative;
  overflow: hidden;
}

/* Text cells */
.ac-cell--text {
  background: #eeedf8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 100px;
}

/* White variant for Custom Engineering panel */
.ac-cell--text-white {
  background: #ffffff;
}

/* Image cells */
.ac-cell--img {
  min-height: 420px;
}

.ac-cell--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grid placement */
.ac-cell--accessories-text {
  grid-column: 1;
  grid-row: 1;
}
.ac-cell--accessories-img {
  grid-column: 2;
  grid-row: 1;
}
.ac-cell--custom-img {
  grid-column: 1;
  grid-row: 2;
}
.ac-cell--custom-text {
  grid-column: 2;
  grid-row: 2;
}

/* Eyebrow */
.ac-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1b998b;
  margin-bottom: 18px;
}

/* Heading */
.ac-heading {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  color: #0d0f2b;
  letter-spacing: -1.5px;
  margin: 0 0 20px 0;
}

/* Body */
.ac-body {
  font-size: 13.5px;
  line-height: 1.75;
  color: #3a3a4a;
  font-weight: 400;
  max-width: 360px;
  margin: 0 0 36px 0;
}

/* Buttons row */
.ac-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ac-btn {
  font-family: "Manrope", sans-serif;
  font-size: 9.5px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}

.ac-btn--solid {
  background: #0d0f2b;
  color: #fff;
  border: 1.5px solid #0d0f2b;
}
.ac-btn--solid:hover {
  background: #1a1d46;
  border-color: #1a1d46;
}

.ac-btn--outline {
  background: transparent;
  color: #0d0f2b;
  border: 1.5px solid #0d0f2b;
}
.ac-btn--outline:hover {
  background: #0d0f2b;
  color: #fff;
}

/* Request link */
.ac-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b998b;
  text-decoration: none;
}
.ac-link::after {
  content: "";
  display: block;
  width: 52px;
  height: 1.5px;
  background: #1b998b;
  flex-shrink: 0;
  transition: width 0.3s ease;
}
.ac-link:hover::after {
  width: 76px;
}

/* ══════════════════════════════════════
   PRECISION CTA BANNER
   prefix: pct-
══════════════════════════════════════ */
.pct-section {
  background: #0b0f2e;
  width: 100%;
  padding: 90px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pct-inner {
  max-width: 620px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pct-heading {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0 0 22px 0;
}

.pct-subtext {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 400;
  max-width: 500px;
  margin: 0 0 42px 0;
}

.pct-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pct-btn {
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.pct-btn--teal {
  background: #00c9bb;
  color: #0b0f2e;
  border: 1.5px solid #00c9bb;
}
.pct-btn--teal:hover {
  background: #00b5a8;
  border-color: #00b5a8;
}

.pct-btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.pct-btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 960px)
══════════════════════════════════════ */
@media (max-width: 960px) {
  .ac-cell--text {
    padding: 48px 36px;
  }
  .ac-cell--img {
    min-height: 340px;
  }
  .ac-heading {
    font-size: clamp(28px, 4.5vw, 44px);
  }
  .ac-body {
    font-size: 13px;
  }

  .pct-section {
    padding: 72px 32px;
  }
  .pct-heading {
    font-size: clamp(22px, 5vw, 36px);
  }
  .pct-subtext {
    font-size: 13.5px;
    margin-bottom: 36px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
   Single column: text → img → img → text
══════════════════════════════════════ */
@media (max-width: 640px) {
  .ac-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .ac-cell--accessories-text {
    grid-column: 1;
    grid-row: 1;
  }
  .ac-cell--accessories-img {
    grid-column: 1;
    grid-row: 2;
  }
  .ac-cell--custom-img {
    grid-column: 1;
    grid-row: 3;
  }
  .ac-cell--custom-text {
    grid-column: 1;
    grid-row: 4;
  }

  .ac-cell--text {
    padding: 40px 24px;
  }
  .ac-cell--img {
    min-height: 260px;
  }

  .ac-heading {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1px;
  }
  .ac-body {
    max-width: 100%;
    margin-bottom: 26px;
  }
  .ac-btn {
    font-size: 9px;
    padding: 11px 16px;
  }

  .pct-section {
    padding: 56px 24px;
  }
  .pct-heading {
    font-size: clamp(20px, 7vw, 30px);
    margin-bottom: 16px;
  }
  .pct-subtext {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .pct-btn-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .pct-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 400px)
══════════════════════════════════════ */
@media (max-width: 400px) {
  .ac-cell--text {
    padding: 32px 18px;
  }
  .ac-heading {
    font-size: clamp(26px, 9vw, 36px);
  }
  .ac-btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .ac-btn {
    width: 100%;
    justify-content: center;
  }

  .pct-section {
    padding: 44px 18px;
  }
}

/* ══════════════════════════════════════
       Roters
 ══════════════════════════════════════ */
.rt-page {
  background: #f6f1ff;
  padding: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ══════════════════════════════════════
       SECTION 1 — Hero
    ══════════════════════════════════════ */
.rt-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.rt-hero__left {
  flex: 1 1 0;
  min-width: 0;
}

.rt-hero__eyebrow {
  display: inline-block;
  background: #8cf4ed;
  color: #00716c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.main_roter_para {
  max-width: 670px;
  font-size: 20px;
  color: rgba(71, 70, 79, 1);
  font-weight: 500;
}

.rt-hero__heading {
  font-size: clamp(38px, 5vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: #0d0f2b;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.rt-hero__heading span {
  color: #006a66;
  display: block;
}

.rt-hero__body {
  font-size: 17px;
  line-height: 1.9;
  color: #47464f;
  font-weight: 500;
  max-width: 560px;
}

.rt-hero__right {
  flex: 0 0 460px;
  width: 460px;
}

.rt-hero__img-wrap_Sec {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 20px;
}

.rt-hero__img-wrap_Sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt-hero__stats {
  position: absolute;
  bottom: 24px;
  left: 0px;
  right: 0px;
  display: flex;
  gap: 14px;
}

.rt-stat-chip {
  flex: 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 18px 22px 14px;
}

.rt-stat-chip__value {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.rt-stat-chip__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #888;
}

/* ══════════════════════════════════════
       SECTIONS 2, 4, 5 — rt-fixed (shared)
    ══════════════════════════════════════ */
.rt-fixed {
  display: flex;
  width: 100%;
  min-height: 440px;
  overflow: hidden;
}

/* Text panel */
.rt-fixed__text {
  flex: 1 1 0;
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: #fff;
}

/* Image panel */
.rt-fixed__img {
  flex: 1 1 0;
  overflow: hidden;
}

.rt-fixed__img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* Normal: text-left, image-right */
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__text {
  order: 1;
}
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__img {
  order: 2;
}

/* Reversed: image-left, text-right */
.rt-fixed--reversed .rt-fixed__img {
  order: 1;
}
.rt-fixed--reversed .rt-fixed__text {
  order: 2;
}

/* ── Icon row (triangle style — sections 2 & 4) ── */
.rt-fixed__icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rt-fixed__triangle {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 16px solid #00bdb6;
  flex-shrink: 0;
}

/* ── Square icon (swing-bucket section) ── */
.rt-fixed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eae5ff;
  flex-shrink: 0;
}

.rt-fixed__icon svg {
  width: 16px;
  height: 16px;
}

.rt-fixed__title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: #0d0f2b;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.rt-fixed__body {
  font-size: 18px;
  line-height: 1.95;
  color: #555;
  font-weight: 400;
}

/* ── Info chips (swing-bucket section) ── */
.rt-fixed__chips {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.rt-chip {
  flex: 1 1 140px;
  background: #f8f6ff;
  border: 1px solid #e8e4f5;
  border-radius: 10px;
  padding: 14px 16px 16px;
}

.rt-chip__label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #a0a3c0;
  margin-bottom: 8px;
}

.rt-chip__value {
  font-size: 13.5px;
  font-weight: 700;
  color: #0d0f2b;
  line-height: 1.5;
}

/* ══════════════════════════════════════
       SECTION 3 — Benchmarks Banner
    ══════════════════════════════════════ */
.rt-benchmarks {
  background: #0d0f2b;
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
}

.rt-bench__stat {
  flex: 1 1 0;
  padding: 0 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rt-bench__stat:first-child {
  padding-left: 0;
}
.rt-bench__stat:last-child {
  padding-right: 0;
  border-right: none;
}

.branch-span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8cf4ed;
  margin-bottom: 2px;
}

.rt-bench__stat-value {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
}

.rt-bench__stat-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #7681d4;
  font-weight: 400;
  max-width: 260px;
}

/* ══════════════════════════════════════
       RESPONSIVE — Large Tablet (≤ 1100px)
    ══════════════════════════════════════ */
@media (max-width: 1100px) {
  .container-xl {
    padding: 0 32px;
  }

  .rt-hero {
    gap: 36px;
  }
  .rt-hero__right {
    flex: 0 0 400px;
    width: 400px;
  }
  .rt-hero__img-wrap_Sec {
    height: 400px;
  }

  .rt-fixed__text {
    padding: 44px 40px;
  }

  .rt-benchmarks {
    padding: 44px 44px;
  }
  .rt-bench__stat {
    padding: 0 32px;
  }
  .rt-bench__stat:first-child {
    padding-left: 0;
  }
  .rt-bench__stat:last-child {
    padding-right: 0;
  }
}

/* ══════════════════════════════════════
       RESPONSIVE — Tablet (≤ 900px)
    ══════════════════════════════════════ */
@media (max-width: 900px) {
  .container-xl {
    padding: 0 24px;
  }

  .rt-page {
    padding: 36px 0;
    gap: 20px;
  }

  /* Hero stacks */
  .rt-hero {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .rt-hero__right {
    width: 100%;
    flex: none;
  }

  .rt-hero__img-wrap_Sec {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .rt-hero__body {
    max-width: 100%;
    font-size: 16px;
  }

  /* Fixed sections — stack */
  .rt-fixed {
    flex-direction: column;
    min-height: unset;
    border-radius: 16px;
  }

  .rt-fixed__img {
    flex: none;
    height: 300px;
  }

  /* Normal: text top, image bottom */
  .rt-fixed:not(.rt-fixed--reversed) .rt-fixed__text {
    order: 1;
  }
  .rt-fixed:not(.rt-fixed--reversed) .rt-fixed__img {
    order: 2;
  }

  /* Reversed on desktop → image top, text bottom on tablet */
  .rt-fixed--reversed .rt-fixed__img {
    order: 1;
  }
  .rt-fixed--reversed .rt-fixed__text {
    order: 2;
  }

  .rt-fixed__text {
    padding: 36px 32px;
    gap: 14px;
  }

  /* Chips */
  .rt-chip {
    flex: 1 1 calc(50% - 6px);
  }

  /* Benchmarks */
  .rt-benchmarks {
    flex-direction: column;
    padding: 36px 32px;
    gap: 0;
    /* border-radius: 16px; */
  }

  .rt-bench__stat {
    padding: 22px 0;
    border-right: none;
  }

  .rt-bench__stat:first-child {
    padding-top: 0;
  }
  .rt-bench__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .rt-bench__stat-desc {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════
       RESPONSIVE — Mobile (≤ 600px)
    ══════════════════════════════════════ */
@media (max-width: 600px) {
  .container-xl {
    padding: 0 16px;
  }

  .rt-page {
    padding: 24px 0;
    gap: 16px;
  }

  .rt-hero {
    gap: 18px;
  }

  .rt-hero__heading {
    font-size: clamp(30px, 9vw, 44px);
    letter-spacing: -1px;
    margin-bottom: 14px;
  }

  .rt-hero__eyebrow {
    font-size: 8px;
    margin-bottom: 16px;
  }
  .rt-hero__body {
    font-size: 14px;
    line-height: 1.8;
  }

  .rt-hero__img-wrap_Sec {
    aspect-ratio: 4 / 3;
  }

  .rt-hero__stats {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  .rt-stat-chip {
    padding: 12px 14px 10px;
    border-radius: 10px;
  }
  .rt-stat-chip__value {
    font-size: clamp(14px, 4.5vw, 20px);
  }
  .rt-stat-chip__label {
    font-size: 7.5px;
    letter-spacing: 1px;
  }

  /* Fixed sections */
  .rt-fixed {
    border-radius: 14px;
  }
  .rt-fixed__img {
    height: 220px;
  }
  .rt-fixed__text {
    padding: 26px 20px;
    gap: 12px;
  }
  .rt-fixed__body {
    font-size: 14px;
    line-height: 1.85;
  }
  .rt-fixed__title {
    font-size: clamp(20px, 5vw, 26px);
  }

  /* Icon */
  .rt-fixed__icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  /* Chips */
  .rt-fixed__chips {
    gap: 10px;
    margin-top: 4px;
  }

  .rt-chip {
    flex: 1 1 calc(50% - 5px);
    padding: 12px 14px 14px;
  }

  .rt-chip__label {
    font-size: 8.5px;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }

  .rt-chip__value {
    font-size: 12.5px;
  }

  /* Benchmarks */
  .rt-benchmarks {
    padding: 28px 20px;
    border-radius: 14px;
    gap: 0;
  }

  .rt-bench__stat {
    padding: 16px 0;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rt-bench__stat:first-child {
    padding-top: 0;
  }
  .rt-bench__stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .rt-bench__stat-value {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .rt-bench__stat-desc {
    font-size: 12px;
    line-height: 1.65;
    max-width: 100%;
  }

  .branch-span {
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 1px;
  }
}

/* ══════════════════════════════════════
       RESPONSIVE — XSmall (≤ 400px)
    ══════════════════════════════════════ */
@media (max-width: 400px) {
  .rt-hero__heading {
    font-size: clamp(26px, 10vw, 34px);
  }

  .rt-fixed__img {
    height: 200px;
  }

  /* Chips stack to single column */
  .rt-fixed__chips {
    flex-direction: column;
    gap: 8px;
  }
  .rt-chip {
    flex: none;
    width: 100%;
  }

  /* Benchmarks */
  .rt-benchmarks {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .rt-bench__stat {
    padding: 14px 0;
    gap: 4px;
  }
  .rt-bench__stat-value {
    font-size: clamp(20px, 7vw, 26px);
  }
  .rt-bench__stat-desc {
    font-size: 11.5px;
  }
}

/* redius */
/* ══════════════════════════════════════
   BORDER RADIUS — Card Corners
══════════════════════════════════════ */

/* Section 2: TEXT left, IMAGE right */
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__text {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rt-fixed:not(.rt-fixed--reversed) .rt-fixed__img img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Section 4: IMAGE left, TEXT right */
.rt-fixed--reversed .rt-fixed__img img {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.rt-fixed--reversed .rt-fixed__text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Reset on mobile — stacked layout needs top/bottom radius instead */
@media (max-width: 900px) {
  .rt-fixed__text,
  .rt-fixed__img img {
    border-radius: 0 !important;
  }
}

/* model css */

/* =========================
   MODAL CSS
========================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.65);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 9999;
}

/* Open State */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.modal-box {
  background: #fff;

  width: 90%;
  max-width: 550px;

  padding: 30px;
  border-radius: 16px;

  position: relative;

  transform: translateY(40px) scale(0.95);
  opacity: 0;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

/* Open Animation */
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* Form Styling */
.modal-box h2 {
  margin-bottom: 20px;
  color: #0bbfb8;
}

.modal-box input,
.modal-box textarea,
.modal-box select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #0bbfb8;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: 0.3s;
}

.modal-box input:focus,
.modal-box textarea:focus,
.modal-box select:focus {
  border-color: #0bbfb8;
}

.modal-box textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0bbfb8;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 576px) {
  .modal-box {
    width: 95%;
    padding: 20px;
  }
}

/* =========================
   CALCULATOR SECTION
========================= */

.calculator-section {
  padding: 80px 0;
}

/* Main Card */

.calculator-card {
  position: relative;
  background: #dddddd;
  min-height: 700px;
  padding: 60px;
  overflow: hidden;
}

/* Content */

.calculator-content {
  position: relative;
  z-index: 2;
  width: 52%;
}

/* Heading */

.calc-heading {
  font-size: 34px;
  font-weight: 400;
  color: #082c45;
  margin-bottom: 25px;
}

/* Toggle */

.calc-toggle {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

/* Calculator Row */

.calc-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Inputs */

.calc-input,
.calc-result,
.radius-grid input {
  width: 100%;
  height: 52px;
  border: none;
  background: #fff;
  padding: 0 16px;
  outline: none;
}

.calc-input {
  max-width: 270px;
}

.calc-result {
  background: #eef1f3;
}

/* Labels */

label {
  display: block;
  margin-bottom: 10px;
  color: #082c45;
  font-size: 18px;
}

/* Result */

.result-box {
  margin-top: 30px;
  max-width: 620px;
}

/* Button */

.calc-btn {
  background: #00a6c8;
  color: #fff;
  border: none;
  height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  transition: 0.3s;
}

.calc-btn:hover {
  background: #008cab;
}

/* Radius Section */

.radius-section {
  margin-top: 50px;
}

.radius-section h4 {
  color: #00a6c8;
  margin-bottom: 25px;
  font-size: 28px;
}

.radius-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 620px;
}

.radius-btn {
  margin-top: 25px;
}

/* Right Side Image */

.calculator-bg-image {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 62%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.calculator-bg-image img {
  width: 100%;
  max-width: 950px;
  opacity: 0.45;
  filter: grayscale(100%) contrast(1.2);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .calculator-content {
    width: 60%;
  }

  .calculator-bg-image {
    width: 55%;
    right: -80px;
  }
}

@media (max-width: 991px) {
  .calculator-card {
    padding: 30px;
    min-height: auto;
  }

  .calculator-content {
    width: 100%;
  }

  .calculator-bg-image {
    display: none;
  }

  .radius-grid {
    grid-template-columns: 1fr;
  }

  .calc-row {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-input {
    max-width: 100%;
  }

  .calc-btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .calc-heading {
    font-size: 28px;
  }

  .radius-section h4 {
    font-size: 22px;
  }

  .calculator-card {
    padding: 20px;
  }
}
