    :root {
      --white: #ffffff;
      --cream: #fafaf8;
      --paper: #f4f4f0;
      --midnight: #0a1628;
      --deep: #0d1f3c;
      --navy: #12336b;
      --blue: #1a4fa0;
      --blue-mid: #2563eb;
      --sky: #3b82f6;
      --gold: #c9a84c;
      --gold-lt: #e8c870;
      --ink: #0a1628;
      --body: #374151;
      --muted: #6b7280;
      --border: #e2e2dc;
      --border-b: #d1d1c8;

      --font-head: 'Playfair Display', Georgia, serif;
      --font-body: 'Manrope', sans-serif;

      --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --ease2: cubic-bezier(0.16, 1, 0.3, 1);

      --r-sm: 4px;
      --r-md: 8px;
      --r-lg: 16px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--white);
      color: var(--body);
      font-family: var(--font-body);
      line-height: 1.65;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar {
      width: 3px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--blue-mid);
      border-radius: 2px;
    }

    .topbar {
      background: var(--midnight);
      padding: 8px 0;
      text-align: center;
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.08em;
      font-weight: 500;
      font-family: var(--font-body);
    }

    .topbar span {
      color: var(--gold-lt);
      margin: 0 6px;
    }

    #header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s var(--ease);
    }

    .header-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-emblem {
      width: 44px;
      height: 44px;
      background: var(--midnight);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .logo-emblem::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
    }

    .logo-emblem-text {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 20px;
      color: var(--white);
      line-height: 1;
    }

    .logo-name {
      display: flex;
      flex-direction: column;
    }

    .logo-name-main {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 0.95rem;
      color: var(--midnight);
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    .logo-name-sub {
      font-size: 0.58rem;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-top: 1px;
    }

    /* Nav */
    .main-nav ul {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }

    .main-nav a {
      text-decoration: none;
      color: var(--muted);
      font-size: 0.83rem;
      font-weight: 600;
      padding: 8px 16px;
      transition: color 0.2s;
      letter-spacing: 0.01em;
      position: relative;
    }

    .main-nav a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 16px;
      right: 16px;
      height: 1.5px;
      background: var(--midnight);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.25s var(--ease);
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--midnight);
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
      transform: scaleX(1);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .btn-sm-ghost {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--body);
      text-decoration: none;
      padding: 8px 16px;
      border: 1.5px solid var(--border-b);
      border-radius: var(--r-sm);
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-sm-ghost:hover {
      border-color: var(--midnight);
      color: var(--midnight);
    }

    .btn-sm-solid {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      padding: 8px 20px;
      background: var(--midnight);
      border: 1.5px solid var(--midnight);
      border-radius: var(--r-sm);
      transition: all 0.2s;
      white-space: nowrap;
      font-family: var(--font-body);
      letter-spacing: 0.01em;
    }

    .btn-sm-solid:hover {
      background: var(--navy);
      border-color: var(--navy);
    }

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

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--midnight);
      transition: all 0.3s;
    }

    /* ============================================================
   MOBILE NAV
   ============================================================ */
    .mob-nav {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 16px 24px 24px;
      display: none;
      flex-direction: column;
      gap: 2px;
      z-index: 999;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    .mob-nav.open {
      display: flex;
    }

    .mob-nav a {
      display: block;
      text-decoration: none;
      color: var(--body);
      font-size: 0.92rem;
      font-weight: 600;
      padding: 10px 12px;
      border-radius: var(--r-sm);
      transition: all 0.2s;
    }

    .mob-nav a:hover {
      background: var(--cream);
      color: var(--midnight);
    }

    /* ============================================================
   HERO — SPLIT LAYOUT
   ============================================================ */
    #hero {
      margin-top: 0px;
      min-height: calc(100vh - 72px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    /* Left panel */
    .hero-left {
      background: var(--midnight);
      padding: 40px 40px 40px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Geometric accents on left */
    .hero-left::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 320px;
      height: 320px;
      border: 1px solid rgba(201, 168, 76, 0.15);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-left::after {
      content: '';
      position: absolute;
      bottom: 40px;
      left: -40px;
      width: 200px;
      height: 200px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-geo-line {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.4), transparent);
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 36px;
    }

    .hero-tag-line {
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .hero-tag-text {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .hero-h1 {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: clamp(2.8rem, 4vw, 4.2rem);
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 15px;
      letter-spacing: -0.01em;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero-sub {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.58);
      line-height: 1.8;
      max-width: 420px;
      margin-bottom: 15px;
      font-weight: 400;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 25px;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--midnight);
      font-weight: 800;
      font-size: 0.85rem;
      padding: 14px 28px;
      border-radius: var(--r-sm);
      text-decoration: none;
      transition: all 0.3s var(--ease);
      letter-spacing: 0.02em;
      font-family: var(--font-body);
      white-space: nowrap;
    }

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

    .btn-border-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 600;
      font-size: 0.85rem;
      padding: 13px 28px;
      border-radius: var(--r-sm);
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s var(--ease);
      white-space: nowrap;
    }

    .btn-border-white:hover {
      border-color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.06);
    }

    /* Hero stat row */
    .hero-stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 36px;
    }

    .hero-s {
      padding-right: 24px;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      margin-right: 24px;
    }

    .hero-s:last-child {
      border-right: none;
      padding-right: 0;
      margin-right: 0;
    }

    .hero-s-num {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 2.2rem;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .hero-s-num span {
      color: var(--gold);
    }

    .hero-s-label {
      font-size: 0.68rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 6px;
    }

    /* Right panel */
    .hero-right {
      background: var(--cream);
      padding: 64px 64px 64px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
      position: relative;
    }

    .hero-right::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 120px;
      height: 120px;
      background: linear-gradient(135deg, rgba(26, 79, 160, 0.06), transparent);
      pointer-events: none;
    }

    /* Service preview cards */
    .srv-preview {
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 3px solid var(--midnight);
      border-radius: var(--r-sm);
      padding: 20px 22px;
      display: flex;
      align-items: center;
      gap: 18px;
      transition: all 0.3s var(--ease);
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .srv-preview:hover {
      transform: translateX(6px);
      border-left-color: var(--gold);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .srv-preview-ico {
      width: 44px;
      height: 44px;
      background: var(--cream);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .srv-preview-label {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 3px;
    }

    .srv-preview-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--midnight);
      letter-spacing: -0.01em;
    }

    .srv-preview-arrow {
      margin-left: auto;
      font-size: 1rem;
      color: var(--muted);
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .srv-preview:hover .srv-preview-arrow {
      color: var(--gold);
      transform: translateX(3px);
    }

    /* Trust bar inside hero-right */
    .hero-trust {
      margin-top: 8px;
      padding: 18px 22px;
      background: var(--midnight);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
    }

    .trust-badge::before {
      content: '✓';
      width: 18px;
      height: 18px;
      background: var(--gold);
      color: var(--midnight);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      font-weight: 900;
      flex-shrink: 0;
    }

    .trust-sep {
      width: 1px;
      height: 24px;
      background: rgba(255, 255, 255, 0.1);
    }

    /* ============================================================
   MARQUEE / TECH STRIP
   ============================================================ */
    .tech-strip {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
      overflow: hidden;
      position: relative;
    }

    .tech-strip::before,
    .tech-strip::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .tech-strip::before {
      left: 0;
      background: linear-gradient(90deg, var(--white), transparent);
    }

    .tech-strip::after {
      right: 0;
      background: linear-gradient(-90deg, var(--white), transparent);
    }

    .marquee {
      display: flex;
      animation: slide 28s linear infinite;
      width: max-content;
    }

    @keyframes slide {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .mq-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 36px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .mq-dot {
      width: 3px;
      height: 3px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .wrap {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 64px;
    }

    .section {
      padding: 100px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.68rem;
      font-weight: 800;
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      margin-bottom: 16px;
    }

    .eyebrow-line {
      width: 28px;
      height: 2px;
      background: var(--gold);
    }

    .sec-title {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: clamp(2rem, 3.2vw, 3rem);
      color: var(--midnight);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .sec-title em {
      font-style: italic;
      color: var(--blue);
    }

    .sec-lead {
      font-size: 1.02rem;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.8;
    }

    /* Reveal animation */
    .fade {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }

    .fade.in {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-left {
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }

    .fade-left.in {
      opacity: 1;
      transform: translateX(0);
    }

    /* ============================================================
   ABOUT
   ============================================================ */
    #about {
      background: var(--cream);
      border-top: 1px solid var(--border);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .about-visual-stack {
      position: relative;
    }

    .about-big-card {
      background: var(--midnight);
      border-radius: var(--r-md);
      padding: 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .about-big-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
    }

    .about-big-card-title {
      font-family: var(--font-head);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 28px;
      color: var(--white);
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: var(--r-sm);
      overflow: hidden;
      margin-bottom: 28px;
    }

    .kpi-cell {
      background: rgba(255, 255, 255, 0.04);
      padding: 20px;
      text-align: center;
      transition: background 0.2s;
    }

    .kpi-cell:hover {
      background: rgba(201, 168, 76, 0.1);
    }

    .kpi-n {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 2rem;
      color: var(--white);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .kpi-n sup {
      font-size: 1rem;
      color: var(--gold);
    }

    .kpi-l {
      font-size: 0.68rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 5px;
    }

    /* Progress bars */
    .prog-item {
      margin-bottom: 16px;
    }

    .prog-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 7px;
    }

    .prog-name {
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
    }

    .prog-pct {
      font-size: 0.75rem;
      font-weight: 800;
      color: var(--gold);
    }

    .prog-bar {
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 2px;
      overflow: hidden;
    }

    .prog-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--gold-lt));
      border-radius: 2px;
    }

    /* Floating mini card */
    .about-mini-card {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 18px 22px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      gap: 14px;
      animation: floatY 4s ease-in-out infinite;
    }

    @keyframes floatY {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .amc-icon {
      width: 40px;
      height: 40px;
      background: var(--midnight);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .amc-label {
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .amc-val {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--midnight);
      letter-spacing: -0.01em;
    }

    /* About content */
    .about-content p {
      font-size: 0.97rem;
      color: var(--body);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .about-content p strong {
      color: var(--midnight);
      font-weight: 700;
    }

    .tick-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 28px 0 36px;
    }

    .tick-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.9rem;
      color: var(--body);
      font-weight: 500;
    }

    .tick {
      width: 22px;
      height: 22px;
      background: var(--midnight);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.55rem;
      font-weight: 900;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--midnight);
      color: var(--white);
      font-weight: 700;
      font-size: 0.87rem;
      padding: 14px 28px;
      border-radius: var(--r-sm);
      text-decoration: none;
      transition: all 0.3s var(--ease);
      font-family: var(--font-body);
      letter-spacing: 0.01em;
    }

    .btn-dark:hover {
      background: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
    }

    /* ============================================================
   SERVICES
   ============================================================ */
    #services {
      background: var(--white);
      border-top: 1px solid var(--border);
    }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* 2-column layout: large feature card + 3 small */
    .services-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      grid-template-rows: auto auto;
      gap: 20px;
    }

    .svc-featured {
      grid-row: 1 / 3;
      background: var(--midnight);
      border-radius: var(--r-md);
      padding: 48px 44px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 480px;
    }

    .svc-featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
    }

    .svc-featured-geo {
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 240px;
      height: 240px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      pointer-events: none;
    }

    .svc-featured-geo-2 {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 150px;
      height: 150px;
      border: 1px solid rgba(201, 168, 76, 0.1);
      border-radius: 50%;
      pointer-events: none;
    }

    .svc-f-num {
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .svc-f-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 28px;
    }

    .svc-f-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.6rem;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 16px;
    }

    .svc-f-desc {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      flex: 1;
      margin-bottom: 28px;
    }

    .svc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 28px;
    }

    .svc-tag {
      font-size: 0.65rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: var(--r-sm);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.55);
      letter-spacing: 0.05em;
    }

    .svc-link-gold {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: gap 0.2s;
      text-transform: uppercase;
    }

    .svc-link-gold:hover {
      gap: 14px;
    }

    /* Small service cards */
    .svc-small {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 28px 28px;
      display: flex;
      flex-direction: column;
      transition: all 0.3s var(--ease);
      position: relative;
      overflow: hidden;
    }

    .svc-small::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform 0.35s var(--ease);
    }

    .svc-small:hover {
      background: var(--white);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
      transform: translateY(-3px);
    }

    .svc-small:hover::after {
      transform: scaleY(1);
    }

    .svc-s-num {
      font-size: 0.62rem;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .svc-s-icon {
      width: 44px;
      height: 44px;
      background: var(--midnight);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 16px;
    }

    .svc-s-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.08rem;
      color: var(--midnight);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .svc-s-desc {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.75;
      flex: 1;
      margin-bottom: 16px;
    }

    .svc-s-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 16px;
    }

    .svc-s-tag {
      font-size: 0.62rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--r-sm);
      background: var(--white);
      border: 1px solid var(--border-b);
      color: var(--muted);
    }

    .svc-s-link {
      font-size: 0.78rem;
      font-weight: 800;
      color: var(--midnight);
      text-decoration: none;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
    }

    .svc-small:hover .svc-s-link {
      color: var(--gold);
    }

    /* ============================================================
   PORTFOLIO
   ============================================================ */
    #portfolio {
      background: var(--cream);
      border-top: 1px solid var(--border);
    }

    .port-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .port-filters {
      display: flex;
      gap: 0;
      border: 1px solid var(--border-b);
      border-radius: var(--r-sm);
      overflow: hidden;
    }

    .pf-btn {
      font-size: 0.75rem;
      font-weight: 700;
      padding: 9px 18px;
      border: none;
      background: var(--white);
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s;
      font-family: var(--font-body);
      letter-spacing: 0.04em;
      border-right: 1px solid var(--border);
    }

    .pf-btn:last-child {
      border-right: none;
    }

    .pf-btn.active {
      background: var(--midnight);
      color: var(--white);
    }

    .pf-btn:not(.active):hover {
      background: var(--cream);
      color: var(--midnight);
    }

    .port-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
    }

    .port-item {
      background: var(--white);
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s var(--ease);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .port-item:hover {
      background: var(--midnight);
    }

    .port-item-thumb {
      width: 56px;
      height: 56px;
      background: var(--cream);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
      transition: all 0.3s;
    }

    .port-item:hover .port-item-thumb {
      background: rgba(255, 255, 255, 0.08);
    }

    .port-item-cat {
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 8px;
      transition: color 0.3s;
    }

    .port-item-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--midnight);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
      line-height: 1.3;
      transition: color 0.3s;
    }

    .port-item:hover .port-item-title {
      color: var(--white);
    }

    .port-item-desc {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.65;
      flex: 1;
      transition: color 0.3s;
    }

    .port-item:hover .port-item-desc {
      color: rgba(255, 255, 255, 0.5);
    }

    .port-item-arrow {
      margin-top: 20px;
      font-size: 1.2rem;
      color: var(--border-b);
      transition: all 0.3s;
    }

    .port-item:hover .port-item-arrow {
      color: var(--gold);
      transform: translateX(4px);
    }

    /* ============================================================
   CLIENTS
   ============================================================ */
    #clients {
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 80px 0;
    }

    .clients-top {
      text-align: center;
      margin-bottom: 52px;
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
    }

    .cl-box {
      background: var(--cream);
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
      cursor: pointer;
    }

    .cl-box:hover {
      background: var(--white);
      box-shadow: 0 0 0 2px var(--midnight) inset;
    }

    .cl-box img {
      max-width: 75%;
      max-height: 48px;
      object-fit: contain;
      filter: grayscale(1) opacity(0.45);
      transition: filter 0.3s;
    }

    .cl-box:hover img {
      filter: grayscale(0) opacity(1);
    }

    .cl-placeholder {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 0.78rem;
      color: var(--light);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .clients-cta {
      text-align: center;
      margin-top: 56px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }

    .clients-cta p {
      font-size: 1.05rem;
      color: var(--muted);
      margin-bottom: 24px;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ============================================================
   CTA BLOCK
   ============================================================ */
    .cta-block {
      background: var(--midnight);
      position: relative;
      overflow: hidden;
      padding: 96px 0;
    }

    .cta-block::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border: 1px solid rgba(201, 168, 76, 0.1);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-block::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: 10%;
      width: 300px;
      height: 300px;
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 64px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 60px;
    }

    .cta-inner h2 {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .cta-inner h2 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .cta-inner p {
      font-size: 0.97rem;
      color: rgba(255, 255, 255, 0.55);
      max-width: 480px;
      line-height: 1.75;
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-end;
    }

    /* ============================================================
   CONTACT
   ============================================================ */
    #contact {
      background: var(--cream);
      border-top: 1px solid var(--border);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: start;
    }

    .contact-left {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .c-info {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: all 0.25s;
    }

    .c-info:hover {
      border-color: var(--midnight);
      transform: translateX(4px);
    }

    .c-info-ico {
      width: 42px;
      height: 42px;
      background: var(--midnight);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .c-info-label {
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 3px;
    }

    .c-info-val {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--midnight);
    }

    .c-social {
      padding: 20px;
      background: var(--midnight);
      border-radius: var(--r-sm);
    }

    .c-social-label {
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 14px;
    }

    .c-social-row {
      display: flex;
      gap: 8px;
    }

    .c-soc {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      font-weight: 800;
      transition: all 0.2s;
    }

    .c-soc:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--midnight);
    }

    /* Contact Form */
    .contact-form-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
    }

    .form-header {
      background: var(--midnight);
      padding: 28px 36px;
      position: relative;
    }

    .form-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
    }

    .form-header h3 {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--white);
      margin-bottom: 4px;
    }

    .form-header p {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .form-body {
      padding: 36px;
    }

    .f-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .f-group {
      margin-bottom: 16px;
    }

    .f-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--midnight);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .f-group input,
    .f-group textarea,
    .f-group select {
      width: 100%;
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: var(--r-sm);
      padding: 11px 14px;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      outline: none;
      transition: all 0.2s;
      -webkit-appearance: none;
    }

    .f-group input:focus,
    .f-group textarea:focus,
    .f-group select:focus {
      border-color: var(--midnight);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.06);
    }

    .f-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .f-group select option {
      background: var(--white);
    }

    .f-submit {
      width: 100%;
      padding: 14px;
      background: var(--midnight);
      color: var(--white);
      border: 2px solid var(--midnight);
      border-radius: var(--r-sm);
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 0.87rem;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
    }

    .f-submit::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .f-submit:hover {
      background: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(10, 22, 40, 0.3);
    }

    .f-submit:hover::after {
      transform: scaleX(1);
    }

    /* ============================================================
   FOOTER
   ============================================================ */
    footer {
      background: var(--midnight);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-main {
      max-width: 1320px;
      margin: 0 auto;
      padding: 72px 64px 48px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .foot-brand p {
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.8;
      margin: 16px 0 24px;
      max-width: 300px;
    }

    .foot-divider {
      width: 36px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 20px;
    }

    .foot-nl {
      display: flex;
      gap: 0;
    }

    .foot-nl input {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-right: none;
      border-radius: var(--r-sm) 0 0 var(--r-sm);
      padding: 10px 14px;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 0.82rem;
      outline: none;
    }

    .foot-nl input::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .foot-nl button {
      background: var(--gold);
      color: var(--midnight);
      border: none;
      border-radius: 0 var(--r-sm) var(--r-sm) 0;
      padding: 10px 16px;
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 0.75rem;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
      letter-spacing: 0.04em;
    }

    .foot-nl button:hover {
      background: var(--gold-lt);
    }

    .foot-col h5 {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.9);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .foot-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .foot-col a {
      font-size: 0.84rem;
      color: rgba(255, 255, 255, 0.42);
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 500;
    }

    .foot-col a:hover {
      color: rgba(255, 255, 255, 0.85);
    }

    .foot-contact-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.42);
      margin-bottom: 10px;
      font-weight: 500;
    }

    .foot-social {
      display: flex;
      gap: 8px;
      margin-top: 20px;
    }

    .fsoc {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.8rem;
      font-weight: 800;
      transition: all 0.2s;
    }

    .fsoc:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--midnight);
    }

    .footer-bottom {
      max-width: 1320px;
      margin: 0 auto;
      padding: 20px 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.28);
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.28);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: rgba(255, 255, 255, 0.65);
    }

    /* BACK TO TOP */
    .btt {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 44px;
      height: 44px;
      background: var(--midnight);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--white);
      font-size: 1rem;
      z-index: 999;
      opacity: 0;
      transform: translateY(16px);
      transition: all 0.3s;
      pointer-events: none;
    }

    .btt.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .btt:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--midnight);
    }

    /* ============================================================
   RESPONSIVE
   ============================================================ */
    @media (max-width: 1100px) {
      #hero {
        grid-template-columns: 1fr;
      }

      .hero-right {
        padding: 48px 40px;
      }

      .hero-left {
        padding: 80px 40px;
      }

      .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .services-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .svc-featured {
        grid-row: auto;
        min-height: auto;
      }

      .port-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .clients-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .contact-layout {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 48px 40px;
      }

      .cta-inner {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        align-items: flex-start;
        flex-direction: row;
      }

      .wrap {
        padding: 0 40px;
      }
    }

    /* Phone Layout */
    @media (max-width: 768px) {
      .main-nav {
        display: none;
      }

      .header-actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .topbar {
        display: none;
      }

      #header {
        top: 0;
      }

      #hero {
        margin-top: 40px;
      }

      .hero-left {
        padding: 40px 24px;
      }

      .hero-right {
        padding: 40px 24px;
      }

      .hero-stat-row {
        grid-template-columns: repeat(3, 1fr);
      }

      .hero-s {
        padding-right: 12px;
        margin-right: 12px;
      }

      .hero-s-num {
        font-size: 1.6rem;
      }

      .port-grid {
        grid-template-columns: 1fr;
      }

      .f-row {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 24px;
      }

      .footer-bottom {
        padding: 16px 24px;
      }

      .wrap {
        padding: 0 24px;
      }

      .section {
        padding: 72px 0;
      }

      .cta-inner {
        padding: 0 24px;
      }

      .cta-actions {
        flex-direction: column;
      }

      .about-mini-card {
        display: none;
      }

      .services-layout {
        gap: 16px;
      }
    }



        .page-hero {
            background: var(--midnight);
            padding: 72px 0 64px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 320px;
            height: 320px;
            border: 1px solid rgba(201, 168, 76, 0.12);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: 10%;
            width: 200px;
            height: 200px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            pointer-events: none;
        }

        .page-hero-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 64px;
            position: relative;
            z-index: 1;
        }

        .page-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }

        .page-hero-tag-line {
            width: 28px;
            height: 1px;
            background: var(--gold);
        }

        .page-hero-tag-text {
            font-size: 0.68rem;
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .page-hero h1 {
            font-family: var(--font-head);
            font-weight: 800;
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

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

        .page-hero p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.55);
            max-width: 560px;
            line-height: 1.75;
        }

        .breadcrumb-bar {
            background: var(--cream);
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
        }

        .breadcrumb-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 64px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--muted);
        }

        .breadcrumb-inner a {
            text-decoration: none;
            color: var(--muted);
            transition: color 0.2s;
        }

        .breadcrumb-inner a:hover {
            color: var(--midnight);
        }

        .breadcrumb-sep {
            color: var(--light);
        }

        .breadcrumb-current {
            color: var(--midnight);
        }

        /* CONTENT LAYOUT */
        .content-wrap {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 64px;
        }

        .content-page {
            padding: 80px 0 100px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 80px;
            align-items: start;
        }

        /* Main Article */
        .article {
            min-width: 0;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border);
        }

        .meta-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--midnight);
            color: var(--gold);
            font-size: 0.65rem;
            font-weight: 800;
            padding: 5px 12px;
            border-radius: var(--r-sm);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .meta-date {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--muted);
        }

        .meta-date span {
            color: var(--midnight);
        }

        /* Article sections */
        .a-section {
            margin-bottom: 48px;
        }

        .a-section-title {
            font-family: var(--font-head);
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--midnight);
            letter-spacing: -0.01em;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .a-section-title::before {
            content: '';
            display: block;
            width: 3px;
            height: 22px;
            background: var(--gold);
            border-radius: 2px;
            flex-shrink: 0;
        }

        .a-section p {
            font-size: 0.97rem;
            color: var(--body);
            line-height: 1.85;
            margin-bottom: 14px;
        }

        .a-section p:last-child {
            margin-bottom: 0;
        }

        /* Policy list items */
        .policy-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 8px;
        }

        .policy-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px 20px;
            background: var(--cream);
            border: 1px solid var(--border);
            border-left: 3px solid var(--midnight);
            border-radius: var(--r-sm);
            font-size: 0.93rem;
            color: var(--body);
            line-height: 1.7;
            transition: all 0.25s;
        }

        .policy-list li:hover {
            border-left-color: var(--gold);
            background: var(--white);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            transform: translateX(4px);
        }

        .policy-icon {
            width: 32px;
            height: 32px;
            background: var(--midnight);
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* Highlight box */
        .highlight-box {
            background: var(--midnight);
            border-radius: var(--r-md);
            padding: 28px 32px;
            margin: 32px 0;
            position: relative;
            overflow: hidden;
        }

        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gold);
        }

        .highlight-box p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7) !important;
            line-height: 1.8;
            margin: 0 !important;
        }

        .highlight-box p strong {
            color: var(--gold-lt) !important;
        }

        /* Table */
        .policy-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 16px;
            font-size: 0.88rem;
        }

        .policy-table th {
            background: var(--midnight);
            color: var(--white);
            font-weight: 700;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 12px 16px;
            text-align: left;
        }

        .policy-table th:first-child {
            border-radius: var(--r-sm) 0 0 0;
        }

        .policy-table th:last-child {
            border-radius: 0 var(--r-sm) 0 0;
        }

        .policy-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
            color: var(--body);
            line-height: 1.6;
        }

        .policy-table tr:nth-child(even) td {
            background: var(--cream);
        }

        .policy-table tr:hover td {
            background: var(--paper);
        }

        .td-label {
            font-weight: 700;
            color: var(--midnight);
        }

        /* Contact prompt */
        .contact-prompt {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            padding: 28px 32px;
            margin-top: 48px;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .cp-icon {
            width: 52px;
            height: 52px;
            background: var(--midnight);
            border-radius: var(--r-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .cp-title {
            font-family: var(--font-head);
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--midnight);
            margin-bottom: 4px;
        }

        .cp-sub {
            font-size: 0.85rem;
            color: var(--muted);
        }

        .cp-link {
            margin-left: auto;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--midnight);
            color: var(--white);
            font-weight: 700;
            font-size: 0.82rem;
            padding: 10px 20px;
            border-radius: var(--r-sm);
            text-decoration: none;
            transition: all 0.2s;
            font-family: var(--font-body);
        }

        .cp-link:hover {
            background: var(--navy);
        }

        /* SIDEBAR */
        .sidebar {
            position: sticky;
            top: 100px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r-md);
            overflow: hidden;
        }

        .sidebar-card-header {
            background: var(--midnight);
            padding: 16px 20px;
            font-size: 0.7rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            position: relative;
        }

        .sidebar-card-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gold);
        }

        .sidebar-card-body {
            padding: 20px;
        }

        /* TOC nav */
        .toc-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .toc-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--muted);
            font-size: 0.82rem;
            font-weight: 600;
            padding: 8px 10px;
            border-radius: var(--r-sm);
            transition: all 0.2s;
        }

        .toc-list a:hover {
            background: var(--cream);
            color: var(--midnight);
        }

        .toc-list a .toc-num {
            font-size: 0.65rem;
            font-weight: 800;
            color: var(--gold);
            min-width: 18px;
        }

        /* Company info card */
        .company-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.82rem;
        }

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

        .ci-label {
            font-weight: 700;
            color: var(--midnight);
            min-width: 64px;
        }

        .ci-val {
            color: var(--muted);
        }

        /* Related links */
        .rel-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--body);
            font-size: 0.84rem;
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            transition: all 0.2s;
        }

        .rel-link:last-child {
            border-bottom: none;
        }

        .rel-link:hover {
            color: var(--midnight);
        }

        .rel-link-arrow {
            margin-left: auto;
            color: var(--light);
            font-size: 0.8rem;
            transition: transform 0.2s;
        }

        .rel-link:hover .rel-link-arrow {
            transform: translateX(3px);
            color: var(--gold);
        }

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

        .footer-main {
            max-width: 1320px;
            margin: 0 auto;
            padding: 72px 64px 48px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 56px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .foot-brand-desc {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.8;
            margin: 16px 0 24px;
            max-width: 300px;
        }

        .foot-divider {
            width: 36px;
            height: 2px;
            background: var(--gold);
            margin-bottom: 20px;
        }

        .foot-nl {
            display: flex;
            gap: 0;
        }

        .foot-nl input {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-right: none;
            border-radius: var(--r-sm) 0 0 var(--r-sm);
            padding: 10px 14px;
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.82rem;
            outline: none;
        }

        .foot-nl input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .foot-nl button {
            background: var(--gold);
            color: var(--midnight);
            border: none;
            border-radius: 0 var(--r-sm) var(--r-sm) 0;
            padding: 10px 16px;
            font-family: var(--font-body);
            font-weight: 800;
            font-size: 0.75rem;
            cursor: pointer;
            white-space: nowrap;
            letter-spacing: 0.04em;
        }

        .foot-nl button:hover {
            background: var(--gold-lt);
        }

        .foot-col h5 {
            font-family: var(--font-body);
            font-weight: 800;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .foot-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .foot-col a {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.42);
            text-decoration: none;
            transition: color 0.2s;
            font-weight: 500;
        }

        .foot-col a:hover {
            color: rgba(255, 255, 255, 0.85);
        }

        .foot-contact-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.42);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .foot-social {
            display: flex;
            gap: 8px;
            margin-top: 20px;
        }

        .fsoc {
            width: 34px;
            height: 34px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.8rem;
            font-weight: 800;
            transition: all 0.2s;
        }

        .fsoc:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--midnight);
        }

        .footer-bottom {
            max-width: 1320px;
            margin: 0 auto;
            padding: 20px 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-bottom p {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.28);
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.28);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bottom-links a:hover {
            color: rgba(255, 255, 255, 0.65);
        }

        /* Back to top */
        .btt {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            background: var(--midnight);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--r-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--white);
            font-size: 1rem;
            z-index: 999;
            opacity: 0;
            transform: translateY(16px);
            transition: all 0.3s;
            pointer-events: none;
        }

        .btt.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .btt:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--midnight);
        }

        /* Fade animations */
        .fade {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
        }

        .fade.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* RESPONSIVE */
        @media (max-width: 1100px) {
            .content-page {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
                padding: 48px 40px;
            }
        }

        @media (max-width: 768px) {
            .topbar {
                display: none;
            }

            .main-nav,
            .header-actions {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .header-inner,
            .content-wrap,
            .page-hero-inner,
            .footer-bottom {
                padding-left: 24px;
                padding-right: 24px;
            }

            .footer-main {
                padding: 40px 24px;
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .content-page {
                padding: 48px 0 72px;
            }

            .contact-prompt {
                flex-direction: column;
            }

            .cp-link {
                margin-left: 0;
            }

            .breadcrumb-inner {
                padding: 0 24px;
            }
        }




.sec-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 22px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Quick Contact — the main prominent CTA block */
.contact-hero {
  background: var(--midnight);
  border-radius: var(--r-md);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.contact-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.ch-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.ch-title em { font-style: italic; color: var(--gold-lt); }

.ch-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}

.ch-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.ch-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all 0.25s;
}

.ch-contact-item:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.2);
  transform: translateX(4px);
}

