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

    :root {
      --orange: #C9A84C;
      --orange-light: #E0C06A;
      --navy: #0B2D5E;
      --navy-2: #0D3570;
      --navy-3: #1A4A8A;
      --navy-light: #E8EFF9;
      --gold: #C9A84C;
      --gold-light: #E0C06A;
      --white: #FFFFFF;
      --off-white: #F7F8FC;
      --text: #1A1E2E;
      --text-mid: #4A5168;
      --text-muted: #8890A8;
      --border: #DDE2EE;
      --shadow: 0 4px 24px rgba(11, 45, 94, .10);
      --shadow-md: 0 8px 40px rgba(11, 45, 94, .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;
      white-space: nowrap;
      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)
    }

    .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 {
      display: none;
      position: fixed;
      top: 68px;
      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: .9rem 2rem;
      color: var(--text-mid);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      border-bottom: 1px solid var(--border)
    }

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

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

    .mob-cta {
      margin: 1.5rem 2rem;
      display: block;
      background: var(--gold);
      color: var(--navy);
      padding: .85rem;
      border-radius: 6px;
      text-align: center;
      font-weight: 700;
      font-size: .88rem;
      text-decoration: none
    }

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

    .ph-pattern {
      position: absolute;
      inset: 0;
      opacity: .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)
    }

    .ph-glow {
      position: absolute;
      right: -80px;
      top: -80px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 168, 76, .13) 0%, transparent 65%)
    }

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

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

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

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

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

    .bc-cur {
      color: var(--gold-light)
    }

    .ph-title {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: .8rem
    }

    .ph-title em {
      font-style: normal;
      color: var(--gold-light)
    }

    .ph-sub {
      font-size: .93rem;
      color: rgba(255, 255, 255, .65);
      max-width: 580px;
      line-height: 1.85;
      font-weight: 300
    }

    .ph-icon {
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      flex-shrink: 0
    }

    /* STATS BAR */
    .stats-bar {
      background: var(--navy-light);
      border-bottom: 2px solid var(--border);
      padding: 0 2rem
    }

    .stats-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 0
    }

    .stat-b {
      flex: 1;
      padding: 1.2rem 1.5rem;
      border-right: 1px solid var(--border);
      text-align: center
    }

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

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

    .stat-b-label {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--text-muted);
      margin-top: 2px
    }

    /* SECTIONS */
    section {
      padding: 4.5rem 2rem
    }

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

    .stag {
      font-size: .68rem;
      text-transform: uppercase;
      letter-spacing: .22em;
      color: var(--gold);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: .7rem
    }

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

    .stitle {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.2rem);
      font-weight: 900;
      line-height: 1.25;
      color: var(--navy);
      margin-bottom: .7rem
    }

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

    /* CARDS 3-col */
    .card-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
      margin-top: 2.5rem
    }

    .card-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      margin-top: 2.5rem
    }

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

    .scard {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.4rem;
      transition: all .25s
    }

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

    .scard-icon {
      font-size: 1.6rem;
      margin-bottom: .7rem
    }

    .scard-title {
      font-size: .9rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .35rem
    }

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

    .scard ul {
      margin-top: .6rem;
      padding-left: 1.1rem
    }

    .scard ul li {
      font-size: .78rem;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: .15rem
    }

    /* LIST SECTION */
    .two-col-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 2rem;
      align-items: start
    }

    .list-block h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .8rem;
      padding-bottom: .5rem;
      border-bottom: 2px solid var(--gold)
    }

    .check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .55rem
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .85rem;
      color: var(--text-mid);
      line-height: 1.65
    }

    .check-list li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: .1rem
    }

    /* HIGHLIGHT */
    .highlight-box {
      background: var(--navy-light);
      border-left: 3px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0
    }

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

    /* SPEC TABLE */
    .spec-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1.5rem;
      font-size: .83rem
    }

    .spec-table th {
      background: var(--navy);
      color: #fff;
      padding: .8rem 1rem;
      text-align: left;
      font-weight: 600;
      font-size: .76rem;
      letter-spacing: .06em;
      text-transform: uppercase
    }

    .spec-table td {
      padding: .8rem 1rem;
      border-bottom: 1px solid var(--border);
      color: var(--text-mid)
    }

    .spec-table tr:nth-child(even) td {
      background: var(--off-white)
    }

    .spec-table tr:hover td {
      background: var(--navy-light)
    }

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

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

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

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

    .cta-inner p {
      color: rgba(255, 255, 255, .65);
      font-size: .93rem;
      line-height: 1.85;
      margin-bottom: 2rem
    }

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

    .btn-gold {
      background: var(--gold);
      color: var(--navy);
      padding: .85rem 2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 700;
      font-size: .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, .4)
    }

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

    .btn-wout:hover {
      border-color: rgba(255, 255, 255, .7);
      background: rgba(255, 255, 255, .08)
    }

    /* TIRETECH SIDEBAR NAV */
    .tt-nav {
      background: var(--off-white);
      border-bottom: 1px solid var(--border);
      padding: .7rem 2rem
    }

    .tt-nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: .5rem;
      flex-wrap: wrap;
      align-items: center
    }

    .tt-nav-label {
      font-size: .66rem;
      text-transform: uppercase;
      letter-spacing: .15em;
      color: var(--text-muted);
      font-weight: 600;
      margin-right: .5rem;
      white-space: nowrap
    }

    .tt-nav-link {
      display: inline-block;
      padding: .35rem .9rem;
      border-radius: 20px;
      text-decoration: none;
      font-size: .75rem;
      color: var(--text-mid);
      border: 1px solid var(--border);
      background: var(--white);
      transition: all .2s;
      white-space: nowrap
    }

    .tt-nav-link:hover {
      border-color: var(--navy);
      color: var(--navy)
    }

    .tt-nav-link.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy)
    }

    /* ── 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)
    }

    /* FAQ */
    .faq {
      margin-top: 2rem
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 8px;
      margin-bottom: .8rem;
      overflow: hidden
    }

    .faq-q {
      padding: 1rem 1.2rem;
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--white);
      transition: background .2s
    }

    .faq-q:hover {
      background: var(--off-white)
    }

    .faq-q .faq-arr {
      font-size: .7rem;
      transition: transform .3s;
      color: var(--gold)
    }

    .faq-item.open .faq-arr {
      transform: rotate(180deg)
    }

    .faq-a {
      display: none;
      padding: .8rem 1.2rem 1.2rem;
      font-size: .84rem;
      color: var(--text-mid);
      line-height: 1.8;
      background: var(--off-white);
      border-top: 1px solid var(--border)
    }

    .faq-item.open .faq-a {
      display: block
    }

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

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

      .hamburger {
        display: flex
      }

      .stats-bar-inner {
        flex-direction: column;
        gap: 0
      }

      .stat-b {
        border-right: none;
        border-bottom: 1px solid var(--border)
      }

      .card-grid-3 {
        grid-template-columns: 1fr
      }

      .card-grid-2 {
        grid-template-columns: 1fr
      }

      .card-grid-4 {
        grid-template-columns: 1fr 1fr
      }

      .two-col-list {
        grid-template-columns: 1fr
      }

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

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

      .ph-inner {
        grid-template-columns: 1fr
      }

      .ph-icon {
        display: none
      }

      .spec-table {
        font-size: .76rem
      }
    }

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

      .mobile-menu {
        top: 60px
      }

      .nav-logo img {
        height: 36px
      }

      .card-grid-4 {
        grid-template-columns: 1fr
      }

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

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

      section {
        padding: 3rem 1.2rem
      }

      .tt-nav {
        padding: .6rem 1rem
      }

      .topbar {
        font-size: .66rem;
        padding: .4rem 1rem
      }
    }
  


.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 !important; }
.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; 
}
