
    /* ── SCROLL PROGRESS ────────────────────────────────────────── */
    #scroll-bar {
      position: fixed; top: 0; left: 0; z-index: 9999;
      height: 3px; width: 0%;
      background: linear-gradient(90deg, #1565C0, #D94040, #E5A020);
      transition: width .1s linear; pointer-events: none;
    }

    /* ── DESIGN TOKENS ──────────────────────────────────────────── */
    :root {
      --g900: #0A2558;
      --g800: #0D3380;
      --g700: #1565C0;
      --g600: #1976D2;
      --g200: #BBDEFB;
      --g100: #DDEEFF;
      --g50:  #F0F7FF;
      --gold:       #E5A020;
      --gold-light: #F0BA45;
      --gold-pale:  #FEF9ED;
      --gold-dark:  #B87A10;
      --white: #FFFFFF;
      --ink:   #111827;
      --gray-700: #374151;
      --gray-500: #6B7280;
      --gray-400: #9CA3AF;
      --gray-300: #D1D5DB;
      --gray-200: #E5E7EB;
      --gray-100: #F3F4F6;
      --gray-50:  #F9FAFB;
      --sh-sm: 0 1px 3px rgba(0,0,0,.06);
      --sh-md: 0 4px 20px rgba(0,0,0,.09);
      --sh-lg: 0 12px 48px rgba(0,0,0,.13);
      --r: 10px; --rl: 18px; --rx: 26px; --t: .3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--ink); background: var(--white);
      line-height: 1.6; overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    ::selection { background: rgba(21,101,192,.15); color: var(--g900); }
    :focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
    img { display: block; max-width: 100%; height: auto; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font-family: inherit; cursor: pointer; }
    .wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

    /* ── TYPOGRAPHY ─────────────────────────────────────────────── */
    .label {
      display: inline-block; font-size: 12px; font-weight: 700;
      letter-spacing: .6px; text-transform: uppercase;
      color: var(--gray-700);
      border-left: 3px solid var(--g700); padding-left: 10px; line-height: 1.4;
    }
    .label.gold { color: rgba(255,255,255,.75); border-color: var(--gold); }
    .label.white { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.4); }
    .h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--ink); line-height: 1.25; margin-top: 10px; letter-spacing: -.3px; }
    .h2.white { color: var(--white); }
    .body-lg { font-size: 15.5px; color: var(--gray-500); line-height: 1.78; margin-top: 14px; }
    .body-lg.white { color: rgba(255,255,255,.72); }

    /* ── BUTTONS ────────────────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 12px 24px; border-radius: 8px;
      font-size: 15px; font-weight: 500;
      border: 2px solid transparent;
      transition: all var(--t); white-space: nowrap;
    }
    .btn-sm { padding: 10px 22px; font-size: 13.5px; }
    .btn-primary { background: var(--g700); color: var(--white); border-color: var(--g700); border-radius: 6px; }
    .btn-primary:hover { background: var(--g800); border-color: var(--g800); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,48,128,.3); }
    .btn-outline { background: transparent; color: var(--g700); border-color: var(--g700); border-radius: 6px; }
    .btn-outline:hover { background: var(--g700); color: var(--white); transform: translateY(-1px); }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ── SCROLL ANIMATION ───────────────────────────────────────── */
    .js .rise { opacity: 0; transform: translateY(28px); transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1); }
    .js .rise.in { opacity: 1; transform: none; }
    /* ── TIMELINE SLIDE-IN ANIMATIONS ─────────────────────────── */
    .js .tl-card-left  { opacity: 0; transform: translateX(-50px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
    .js .tl-card-right { opacity: 0; transform: translateX(50px);  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
    .js .tl-card-left.in, .js .tl-card-right.in { opacity: 1; transform: none; }
    /* Stagger timing for dots */
    .js .tl-dot { opacity: 0; transform: scale(0); transition: opacity .4s ease, transform .4s ease; }
    .js .tl-dot.in { opacity: 1; transform: scale(1); }

    /* ── COMPACT TIMELINE SPACING ──────────────────────────────── */
    .tl-row { margin-bottom: 16px !important; }
    .tl-card { padding: 18px 20px !important; }
    .tl-desc { font-size: 12.5px !important; line-height: 1.55 !important;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
      overflow: hidden; max-height: 5.5em; transition: max-height .4s ease; }
    .tl-card.expanded .tl-desc { -webkit-line-clamp: unset; max-height: 200px; }
    .tl-expand-btn { display: inline-block; margin-top: 8px; font-size: 11.5px; font-weight: 600; color: var(--g700); cursor: pointer; border: none; background: none; padding: 0; font-family: inherit; }
    .tl-expand-btn:hover { text-decoration: underline; }
    .tl-chips { margin-top: 10px !important; }
    .chip { font-size: 10px !important; padding: 3px 8px !important; }

    /* ── OLDER HISTORY TOGGLE ──────────────────────────────────── */
    .tl-older { display: none; }
    .tl-older.open { display: contents; }
    .tl-show-more {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin: 24px auto 0; padding: 11px 28px;
      background: transparent; border: 1.5px solid var(--g200);
      border-radius: 50px; font-family: inherit; font-size: 13px;
      font-weight: 600; color: var(--g700); cursor: pointer;
      transition: all var(--t);
    }
    .tl-show-more:hover { background: var(--g50); border-color: var(--g700); }
    .tl-show-more svg { width: 14px; height: 14px; transition: transform var(--t); }
    .tl-show-more.open svg { transform: rotate(180deg); }

    .d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
    .d5 { transition-delay: .40s; }

    /* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
    .ann-bar {
      background: var(--g900); color: rgba(255,255,255,.85);
      font-size: 12px; text-align: center; padding: 9px 24px; letter-spacing: .3px;
    }
    .ann-bar strong { color: var(--gold); }
    .ann-bar a { color: var(--gold); text-decoration: underline; }

    /* ── NAVBAR ─────────────────────────────────────────────────── */
    .navbar {
      position: sticky; top: 0; z-index: 1000;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-100); transition: box-shadow var(--t);
    }
    .navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
    .navbar.scrolled::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--g700), var(--gold), var(--g700));
      opacity: .6;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-logo { flex-shrink: 0; min-width: 0; }
    .nav-logo img { height: 42px; width: auto; flex-shrink: 0; }
    .nav-links { display: flex; align-items: center; gap: 0; }
    .nav-item { position: relative; }
    .nav-link {
      display: flex; align-items: center; gap: 4px;
      padding: 9px 14px; font-size: 13.5px; font-weight: 500;
      color: #4B5563; border-radius: 7px; transition: all var(--t); white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active { color: var(--g700); background: var(--g50); }
    @media (max-width: 1280px) {
      .nav-link { padding: 7px 9px; font-size: 12.5px; }
    @media (max-width: 1100px) { .nav-hide-md { display: none; } }
    }
    .nav-link.active { font-weight: 600; }
    .nav-chev { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t); }
    .nav-item:hover .nav-chev { transform: rotate(180deg); }
    .dropdown {
      position: absolute; top: calc(100% + 8px); left: 0;
      background: var(--white); border: 1px solid var(--gray-200);
      border-radius: var(--rl); box-shadow: var(--sh-lg);
      min-width: 220px; padding: 8px; opacity: 0; pointer-events: none;
      transform: translateY(10px) scale(.97); transform-origin: top left;
      transition: all .22s cubic-bezier(.22,.61,.36,1); z-index: 200;
    }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: none; }
    .dropdown a { display: flex; align-items: center; gap: 8px; padding: 9px 14px; font-size: 13.5px; color: var(--gray-700); border-radius: 8px; transition: all var(--t); }
    .dropdown a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--g200); flex-shrink: 0; transition: background var(--t); }
    .dropdown a:hover { background: var(--g50); color: var(--g700); }
    .dropdown a:hover::before { background: var(--gold); }
    .nav-right { display: flex; flex-shrink: 0; align-items: center; gap: 16px; }
    .hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border: none; background: none; border-radius: 6px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--t); }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    .mobile-nav { display: grid; grid-template-rows: 0fr; background: var(--white); border-top: 1px solid var(--gray-100); transition: grid-template-rows .35s cubic-bezier(.22,.61,.36,1); overflow: hidden; }
    .mobile-nav.open { grid-template-rows: 1fr; }
    .mobile-nav-inner { overflow: hidden; padding: 0 28px; }
    .mobile-nav.open .mobile-nav-inner { padding: 12px 28px 24px; }
    .mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 0; font-size: 15px; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); transition: color var(--t), padding-left var(--t); }
    .mobile-nav a:hover { color: var(--g700); padding-left: 4px; }
    .mobile-nav a::before {
      content: ''; width: 0; height: 2px;
      background: var(--gold); border-radius: 2px;
      transition: width var(--t); flex-shrink: 0;
    }
    .mobile-nav a:hover::before { width: 12px; }
    .mobile-nav .m-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
    .mobile-nav .btn { width: 100%; justify-content: center; }

    /* ── HERO ───────────────────────────────────────────────────── */
    .hero {
      position: relative; overflow: hidden;
      background: linear-gradient(140deg, var(--g900) 0%, #0B2F70 55%, #0D3A8C 100%);
      padding: 96px 0 80px;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 700px 500px at 80% 60%, rgba(21,101,192,.18) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 10% 90%, rgba(229,160,32,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    /* geometric accent rings */
    .hero-ring {
      position: absolute; border-radius: 50%; pointer-events: none;
    }
    .hero-ring-1 {
      width: 520px; height: 520px;
      top: -180px; right: -100px;
      border: 1px solid rgba(255,255,255,.05);
    }
    .hero-ring-2 {
      width: 360px; height: 360px;
      top: -80px; right: 20px;
      border: 1px solid rgba(229,160,32,.10);
    }
    .hero-inner { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
      border-radius: 100px; padding: 6px 18px 6px 8px;
      font-size: 12.5px; color: rgba(255,255,255,.85); font-weight: 600;
      margin-bottom: 24px; backdrop-filter: blur(4px);
    }
    .hero-badge-dot {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(229,160,32,.22); border: 1px solid rgba(229,160,32,.4);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .hero-badge-dot svg { width: 13px; height: 13px; color: var(--gold); }
    .hero-title {
      font-size: clamp(34px, 5.5vw, 56px); font-weight: 800;
      color: var(--white); line-height: 1.12; letter-spacing: -.6px;
      margin-bottom: 20px;
    }
    .hero-title span { color: var(--gold); }
    .hero-sub { font-size: 15.5px; color: rgba(255,255,255,.72); line-height: 1.8; max-width: 560px; margin-bottom: 52px; }

    /* hero metric cards */
    .hero-stats { display: flex; gap: 20px; flex-wrap: wrap; }
    .hero-stat {
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--rl); padding: 22px 28px;
      backdrop-filter: blur(6px); min-width: 160px;
      transition: background var(--t), transform var(--t);
    }
    .hero-stat:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
    .hero-stat-num {
      font-size: 36px; font-weight: 800; color: var(--gold);
      line-height: 1; letter-spacing: -1px; margin-bottom: 6px;
    }
    .hero-stat-label { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; line-height: 1.4; }

    /* ── BREADCRUMB ──────────────────────────────────────────────── */
    .breadcrumb-strip { background: var(--g50); border-bottom: 1px solid var(--g100); padding: 12px 0; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
    .breadcrumb a { color: var(--g700); font-weight: 500; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ── INTRO STRIP ─────────────────────────────────────────────── */
    .intro-strip {
      background: var(--white);
      padding: 64px 0 0;
    }
    .intro-inner {
      display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
      padding-bottom: 56px; border-bottom: 1px solid var(--gray-100);
    }
    .intro-left .label { margin-bottom: 8px; }
    .intro-left .h2 { font-size: clamp(22px, 2.8vw, 32px); }
    .intro-left .body-lg { max-width: 100%; }
    .intro-right { display: flex; flex-direction: column; gap: 16px; }
    .intro-fact {
      display: flex; gap: 14px; align-items: flex-start;
      background: var(--gray-50); border: 1px solid var(--gray-100);
      border-radius: var(--r); padding: 18px 20px;
    }
    .intro-fact-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      background: var(--g50); border: 1.5px solid var(--g100);
      display: flex; align-items: center; justify-content: center;
    }
    .intro-fact-icon svg { width: 18px; height: 18px; color: var(--g700); }
    .intro-fact-body {}
    .intro-fact-title { font-size: 14px; font-weight: 700; color: var(--g900); margin-bottom: 3px; }
    .intro-fact-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

    /* ── TIMELINE SECTION ────────────────────────────────────────── */
    .timeline-section {
      background: var(--gray-50);
      padding: 72px 0 96px;
    }
    .sec-header { text-align: center; max-width: 620px; margin: 0 auto 68px; }
    .sec-header .label { margin-bottom: 8px; }
    .sec-header .h2 { font-size: clamp(24px, 3.2vw, 36px); }
    .sec-header .body-lg { text-align: center; max-width: 480px; margin: 14px auto 0; }

    /* timeline container */
    .timeline {
      position: relative;
      max-width: 900px; margin: 0 auto;
      padding: 0 0 40px;
    }
    /* central vertical line */
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--g700) 0%, var(--g200) 60%, transparent 100%);
      transform: translateX(-50%);
    }

    /* each entry row */
    .tl-row {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      align-items: start;
      margin-bottom: 40px;
    }

    /* the center dot */
    .tl-dot {
      position: relative; z-index: 2;
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--gold); border: 3px solid var(--white);
      box-shadow: 0 0 0 3px var(--gold);
      margin: 28px auto 0;
    }

    /* card shared */
    .tl-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--sh-md);
      padding: 24px 26px;
      border-left: 4px solid var(--gold);
      position: relative;
      transition: transform var(--t), box-shadow var(--t);
    }
    .tl-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--sh-lg);
    }

    /* left-side card points right; right-side card points left */
    .tl-card-left { margin-right: 20px; }
    .tl-card-right { margin-left: 20px; border-left: none; border-right: 4px solid var(--gold); }

    /* empty placeholder cell */
    .tl-empty {}

    /* year badge */
    .tl-year {
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--g900); color: var(--gold);
      font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
      padding: 6px 18px; border-radius: 100px;
      margin-bottom: 14px;
    }

    .tl-headline {
      font-size: 15px; font-weight: 700; color: var(--g900);
      line-height: 1.3; margin-bottom: 8px;
    }
    .tl-desc {
      font-size: 13px; color: var(--gray-500); line-height: 1.65;
      margin-bottom: 14px;
    }

    /* chip row */
    .tl-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .chip {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 600; letter-spacing: .3px;
      padding: 3px 10px; border-radius: 100px;
    }
    .chip-lipper { background: #E8F0FE; color: #1A56DB; }
    .chip-aam    { background: var(--gold-pale); color: var(--gold-dark); }
    .chip-nat    { background: #ECFDF5; color: #047857; }
    .chip-corp   { background: #F3F0FF; color: #6D28D9; }
    .chip::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

    /* ── ACCOLADES BANNER ────────────────────────────────────────── */
    .accolades-section {
      background: linear-gradient(135deg, var(--g900) 0%, #0B2F70 100%);
      padding: 72px 0; position: relative; overflow: hidden;
    }
    .accolades-section::before {
      content: '';
      position: absolute; top: -120px; right: -120px;
      width: 500px; height: 500px; border-radius: 50%;
      background: rgba(229,160,32,.05); pointer-events: none;
    }
    .accolades-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
    .accolade-card {
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--rl); padding: 28px 22px;
      text-align: center; transition: all var(--t);
    }
    .accolade-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
    .accolade-icon {
      width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
      background: rgba(229,160,32,.15); border: 1px solid rgba(229,160,32,.3);
      display: flex; align-items: center; justify-content: center;
    }
    .accolade-icon svg { width: 26px; height: 26px; color: var(--gold); }
    .accolade-num { font-size: 38px; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -1px; margin-bottom: 6px; }
    .accolade-title { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 4px; }
    .accolade-sub { font-size: 12px; color: rgba(255,255,255,.45); }

    /* ── FOOTER ──────────────────────────────────────────────────── */
    .footer-col a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color var(--t); }
    .footer-col a:hover { color: var(--white); }
    .footer-address strong { color: rgba(255,255,255,.85); display: block; margin-bottom: 6px; font-size: 14px; }
    .footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--t); }
    .footer-bottom a:hover { color: rgba(255,255,255,.8); }
    .legal { background: rgba(0,0,0,.25); padding: 16px 0; font-size: 11.5px; color: rgba(255,255,255,.35); text-align: center; line-height: 1.6; }

    /* ── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .intro-inner { grid-template-columns: 1fr; gap: 36px; }
      .accolades-inner { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-right .btn-sm { display: none; }
      .hamburger { display: flex; }
      /* timeline: single column */
      .timeline::before { left: 22px; transform: none; }
      .tl-row {
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto;
      }
      .tl-dot { margin: 22px 0 0 3px; width: 14px; height: 14px; }
      .tl-card-left { grid-column: 2; grid-row: 1; margin-right: 0; }
      .tl-card-right { grid-column: 2; grid-row: 1; margin-left: 0; border-left: 4px solid var(--gold); border-right: none; }
      .tl-empty { display: none; }
      .accolades-inner { grid-template-columns: repeat(2,1fr); }
      .hero-stats { gap: 12px; }
      .hero-stat { min-width: 130px; padding: 18px 20px; }
    }
    @media (max-width: 480px) {
      .accolades-inner { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: column; }
      .hero-stat { width: 100%; }
    }

    /* ── FOOTER ───────────────────────────────────────────────── */
    .footer { background: var(--g900); color: rgba(255,255,255,.75); padding: 64px 0 0; }
    .footer-top {
      display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 40px; padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
    .footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 240px; }
    .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.65); transition: color var(--t); }
    .footer-col ul a:hover { color: #fff; }
    .footer-address { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 20px; }
    .footer-contact-link { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 10px; transition: color var(--t); }
    .footer-contact-link svg { width: 15px; height: 15px; flex-shrink: 0; }
    .footer-contact-link:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { color: rgba(255,255,255,.3); transition: color var(--t); }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.7); }
    @media(max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
    @media(max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }
  
    /* ═══════════════════════════════════════════════════════════
       CANONICAL NAV OVERRIDE — identical on every page
    ═══════════════════════════════════════════════════════════ */
    .navbar { position:sticky!important; top:0!important; z-index:1000!important;
      background:rgba(255,255,255,.97)!important;
      backdrop-filter:blur(12px)!important; -webkit-backdrop-filter:blur(12px)!important;
      border-bottom:1px solid var(--gray-100)!important; transition:box-shadow .3s ease!important; }
    .navbar.scrolled { box-shadow:0 2px 24px rgba(0,0,0,.09)!important; }
    .container.nav-inner, .nav-inner {
      display:flex!important; align-items:center!important;
      justify-content:space-between!important; height:72px!important; }
    .nav-logo { flex-shrink:0!important; min-width:0!important; }
    .nav-logo img { height:42px!important; width:auto!important; flex-shrink:0!important; display:block!important; }
    .nav-right { display:flex!important; align-items:center!important;
      gap:16px!important; flex-shrink:0!important; }
    .nav-right .btn-sm {
      display:inline-flex!important; align-items:center!important;
      padding:10px 22px!important; font-size:13.5px!important;
      font-weight:600!important; white-space:nowrap!important;
      background:var(--g700)!important; color:#fff!important;
      border:2px solid var(--g700)!important; border-radius:8px!important;
      font-family:inherit!important; cursor:pointer!important;
      transition:all .3s ease!important; letter-spacing:.2px!important; }
    .nav-right .btn-sm:hover { background:var(--g800)!important;
      border-color:var(--g800)!important; transform:translateY(-1px)!important; }
    .nav-link { display:flex!important; align-items:center!important; gap:4px!important;
      padding:9px 14px!important; font-size:13.5px!important; font-weight:500!important;
      color:#4B5563!important; border-radius:7px!important;
      white-space:nowrap!important; transition:all .3s ease!important; }
    .nav-link:hover, .nav-link.active { color:var(--g700)!important; background:var(--g50)!important; }
    .nav-link.active { font-weight:600!important; }
    .hamburger { display:none!important; flex-direction:column!important; gap:5px!important;
      padding:6px!important; border:none!important; background:none!important;
      border-radius:6px!important; cursor:pointer!important; }
    .hamburger span { display:block!important; width:22px!important; height:2px!important;
      background:var(--gray-700)!important; border-radius:2px!important; }
    @media(max-width:768px){
      .nav-links { display:none!important; }
      .nav-right .btn-sm { display:none!important; }
      .hamburger { display:flex!important; }
    }
    /* ═══════════════════════════════════════════════════════════ */
  
.ip0{font-size:24px !important}
.ip1{margin-top:12px !important}
.ip2{margin-bottom:48px !important}
.ip3{background: var(--g700) !important; box-shadow: 0 0 0 3px var(--g700) !important}
.ip4{border-right-color: var(--g700) !important}
.ip5{background: var(--g700) !important; color: var(--white) !important}
.ip6{margin-top:24px !important}