.ch-ico {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ch-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}

.ch-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.ch-sub-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.ch-response {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

.ch-response .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Support channels grid */
.support-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.support-channel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--midnight);
  border-radius: var(--r-sm);
  padding: 22px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s;
}

.support-channel:hover {
  border-left-color: var(--gold);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.sc-icon {
  width: 44px; height: 44px;
  background: var(--midnight);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.sc-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

.sc-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--midnight);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  transition: color 0.2s;
}

.support-channel:hover .sc-link { color: var(--gold); }

/* FAQ section */
.faq-section { margin-bottom: 28px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.25s;
}

.faq-item:hover { border-color: var(--border-b); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--midnight);
  transition: background 0.2s;
  user-select: none;
}

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

.faq-icon {
  width: 22px; height: 22px;
  background: var(--midnight);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 16px 20px 20px;
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  background: var(--white);
}

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

/* Response time block */
.response-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  margin-bottom: 28px;
}

.response-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.rg-item {
  text-align: center;
  padding: 18px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

.rg-time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1;
}

.rg-time span { color: var(--gold); font-size: 1rem; }
.rg-label { font-size: 0.7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
.rg-type { font-size: 0.75rem; font-weight: 600; color: var(--light); margin-top: 3px; }

/* Inline contact form */
.inline-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 28px;
}

