/* ==========================================================================
   OriMed Medical Supplies — Global Stylesheet
   ========================================================================== */

:root {
  --navy: #1A3A6B;
  --navy-dark: #0D2347;
  --sky: #0096D6;
  --sky-light: #00AEEF;
  --sky-pale: #E3F4FC;
  --gray: #6B7E96;
  --light-bg: #F4F8FB;
  --dark-text: #0D2347;
  --white: #FFFFFF;
  --container: 1400px;
  --font-display: "Outfit", "Trebuchet MS", sans-serif;
  --font-body: "Inter", "Calibri", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section underline signature detail */
.section-underline {
  display: inline-block;
  height: 3px;
  width: 64px;
  background: var(--sky);
  margin-top: 12px;
  border-radius: 2px;
}

.section-header {
  margin-bottom: 8px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-underline {
  margin-left: auto;
  margin-right: auto;
}
.section-header .eyebrow {
  color: var(--sky);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.section-header .subtitle {
  color: var(--gray);
  margin-top: 14px;
  font-size: 1.05rem;
  max-width: 640px;
}
.section-header.center .subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ==================== Buttons ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sky);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sky-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--sky-pale);
}
.btn-outline-navy:hover {
  background: var(--sky-pale);
}

/* ==================== Navbar ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(13, 35, 71, 0);
}
.navbar.scrolled {
  background: rgba(13, 35, 71, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.nav-logo span em {
  font-style: normal;
  color: var(--sky-light);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sky-light);
}
.nav-right {
  display: none;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-phone:hover {
  color: var(--sky-light);
}
.nav-cta {
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--sky-light);
  transform: scale(1.02);
}
.nav-toggle {
  color: var(--white);
  display: flex;
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* Products dropdown (desktop) */
.nav-products {
  position: relative;
}
.nav-products-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.nav-products-trigger:hover {
  color: var(--sky-light);
}
.nav-products-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-products.open .nav-products-trigger svg {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  width: 640px;
  display: none;
}
.nav-products.open .mega-menu {
  display: block;
}
.mega-menu-inner {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mega-menu-item:hover {
  background: var(--sky-pale);
}
.mega-menu-item svg {
  width: 22px;
  height: 22px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}
.mega-menu-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.mega-menu-item small {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}
.mega-menu-viewall {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 0 2px;
  margin-top: 6px;
  border-top: 1px solid var(--sky-pale);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-dark);
  display: none;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
}
.mobile-menu-header span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}
.mobile-menu-header button {
  color: var(--white);
}
.mobile-menu-header button svg {
  width: 28px;
  height: 28px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0 24px 48px;
  gap: 2px;
}
.mobile-nav a,
.mobile-nav .mobile-products-toggle {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  text-align: left;
}
.mobile-products-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.mobile-products-toggle.open svg {
  transform: rotate(180deg);
}
.mobile-products-list {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  padding-bottom: 8px;
}
.mobile-products-list.open {
  display: flex;
}
.mobile-products-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  font-weight: 400;
  border-bottom: none;
  padding: 9px 0;
}
.mobile-nav .nav-cta {
  margin-top: 20px;
  text-align: center;
  justify-content: center;
  display: flex;
}
.mobile-nav .nav-phone {
  margin-top: 16px;
  justify-content: center;
  font-size: 0.95rem;
}

/* ==================== Hero ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: 80px;
}
.hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 45%;
  background: rgba(0, 150, 214, 0.9);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  display: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-bg img.active {
  opacity: 0.55;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy-dark), rgba(13, 35, 71, 0.8), transparent);
}
.hero-content {
  position: relative;
  max-width: 560px;
  padding: 96px 0;
}
.hero-eyebrow {
  color: var(--sky-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 6vw, 3.75rem);
  line-height: 1.1;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-top: 24px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
}
.hero-badges svg {
  width: 14px;
  height: 14px;
  color: var(--sky-light);
}

/* ==================== Page Hero (inner pages) ==================== */
.page-hero {
  position: relative;
  background: var(--navy-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
  min-height: 50vh;
}
.page-hero.sm {
  min-height: 40vh;
}
.page-hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40%;
  background: rgba(0, 150, 214, 0.2);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  display: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 35, 71, 0.92), rgba(13, 35, 71, 0.65), rgba(13, 35, 71, 0.4));
}
.page-hero-content {
  position: relative;
  padding: 64px 0;
  width: 100%;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-top: 16px;
  max-width: 640px;
}
.page-hero .subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  max-width: 640px;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a:hover {
  color: var(--sky-light);
}
.breadcrumb span.current {
  color: var(--white);
  font-weight: 600;
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
}

