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

    :root {
      --navy: #0B2D5E;
      --navy-2: #0D3570;
      --navy-3: #1A4A8A;
      --navy-light: #E8EFF9;
      --orange: #C9A84C;
      --orange-light: #E0C06A;
      --orange-pale: #FBF5E6;
      --gold: #C9A84C;
      --gold-light: #E0C06A;
      --gold-pale: #FBF5E6;
      --white: #FFFFFF;
      --off-white: #F7F8FC;
      --gray: #F1F3F8;
      --text: #1A1E2E;
      --text-mid: #4A5168;
      --text-muted: #8890A8;
      --border: #DDE2EE;
      --shadow: 0 4px 24px rgba(11, 45, 94, 0.10);
      --shadow-md: 0 8px 40px rgba(11, 45, 94, 0.14);
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--white);
      color: var(--text);
      font-family: 'Sora', sans-serif;
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.6
    }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.75rem;
      padding: 0.45rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      letter-spacing: 0.03em
    }

    .topbar a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none
    }

    .topbar a:hover {
      color: #fff
    }

    .topbar-right {
      display: flex;
      gap: 2rem
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow)
    }

    .nav-inner {
      padding: 0 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none
    }

    .nav-logo-mark {
      width: 44px;
      height: 44px;
      background: var(--navy);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Merriweather', serif;
      font-weight: 900;
      color: #fff;
      font-size: 18px;
      letter-spacing: -1px
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column
    }

    .nav-logo-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.01em;
      line-height: 1.2
    }

    .nav-logo-sub {
      font-size: 0.62rem;
      color: var(--orange);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none
    }

    .nav-links>li {
      position: relative
    }

    .nav-links>li>a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0 1.1rem;
      height: 70px;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border-bottom: 3px solid transparent;
      transition: all 0.2s
    }

    .nav-links>li>a:hover,
    .nav-links>li>a.active {
      color: var(--navy);
      border-bottom-color: var(--orange)
    }

    .nav-links>li>a .arrow {
      font-size: 0.6rem;
      transition: transform 0.2s
    }

    .nav-links>li:hover>a .arrow {
      transform: rotate(180deg)
    }

    /* Dropdowns */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      min-width: max-content;
      box-shadow: var(--shadow-md);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.25s;
      z-index: 300
    }

    .nav-links>li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0)
    }

    .dropdown a {
      display: block;
      padding: 0.65rem 1.2rem;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 400;
      border-bottom: 1px solid var(--border);
      transition: all 0.2s
    }

    .dropdown a:last-child {
      border-bottom: none
    }

    .dropdown a:hover {
      background: var(--off-white);
      color: var(--navy);
      padding-left: 1.5rem
    }

    .nav-cta {
      background: var(--orange);
      color: var(--navy);
      padding: 0.55rem 1.4rem;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: all 0.3s;
      white-space: nowrap
    }

    .nav-cta:hover {
      background: var(--orange-light);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4)
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
      position: relative;
      overflow: hidden;
      padding: 6rem 4rem 5rem
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px, transparent 60px), repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 1px, transparent 60px)
    }

    .hero-glow {
      position: absolute;
      right: -100px;
      top: -100px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232, 96, 10, 0.18) 0%, transparent 65%)
    }

    .hero-glow2 {
      position: absolute;
      left: -80px;
      bottom: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 65%)
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 4rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232, 96, 10, 0.15);
      border: 1px solid rgba(232, 96, 10, 0.35);
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #F5A96A;
      margin-bottom: 1.8rem
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--orange-light);
      border-radius: 50%;
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.5;
        transform: scale(1.5)
      }
    }

    .hero h1 {
      font-family: 'Merriweather', serif;
      font-size: 3.4rem;
      font-weight: 900;
      line-height: 1.15;
      color: #fff;
      margin-bottom: 1.4rem
    }

    .hero h1 em {
      font-style: normal;
      color: var(--orange-light)
    }

    .hero-sub {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.85;
      max-width: 540px;
      margin-bottom: 2.2rem;
      font-weight: 300
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem
    }

    .btn-orange {
      background: var(--orange);
      color: var(--navy);
      padding: 0.85rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.04em;
      transition: all 0.3s;
      display: inline-block
    }

    .btn-orange:hover {
      background: var(--orange-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4)
    }

    .btn-ghost {
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      padding: 0.85rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 400;
      font-size: 0.88rem;
      transition: all 0.3s;
      display: inline-block
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.7);
      background: rgba(255, 255, 255, 0.08)
    }

    .hero-stats {
      display: flex;
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding-top: 2rem
    }

    .hero-stat {
      flex: 1;
      padding-right: 2rem;
      border-right: 1px solid rgba(255, 255, 255, 0.12)
    }

    .hero-stat:last-child {
      border-right: none;
      padding-left: 2rem;
      padding-right: 0
    }

    .hero-stat:not(:first-child) {
      padding-left: 2rem
    }

    .hero-stat-num {
      font-family: 'Merriweather', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--orange-light)
    }

    .hero-stat-label {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 3px
    }

    /* Hero card */
    .hero-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 12px;
      padding: 1.6rem;
      backdrop-filter: blur(10px)
    }

    .hero-card-title {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange-light);
      margin-bottom: 1.2rem;
      font-weight: 600
    }

    .hero-card-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.82);
      font-weight: 300
    }

    .hero-card-item:last-child {
      border-bottom: none;
      padding-bottom: 0
    }

    .hci-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      flex-shrink: 0
    }

    .hero-card-badge {
      margin-top: 1.2rem;
      background: var(--orange);
      border-radius: 6px;
      padding: 0.8rem 1rem;
      text-align: center
    }

    .hero-card-badge-text {
      font-size: 0.78rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.04em
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--navy-light);
      border-bottom: 1px solid var(--border);
      padding: 1rem 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem
    }

    .trust-items {
      display: flex;
      gap: 2.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--navy);
      font-weight: 500
    }

    .trust-item-icon {
      font-size: 1rem
    }

    .trust-bar-cta {
      background: var(--navy);
      color: #fff;
      padding: 0.5rem 1.2rem;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: background 0.2s;
      border: 1px solid var(--orange)
    }

    .trust-bar-cta:hover {
      background: var(--orange);
      color: var(--navy)
    }

    /* ── SECTIONS BASE ── */
    section {
      padding: 5.5rem 4rem
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .section-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--orange);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.8rem
    }

    .section-tag::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--orange);
      border-radius: 1px
    }

    .section-title {
      font-family: 'Merriweather', serif;
      font-size: 2.4rem;
      font-weight: 900;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 0.8rem
    }

    .section-sub {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.85;
      max-width: 600px
    }

    /* ── ABOUT ── */
    .about {
      background: var(--white)
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center
    }

    .about-visual {
      position: relative
    }

    .about-img-box {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
      border-radius: 12px;
      height: 440px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden
    }

    .about-img-pattern {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 20px);
      background-size: 28px 28px
    }

    .about-img-text {
      font-family: 'Merriweather', serif;
      font-size: 7rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.06);
      user-select: none
    }

    .about-stat-card {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      background: rgba(255, 255, 255, 0.97);
      border-radius: 8px;
      padding: 1.2rem 1.4rem;
      box-shadow: 0 8px 32px rgba(11, 45, 94, 0.2);
      display: flex;
      justify-content: space-between
    }

    .asc-item {
      text-align: center
    }

    .asc-num {
      font-family: 'Merriweather', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--navy)
    }

    .asc-label {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-top: 1px
    }

    .orange-pill {
      position: absolute;
      top: 1.5rem;
      right: -1rem;
      background: var(--orange);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 4px 16px rgba(232, 96, 10, 0.4)
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem
    }

    .about-feat {
      padding: 1rem 1.2rem;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      transition: border-color 0.2s, box-shadow 0.2s
    }

    .about-feat:hover {
      border-color: rgba(11, 45, 94, 0.25);
      box-shadow: var(--shadow)
    }

    .af-icon {
      width: 34px;
      height: 34px;
      background: var(--navy-light);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0
    }

    .af-title {
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 2px
    }

    .af-sub {
      font-size: 0.73rem;
      color: var(--text-muted)
    }

    /* ── GROUP COMPANIES ── */
    .companies {
      background: var(--off-white)
    }

    .companies-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      gap: 1rem
    }

    .companies-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem
    }

    .co-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.6rem;
      transition: all 0.3s;
      text-decoration: none;
      display: block;
      position: relative;
      overflow: hidden
    }

    .co-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s
    }

    .co-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: rgba(11, 45, 94, 0.2)
    }

    .co-card:hover::after {
      transform: scaleX(1)
    }

    .co-num {
      font-family: 'Merriweather', serif;
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--border);
      margin-bottom: 0.4rem
    }

    .co-tag {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--orange);
      font-weight: 600;
      margin-bottom: 0.6rem
    }

    .co-title {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.5rem;
      line-height: 1.35
    }

    .co-desc {
      font-size: 0.77rem;
      color: var(--text-mid);
      line-height: 1.75
    }

    .co-link {
      margin-top: 1.2rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--orange);
      display: flex;
      align-items: center;
      gap: 5px;
      opacity: 0;
      transform: translateX(-6px);
      transition: all 0.3s
    }

    .co-card:hover .co-link {
      opacity: 1;
      transform: translateX(0);
      letter-spacing: 1px;
    }

    /* Fix padding override from minified CSS below */
    .companies-grid .co-card {
      padding: 1.6rem;
    }

    /* ── TIRETECH SERVICES ── */
    .services {
      background: var(--white)
    }

    .services-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 3rem;
      margin-top: 3.5rem
    }

    .srv-nav {
      display: flex;
      flex-direction: column;
      gap: 0.4rem
    }

    .srv-tab {
      background: none;
      border: 1px solid var(--border);
      cursor: pointer;
      text-align: left;
      padding: 0.85rem 1.1rem;
      border-radius: 7px;
      transition: all 0.25s;
      color: var(--text-mid);
      font-family: 'Sora', sans-serif;
      font-size: 0.83rem;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 9px
    }

    .srv-tab.active,
    .srv-tab:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy)
    }

    .srv-tab.active {
      border-left: 3px solid var(--orange);
      border-radius: 7px
    }

    .srv-tab-icon {
      font-size: 14px
    }

    .srv-panel {
      display: none
    }

    .srv-panel.active {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    .srv-item {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.4rem;
      transition: all 0.25s
    }

    .srv-item:hover {
      border-color: var(--navy);
      box-shadow: var(--shadow)
    }

    .srv-item-icon {
      font-size: 1.6rem;
      margin-bottom: 0.7rem
    }

    .srv-item-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.35rem
    }

    .srv-item-text {
      font-size: 0.77rem;
      color: var(--text-mid);
      line-height: 1.75
    }

    /* ── STATS BAND ── */
    .stats-band {
      background: var(--navy);
      padding: 4rem
    }

    .stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center
    }

    .stat-item {
      padding: 1rem;
      border-right: 1px solid rgba(255, 255, 255, 0.1)
    }

    .stat-item:last-child {
      border-right: none
    }

    .stat-num {
      font-family: 'Merriweather', serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: var(--orange-light)
    }

    .stat-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(255, 255, 255, 0.55);
      margin-top: 0.4rem;
      font-weight: 500
    }

    /* ── WHY US ── */
    .why {
      background: var(--off-white)
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem
    }

    .why-item {
      padding: 2.5rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: all 0.25s;
      background: var(--white);
      position: relative;
      overflow: hidden
    }

    .why-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 0;
      background: var(--orange);
      transition: height 0.35s
    }

    .why-item:hover {
      z-index: 1;
      box-shadow: var(--shadow-md)
    }

    .why-item:hover::before {
      height: 100%
    }

    .why-num {
      font-family: 'Merriweather', serif;
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--navy-light);
      margin-bottom: 0.5rem
    }

    .why-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.6rem
    }

    .why-text {
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.85
    }

    /* ── CERTIFICATIONS ── */
    .certs {
      background: var(--white);
      text-align: center
    }

    .certs-row {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      margin-top: 3rem;
      flex-wrap: wrap
    }

    .cert-badge {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.25s
    }

    .cert-badge:hover {
      border-color: var(--navy);
      box-shadow: var(--shadow);
      transform: translateY(-2px)
    }

    .cert-icon {
      width: 36px;
      height: 36px;
      background: var(--navy-light);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px
    }

    .cert-name {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--navy)
    }

    .cert-sub {
      font-size: 0.68rem;
      color: var(--text-muted);
      margin-top: 1px
    }

    /* ── CTA ── */
    .cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
      position: relative;
      overflow: hidden
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(232, 96, 10, 0.15) 0%, transparent 55%)
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center
    }

    .cta h2 {
      font-family: 'Merriweather', serif;
      font-size: 2.4rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 1rem
    }

    .cta p {
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.95rem;
      line-height: 1.85;
      margin-bottom: 2rem;
      font-weight: 300
    }

    .cta-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap
    }

    .cta-details {
      display: flex;
      flex-direction: column;
      gap: 1.2rem
    }

    .cta-detail {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      padding: 1.3rem 1.5rem;
      display: flex;
      align-items: flex-start;
      gap: 12px
    }

    .cta-d-icon {
      width: 36px;
      height: 36px;
      background: rgba(232, 96, 10, 0.2);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0
    }

    .cta-d-label {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--orange-light);
      font-weight: 600;
      margin-bottom: 0.25rem
    }

    .cta-d-val {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.6
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, 0.08)
    }

    .footer-main {
      padding: 4rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem
    }

    .footer-brand-name {
      font-family: 'Merriweather', serif;
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.6rem
    }

    .footer-brand-sub {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange-light);
      margin-bottom: 1rem;
      font-weight: 600
    }

    .footer-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.85;
      max-width: 270px
    }

    .footer-col-title {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange-light);
      margin-bottom: 1.2rem;
      font-weight: 600
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
      font-weight: 300
    }

    .footer-links a:hover {
      color: #fff
    }

    .footer-bottom {
      background: rgba(0, 0, 0, 0.2);
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.38);
      letter-spacing: 0.03em
    }

    .footer-socials {
      display: flex;
      gap: 0.7rem
    }

    .social-link {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 600;
      transition: all 0.2s
    }

    .social-link:hover {
      border-color: var(--orange);
      color: var(--orange-light);
      background: rgba(232, 96, 10, 0.1)
    }

    /* ── SCHEMA / SR ── */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: none
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 100px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--white);
      z-index: 190;
      overflow-y: auto;
      padding: 1rem 0;
      border-top: 1px solid var(--border)
    }

    .mobile-menu.open {
      display: block
    }

    .mob-link {
      display: block;
      padding: 0.9rem 2rem;
      color: var(--text-mid);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      border-bottom: 1px solid var(--border)
    }

    .mob-link:hover,
    .mob-link.active {
      color: var(--navy);
      background: var(--navy-light)
    }

    .mob-sub {
      padding-left: 3rem;
      font-size: 0.82rem;
      background: var(--off-white)
    }

    .mob-cta {

      margin: 1.5rem 2rem;
      display: block;
      background: var(--gold);
      color: var(--navy);
      padding: 0.85rem;
      border-radius: 6px;
      text-align: center;
      font-weight: 700;
      font-size: 0.88rem;
      text-decoration: none
    }

    /* ════════════════════════════════
   PAGE HERO (BREADCRUMB STYLE)
════════════════════════════════ */
    .page-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
      padding: 4rem 2rem;
      position: relative;
      overflow: hidden
    }

    .page-hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px, transparent 60px), repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 1px, transparent 60px)
    }

    .page-hero-glow {
      position: absolute;
      right: -100px;
      top: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 65%)
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 1.2rem;
      flex-wrap: wrap
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: color .2s
    }

    .breadcrumb a:hover {
      color: var(--gold-light)
    }

    .breadcrumb-sep {
      color: rgba(255, 255, 255, 0.3)
    }

    .breadcrumb-current {
      color: var(--gold-light)
    }

    .page-hero h1 {
      font-family: 'Merriweather', serif;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 1rem
    }

    .page-hero h1 em {
      font-style: normal;
      color: var(--gold-light)
    }

    .page-hero-sub {
      font-size: clamp(0.88rem, 2vw, 1rem);
      color: rgba(255, 255, 255, 0.68);
      max-width: 580px;
      line-height: 1.85;
      font-weight: 300
    }

    .page-hero-stats {
      display: flex;
      gap: 0;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      flex-wrap: wrap
    }

    .phs-item {
      flex: 1;
      min-width: 110px;
      padding: 0 1.5rem;
      border-right: 1px solid rgba(255, 255, 255, 0.1)
    }

    .phs-item:first-child {
      padding-left: 0
    }

    .phs-item:last-child {
      border-right: none
    }

    .phs-num {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 900;
      color: var(--gold-light)
    }

    .phs-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 3px
    }

    /* ════════════════════════════════
   SECTION BASE
════════════════════════════════ */
    section {
      padding: 5rem 2rem
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto
    }

    .section-tag {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--gold);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.8rem
    }

    .section-tag::before {
      content: '';
      width: 26px;
      height: 2px;
      background: var(--gold);
      border-radius: 1px;
      flex-shrink: 0
    }

    .section-title {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 900;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: 0.8rem
    }

    .section-sub {
      font-size: 0.93rem;
      color: var(--text-mid);
      line-height: 1.85;
      max-width: 640px
    }

    /* ════════════════════════════════
   WHO WE ARE
════════════════════════════════ */
    .who {
      background: var(--white)
    }

    .who-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center
    }

    .who-visual {
      position: relative
    }

    .who-img {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
      border-radius: 14px;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden
    }

    .who-img-pattern {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 22px)
    }

    .who-img-logo {
      font-family: 'Merriweather', serif;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.05);
      user-select: none;
      letter-spacing: -4px
    }

    .who-img-pill {
      position: absolute;
      top: 1.2rem;
      right: -0.8rem;
      background: var(--gold);
      color: var(--navy);
      padding: 0.45rem 1rem;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4)
    }

    .who-stats-card {
      position: absolute;
      bottom: 1.2rem;
      left: 1.2rem;
      right: 1.2rem;
      background: rgba(255, 255, 255, 0.97);
      border-radius: 10px;
      padding: 1.1rem 1.3rem;
      box-shadow: 0 8px 30px rgba(11, 45, 94, 0.2);
      display: flex;
      justify-content: space-around
    }

    .wsc-item {
      text-align: center
    }

    .wsc-num {
      font-family: 'Merriweather', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--navy)
    }

    .wsc-label {
      font-size: 0.64rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-top: 2px
    }

    .who-text p {
      color: var(--text-mid);
      font-size: 0.93rem;
      line-height: 1.9;
      margin-bottom: 1rem
    }

    .who-text p:last-child {
      margin-bottom: 0
    }

    .highlight-box {
      background: var(--navy-light);
      border-left: 3px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 1.1rem 1.4rem;
      margin-top: 1.8rem
    }

    .highlight-box p {
      font-size: 0.88rem;
      color: var(--navy);
      font-weight: 500;
      line-height: 1.75;
      margin: 0
    }

    /* ════════════════════════════════
   TIMELINE / JOURNEY
════════════════════════════════ */
    .journey {
      background: var(--off-white)
    }

    .journey-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 3rem;
      align-items: start
    }

    .timeline {
      position: relative;
      padding-left: 2rem
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.1))
    }

    .tl-item {
      position: relative;
      padding: 0 0 2.5rem 1.8rem
    }

    .tl-item:last-child {
      padding-bottom: 0
    }

    .tl-dot {
      position: absolute;
      left: -2.4rem;
      top: 3px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--gold);
      border: 3px solid var(--white);
      box-shadow: 0 0 0 2px var(--gold)
    }

    .tl-year {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 0.3rem
    }

    .tl-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.3rem
    }

    .tl-text {
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.75
    }

    .journey-values {
      display: flex;
      flex-direction: column;
      gap: 1rem
    }

    .val-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.4rem;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: all .25s
    }

    .val-card:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow);
      transform: translateX(4px)
    }

    .val-icon {
      width: 42px;
      height: 42px;
      background: var(--navy-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .val-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.25rem
    }

    .val-text {
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.7
    }

    /* ════════════════════════════════
   GROUP COMPANIES — PREMIUM CARDS
════════════════════════════════ */
    .companies {
      background: var(--white)
    }

    .companies-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 3.5rem;
      flex-wrap: wrap
    }

    /* Grid: 3 columns desktop, auto on mobile */
    .co-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem
    }

    .co-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0;
      overflow: hidden;
      transition: all .3s;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      position: relative
    }

    .co-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: rgba(11, 45, 94, 0.2)
    }

    .co-card-top {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
      padding: 1.5rem;
      position: relative;
      overflow: hidden
    }

    .co-card-top-pattern {
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 16px)
    }

    .co-card-num {
      font-family: 'Merriweather', serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.08);
      position: absolute;
      top: 0.8rem;
      right: 1.2rem;
      line-height: 1
    }

    .co-card-tag-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(201, 168, 76, 0.15);
      border: 1px solid rgba(201, 168, 76, 0.3);
      padding: 0.28rem 0.75rem;
      border-radius: 20px;
      font-size: 0.64rem;
      font-weight: 600;
      color: var(--gold-light);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
      position: relative;
      z-index: 1
    }

    .co-card-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
      position: relative;
      z-index: 1
    }

    .co-card-body {
      padding: 1.4rem;
      flex: 1;
      display: flex;
      flex-direction: column
    }

    .co-card-desc {
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.8;
      flex: 1
    }

    .co-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.2rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border)
    }

    .co-card-jv {
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-transform: uppercase
    }

    .co-card-arrow {
      width: 28px;
      height: 28px;
      background: var(--navy-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--navy);
      transition: all .3s;
      flex-shrink: 0
    }

    .co-card:hover .co-card-arrow {
      background: var(--gold);
      color: var(--navy)
    }

    /* Featured card (Dawnsun Exim — slightly bigger) */
    .co-card.featured {
      grid-column: span 1;
      border-color: rgba(201, 168, 76, 0.3)
    }

    .co-card.featured .co-card-top {
      background: linear-gradient(135deg, #091f3f 0%, var(--navy-2) 100%)
    }

    /* ════════════════════════════════
   POLICIES SECTION
════════════════════════════════ */
    .policies {
      background: var(--off-white)
    }

    .policies-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 3rem
    }

    .pol-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      transition: all .25s;
      text-decoration: none;
      display: block
    }

    .pol-card:hover {
      border-color: var(--navy);
      box-shadow: var(--shadow);
      transform: translateY(-3px)
    }

    .pol-icon {
      width: 48px;
      height: 48px;
      background: var(--navy-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin: 0 auto 0.9rem
    }

    .pol-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.3rem
    }

    .pol-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
      line-height: 1.6
    }

    /* ════════════════════════════════
   CERTIFICATIONS
════════════════════════════════ */
    .certs {
      background: var(--white);
      text-align: center
    }

    .certs-row {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      margin-top: 2.5rem;
      flex-wrap: wrap
    }

    .cert-badge {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1rem 1.4rem;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all .25s
    }

    .cert-badge:hover {
      border-color: var(--navy);
      box-shadow: var(--shadow);
      transform: translateY(-2px)
    }

    .cert-icon {
      width: 34px;
      height: 34px;
      background: var(--navy-light);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0
    }

    .cert-name {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--navy);
      text-align: left
    }

    .cert-sub {
      font-size: 0.68rem;
      color: var(--text-muted);
      text-align: left;
      margin-top: 1px
    }

    /* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
    .cta-band {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
      padding: 5rem 2rem;
      position: relative;
      overflow: hidden;
      text-align: center
    }

    .cta-band-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 55%)
    }

    .cta-band-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto
    }

    .cta-band h2 {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 1rem
    }

    .cta-band p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.95rem;
      line-height: 1.85;
      margin-bottom: 2rem;
      font-weight: 300
    }

    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn-gold {
      background: var(--gold);
      color: var(--navy);
      padding: 0.85rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.88rem;
      transition: all .3s;
      display: inline-block
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4)
    }

    .btn-outline-w {
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      padding: 0.85rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.88rem;
      transition: all .3s;
      display: inline-block
    }

    .btn-outline-w:hover {
      border-color: rgba(255, 255, 255, 0.7);
      background: rgba(255, 255, 255, 0.08)
    }

    /* ════════════════════════════════
/* ── FOOTER ── */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255, 255, 255, 0.08)
    }

    .footer-main {
      padding: 4rem;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem
    }

    .footer-brand-name {
      font-family: 'Merriweather', serif;
      font-size: 1.2rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.6rem
    }

    .footer-brand-sub {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange-light);
      margin-bottom: 1rem;
      font-weight: 600
    }

    .footer-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.85;
      max-width: 270px
    }

    .footer-col-title {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--orange-light);
      margin-bottom: 1.2rem;
      font-weight: 600
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
      font-weight: 300
    }

    .footer-links a:hover {
      color: #fff
    }

    .footer-bottom {
      background: rgba(0, 0, 0, 0.2);
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.38);
      letter-spacing: 0.03em
    }

    .footer-socials {
      display: flex;
      gap: 0.7rem
    }

    .social-link {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 600;
      transition: all 0.2s
    }

    .social-link:hover {
      border-color: var(--orange);
      color: var(--orange-light);
      background: rgba(232, 96, 10, 0.1)
    }

    .soc-link {
      width: 30px;
      height: 30px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      font-size: 0.7rem;
      font-weight: 700;
      transition: all .2s
    }

    .soc-link:hover {
      border-color: var(--gold);
      color: var(--gold-light)
    }

    /* ════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════ */
    @media(max-width:900px) {

      .nav-links,
      .nav-cta,
      .nav-cta-desktop {
        display: none
      }

      .hamburger {
        display: flex
      }

      .topbar {
        font-size: 0.68rem;
        padding: 0.4rem 1rem
      }

      .topbar-right {
        gap: 1rem
      }

      .page-hero {
        padding: 3rem 1.2rem
      }

      .page-hero-stats {
        gap: 0.5rem
      }

      .phs-item {
        flex: 1;
        min-width: 80px;
        padding: 0 0.8rem
      }

      section {
        padding: 3.5rem 1.2rem
      }

      .who-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
      }

      .who-img {
        height: 260px
      }

      .journey-grid {
        grid-template-columns: 1fr;
        gap: 2rem
      }

      .co-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem
      }

      .policies-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
      }

      .companies-intro {
        grid-template-columns: 1fr;
        gap: 1rem
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem
      }

      .certs-row {
        gap: 0.8rem
      }

      .cert-badge {
        padding: 0.8rem 1rem
      }
    }

    @media(max-width:560px) {
      .nav-inner {
        padding: 0 1rem;
        height: 60px
      }

      .mobile-menu {
        top: 92px
      }

      .nav-logo img {
        height: 36px
      }

      .nav-logo-name {
        font-size: 0.85rem
      }

      .page-hero h1 {
        font-size: 1.8rem
      }

      .page-hero-stats {
        flex-direction: column;
        gap: 1rem
      }

      .phs-item {
        border-right: none;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 0.8rem
      }

      .phs-item:last-child {
        border-bottom: none;
        padding-bottom: 0
      }

      .section-title {
        font-size: 1.7rem
      }

      .policies-grid {
        grid-template-columns: 1fr
      }

      .cta-actions {
        flex-direction: column;
        align-items: center
      }

      .btn-gold,
      .btn-outline-w {
        width: 100%;
        text-align: center
      }
    }



    @media(max-width:900px) {
      .hero {
        padding: 4rem 1.2rem
      }

      .hero h1 {
        font-size: 2.4rem
      }

      .hero-actions {
        flex-direction: column;
        align-items: center
      }

      .btn-orange,
      .btn-ghost {
        width: 100%;
        text-align: center
      }

      .hero-stats {
        flex-direction: column;
        gap: 1rem;
        border-top: none;
        padding-top: 0
      }

      .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
        padding-left: 0 !important
      }

      .hero-stat:last-child {
        border-bottom: none
      }
    }

    @media(max-width:560px) {
      .hero h1 {
        font-size: 1.8rem
      }

      .hero-sub {
        font-size: 0.9rem
      }
    }

    /* ════════════════════════════════
   INDEX SPECIFIC RESPONSIVE FIXES
════════════════════════════════ */
    @media(max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr !important;
      }

      .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr !important;
      }

      .stat-item:nth-child(even) {
        border-right: none;
      }

      .stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .stat-item:nth-child(n+3) {
        border-bottom: none;
      }

      .companies-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
      }

      .srv-container {
        grid-template-columns: 1fr !important;
      }

      .srv-nav {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
      }

      .srv-tab {
        border-right: none !important;
        border-bottom: 3px solid transparent;
      }

      .srv-tab.active {
        border-bottom-color: var(--orange);
        background: transparent !important;
        color: var(--navy) !important;
      }

      .why-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
      }

      .news-grid {
        grid-template-columns: 1fr 1fr !important;
      }

      .partners-grid {
        grid-template-columns: 1fr 1fr !important;
      }

      .cta-inner {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
      }

      .cta-actions {
        justify-content: center;
      }

      section {
        padding: 4rem 2rem;
      }

      .trust-bar {
        padding: 1rem 2rem;
        justify-content: center;
      }

      .trust-items {
        justify-content: center;
        gap: 1.5rem;
      }
    }

    @media(max-width: 560px) {
      .awards-slider > div {
        flex: 0 0 100% !important;
        min-width: 100% !important;
      }

      .stats-inner {
        grid-template-columns: 1fr !important;
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
        padding-top: 1.5rem;
      }

      .stat-item:last-child {
        border-bottom: none;
      }

      .companies-grid {
        grid-template-columns: 1fr !important;
      }

      .news-grid {
        grid-template-columns: 1fr !important;
      }

      .partners-grid {
        grid-template-columns: 1fr !important;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .trust-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }

      section {
        padding: 3rem 1.2rem;
      }
    }




    .mob-link-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
    }

    .mob-link-flex .mob-link {
      border-bottom: none;
      flex: 1;
    }

    .mob-link {
      text-transform: uppercase;
    }

    .mob-sub {
      text-transform: none;
    }

    .mob-toggle {
      padding: 0.9rem 2rem;
      color: var(--text-mid);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
    }

    .mob-toggle-text {
      cursor: pointer;
      text-transform: uppercase;
    }

    .mob-dropdown {
      display: none;
      background: var(--off-white);
      border-bottom: 1px solid var(--border);
    }

    .mob-item.open > .mob-dropdown {
      display: block;
      border-bottom: none;
    }

    .mob-item.open > .mob-link-flex > .mob-toggle {
      transform: rotate(180deg);
      color: var(--navy);
    }

    .mob-item.open > .mob-link-flex > .mob-toggle-text {
      color: var(--navy);
    }

    .mob-dropdown .mob-link {
      border-bottom: none;
    }

    @media (max-width: 1150px) {

      .nav-links,
      .nav-cta,
      .nav-cta-desktop {
        display: none !important;
      }

      .hamburger {
        display: flex !important;
      }
    }

    /* Nested Dropdown */
    .sub-dropdown-wrap { position: relative; }
    .sub-dropdown {
      position: absolute; left: 100%; top: 0; background: #fff;
      min-width: 200px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 4px; opacity: 0; visibility: hidden;
      transform: translateX(10px); transition: all 0.3s ease; z-index: 101;
    }
    .sub-dropdown-wrap:hover .sub-dropdown {
      opacity: 1; visibility: visible; transform: translateX(0);
    }
    .right-arrow { float: right; }
    .mob-sub-sub { padding-left: 40px !important; text-transform: none; }

.sub-dropdown.show { display: block !important; }


/* Force Title Case for mobile sub-menus */
.mob-sub { text-transform: none !important; }
.mob-sub-sub { text-transform: none !important; }


/* Hide mobile menu on desktop screens even if open class is present */
@media (min-width: 1151px) {
  .mobile-menu { display: none !important; }
}


/* Update font sizes for mobile sub and sub-sub links */
.mob-sub { 
    font-size: 0.92rem !important; 
    font-weight: 600 !important; 
}
.mob-sub-sub { 
    font-size: 0.82rem !important; 
    font-weight: 400 !important; 
}

/* Update left padding for mobile sub-sub links to indent them properly */
.mob-sub-sub { 
    padding-left: 4.5rem !important; 
}