.form-header {
  background: var(--midnight);
  padding: 24px 28px;
  position: relative;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.form-header h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
}

.form-header p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.form-body { padding: 28px; }

.f-group { margin-bottom: 16px; }

.f-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--midnight);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}

.f-group input,
.f-group textarea,
.f-group select {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
}

.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: var(--midnight);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.06);
}

.f-group textarea { resize: vertical; min-height: 100px; }
.f-group select option { background: var(--white); }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.f-submit {
  width: 100%;
  padding: 13px;
  background: var(--midnight);
  color: var(--white);
  border: 2px solid var(--midnight);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative; overflow: hidden;
}

.f-submit::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.f-submit:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,22,40,0.3); }
.f-submit:hover::after { transform: scaleX(1); }

/* SIDEBAR */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.sidebar-card-header { background: var(--midnight); padding: 16px 20px; font-size: 0.7rem; font-weight: 800; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.12em; position: relative; }
.sidebar-card-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.sidebar-card-body { padding: 20px; }

.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--muted); font-size: 0.82rem; font-weight: 600; padding: 8px 10px; border-radius: var(--r-sm); transition: all 0.2s; }
.toc-list a:hover { background: var(--cream); color: var(--midnight); }
.toc-num { font-size: 0.65rem; font-weight: 800; color: var(--gold); min-width: 18px; }

