/* Shared MedSynaptic site styles - extracted from index.html 2026-06-23.
   Used by: index.html, about-us/index.html, and all future pages.
   Edit here; both homepage and subpages pick up automatically. */

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      max-width: 100vw;
    }
    body {
      font-family: 'Inter', sans-serif;
      color: #1f1f1f;
      background: #fff;
      overflow-x: hidden;
      max-width: 100vw;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    /* Prevent orphan words on titles when wrapping on narrow screens */
    h1, h2, h3, .hero-title, .section-title, .join-title { text-wrap: balance; }

    /* ===== DESIGN TOKENS ===== */
    :root {
      --hero-bg: #0c1b25;
      --nav-pill: #384457;
      --yellow: #fdb92e;
      --yellow-hover: #e8a820;
      --text-primary: #1f1f1f;
      --text-body: #46474f;
      --text-muted: rgba(255,255,255,0.8);
      --blue: #3061e3;
      --blue-dark: #203175;
      --section-bg: #f4f6fb;
      --card-border: #f1f6fc;
      --badge-border: #dee1eb;
      --icon-bg: #fffaf1;
      --heading-gradient: linear-gradient(187.762deg, rgb(48,97,227) 28.389%, rgb(0,0,0) 82.757%);
      --cta-gradient: linear-gradient(188.765deg, rgb(82,119,218) 28.389%, rgb(0,0,0) 82.757%);
      --form-gradient: linear-gradient(254.132deg, rgb(82,119,218) 11.01%, rgb(0,0,0) 89.008%);
      --join-gradient: linear-gradient(221.621deg, rgb(82,119,218) 11.01%, rgb(0,0,0) 89.008%);
      --card-shadow: 0 6px 14px rgba(189,233,218,.08), 0 25px 25px rgba(189,208,233,.07), 0 57px 34px rgba(189,233,218,.04), 0 101px 40px rgba(189,233,218,.01), 0 157px 44px rgba(189,233,218,0);
      --stat-card-shadow: 0 6px 14px rgba(189,233,218,.08), 0 25px 25px rgba(189,208,233,.07), 0 0 0 4px rgba(48,97,227,.06), 0 8px 28px rgba(48,97,227,.12);
      --stat-card-backdrop-shadow: 0 4px 24px rgba(100,110,130,.18), 0 1px 6px rgba(80,90,110,.10);
      --orange-hover: #c47800;
    }

    /* ===== LAYOUT ===== */
    .page-wrap { max-width: 1440px; margin: 0 auto; }
    .section-inner { max-width: 1312px; margin: 0 auto; padding: 0 64px; }

    /* ===== SHARED COMPONENTS ===== */

    /* Badge */
    .badge {
      display: inline-flex; align-items: center; gap: 4px;
      background: #fff; border: 1px solid var(--badge-border);
      border-radius: 100px; padding: 6px 16px;
      font-size: 16px; font-weight: 400; color: var(--blue-dark);
      text-transform: uppercase; letter-spacing: -0.32px; line-height: 1.1;
    }
    .badge img { width: 16px; height: 16px; }
    .badge--ghost {
      background: rgba(255,255,255,.2);
      border-color: rgba(255,255,255,.2);
      color: #fff;
    }

    /* Section heading gradient */
    .section-title {
      font-size: 40px; font-weight: 600; line-height: 1.1;
      letter-spacing: -2px; text-align: center;
      background: var(--heading-gradient);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }

    /* Yellow CTA Button */
    .btn-yellow {
      display: inline-flex; align-items: center; justify-content: center; gap: 12px;
      background: var(--yellow); border-radius: 100px;
      height: 50px; padding: 0 32px;
      font-size: 18px; font-weight: 500; color: var(--text-primary);
      cursor: pointer; border: none; transition: background .2s;
      white-space: nowrap; text-decoration: none;
    }
    html { scroll-behavior: smooth; }
    .btn-yellow:hover { background: var(--yellow-hover); }
    .btn-yellow .btn-arrow { width: 20px; height: 20px; flex-shrink: 0; }
    /* White hover for hero, join-team, and brochure buttons */
    #hero .hero-content .btn-yellow:hover,
    .join-team .btn-yellow:hover,
    .brochure-banner .btn-yellow:hover {
      background: #fff; color: var(--text-primary);
    }

    /* White border button (nav) */
    .btn-outline-white {
      display: inline-flex; align-items: center; justify-content: center; gap: 12px;
      border: 1px solid rgba(255,255,255,.8); border-radius: 100px;
      height: 50px; padding: 0 32px;
      font-size: 18px; font-weight: 500; color: #fff;
      cursor: pointer; background: transparent;
      transition: background .2s, color .2s, border-color .2s;
      white-space: nowrap;
    }
    .btn-outline-white:hover {
      background: #fff;
      color: #1f1f1f;
      border-color: #fff;
    }
    .btn-outline-white .btn-arrow {
      width: 20px; height: 20px; flex-shrink: 0;
      filter: brightness(0) invert(1);
      transition: filter .2s;
    }
    .btn-outline-white:hover .btn-arrow { filter: brightness(0); }

    /* Icon box */
    .icon-box {
      width: 60px; height: 60px; border-radius: 8px;
      background: var(--icon-bg); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .icon-box img { width: 24px; height: 24px; }

    /* ===========================
       1. NAVBAR + HERO
    =========================== */
    #hero {
      position: relative;
      background: var(--hero-bg);
      min-height: 800px;
      overflow: visible;
    }
    .hero-bg-img {
      position: absolute; top: 0; right: 0;
      width: 54%; height: 100%;
      object-fit: cover;
      mix-blend-mode: lighten;
      pointer-events: none;
    }
    .hero-overlay-left {
      position: absolute; top: 0; left: 0;
      width: 56%; height: 100%;
      background: linear-gradient(90deg, var(--hero-bg) 60%, transparent 100%);
      pointer-events: none;
    }

    /* Navbar */
    nav {
      position: relative; z-index: 10;
      display: flex; align-items: center; justify-content: space-between;
      padding: 24px 64px;
      max-width: 1440px;
      margin: 0 auto;
      transition: background .25s ease, box-shadow .25s ease;
    }
    nav.scrolled {
      background: #fff;
      box-shadow: 0 2px 12px rgba(48,97,227,.08);
    }
    nav.scrolled .burger span { background: #1f1f1f; }
    nav.scrolled .nav-links { background: var(--nav-pill); }
    .nav-logo { height: 40px; width: auto; }
    .nav-links {
      display: flex; align-items: center; gap: 32px;
      background: var(--nav-pill); border-radius: 1000px;
      padding: 14px 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 16px; font-weight: 400; color: #fff;
      transition: opacity .2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--yellow); opacity: 1; }
    .nav-cta { }

    /* Hero content */
    .hero-content {
      position: relative; z-index: 2;
      max-width: 1440px; margin: 0 auto;
      padding: 0 64px;
      padding-top: 44px;
    }
    .hero-klas {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 32px;
    }
    .hero-klas img.klas-badge { width: 62px; height: 61px; border-radius: 3000px; }
    .hero-klas-text {
      font-size: 16px; color: #fff; text-transform: uppercase;
      letter-spacing: -0.32px; font-weight: 400;
    }
    .hero-title {
      font-size: 64px; font-weight: 600; color: #fff;
      line-height: 1.1; letter-spacing: -1.28px;
      max-width: 640px; margin-bottom: 14px;
    }
    .hero-subtitle {
      font-size: 20px; color: #fff; line-height: 1.4;
      max-width: 600px; margin-bottom: 40px;
    }

    /* Stats bar */
    .stats-bar {
      display: flex; gap: 32px; align-items: center;
      position: relative; z-index: 5;
      max-width: 1440px; margin: 80px auto 0; padding: 0 64px;
      transform: translateY(60px);
    }
    .stat-card {
      background: #fff; border: 1px solid rgba(48,97,227,.08);
      border-radius: 12px;
      box-shadow: 0 2px 4px rgba(80,100,140,.06), 0 12px 32px rgba(80,100,140,.12);
      padding: 20px; display: flex; align-items: center; gap: 16px;
      flex: 1; min-width: 0; position: relative; z-index: 3;
    }
    .stat-icon {
      width: 60px; height: 60px; border-radius: 8px;
      background: var(--icon-bg); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .stat-icon img { width: 24px; height: 24px; }
    .stat-number {
      font-size: 28px; font-weight: 500; color: #0c2516; line-height: 1.4;
    }
    .stat-label {
      font-size: 18px; font-weight: 400; color: var(--text-body); line-height: 1.3;
    }

    /* ===========================
       2. ABOUT US
    =========================== */
    #about {
      background: #fff;
      padding: 140px 0 80px;
    }
    .about-inner {
      max-width: 1312px; margin: 0 auto; padding: 0 64px;
    }
    .about-header {
      display: flex; flex-direction: column; align-items: center; gap: 12px;
      margin-bottom: 60px;
    }
    /* 30% text / 70% image split (per Igor's V1 pick on About section test page) */
    .about-cols {
      display: flex; gap: 32px; align-items: center;
    }
    .about-left { flex: 30 1 0; min-width: 0; display: flex; flex-direction: column; gap: 48px; align-items: flex-start; }
    .about-lead {
      font-size: 24px; line-height: 1.4; color: var(--text-primary);
      margin-bottom: 0;
    }
    .about-lead strong { font-weight: 600; }
    .about-feature {
      display: flex; gap: 20px; align-items: flex-start;
    }
    .about-feature-text h4 {
      font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px;
    }
    .about-feature-text p {
      font-size: 18px; color: var(--text-body); line-height: 1.3;
    }

    /* About right column: 70% of section width, image fills 100% of column */
    .about-right {
      flex: 70 1 0;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-diagram {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
    }
    .about-feature .icon-box { display: none; }
    .diagram-card {
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(143,191,253,0.4);
      border-radius: 8px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05), 0 1px 4px rgba(48,97,227,.1), 0 32px 21px rgba(48,97,227,.03);
      position: absolute;
    }
    .diagram-pill {
      border: 1px solid #8fbffd; border-radius: 1000px;
      background: #fff; padding: 5px 11px;
      font-size: 11px; color: var(--text-body);
      position: absolute; white-space: nowrap;
    }

    /* Top row card */
    .diagram-top-row {
      position: absolute; top: 43px; left: 89px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border: 17px solid #fff;
      border-radius: 9px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05), 0 1px 4px rgba(48,97,227,.1), 0 32px 21px rgba(48,97,227,.03);
      display: flex; align-items: center; gap: 35px;
      padding: 0 4px;
    }
    .diagram-item {
      display: flex; flex-direction: column; align-items: center; gap: 7px;
      width: 50px;
    }
    .diagram-item img { width: 44px; height: 44px; object-fit: contain; }
    .diagram-item span {
      font-size: 13px; font-weight: 600; color: var(--text-primary);
      text-align: center; white-space: nowrap;
    }
    .diagram-sep {
      width: 3.5px; height: 50px; flex-shrink: 0;
    }
    /* VNA middle card */
    .diagram-vna {
      position: absolute; top: 197px; left: 246px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border: 14px solid #fff;
      border-radius: 9px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05), 0 1px 4px rgba(48,97,227,.1), 0 32px 21px rgba(48,97,227,.03);
      display: flex; align-items: center; gap: 6px;
      padding: 0 4px;
    }
    .diagram-vna img { width: 44px; height: 44px; object-fit: contain; }
    .diagram-vna-text { font-size: 10.5px; font-weight: 600; color: var(--text-primary); line-height: 1.3; width: 76px; }
    .diagram-vna-text span { color: var(--blue); }

    /* DICOM Viewer right */
    .diagram-viewer {
      position: absolute; top: 197px; right: 0;
      display: flex; flex-direction: column; gap: 7px; align-items: center;
      width: 125px;
    }
    .diagram-viewer img.viewer-icon { width: 44px; height: 44px; object-fit: contain; }
    .diagram-viewer-label { text-align: center; }
    .diagram-viewer-label p { font-size: 13px; font-weight: 600; color: var(--text-primary); }
    .diagram-viewer-label small { font-size: 10.5px; color: var(--text-body); }

    /* Bottom RIS/EHR row */
    .diagram-bottom-row {
      position: absolute; bottom: 88px; left: 230px;
      display: flex; gap: 20px;
    }
    .diagram-bottom-item { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 44px; }
    .diagram-bottom-item img { width: 44px; height: 44px; object-fit: contain; }
    .diagram-bottom-item span { font-size: 13px; font-weight: 600; color: var(--text-primary); text-align: center; }

    /* Deployment row */
    .diagram-deploy {
      position: absolute; bottom: 12px; left: 136px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(10px);
      border: 10px solid #fff;
      border-radius: 9px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05), 0 1px 4px rgba(48,97,227,.1), 0 32px 21px rgba(48,97,227,.03);
      display: flex; align-items: center; gap: 28px;
      padding: 0 4px;
    }
    .diagram-deploy-item { display: flex; align-items: center; gap: 7px; }
    .diagram-deploy-item img { width: 28px; height: 28px; }
    .diagram-deploy-item span { font-size: 13px; font-weight: 600; color: var(--text-primary); white-space: nowrap; }

    /* ===========================
       3. EVENTS
    =========================== */
    #events {
      background: var(--section-bg);
      padding: 120px 0;
      position: relative; overflow: hidden;
    }
    #events .section-inner {
      display: flex; flex-direction: column; align-items: center; gap: 50px;
    }
    .events-header { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
    .events-header p { font-size: 24px; color: var(--text-primary); max-width: 776px; }
    .event-card {
      background: #fff; border: 1px solid var(--card-border);
      border-radius: 15px; box-shadow: var(--card-shadow);
      display: flex; width: 100%; max-width: 1088px; overflow: hidden;
    }
    .event-img {
      width: 528px; flex-shrink: 0; height: 298px;
      object-fit: cover; border-radius: 10px 0 0 10px;
    }
    .event-info { padding: 40px 32px; display: flex; flex-direction: column; gap: 32px; justify-content: center; align-items: flex-start; }
    .event-info h3 { font-size: 24px; font-weight: 600; color: var(--text-primary); }
    .event-meta { display: flex; flex-direction: column; gap: 8px; }
    .event-meta-row { display: flex; align-items: center; gap: 4px; font-size: 16px; color: var(--text-body); }
    .event-meta-row img { width: 20px; height: 20px; }
    .event-booth { font-size: 16px; font-weight: 600; color: var(--text-body); margin-top: 12px; }

    /* ===========================
       4. PRODUCTS
    =========================== */
    #products {
      background: #fff;
      padding: 100px 0;
    }
    #products .section-inner { display: flex; flex-direction: column; align-items: center; gap: 40px; }
    .products-header { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .products-tabs {
      display: flex; align-items: center; gap: 20px;
      background: #f4f6fb; border-radius: 1000px; padding: 5px;
    }
    .tab {
      padding: 7px 20px; border-radius: 20px; font-size: 16px; cursor: pointer;
      color: var(--text-primary); transition: all .2s; border: none; background: transparent;
    }
    .tab.active {
      background: linear-gradient(214.759deg, rgb(82,119,218) 14.52%, rgb(0,0,0) 99.703%);
      color: #fff;
    }
    .tab:hover:not(.active) { background: rgba(0,0,0,.05); }
    .products-grid {
      display: flex; flex-wrap: wrap; gap: 32px; width: 100%;
    }
    .product-card {
      background: #fff; border: 1px solid var(--card-border);
      border-radius: 10px; box-shadow: var(--card-shadow);
      width: calc((100% - 96px) / 4);
      min-width: 0; height: 161px;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
      padding: 20px; transition: transform .2s, box-shadow .2s; cursor: pointer;
    }
    .product-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(48,97,227,.12); }
    .product-card img { max-height: 60px; max-width: 180px; object-fit: contain; }
    .product-card span { font-size: 16px; color: var(--text-primary); text-align: center; }

    /* Download brochures banner */
    .brochure-banner {
      width: 100%;
      border-radius: 20px;
      padding: 0 50px;
      height: 154px;
      display: flex; align-items: center; justify-content: space-between;
      background: var(--cta-gradient);
      position: relative; overflow: hidden;
    }
    .brochure-banner h3 {
      font-size: 32px; font-weight: 600; color: #fff; line-height: 1.4;
      position: relative; z-index: 1;
    }
    .brochure-banner .btn-yellow { position: relative; z-index: 1; }

    /* ===========================
       5. WHY CHOOSE US
    =========================== */
    #why {
      background: #fff;
      padding: 100px 0;
    }
    #why .section-inner { max-width: 1312px; margin: 0 auto; padding: 0 64px; }
    .why-inner { display: flex; flex-direction: column; gap: 50px; align-items: center; }
    .why-header { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    /* 60% text / 40% image - photo doesn't need as much real estate as the about diagram */
    .why-cols { display: flex; gap: 32px; align-items: center; width: 100%; }
    .why-left { flex: 60 1 0; min-width: 0; display: flex; flex-direction: column; gap: 48px; }
    .why-desc { font-size: 24px; color: var(--text-primary); line-height: 1.4; max-width: 613px; }
    .why-features {
      display: flex; flex-wrap: wrap; gap-y: 24px; gap-x: 0; row-gap: 24px;
      justify-content: space-between;
    }
    .why-feature {
      display: flex; flex-direction: column; gap: 20px; width: calc(50% - 8px);
    }
    .why-feature p { font-size: 16px; color: var(--text-primary); line-height: 1.3; }
    /* Why Choose right column: 40% of section width, image fills 100% of column */
    .why-right {
      flex: 40 1 0;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-right img {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
    }
    .why-contact { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
    .why-email { font-size: 16px; color: var(--text-primary); opacity: 0.8; }
    .why-email a { text-decoration: underline; }
    .why-email a:hover { color: var(--blue); }

    /* ===========================
       6. MEDICAL IMAGING SOLUTION
    =========================== */
    #how {
      background: var(--section-bg);
      padding: 140px 0;
    }
    #how .section-inner { display: flex; flex-direction: column; gap: 50px; align-items: center; }
    .how-header { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .how-steps { display: flex; gap: 32px; width: 100%; margin-bottom: 0; }
    .how-step { flex: 1; display: flex; flex-direction: column; gap: 16px; }
    .how-step-title { display: flex; align-items: center; gap: 16px; }
    .how-num {
      width: 42px; height: 42px; border-radius: 50%; background: var(--yellow);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-size: 22px; font-weight: 600; color: #fff; line-height: 1.1; letter-spacing: -1px;
    }
    .how-step-title h4 { font-size: 20px; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
    .how-step p { font-size: 18px; color: var(--text-body); line-height: 1.4; }

    /* How diagram */
    .how-diagram {
      width: 100%;
      background: rgba(255,255,255,0.6);
      border-radius: 16px;
      position: relative;
      min-height: 270px;
      display: flex; gap: 0; align-items: stretch;
    }
    .how-col {
      flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 20px; padding: 32px 20px; position: relative;
    }
    .how-col::after {
      content: ''; position: absolute; right: 0; top: 50%;
      transform: translateY(-50%);
      width: 0; height: 60px;
    }
    .how-col:not(:last-child)::after {
      content: '→'; position: absolute; right: -16px; top: 50%;
      transform: translateY(-50%);
      font-size: 24px; color: var(--text-body); z-index: 2;
    }
    .diagram-card-sm {
      background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
      border: 12px solid #fff; border-radius: 9px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05), 0 1px 4px rgba(48,97,227,.1);
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      padding: 12px 16px;
    }
    .diagram-card-sm img { width: 64px; height: 64px; object-fit: contain; }
    .diagram-card-sm span { font-size: 14px; font-weight: 600; color: var(--text-primary); text-align: center; }
    .how-sources {
      display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
    }
    .how-source {
      background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
      border: 8px solid #fff; border-radius: 9px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05), 0 1px 4px rgba(48,97,227,.1);
      display: flex; flex-direction: column; align-items: center; gap: 2px;
      padding: 8px 20px; width: 90px;
    }
    .how-source img { width: 44px; height: 44px; object-fit: contain; }
    .how-source span { font-size: 10px; font-weight: 600; color: var(--text-primary); text-align: center; }
    .how-tags {
      background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
      border: 10px solid #fff; border-radius: 9px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05);
      display: flex; gap: 16px; align-items: center; padding: 8px;
    }
    .how-tag-item { display: flex; flex-direction: column; align-items: center; gap: 7px; }
    .how-tag-item img { width: 32px; height: 32px; object-fit: contain; }
    .how-tag-item span { font-size: 10px; font-weight: 600; color: var(--text-primary); white-space: nowrap; }
    .how-sep { width: 3.5px; height: 21px; background: #e0e0e0; border-radius: 2px; }
    .how-viewer {
      background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
      border: 12px solid #fff; border-radius: 9px;
      box-shadow: 0 8px 4px rgba(48,97,227,.05);
      overflow: hidden;
    }
    .how-viewer img { width: 164px; height: 106px; object-fit: contain; }

    /* ===========================
       7. COMPLIANCES
    =========================== */
    #compliances {
      background: #fff;
      padding: 100px 0;
    }
    #compliances .section-inner { display: flex; flex-direction: column; gap: 50px; align-items: center; }
    .compliance-header { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .compliance-grid-row {
      display: flex; width: 100%;
    }
    .compliance-grid-row.top .compliance-cell { border-bottom: 1px solid var(--card-border); }
    .compliance-cell {
      flex: 1; display: flex; align-items: center; justify-content: center;
      padding: 40px 20px; height: 140px; overflow: hidden;
      border-right: 1px solid var(--card-border);
    }
    .compliance-cell:last-child { border-right: none; }
    .compliance-cell img { max-height: 80px; max-width: 140px; width: auto; height: auto; object-fit: contain; flex-shrink: 0; }

    /* ===========================
       8. TESTIMONIALS
    =========================== */
    #testimonials {
      background: var(--section-bg);
      padding: 120px 0;
      position: relative; overflow: hidden;
    }
    #testimonials .section-inner { display: flex; flex-direction: column; gap: 50px; align-items: center; }
    .testimonials-header { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
    .testimonials-header p { font-size: 24px; color: var(--text-primary); max-width: 810px; }
    .testimonials-grid { display: flex; gap: 32px; width: 100%; }
    .testimonial-card {
      background: #fff; border: 1px solid var(--card-border);
      border-radius: 20px; box-shadow: var(--card-shadow);
      padding: 32px; display: flex; flex-direction: column;
      justify-content: space-between; flex: 1;
      min-height: 440px;
    }
    .testimonial-card .stars { width: 116px; height: 19px; flex-shrink: 0; display: block; margin-bottom: 32px; }
    .testimonial-card blockquote {
      font-size: 18px; font-style: italic; color: var(--text-body);
      line-height: 1.4; flex: 1;
    }
    .testimonial-avatar { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
    .testimonial-avatar img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
    .testimonial-avatar-name { font-size: 16px; font-weight: 600; color: var(--text-primary); line-height: 1.5; }
    .testimonial-avatar-role { font-size: 16px; color: var(--text-body); line-height: 1.5; }
    .carousel-nav { display: flex; gap: 16px; align-items: center; }
    .carousel-btn {
      width: 56px; height: 56px; border-radius: 50%;
      background: #fff; border: 1px solid var(--card-border);
      box-shadow: var(--card-shadow);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .carousel-btn:hover { background: var(--section-bg); }
    .carousel-btn img { width: 24px; height: 24px; }
    .carousel-btn.is-disabled,
    .carousel-btn[disabled] {
      opacity: 0.35;
      cursor: not-allowed;
      pointer-events: none;
    }

    /* ===========================
       9. NEWS & EVENTS
    =========================== */
    #news {
      background: #fff;
      padding: 100px 0;
    }
    #news .section-inner { display: flex; flex-direction: column; gap: 50px; align-items: center; }
    .news-header { display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .news-grid { display: flex; gap: 32px; width: 100%; }
    /* News carousel */
    .news-carousel { width: 100%; overflow: hidden; }
    .news-track { display: flex; width: 100%; gap: 32px; transition: transform .4s ease; }
    .news-card { flex: 1; display: flex; flex-direction: column; gap: 24px; }
    .news-card-img { width: 100%; height: 220px; object-fit: cover; border-radius: 15px; }
    .news-card-body { display: flex; flex-direction: column; gap: 12px; }
    .news-card-body h4 { font-size: 20px; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
    .news-card-body p { font-size: 16px; color: var(--text-body); line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
    .read-more { display: flex; align-items: center; gap: 4px; font-size: 18px; font-weight: 500; color: var(--blue); transition: color .2s; }
    .read-more:hover { color: var(--orange-hover); opacity: 1; }
    .read-more img { width: 12px; height: 24px; }

    /* ===========================
       10. CONTACT
    =========================== */
    #contact {
      background: var(--section-bg);
      padding: 140px 0;
      position: relative; overflow: hidden;
    }
    #contact .section-inner { position: relative; z-index: 1; }
    .contact-cols { display: flex; gap: 32px; align-items: stretch; }
    .contact-left {
      flex: 0 0 640px; display: flex; flex-direction: column;
      justify-content: space-between;
    }
    .contact-left-header { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
    .contact-left-header .section-title { text-align: left; font-size: 40px; }
    .contact-desc { font-size: 20px; color: var(--text-body); line-height: 1.3; max-width: 598px; }
    .contact-info-section { display: flex; flex-direction: column; gap: 40px; margin-top: 40px; }
    .contact-info-title {
      font-size: 32px; font-weight: 600; letter-spacing: -0.64px;
      background: var(--heading-gradient);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }
    .country-tabs { display: flex; gap: 12px; }
    .country-tab {
      padding: 12px 32px; border-radius: 10px; font-size: 18px; font-weight: 500;
      cursor: pointer; box-shadow: var(--card-shadow); border: none;
      transition: all .2s;
    }
    .country-tab.active {
      background: linear-gradient(221.592deg, rgb(82,119,218) 11.01%, rgb(0,0,0) 89.008%);
      color: #fff;
    }
    .country-tab:not(.active) { background: #fff; color: #a5a5a5; }
    .country-tab:not(.active):hover { color: var(--text-primary); }
    .contact-items { display: flex; flex-direction: column; gap: 20px; }
    .contact-item { display: flex; align-items: center; gap: 12px; }
    .contact-item-icon {
      width: 48px; height: 48px; background: #fff; border: 1px solid var(--card-border);
      border-radius: 10px; box-shadow: var(--card-shadow);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-item-icon img { width: 24px; height: 24px; }
    .contact-item p { font-size: 16px; font-weight: 500; color: var(--text-primary); line-height: 1.3; }

    /* Contact form */
    .contact-form {
      flex: 0 0 640px;
      background: var(--form-gradient);
      border-radius: 15px; box-shadow: var(--card-shadow);
      padding: 40px; display: flex; flex-direction: column; gap: 32px;
    }
    .form-row { display: flex; gap: 40px; }
    .form-group {
      display: flex; flex-direction: column; gap: 8px; flex: 1;
    }
    .form-group label { font-size: 20px; color: #fff; line-height: 1.3; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: #fff; border: 1px solid var(--card-border);
      border-radius: 10px; padding: 12px 16px;
      font-size: 16px; color: var(--text-body);
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color .2s;
      width: 100%;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--blue);
    }
    .form-group textarea { height: 192px; resize: none; }
    .form-group input::placeholder, .form-group textarea::placeholder { color: #757373; }
    .form-footer { display: flex; align-items: center; justify-content: space-between; }
    .form-checkbox { display: flex; align-items: center; gap: 12px; }
    .form-checkbox input[type="checkbox"] {
      width: 18px; height: 18px; border-radius: 2px; cursor: pointer; accent-color: var(--blue);
    }
    .form-checkbox label { font-size: 16px; color: #fff; cursor: pointer; }
    .form-checkbox label a { text-decoration: underline; color: #fff; }

    /* ===========================
       11. JOIN OUR TEAM + FOOTER
    =========================== */
    #footer {
      background: #fff;
      padding: 100px 0 0;
    }
    #footer .section-inner { display: flex; flex-direction: column; gap: 60px; }
    .join-team {
      border-radius: 20px;
      background: var(--join-gradient);
      padding: 64px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      min-height: 280px;
    }
    .join-content {
      display: flex; flex-direction: column; gap: 40px; align-items: center;
      position: relative; z-index: 2;
    }
    .join-header { display: flex; flex-direction: column; gap: 12px; align-items: center; }
    .join-title { font-size: 40px; font-weight: 600; color: #fff; line-height: 1.1; letter-spacing: -2px; text-align: center; }
    .join-subtitle { font-size: 20px; color: #fff; text-align: center; max-width: 487px; line-height: 1.3; }

    /* Footer bottom */
    .footer-bottom {
      background: var(--hero-bg);
      padding: 60px 64px;
      border-radius: 0;
    }
    .footer-inner-wrap { max-width: 1312px; margin: 0 auto; }
    .footer-main {
      display: flex; justify-content: space-between; align-items: flex-start;
      padding-bottom: 40px;
    }
    .footer-brand { max-width: 446px; }
    .footer-logo { height: 40px; width: auto; margin-bottom: 24px; }
    .footer-desc { font-size: 16px; color: var(--text-muted); line-height: 1.3; margin-bottom: 8px; }
    .footer-tagline { font-size: 16px; color: var(--text-muted); line-height: 1.3; }
    .footer-links { display: flex; gap: 100px; }
    .footer-col h5 { font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 20px; }
    .footer-col a {
      display: block; font-size: 16px; color: var(--text-muted);
      margin-bottom: 20px; transition: color .2s;
    }
    .footer-col a:hover { color: var(--yellow); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 0; }
    .footer-copyright {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 20px;
    }
    .footer-copyright p { font-size: 14px; color: var(--text-muted); }
    .footer-social { display: flex; gap: 8px; }
    .social-icon {
      width: 32px; height: 32px; background: #2a2a2a; border-radius: 4px;
      cursor: pointer; transition: background .2s;
      display: flex; align-items: center; justify-content: center;
    }
    .social-icon:hover { background: var(--blue); }
    .social-icon svg { width: 16px; height: 16px; fill: #aaa; transition: fill .2s; }
    .social-icon:hover svg { fill: #fff; }
    .social-icon svg .x-icon { fill: #aaa; transition: fill .2s; }
    .social-icon:hover svg .x-icon { fill: #fff; }
    .footer-legal { display: flex; align-items: center; gap: 12px; }
    .footer-legal a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
    .footer-legal a:hover { color: var(--yellow); }
    .footer-legal span { font-size: 14px; color: var(--text-muted); }


    /* ── Product tab panels ── */
    .tab-panel { display: none; width: 100%; }
    .tab-panel.active { display: flex; flex-wrap: wrap; gap: 32px; }

    /* ── Testimonial carousel ── */
    .testimonials-carousel { width: 100%; overflow: hidden; }
    .testimonials-track { display: flex; width: 100%; gap: 32px; transition: transform .4s ease; }

    /* ── Country contact panels ── */
    .country-content { display: none; }
    .country-content.active { display: flex; flex-direction: column; gap: 20px; }

    /* ── Select field fix ── */
    .form-group select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23757373' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

    /* ── Products dropdown in nav ── */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger {
      display: inline-flex !important; align-items: center; gap: 6px;
      cursor: pointer;
    }
    .nav-chevron { transition: transform .2s; flex-shrink: 0; }
    .nav-submenu {
      position: absolute; top: calc(100% + 12px); left: 50%;
      transform: translateX(-50%) translateY(-4px);
      background: #fff; border: 1px solid var(--card-border); border-radius: 12px;
      box-shadow: 0 4px 8px rgba(80,100,140,.08), 0 16px 40px rgba(80,100,140,.14);
      padding: 8px; min-width: 200px;
      display: flex; flex-direction: column;
      list-style: none; margin: 0;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
      z-index: 100;
    }
    /* Invisible hover bridge between trigger and submenu */
    .nav-submenu::before {
      content: ""; position: absolute; top: -16px; left: -8px; right: -8px; height: 16px;
    }
    .nav-submenu li { padding: 0; }
    .nav-submenu a {
      display: block !important; padding: 10px 14px; border-radius: 8px;
      color: var(--text-primary) !important; font-size: 15px; font-weight: 500;
      text-decoration: none; white-space: nowrap;
      transition: background .15s, color .15s;
    }
    /* Sub-menu hover: light orange bg + dark orange text - WCAG AA passing (7.2:1) */
    .nav-submenu a:hover {
      background: #fff4e0;
      color: #b8530a !important;
    }
    .nav-dropdown:hover .nav-submenu,
    .nav-dropdown:focus-within .nav-submenu {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown:hover .nav-chevron,
    .nav-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }

    /* ── Burger menu (mobile nav trigger) ── */
    .burger {
      display: none;
      width: 44px; height: 44px;
      border: none; background: transparent;
      cursor: pointer; padding: 12px 10px;
      position: relative; z-index: 1001;
      align-items: center; justify-content: center;
      flex-direction: column; gap: 6px;
    }
    .burger span {
      display: block; width: 24px; height: 2px;
      background: #fff; border-radius: 2px;
      flex: none;
      transition: transform .25s ease, opacity .25s ease, background .2s ease;
      transform-origin: center;
    }
    .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile menu overlay */
    .mobile-menu {
      position: fixed; inset: 0;
      background: var(--hero-bg);
      z-index: 1000;
      padding: 88px 24px 40px;
      display: flex; flex-direction: column; gap: 4px;
      overflow-y: auto;
      transform: translateY(-100%);
      opacity: 0; visibility: hidden;
      transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
    }
    .mobile-menu.is-open {
      transform: translateY(0); opacity: 1; visibility: visible;
    }
    .mobile-menu-close {
      position: absolute; top: 18px; right: 20px;
      width: 44px; height: 44px;
      border: 1px solid rgba(255,255,255,.3); background: transparent;
      color: #fff; font-size: 28px; line-height: 1;
      border-radius: 50%; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      z-index: 1002;
    }
    .mobile-menu-close:hover { background: rgba(255,255,255,.1); }
    .mobile-menu a {
      color: #fff; font-size: 22px; font-weight: 500;
      padding: 16px 8px; border-bottom: 1px solid rgba(255,255,255,.08);
      display: block;
    }

    /* Collapsible Products group */
    .mobile-menu .mobile-menu-group { display: block; }
    .mobile-menu-trigger {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 16px 8px;
      background: transparent; border: none;
      border-bottom: 1px solid rgba(255,255,255,.08);
      color: #fff; font-size: 22px; font-weight: 500;
      font-family: inherit; text-align: left; cursor: pointer;
      transition: color .15s;
    }
    .mobile-menu-trigger .mobile-chevron {
      display: inline-block; width: 14px; height: 14px;
      border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
      transform: rotate(45deg); margin-right: 4px;
      transition: transform .2s ease, color .2s ease;
    }
    /* Expanded state: orange parent + flipped chevron */
    .mobile-menu-trigger[aria-expanded="true"] { color: #ff9c1f; }
    .mobile-menu-trigger[aria-expanded="true"] .mobile-chevron {
      transform: rotate(-135deg); margin-right: 0; margin-top: 6px;
    }

    .mobile-menu .mobile-sub {
      padding-left: 20px;
      overflow: hidden;
      max-height: 0;
      transition: max-height .25s ease;
    }
    .mobile-menu-trigger[aria-expanded="true"] + .mobile-sub {
      max-height: 400px;
    }
    .mobile-menu .mobile-sub a {
      font-size: 17px; font-weight: 400; color: rgba(255,255,255,.85);
      border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .mobile-menu-cta {
      margin-top: 24px;
      display: flex; flex-direction: column; gap: 12px;
    }
    /* Mobile CTA buttons: identical sizing + centering for both yellow and outline.
       Override the .mobile-menu a { display: block } rule that was hijacking text alignment. */
    .mobile-menu-cta .btn-yellow,
    .mobile-menu-cta .btn-outline-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 52px;
      padding: 0 28px;
      font-size: 18px;
      font-weight: 500;
      text-align: center;
      border-radius: 100px;
      border-bottom: none;
      box-sizing: border-box;
      gap: 10px;
    }
    .mobile-menu-cta .btn-yellow { background: var(--yellow); color: var(--text-primary); }
    .mobile-menu-cta .btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.8); }
    body.menu-open { overflow: hidden; }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 1200px) {
      .section-inner { padding: 0 40px; }
      nav { padding: 24px 40px; }
      .hero-content { padding: 0 40px; padding-top: 44px; }
      .stats-bar { padding: 0 40px; }
      .about-inner { padding: 0 40px; }
      /* Preserve section ratios at 1200px breakpoint (About 30/70, Why 60/40) */
      .about-right { flex: 70 1 0; }
      .about-left { flex: 30 1 0; }
      .why-right { flex: 40 1 0; }
      .why-left { flex: 60 1 0; }
      .contact-left { flex: 0 0 500px; }
      .contact-form { flex: 0 0 500px; }
    }

    @media (max-width: 1024px) {
      .hero-title { font-size: 48px; }
      nav { padding: 20px 32px; flex-wrap: wrap; gap: 12px; }
      .nav-links { font-size: 14px; gap: 20px; padding: 10px 20px; }
      .about-cols { flex-direction: column; }
      .about-right { width: 100%; height: auto; flex: none; justify-content: center; }
      .about-right > .about-diagram { width: 100%; height: auto; }
      .about-left { flex: none; width: 100%; }
      .why-cols { flex-direction: column; }
      .why-right { flex: none; width: 100%; height: auto; justify-content: center; }
      .why-right img { width: 100%; height: auto; }
      .why-left { flex: none; width: 100%; }
      .contact-cols { flex-direction: column; }
      .contact-left { flex: none; }
      .contact-form { flex: none; width: 100%; }
    }

    @media (max-width: 768px) {
      /* ── Side padding: always 20px on mobile ── */
      .section-inner { padding: 0 20px; }
      .about-inner { padding: 0 20px; }
      #why .section-inner { padding: 0 20px; }
      .hero-content { padding: 0 20px; padding-top: 30px; }
      .stats-bar { padding: 0 20px; flex-direction: column; gap: 16px; transform: none; margin-top: 40px; }
      nav { padding: 16px 20px; gap: 16px; }

      /* ── Headings ── */
      .hero-title { font-size: 32px; line-height: 1.15; }
      .hero-subtitle { font-size: 17px; }
      /* H2: -2px to keep section H2 wrapping to a max of 4 lines on small screens */
      .section-title { font-size: 30px; letter-spacing: -1px; line-height: 1.15; }
      .contact-left-header .section-title { font-size: 30px; }
      /* Subheadings beneath H2: 19px, consistent across all sections on mobile */
      .section-title + p,
      .testimonials-header p,
      .events-header p,
      .about-lead,
      .why-desc { font-size: 19px; line-height: 1.4; text-align: center; }
      /* Contact section left-aligned (eyebrow + title + subtitle all match)
         Note: .contact-left-header .contact-desc has higher specificity than
         .section-title + p so it overrides the centering rule above. */
      .contact-left-header { align-items: flex-start; text-align: left; }
      .contact-left-header .badge { align-self: flex-start; }
      .contact-left-header .section-title { text-align: left; }
      .contact-left-header .contact-desc { font-size: 19px; line-height: 1.4; text-align: left; }
      /* Tighter gap between H2 block and following content on mobile */
      .about-header { margin-bottom: 16px; }

      /* ── "Our Medical Imaging Solution" left-aligned (eyebrow + title + subtitle all match) ── */
      .how-header { align-items: flex-start; text-align: left; }
      .how-header .section-title { text-align: left; }
      .how-header p { text-align: left; }

      /* ── Hero / sections ── */
      .stat-card { width: 100%; }
      #hero { min-height: auto; padding-bottom: 40px; }
      #about { padding: 60px 0; }

      /* ── Buttons: full width, 50px tall (nav button kept inline) ── */
      .btn-yellow {
        width: 100%;
        height: 50px;
        padding: 0 16px;
        justify-content: center;
      }
      .btn-yellow .btn-arrow { width: 14px; height: 14px; }
      nav .btn-outline-white { width: auto; }

      /* ── Product logos: 2-column grid (target tab-panel since cards live there) ── */
      .products-grid { gap: 16px; }
      .tab-panel.active { gap: 16px; }
      .product-card { width: calc(50% - 8px); height: 140px; }

      /* ── Event card stacks ── */
      .event-card { flex-direction: column; }
      .event-img { width: 100%; border-radius: 10px 10px 0 0; height: 220px; }

      /* ── News carousel: 1 card visible ── */
      .news-grid { flex-direction: column; }
      .news-track { gap: 16px; }
      .news-card { width: 100%; }

      /* ── Testimonials carousel: 1 card visible ── */
      .testimonials-track { gap: 16px; }
      .testimonial-card { min-height: auto; }
      .testimonials-grid { flex-direction: column; }

      /* ── Brochure banner: stack vertically, centered ── */
      .brochure-banner {
        flex-direction: column;
        height: auto;
        padding: 32px 24px;
        gap: 24px;
        align-items: center;
        text-align: center;
      }
      .brochure-banner h3 { font-size: 24px; text-align: center; }

      /* ── Contact form: 1 field per row, uniform 26px gaps, button below checkbox ── */
      .contact-form { padding: 24px; gap: 26px; }
      .contact-form > div { gap: 26px !important; }
      .form-row { flex-direction: column; gap: 26px; }
      .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
      }
      .form-footer .btn-yellow { width: 100%; }

      /* ── Footer / misc ── */
      .footer-main { flex-direction: column; gap: 40px; }
      .footer-links { gap: 40px; flex-direction: column; }
      .footer-bottom { padding: 60px 20px; }
      .footer-inner-wrap { max-width: 100%; }
      .join-team { padding: 40px 20px; }
      .how-steps { flex-direction: column; }
      .compliance-grid-row { flex-wrap: wrap; }
      .compliance-cell { width: calc(100% / 3); flex: 0 0 calc(100% / 3); }
      .footer-copyright { flex-direction: column; gap: 16px; text-align: center; }

      /* ── Mobile nav: hide desktop nav, show burger, make sticky ── */
      .nav-links { display: none; }
      nav .btn-outline-white { display: none; }
      .burger { display: flex; }
      nav {
        position: sticky; top: 0;
        background: var(--hero-bg);
        max-width: 100%; width: 100%;
      }
      nav.scrolled { background: #fff; }
      nav.scrolled .burger span { background: #1f1f1f; }

      /* ── Hero bg image: keep visible on mobile like desktop ── */
      .hero-bg-img {
        width: 100%;
        opacity: 1;
        object-position: center;
        mix-blend-mode: lighten;
      }
      .hero-overlay-left {
        width: 100%;
        background: linear-gradient(180deg, var(--hero-bg) 30%, transparent 100%);
      }

      /* ── Product tabs: single line, tighter spacing ── */
      .products-tabs { gap: 4px; padding: 4px; }
      .tab { padding: 7px 12px; font-size: 14px; white-space: nowrap; }

      /* ── Product card: tighter inner padding, image stays inside ── */
      .product-card { padding: 12px; height: 130px; gap: 8px; }
      .product-card img { max-width: calc(100% - 8px); max-height: 44px; }
      .product-card span { font-size: 14px; }

      /* ── Section vertical spacing standardised ── */
      #about, #events, #products, #why, #how, #compliances, #testimonials, #news, #contact {
        padding: 60px 0;
      }
      #hero { padding: 0 0 40px; }
      #footer { padding: 60px 0 0; }

      /* ── Footer: center-aligned on mobile ── */
      .footer-main { align-items: center; text-align: center; }
      .footer-brand { max-width: 100%; }
      .footer-logo { margin-left: auto; margin-right: auto; }
      .footer-col { align-items: center; text-align: center; display: flex; flex-direction: column; }
      .footer-col h5 { text-align: center; }
      .footer-col a { text-align: center; }
      .footer-copyright { text-align: center; }

      /* ── Defensive: kill any horizontal overflow on common containers ── */
      .section-inner,
      .about-inner,
      .hero-content,
      .stats-bar,
      .footer-bottom,
      .footer-inner-wrap,
      #footer .section-inner,
      .form-row,
      .testimonials-grid,
      .news-grid,
      .why-cols { max-width: 100vw; box-sizing: border-box; }
    }
    @media (max-width: 480px) {
      .product-card { width: calc(50% - 8px); }
      .compliance-cell { width: 50%; flex: 0 0 50%; }
    }

/* ============================================================
   ABOUT US PAGE (about-us/index.html) - specific sections.
   Reuses: nav, mobile menu, contact, footer, btn-yellow, badge,
           section-title, btn-outline-white, all type sizes.
   Adds:   page hero, intro block pattern, founder card, mission/vision.
============================================================ */

/* Page hero - full-bleed image with brand dark overlay (no content) */
.page-hero {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  background: var(--hero-bg);
  border-radius: 0 0 24px 24px;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,21,69,.55) 0%, rgba(11,21,69,.25) 40%, rgba(11,21,69,.65) 100%);
  pointer-events: none;
}
/* Reserve nav space at the top, fits sticky nav cleanly */

/* About page intro section (Pan Asia Leader + 2 content blocks) */
.aboutpage-intro {
  padding: 100px 0 60px;
  background: #fff;
}
.aboutpage-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.aboutpage-header h1.section-title {
  max-width: 720px;
}

/* Reusable text+image block (alternates left/right) */
.aboutpage-block {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
}
.aboutpage-block:last-child { margin-bottom: 0; }
.aboutpage-block--reverse { flex-direction: row-reverse; }
.aboutpage-block .block-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex; flex-direction: column; gap: 32px;
}
.aboutpage-block .block-text p {
  font-size: 18px; line-height: 1.5; color: var(--text-primary); margin: 0;
}
.aboutpage-block .block-text p.lead {
  font-size: 22px; line-height: 1.35; font-weight: 400;
}
.aboutpage-block .block-text p strong { font-weight: 600; }
.aboutpage-block .block-image {
  flex: 1 1 0;
  min-width: 0;
  display: flex; justify-content: center;
}
.aboutpage-block .block-image img {
  display: block;
  width: 100%; height: auto; max-width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 640 / 500;
}

/* Contact CTA centered below intro */
.aboutpage-cta-row {
  display: flex; justify-content: center;
  margin-top: 50px;
}

/* Founder section (Dr Ashish Dhawad) - dark card style */
.founder-section {
  padding: 90px 0;
  background: #f9fbff;
}
.founder-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}

/* Mission + Vision cards row */
.aboutpage-pillars {
  display: flex; gap: 32px;
  margin-top: 50px;
  width: 100%;
}
.pillar-card {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid #f1f6fc;
  border-radius: 16px;
  padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow:
    0 25px 25px rgba(189,208,233,0.07),
    0 6px 14px rgba(189,233,218,0.08);
}
.pillar-icon {
  width: 60px; height: 60px;
  border-radius: 8px;
  background: #fffaf1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-icon img { width: 28px; height: 28px; display: block; }
.pillar-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.pillar-body h3 {
  font-size: 20px; font-weight: 600; color: var(--text-primary); margin: 0;
}
.pillar-body p {
  font-size: 17px; color: var(--text-body); line-height: 1.4; margin: 0;
}

/* ============================================================
   ABOUT US PAGE - responsive
============================================================ */
@media (max-width: 1024px) {
  .page-hero { height: 520px; }
  .aboutpage-intro { padding: 64px 0 40px; }
  .aboutpage-header { margin-bottom: 40px; }
  .aboutpage-block { flex-direction: column; gap: 24px; margin-bottom: 40px; }
  .aboutpage-block--reverse { flex-direction: column; }
  .aboutpage-block .block-text,
  .aboutpage-block .block-image { width: 100%; flex: none; }
  .aboutpage-block .block-image img { aspect-ratio: 16/10; }
  .founder-section { padding: 56px 0; }
  .founder-header { margin-bottom: 32px; }
  .aboutpage-pillars { flex-direction: column; gap: 16px; margin-top: 32px; }
}

@media (max-width: 768px) {
  .page-hero { height: 380px; border-radius: 0 0 16px 16px; }
  .aboutpage-intro { padding: 48px 0 32px; }
  .aboutpage-header { gap: 12px; margin-bottom: 28px; }
  .aboutpage-block .block-text { gap: 20px; }
  .aboutpage-block .block-text p { font-size: 16px; line-height: 1.5; }
  .aboutpage-block .block-text p.lead { font-size: 19px; line-height: 1.4; }
  .aboutpage-block .block-image img { border-radius: 12px; }
  .aboutpage-cta-row { margin-top: 32px; }
  .aboutpage-cta-row .btn-yellow { width: 100%; }
  .founder-section { padding: 40px 0; }
  .pillar-card { padding: 24px; gap: 16px; }
  .pillar-icon { width: 52px; height: 52px; }
  .pillar-icon img { width: 24px; height: 24px; }
  .pillar-body h3 { font-size: 18px; }
  .pillar-body p { font-size: 16px; }
}

/* ============================================================
   OUR CUSTOMERS PAGE (our-customers/index.html)
   Reuses: nav, mobile menu, contact, footer, badge, section-title.
   Adds:   region tabs, logo grid (6-col desktop, 3/2 mobile).
============================================================ */

.customers-section {
  padding: 100px 0 80px;
  background: #fff;
}
.customers-header {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-bottom: 40px;
}

/* Region pill tabs (India / Asia / Middle East & Africa) */
.region-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--section-bg, #f1f6fc);
  border-radius: 100px;
  margin: 0 auto 40px;
}
.region-tab {
  font-family: inherit;
  font-size: 15px; font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: none; background: transparent;
  color: var(--text-primary, #1f1f1f);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.region-tab:hover { background: rgba(0,0,0,.04); }
.region-tab.active {
  background: var(--yellow);
  color: var(--text-primary, #1f1f1f);
}
.region-tab:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Logo grid - 6 columns desktop, with hairline borders between cells */
.customers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #f1f6fc;
  border-left: 1px solid #f1f6fc;
}
.customer-cell {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  padding: 28px 24px;
  border-right: 1px solid #f1f6fc;
  border-bottom: 1px solid #f1f6fc;
  background: #fff;
  transition: background .15s;
}
.customer-cell:hover { background: #fafbff; }
.customer-cell img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(.9);
  transition: filter .15s;
}
.customer-cell:hover img { filter: saturate(1); }

/* Tabpanel toggling */
.customers-panel { display: none; }
.customers-panel.active { display: block; }

/* Empty state for not-yet-populated regions */
.customers-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--text-body, #46474f);
  font-size: 17px;
  border-top: 1px solid #f1f6fc;
}

/* ============================================================
   OUR CUSTOMERS - responsive
============================================================ */
@media (max-width: 1024px) {
  .customers-section { padding: 64px 0 56px; }
  .customers-grid { grid-template-columns: repeat(4, 1fr); }
  .customer-cell { height: 120px; padding: 20px 16px; }
}

@media (max-width: 768px) {
  .customers-section { padding: 48px 0 40px; }
  .customers-header { margin-bottom: 28px; }
  .region-tabs { width: 100%; justify-content: center; flex-wrap: wrap; }
  .region-tab { font-size: 14px; padding: 8px 14px; }
  .customers-grid { grid-template-columns: repeat(3, 1fr); }
  .customer-cell { height: 100px; padding: 16px 12px; }
}

@media (max-width: 480px) {
  .customers-grid { grid-template-columns: repeat(2, 1fr); }
  .customer-cell { height: 90px; padding: 14px 10px; }
}