/* ==================== Stats Bar ==================== */
.stats-bar {
  background: var(--navy-dark);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.stat {
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--sky-light);
}
.stat .label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ==================== Sections generic ==================== */
section {
  padding: 96px 0;
}
.section-sm {
  padding: 64px 0;
}
.bg-light {
  background: var(--light-bg);
}
.bg-navy {
  background: var(--navy);
}
.bg-navy-dark {
  background: var(--navy-dark);
}
.bg-sky {
  background: var(--sky);
}

/* ==================== Product Grid (home) ==================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: var(--sky);
}
.product-card svg {
  width: 44px;
  height: 44px;
  color: var(--sky);
  margin: 0 auto 16px;
}
.product-card h3 {
  font-size: 1rem;
}
.product-card p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ==================== Why Us (home 3-col) ==================== */
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.whyus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.whyus-item .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.whyus-item .icon-circle svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}
.whyus-item h3 {
  font-size: 1.1rem;
}
.whyus-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 320px;
}

/* ==================== Services Teaser (home) ==================== */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.teaser-text h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.teaser-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 420px;
  line-height: 1.6;
}
.teaser-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.teaser-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.teaser-pill svg {
  width: 28px;
  height: 28px;
  color: var(--sky-light);
}
.teaser-pill span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==================== Testimonial ==================== */
.testimonial-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.testimonial-quote-icon {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  color: var(--white);
  opacity: 0.1;
}
.testimonial-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-content p.quote {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.6;
}
.testimonial-content p.author {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 24px;
}

/* ==================== CTA Banner ==================== */
.cta-banner {
  text-align: center;
}
.cta-banner .inner {
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.cta-banner p {
  color: var(--gray);
  margin-top: 16px;
  font-size: 1.05rem;
}
.cta-banner .btn {
  margin-top: 32px;
}
.cta-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray);
}
.cta-contact a:hover {
  color: var(--sky);
}

/* ==================== About page ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
.about-text p {
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.7;
}
.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.mv-panel {
  padding: 48px 40px;
}
.mv-panel .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.mv-panel.navy .label {
  color: var(--sky-light);
}
.mv-panel.sky .label {
  color: var(--white);
}
.mv-panel p.statement {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
}

.values-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-top: 56px;
}
.value-card {
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card .icon-circle svg {
  width: 24px;
  height: 24px;
  color: var(--sky);
}
.value-card h3 {
  font-size: 1rem;
}
.value-card p {
  color: var(--gray);
  font-size: 0.87rem;
  margin-top: 8px;
  line-height: 1.5;
}

.leader-card {
  max-width: 480px;
  margin: 56px auto 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
}
.leader-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.leader-card .body {
  padding: 32px;
}
.leader-card .role {
  color: var(--sky);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}
.leader-card p.bio {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
}

.compliance-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.compliance-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-pale);
  border-radius: 999px;
  padding: 10px 20px;
}
.compliance-pill svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  flex-shrink: 0;
}
.compliance-pill span {
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 500;
}

/* ==================== Products overview page ==================== */
.overview-intro {
  color: var(--gray);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}
.overview-card {
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s;
}
.overview-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.overview-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.overview-card-head svg {
  width: 48px;
  height: 48px;
  color: var(--sky);
  flex-shrink: 0;
}
.overview-card-head h3 {
  font-size: 1.25rem;
}
.overview-card ul {
  margin-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.overview-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray);
}
.overview-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  margin-top: 7px;
  flex-shrink: 0;
}
.overview-card .view-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.9rem;
}
.overview-card .view-link svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
}

/* ==================== Category page ==================== */
.category-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.category-sidebar h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 16px;
}
.category-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.category-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--gray);
}
.category-sidebar a:hover {
  background: var(--light-bg);
}
.category-sidebar a.active {
  background: var(--sky-pale);
  color: var(--navy);
  font-weight: 600;
}
.category-sidebar a svg {
  width: 16px;
  height: 16px;
  color: var(--gray);
  flex-shrink: 0;
}
.category-sidebar a.active svg {
  color: var(--sky);
}

.category-main-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.category-main-head svg {
  width: 40px;
  height: 40px;
  color: var(--sky);
  flex-shrink: 0;
}
.category-main-head h2 {
  font-size: 1.5rem;
}

.subcat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.subcat-card {
  border: 1px solid var(--sky-pale);
  border-radius: 10px;
  overflow: hidden;
}
.subcat-card .head {
  background: var(--navy);
  padding: 12px 20px;
}
.subcat-card .head h3 {
  color: var(--white);
  font-size: 0.9rem;
}
.subcat-card ul {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subcat-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray);
}
.subcat-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  margin-top: 7px;
  flex-shrink: 0;
}