.rel-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--body); font-size: 0.84rem; font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--border); transition: all 0.2s; }
.rel-link:last-child { border-bottom: none; }
.rel-link:hover { color: var(--midnight); }
.rel-link-arrow { margin-left: auto; color: var(--light); font-size: 0.8rem; transition: transform 0.2s; }
.rel-link:hover .rel-link-arrow { transform: translateX(3px); color: var(--gold); }

.status-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.status-item:last-child { border-bottom: none; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: #22c55e; }
.dot-yellow { background: #f59e0b; }
.status-label { font-weight: 600; color: var(--midnight); }
.status-val { margin-left: auto; font-size: 0.72rem; font-weight: 700; color: var(--muted); }




.hero-stats-panel { display: flex; flex-direction: column; gap: 14px; }
.hsp-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-left: 3px solid var(--gold); border-radius: var(--r-sm); padding: 18px 20px; display: flex; align-items: center; gap: 16px; transition: all 0.25s; }
.hsp-item:hover { background: rgba(201,168,76,0.08); border-left-color: var(--gold-lt); }
.hsp-icon { width: 40px; height: 40px; background: var(--gold); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hsp-num { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.hsp-label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

.sec-h { font-family: var(--font-head); font-weight: 700; font-size: 1.55rem; color: var(--midnight); letter-spacing: -0.01em; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; }
.sec-h::before { content: ''; display: block; width: 3px; height: 24px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
  position: relative;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}

.job-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
  border-color: var(--border-b);
}

.job-card:hover::before { transform: scaleY(1); }

.job-card-header {
  background: var(--midnight);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.job-card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.jch-left { flex: 1; }

.job-num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.job-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-lt);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--r-sm);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.job-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid var(--border);
}

.job-meta-item:last-child { border-right: none; }

.jmi-icon {
  width: 22px; height: 22px;
  background: var(--midnight);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.job-body { padding: 28px; }

.job-desc {
  font-size: 0.93rem;
  color: var(--body);
  line-height: 1.82;
  margin-bottom: 22px;
}

.job-responsibilities {
  margin-bottom: 24px;
}

.jr-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--midnight);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.jr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jr-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.6;
}

.jr-check {
  width: 18px; height: 18px;
  background: var(--midnight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem;
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.skill-tag {
  font-size: 0.67rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  background: var(--cream);
  border: 1px solid var(--border-b);
  color: var(--body);
  letter-spacing: 0.03em;
}

.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--cream);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.jf-note { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.jf-note strong { color: var(--midnight); }

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--midnight);
  color: var(--white);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  position: relative; overflow: hidden;
}

.btn-apply::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.btn-apply:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(10,22,40,0.25); }
.btn-apply:hover::after { transform: scaleX(1); }

/* Open application block */
.open-app-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px;
  text-align: center;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.open-app-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
}

.oab-icon { font-size: 2.4rem; margin-bottom: 16px; }

.oab-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--midnight);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.oab-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 28px;
}

.culture-section {
  background: var(--midnight);
  padding: 72px 0;
  margin-bottom: 0;
}