.key-brands {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.key-brands .label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.key-brands .brand {
  font-size: 0.78rem;
  background: var(--sky-pale);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 500;
}

.sticky-quote {
  background: var(--light-bg);
  border: 1px solid var(--sky-pale);
  border-radius: 12px;
  padding: 24px;
}

/* ==================== Services page ==================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.service-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon-circle svg {
  width: 26px;
  height: 26px;
  color: var(--sky);
}
.service-card h3 {
  font-size: 1.05rem;
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 64px;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.process-step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 1rem;
}
.process-step p {
  color: var(--gray);
  font-size: 0.87rem;
  margin-top: 8px;
  max-width: 220px;
  line-height: 1.5;
}

/* ==================== Why Us page ==================== */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.usp-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.usp-row.reversed .usp-stat {
  order: -1;
}
.usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.usp-icon svg {
  width: 28px;
  height: 28px;
  color: var(--sky);
}
.usp-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}
.usp-text p {
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.7;
}
.usp-stat {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
}
.usp-stat span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sky-light);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.segments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
.segment-card {
  background: var(--white);
  border: 1px solid var(--sky-pale);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.segment-card svg {
  width: 28px;
  height: 28px;
  color: var(--sky);
  flex-shrink: 0;
}
.segment-card span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--sky-pale);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card svg {
  width: 28px;
  height: 28px;
  color: var(--sky);
  margin-bottom: 16px;
}
.testimonial-card p.quote {
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
.testimonial-card p.author {
  color: var(--sky);
  font-weight: 600;
  font-size: 0.78rem;
  margin-top: 20px;
}

/* ==================== Contact page ==================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.contact-form-panel {
  background: var(--light-bg);
  border: 1px solid var(--sky-pale);
  border-radius: 12px;
  padding: 32px;
}
.contact-info-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-info-logo img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.contact-info-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info-item .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon-circle svg {
  width: 18px;
  height: 18px;
  color: var(--sky);
}
.contact-info-item a,
.contact-info-item span {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-info-item a:hover {
  color: var(--sky);
}
.contact-info-item.align-start {
  align-items: flex-start;
}
.contact-info-item.align-start span {
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 400;
}
.contact-badge {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-pale);
  border-radius: 999px;
  padding: 8px 16px;
}
.contact-badge svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
}
.contact-badge span {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}
.map-embed {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sky-pale);
  height: 260px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==================== Form ==================== */
.quote-form h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.quote-form h3.compact-title {
  font-size: 1.05rem;
}
.form-field {
  margin-bottom: 16px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--sky-pale);
  background: var(--white);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--navy);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(107, 126, 150, 0.6);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 150, 214, 0.25);
  border-color: var(--sky);
}
.form-error {
  color: #E4453A;
  font-size: 0.78rem;
  margin-top: 4px;
}
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray);
}
.form-checkbox-row input {
  margin-top: 3px;
}
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: 6px;
  transition: all 0.2s;
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--sky-light);
  transform: scale(1.01);
}
.form-success {
  background: var(--sky-pale);
  border: 1px solid rgba(0, 150, 214, 0.3);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  display: none;
}
.form-success.show {
  display: block;
}
.form-success svg {
  width: 32px;
  height: 32px;
  color: var(--sky);
  margin: 0 auto 12px;
}
.form-success p {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
}

/* ==================== Footer ==================== */
.footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--sky);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 64px 0;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-tagline {
  color: #A8C8E8;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 150, 214, 0.3);
  border-radius: 999px;
  padding: 6px 12px;
}
.footer-badge svg {
  width: 14px;
  height: 14px;
  color: var(--sky-light);
}
.footer-badge span {
  color: #A8C8E8;
  font-size: 0.75rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: #A8C8E8;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--sky-light);
}
.footer-col li.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A8C8E8;
  font-size: 0.9rem;
}
.footer-col li.contact-line svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #A8C8E8;
  text-align: center;
}
.footer-bottom a:hover {
  color: var(--sky-light);
}
.sep-dot {
  display: none;
}

/* ==================== Reveal animation ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==================== Responsive ==================== */
@media (min-width: 768px) {
  .hero-diagonal,
  .page-hero-diagonal {
    display: block;
  }
  .hero-buttons {
    flex-direction: row;
  }
  .about-grid,
  .mission-vision,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
  .values-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
  }
  .value-card {
    min-width: 0;
  }
  .overview-grid,
  .services-grid,
  .segments-grid,
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .subcat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-row {
    grid-template-columns: 1fr 1fr;
  }
  .usp-row.reversed > *:first-child {
    order: 2;
  }
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nav-links,
  .nav-right {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .whyus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-layout {
    grid-template-columns: 240px 1fr 320px;
  }
  .segments-grid,
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1023px) {
  .category-sidebar {
    display: none;
  }
}