.culture-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.culture-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}

.culture-card:hover { background: rgba(201,168,76,0.06); transform: translateY(-3px); }

.cc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.cc-title { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.cc-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--muted); font-size: 0.82rem; font-weight: 600; padding: 8px 10px; border-radius: var(--r-sm); transition: all 0.2s; }
.toc-list a:hover { background: var(--cream); color: var(--midnight); }
.toc-num { font-size: 0.65rem; font-weight: 800; color: var(--gold); min-width: 18px; }

.rel-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--body); font-size: 0.84rem; font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--border); transition: all 0.2s; }
.rel-link:last-child { border-bottom: none; }
.rel-link:hover { color: var(--midnight); }
.rel-link-arrow { margin-left: auto; color: var(--light); font-size: 0.8rem; transition: transform 0.2s; }
.rel-link:hover .rel-link-arrow { transform: translateX(3px); color: var(--gold); }

/* Perks list in sidebar */
.perk-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; color: var(--body); font-weight: 500; }
.perk-item:last-child { border-bottom: none; }
.perk-icon { font-size: 0.9rem; flex-shrink: 0; width: 20px; }

/* Application CTA card in sidebar */
.apply-cta-card { background: var(--midnight); border-radius: var(--r-md); padding: 24px; text-align: center; }
.apply-cta-card::before { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); margin: 0 auto 16px; }
.acc-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.acc-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 18px; }
.acc-btn { display: block; background: var(--gold); color: var(--midnight); font-weight: 800; font-size: 0.82rem; padding: 11px 16px; border-radius: var(--r-sm); text-decoration: none; font-family: var(--font-body); letter-spacing: 0.03em; transition: all 0.2s; }
.acc-btn:hover { background: var(--gold-lt); }



/* HEADER */
#header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 0 64px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-emblem { width: 44px; height: 44px; background: var(--midnight); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.logo-emblem::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.logo-emblem-text { font-family: var(--font-head); font-weight: 900; font-size: 20px; color: var(--white); line-height: 1; }
.logo-name-main { font-family: var(--font-body); font-weight: 800; font-size: 0.95rem; color: var(--midnight); letter-spacing: -0.01em; line-height: 1.2; display: block; }
.logo-name-sub { font-size: 0.58rem; font-weight: 500; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-top: 1px; }
.main-nav ul { display: flex; align-items: center; gap: 0; list-style: none; }
.main-nav a { text-decoration: none; color: var(--muted); font-size: 0.83rem; font-weight: 600; padding: 8px 16px; transition: color 0.2s; position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px; height: 1.5px; background: var(--midnight); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.main-nav a:hover, .main-nav a.active { color: var(--midnight); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-sm-ghost { font-size: 0.82rem; font-weight: 600; color: var(--body); text-decoration: none; padding: 8px 16px; border: 1.5px solid var(--border-b); border-radius: var(--r-sm); transition: all 0.2s; white-space: nowrap; }
.btn-sm-ghost:hover { border-color: var(--midnight); color: var(--midnight); }
.btn-sm-solid { font-size: 0.82rem; font-weight: 700; color: var(--white); text-decoration: none; padding: 8px 20px; background: var(--midnight); border: 1.5px solid var(--midnight); border-radius: var(--r-sm); transition: all 0.2s; white-space: nowrap; font-family: var(--font-body); }
.btn-sm-solid:hover { background: var(--navy); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--midnight); }