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

    :root {
      /* ─── Origin Capital Brand Colours ─── */
      --blue:        #1b3a8c;   /* "Origin" royal blue   */
      --blue-dark:   #0d2260;   /* deeper navy version   */
      --blue-deeper: #081540;   /* darkest bg navy       */
      --orange:      #f05a28;   /* "CAPITAL" vivid orange */
      --orange-dark: #cc4718;   /* hover / darker orange  */
      --orange-light:#fff3ee;   /* very light orange tint */

      /* ─── Neutrals ─────────────────────── */
      --dark:   #111827;
      --mid:    #374151;
      --muted:  #6b7280;
      --light:  #f7f9ff;        /* blue-tinted off-white */
      --border: #e5e7eb;
      --white:  #ffffff;
    }

    html { scroll-behavior: smooth; font-size: 90%; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* ══════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 70px;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled { box-shadow: 0 2px 20px rgba(27,58,140,0.1); }

    /* WP admin bar offset — logged-in users only */
    .admin-bar .navbar { top: 32px; }
    @media screen and (max-width: 782px) {
      .admin-bar .navbar { top: 46px; }
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: -0.3px;
      color: var(--blue);
    }
    /* Circular "O" mark matching the logo */
    .logo-mark {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 3px solid var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--blue);
      flex-shrink: 0;
    }
    .logo-text-origin { color: var(--blue); }
    .logo-text-capital { color: var(--orange); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .nav-links li a {
      padding: 8px 14px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--mid);
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }
    .nav-links li a:hover { background: var(--light); color: var(--blue); }

    .nav-actions { display: flex; align-items: center; gap: 10px; }

    .btn-nav-ghost {
      padding: 8px 16px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--mid);
      border: none;
      background: transparent;
      border-radius: 7px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    .btn-nav-ghost:hover { background: var(--light); color: var(--blue); }

    .btn-nav-primary {
      padding: 9px 22px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--white);
      background: var(--orange);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-nav-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }

    /* ══════════════════════════════════════
       HERO  — split layout, content LEFT
    ══════════════════════════════════════ */
    .hero {
      min-height: 65vh;
      position: relative;
      overflow: hidden;
      padding-top: 0;
      display: flex;
      align-items: stretch;
    }

    /* Dark navy photographic background — lightened overlay */
    .hero-bg {
      position: absolute;
      inset: 0;
      background-color: #081540;
      background-image:
        linear-gradient(105deg,
          rgba(8,21,64,0.45) 0%,
          rgba(8,21,64,0.28) 45%,
          rgba(8,21,64,0.08) 100%),
        url('hero-liffey.jpg');
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
    }


    /* Orange glow orb — top right */
    .hero-orb {
      position: absolute;
      width: 600px; height: 600px;
      top: -150px; right: -100px;
      border-radius: 50%;
      background: var(--orange);
      opacity: 0.07;
      filter: blur(100px);
      animation: floatOrb 10s ease-in-out infinite;
      pointer-events: none;
    }
    /* Blue glow orb — bottom */
    .hero-orb-2 {
      position: absolute;
      width: 400px; height: 400px;
      bottom: -80px; left: 25%;
      border-radius: 50%;
      background: var(--blue);
      opacity: 0.12;
      filter: blur(90px);
      animation: floatOrb 12s ease-in-out infinite reverse;
      pointer-events: none;
    }
    @keyframes floatOrb {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-30px); }
    }

    /* Single-column hero — content anchored left */
    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 860px;
      margin: 0;
      padding: 80px 48px 76px;
    }

    /* ── LEFT COLUMN ── */
    .hero-left { /* purely left-aligned */ }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: rgba(240,90,40,0.15);
      border: 1px solid rgba(240,90,40,0.35);
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #ffb899;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 7px; height: 7px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulseDot 2s infinite;
    }
    @keyframes pulseDot {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:0.4; transform:scale(1.4); }
    }

    .hero h1 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.4rem, 4.5vw, 4.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.07;
      letter-spacing: -2.5px;
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--orange);
    }

    .hero-sub {
      font-size: clamp(0.95rem, 1.4vw, 1.1rem);
      color: rgba(255,255,255,0.9);
      max-width: 520px;
      line-height: 1.8;
      margin-bottom: 44px;
    }

    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

    .btn-hero-primary {
      padding: 14px 30px;
      font-size: 0.975rem;
      font-weight: 700;
      color: var(--white);
      background: var(--orange);
      border: none;
      border-radius: 9px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-hero-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(240,90,40,0.4);
    }
    .btn-hero-ghost {
      padding: 14px 30px;
      font-size: 0.975rem;
      font-weight: 600;
      color: var(--white);
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 9px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-hero-ghost:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.55);
    }

    .hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
    .badge {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 9px 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 9px;
    }
    .badge-icon { color: var(--orange); display: flex; align-items: center; }
    .badge-text { font-size: 0.78rem; color: rgba(255,255,255,0.78); font-weight: 500; }

    /* hero-right styles removed — background photo only */

    /* ══════════════════════════════════════
       KVIKA ANNOUNCEMENT BANNER
    ══════════════════════════════════════ */
    .announcement-bar {
      background: var(--blue-deeper);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 0 48px;
      margin-top: 70px;  /* clear fixed navbar */
    }
    .announcement-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 28px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .announcement-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .announcement-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      border-radius: 12px;
      background: rgba(240,90,40,0.15);
      border: 1px solid rgba(240,90,40,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
    }
    .announcement-tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--orange);
      border: 1px solid rgba(240,90,40,0.35);
      background: rgba(240,90,40,0.1);
      padding: 3px 9px;
      border-radius: 100px;
      margin-bottom: 6px;
    }
    .announcement-title {
      font-family: 'Sora', sans-serif;
      font-size: 1.025rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.3px;
      line-height: 1.3;
    }
    .announcement-title span { color: var(--orange); }
    .announcement-sub {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      margin-top: 4px;
      line-height: 1.5;
    }
    .announcement-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      background: var(--orange);
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 700;
      border-radius: 8px;
      white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
      flex-shrink: 0;
    }
    .announcement-cta:hover {
      background: var(--orange-dark);
      transform: translateY(-1px);
    }
    .announcement-cta .arrow { transition: transform 0.2s; }
    .announcement-cta:hover .arrow { transform: translateX(4px); }

    @media (max-width: 960px) {
      .announcement-bar { padding: 0 24px; }
      .announcement-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 0; }
      .announcement-cta { width: 100%; justify-content: center; }
    }
    @media (max-width: 480px) {
      .announcement-bar { padding: 0 20px; }
      .announcement-title { font-size: 0.9rem; }
    }

    /* ══════════════════════════════════════
       LEBRUIN GROUP STRIP
    ══════════════════════════════════════ */
    .logos-section {
      padding: 18px 48px;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .logos-label {
      text-align: center;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    /* ══════════════════════════════════════
       STATS  (dark navy)
    ══════════════════════════════════════ */
    .stats-section {
      padding: 64px 48px;
      background: var(--white);
      color: var(--dark);
    }
    .stats-inner { max-width: 1200px; margin: 0 auto; }
    .stats-header { text-align: center; margin-bottom: 52px; }
    .stats-header h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -1px;
      margin-bottom: 12px;
    }
    .stats-header p { color: var(--muted); font-size: 1rem; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .stat-card {
      padding: 36px 28px;
      background: var(--light);
      text-align: center;
      transition: background 0.2s;
    }
    .stat-card:hover { background: rgba(240,90,40,0.08); }
    .stat-number {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 800;
      color: var(--orange);
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 10px;
    }
    .stat-label { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }

    /* ══════════════════════════════════════
       SERVICES
    ══════════════════════════════════════ */
    .services-section { padding: 80px 48px; background: var(--light); }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      color: var(--orange);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.5rem);
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -1px;
      line-height: 1.15;
      margin-bottom: 16px;
      max-width: 700px;
      overflow: visible;
    }
    .services-section .section-title { color: var(--dark); }
    .section-sub {
      font-size: 1.025rem;
      color: var(--muted);
      max-width: 530px;
      line-height: 1.8;
      margin-bottom: 56px;
    }
    .services-section .section-sub { color: var(--muted); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border-radius: 16px;
      overflow: hidden;
    }
    .service-card {
      background: var(--white);
      padding: 48px 38px;
      transition: background 0.2s;
    }
    .service-card:hover { background: rgba(240,90,40,0.04); }
    .service-num {
      display: none;
    }
    .service-icon {
      width: 72px; height: 72px;
      border-radius: 16px;
      background: var(--orange-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      margin-bottom: 22px;
    }
    .service-card h3 {
      font-family: 'Sora', sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.4px;
      margin-bottom: 12px;
    }
    .service-card p {
      font-size: 0.91rem;
      color: var(--muted);
      line-height: 1.78;
      margin-bottom: 28px;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--blue);
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 11px; }

    /* ══════════════════════════════════════
       FEATURES  (light bg)
    ══════════════════════════════════════ */
    .features-section { padding: 80px 48px; background: var(--light); }
    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .features-text h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .features-text > p {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 38px;
    }
    .feature-list { display: flex; flex-direction: column; gap: 16px; }
    .feature-item {
      display: flex;
      gap: 16px;
      padding: 18px 22px;
      background: var(--white);
      border-radius: 12px;
      border: 1px solid var(--border);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .feature-item:hover {
      border-color: var(--orange);
      box-shadow: 0 4px 18px rgba(240,90,40,0.1);
    }
    .feature-item-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--orange-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
    }
    .feature-item-text h4 { font-weight: 700; font-size: 0.93rem; color: var(--dark); margin-bottom: 3px; }
    .feature-item-text p  { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }

    /* Visual card on right */
    .features-visual { position: relative; }
    .visual-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 20px 60px rgba(27,58,140,0.1);
      border: 1px solid var(--border);
    }
    .visual-card-title {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--dark);
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .visual-tag {
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 100px;
      background: var(--orange-light);
      color: var(--orange-dark);
    }
    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 9px;
      height: 130px;
      margin-bottom: 22px;
    }
    .bar { flex: 1; border-radius: 5px 5px 0 0; background: var(--blue); opacity: 0.7; }
    .bar:nth-child(2n) { background: var(--orange); opacity: 0.8; }
    .bar:nth-child(1) { height: 58%; }
    .bar:nth-child(2) { height: 74%; }
    .bar:nth-child(3) { height: 46%; }
    .bar:nth-child(4) { height: 88%; }
    .bar:nth-child(5) { height: 64%; }
    .bar:nth-child(6) { height: 79%; }
    .bar:nth-child(7) { height: 70%; }

    .visual-metrics { display: flex; gap: 12px; }
    .metric {
      flex: 1;
      padding: 14px 12px;
      background: var(--light);
      border-radius: 10px;
      text-align: center;
    }
    .metric-val {
      font-family: 'Sora', sans-serif;
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.8px;
    }
    .metric-lab { font-size: 0.68rem; color: var(--muted); margin-top: 3px; }

    .floating-badge {
      position: absolute;
      bottom: -22px; left: -22px;
      background: var(--blue-deeper);
      color: var(--white);
      padding: 14px 18px;
      border-radius: 14px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.25);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      font-weight: 600;
      max-width: 300px;
      line-height: 1.4;
    }
    .floating-badge .dot {
      width: 9px; height: 9px; flex-shrink: 0;
      border-radius: 50%;
      background: var(--orange);
      animation: pulseDot 2s infinite;
    }

    /* ══════════════════════════════════════
       TEAM
    ══════════════════════════════════════ */
    .team-section { padding: 100px 48px; background: var(--white); }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 52px;
    }
    .team-card {
      padding: 34px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: var(--white);
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      display: flex;
      flex-direction: column;
    }
    .team-card:hover {
      box-shadow: 0 14px 44px rgba(27,58,140,0.1);
      transform: translateY(-5px);
      border-color: var(--blue);
    }
    .team-avatar {
      width: 54px; height: 54px;
      border-radius: 50%;
      border: 2.5px solid var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--blue);
      flex-shrink: 0;
      margin-bottom: 18px;
    }
    .team-name {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 1.075rem;
      color: var(--dark);
      letter-spacing: -0.3px;
      margin-bottom: 3px;
    }
    .team-role {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 16px;
    }
    .team-bio { font-size: 0.875rem; color: var(--muted); line-height: 1.72; flex: 1; margin-bottom: 22px; }
    .team-email {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--blue);
      transition: opacity 0.2s;
    }
    .team-email:hover { opacity: 0.65; }

    /* ══════════════════════════════════════
       NEWS / WEEKLY REVIEW
    ══════════════════════════════════════ */
    .hub-section { padding: 80px 48px; background: var(--white); }
    .hub-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      gap: 20px;
      overflow: visible;
      padding-bottom: 4px;
    }
    .hub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .article-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(27,58,140,0.07);
      transition: box-shadow 0.3s, transform 0.3s;
      cursor: pointer;
    }
    .article-card:hover {
      box-shadow: 0 12px 40px rgba(27,58,140,0.1);
      transform: translateY(-5px);
    }
    .article-thumb {
      height: 280px;
      overflow: hidden;
      position: relative;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .article-card:hover .article-thumb img { transform: scale(1.06); }
    .article-body { padding: 26px; }
    .article-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 10px;
      border-radius: 100px;
      background: var(--orange-light);
      color: var(--orange-dark);
      margin-bottom: 13px;
    }
    .article-tag.blue { background: #eff3ff; color: var(--blue); }
    .article-title {
      font-family: 'Sora', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.3px;
      line-height: 1.43;
      margin-bottom: 10px;
    }
    .article-date { font-size: 0.76rem; color: var(--muted); }

    .btn-outline {
      padding: 10px 22px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--dark);
      background: transparent;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--white); }

    /* ══════════════════════════════════════
       CTA BAND  (dark navy)
    ══════════════════════════════════════ */
    .cta-section {
      padding: 80px 48px;
      background: var(--blue-deeper);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(240,90,40,0.1) 0%, transparent 70%);
    }
    .cta-section .section-inner { position: relative; }
    .cta-section h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -2px;
      line-height: 1.1;
      margin-bottom: 18px;
    }
    .cta-section p {
      font-size: 1.025rem;
      color: rgba(255,255,255,0.58);
      max-width: 520px;
      margin: 0 auto 42px;
      line-height: 1.8;
    }
    .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: #0d2260;
      color: rgba(255,255,255,0.55);
      padding: 64px 48px 32px;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 52px;
    }
    .footer-brand .nav-logo { margin-bottom: 14px; }
    .footer-brand .nav-logo .logo-text-capital { color: var(--orange); }
    .footer-brand .nav-logo .logo-text-origin  { color: rgba(255,255,255,0.9); }
    .footer-brand .logo-mark { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }
    .footer-brand p { font-size: 0.84rem; line-height: 1.78; color: rgba(255,255,255,0.42); max-width: 290px; margin-bottom: 16px; }
    .footer-address { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.75; }

    .footer-col h4 {
      font-size: 0.71rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.35);
      margin-bottom: 16px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.52); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }

    .footer-bottom {
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.28); }
    .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
    .footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.65); }

    /* ══════════════════════════════════════
       SCROLL REVEAL
    ══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1100px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .hub-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 960px) {
      .nav-links, .btn-nav-ghost { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 768px) {
      .features-grid { grid-template-columns: 1fr; }
      .hub-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .hub-header { flex-direction: column; align-items: flex-start; }
      .floating-badge { display: none; }
      .hero-inner { padding: 72px 28px 72px; }
    }
    @media (max-width: 480px) {
      .navbar, .hero-inner, .services-section,
      .features-section, .hub-section,
      .cta-section, .stats-section, footer { padding-left: 20px; padding-right: 20px; }
      .footer-top { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ── MOBILE NAV ── */
    .mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(8,21,64,0.12); z-index: 998; padding: 16px 24px 24px; flex-direction: column; }
    .mobile-nav.open { display: flex; }
    .mobile-nav-link { display: block; padding: 13px 0; font-size: 0.95rem; font-weight: 600; color: var(--mid); border-bottom: 1px solid var(--border); transition: color 0.2s; }
    .mobile-nav-link:hover { color: var(--blue); }
    .mobile-nav-link:last-of-type { border-bottom: none; }
    .mobile-nav-cta { margin-top: 16px; padding: 14px; background: var(--orange); color: var(--white); text-align: center; font-size: 0.9rem; font-weight: 700; border-radius: 9px; display: block; transition: background 0.2s; }
    .mobile-nav-cta:hover { background: var(--orange-dark); color: var(--white); }
    .hamburger { background: none; border: none; }
    .hamburger span { transition: transform 0.25s ease, opacity 0.25s ease; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
    /* ── BACK TO TOP ── */
    .back-to-top { position: fixed; bottom: 32px; right: 32px; width: 46px; height: 46px; background: var(--orange); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(240,90,40,0.4); opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s, transform 0.2s, background 0.2s; z-index: 999; }
    .back-to-top.visible { opacity: 1; visibility: visible; }
    .back-to-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

    /* ══════════════════════════════════════════════
       INNER PAGES (shared)
    ══════════════════════════════════════════════ */
    .nav-links li a.active { background: var(--light); color: var(--blue); font-weight: 700; }
    .inner-hero { padding-top: 70px; min-height: 440px; position: relative; display: flex; align-items: center; overflow: hidden; }
    .inner-hero-bg {
      position: absolute; inset: 0;
      background-color: #081540;
      background-image:
        linear-gradient(135deg, rgba(8,21,64,0.78) 0%, rgba(8,21,64,0.55) 60%, rgba(8,21,64,0.38) 100%),
        url('img-commercial-building.jpg');
      background-position: center; background-size: cover; background-repeat: no-repeat;
    }
    .inner-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
    .inner-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 48px; width: 100%; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
    .breadcrumb a, .breadcrumb span { font-size: 0.78rem; font-weight: 500; color: #ffffff; transition: color 0.2s; }
    .breadcrumb a:hover { color: #ffffff; }
    .breadcrumb .sep { color: rgba(255,255,255,0.6); }
    .inner-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.08; letter-spacing: -2px; margin-bottom: 18px; }
    .inner-hero h1 em { font-style: normal; color: var(--orange); }
    .inner-hero .hero-sub { font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: rgba(255,255,255,0.65); max-width: 580px; line-height: 1.8; }
    .btn-primary { padding: 14px 30px; font-size: 0.975rem; font-weight: 700; color: var(--white); background: var(--orange); border: none; border-radius: 9px; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,90,40,0.4); }
    .btn-ghost-white { padding: 14px 30px; font-size: 0.975rem; font-weight: 600; color: var(--white); background: transparent; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 9px; cursor: pointer; transition: background 0.2s, border-color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.55); }

    /* ══════════════════════════════════════════════
       ABOUT
    ══════════════════════════════════════════════ */
    .story-section { padding: 80px 48px; background: var(--white); }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .story-text h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: var(--dark); margin-bottom: 22px; }
    .story-text h2 em { font-style: normal; color: var(--orange); }
    .story-text p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
    .story-text p:last-child { margin-bottom: 0; }
    .story-aside { display: flex; flex-direction: column; gap: 18px; }
    .story-stat-card { padding: 30px 28px; background: var(--light); border-radius: 16px; border: 1px solid var(--border); }
    .story-stat-num { font-family: 'Sora', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--blue); letter-spacing: -2px; line-height: 1; margin-bottom: 8px; }
    .story-stat-label { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
    .lebruin-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(240,90,40,0.08); border: 1px solid rgba(240,90,40,0.2); border-radius: 100px; font-size: 0.75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
    .params-section { padding: 80px 48px; background: var(--light); }
    .params-section .section-title { color: var(--dark); }
    .params-section .section-sub { color: var(--muted); }
    .params-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; margin-top: 52px; }
    .param-card { padding: 44px 36px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; transition: box-shadow 0.2s; }
    .param-card:hover { box-shadow: 0 4px 20px rgba(27,58,140,0.08); }
    .param-icon { color: var(--orange); margin-bottom: 20px; display: flex; }
    .param-card h3 { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; margin-bottom: 12px; }
    .param-card p { font-size: 0.88rem; color: var(--mid); line-height: 1.75; }
    .param-highlight { font-size: 1.6rem; font-weight: 800; font-family: 'Sora', sans-serif; color: var(--orange); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
    .approach-section { padding: 80px 48px; background: var(--light); }
    .approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .approach-text h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: var(--dark); margin-bottom: 20px; }
    .approach-text > p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 36px; }
    .approach-list { display: flex; flex-direction: column; gap: 14px; }
    .approach-item { display: flex; gap: 16px; padding: 18px 22px; background: var(--white); border-radius: 12px; border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s; }
    .approach-item:hover { border-color: var(--orange); box-shadow: 0 4px 18px rgba(240,90,40,0.1); }
    .approach-item-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--orange-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); }
    .approach-item-text h4 { font-weight: 700; font-size: 0.93rem; color: var(--dark); margin-bottom: 3px; }
    .approach-item-text p { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }
    .approach-card { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: 0 20px 60px rgba(27,58,140,0.09); border: 1px solid var(--border); }
    .approach-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
    .approach-card-header h3 { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); }
    .live-tag { font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; background: rgba(240,90,40,0.1); color: var(--orange-dark); }
    .timeline-items { display: flex; flex-direction: column; gap: 0; }
    .timeline-item { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
    .timeline-item:last-child { border-bottom: none; }
    .timeline-year { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--orange); width: 44px; flex-shrink: 0; padding-top: 2px; }
    .timeline-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.55; }
    .lebruin-section { padding: 80px 48px; background: var(--white); }
    .lebruin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .lebruin-text h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: var(--dark); margin-bottom: 18px; }
    .lebruin-text p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
    .lebruin-facts { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
    .lebruin-fact { display: flex; align-items: flex-start; gap: 14px; }
    .lebruin-fact-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-top: 6px; flex-shrink: 0; }
    .lebruin-fact p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
    .lebruin-panel { background: var(--blue-deeper); border-radius: 20px; padding: 40px; }
    .lebruin-panel h3 { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; margin-bottom: 6px; }
    .lebruin-panel .sub { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
    .lebruin-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .lebruin-stat { padding: 18px; background: rgba(255,255,255,0.05); border-radius: 12px; text-align: center; }
    .lebruin-stat-num { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--orange); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
    .lebruin-stat-lab { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
    .footer-brand .logo-text-capital { color: var(--orange); }
    .footer-brand .logo-text-origin { color: rgba(255,255,255,0.9); }

    /* ══════════════════════════════════════════════
       PEOPLE
    ══════════════════════════════════════════════ */
    .team-intro { max-width: 640px; margin-bottom: 64px; }
    .team-photo-wrap {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: var(--light);
      position: relative;
    }
    .team-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.5s ease;
      display: block;
    }
    .team-card:hover .team-photo-wrap img { transform: scale(1.05); }
    .team-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8,21,64,0.55) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .team-card:hover .team-photo-overlay { opacity: 1; }
    .team-photo-overlay span { font-size: 0.78rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 6px; }
    .team-info { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
    .team-quals { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
    .qual-tag { font-size: 0.65rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; background: var(--light); color: var(--mid); border: 1px solid var(--border); white-space: nowrap; }
    .team-view-btn { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700; color: var(--blue); padding-top: 14px; border-top: 1px solid var(--border); transition: gap 0.2s; }
    .team-card:hover .team-view-btn { gap: 10px; }
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8,21,64,0.72);
      backdrop-filter: blur(4px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .modal-overlay.open { display: flex; }
    .modal-card {
      background: var(--white);
      border-radius: 24px;
      max-width: 760px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 260px 1fr;
      box-shadow: 0 32px 80px rgba(8,21,64,0.3);
      animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
      position: relative;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.88); }
      to   { opacity: 1; transform: scale(1); }
    }
    .modal-photo-col {
      border-radius: 24px 0 0 24px;
      background: var(--blue-deeper);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 24px;
    }
    .modal-photo-col .modal-photo-bg { display: none; }
    .modal-avatar {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid rgba(255,255,255,0.15);
      box-shadow: 0 8px 32px rgba(0,0,0,0.35);
      flex-shrink: 0;
    }
    .modal-avatar img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .modal-content-col { padding: 40px 36px; display: flex; flex-direction: column; overflow-y: auto; }
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.9);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--dark);
      transition: background 0.2s, transform 0.2s;
      z-index: 10;
      line-height: 1;
    }
    .modal-close:hover { background: var(--white); transform: scale(1.1); }
    .modal-name { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 4px; }
    .modal-role { font-size: 0.78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
    .modal-quals { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
    .modal-qual { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: var(--light); color: var(--mid); border: 1px solid var(--border); }
    .modal-bio { font-size: 0.92rem; color: var(--mid); line-height: 1.82; flex: 1; margin-bottom: 24px; }
    .modal-email { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--light); border: 1px solid var(--border); border-radius: 8px; font-size: 0.82rem; font-weight: 600; color: var(--blue); transition: background 0.2s, border-color 0.2s; width: fit-content; }
    .modal-email:hover { background: #eff3ff; border-color: var(--blue); }
    .values-section { padding: 64px 48px; background: var(--blue-deeper); }
    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; margin-top: 48px; }
    .value-card { padding: 38px 30px; background: rgba(255,255,255,0.03); transition: background 0.2s; text-align: center; }
    .value-card:hover { background: rgba(240,90,40,0.07); }
    .value-icon { margin-bottom: 14px; display: flex; align-items: center; justify-content: center; color: var(--orange); }
    .value-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: -0.2px; margin-bottom: 10px; }
    .value-card p { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
    .cta-inner { max-width: 1200px; margin: 0 auto; background: var(--blue-deeper); border-radius: 24px; padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
    .cta-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(240,90,40,0.12) 0%, transparent 70%); }
    .cta-text { position: relative; flex: 1; }
    .cta-text h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 14px; }
    .cta-text p { font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.8; max-width: 480px; }
    .cta-actions { position: relative; flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }
    @media (max-width: 600px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }

    /* ══════════════════════════════════════════════
       PROJECTS
    ══════════════════════════════════════════════ */
    .stats-strip { background: var(--blue-deeper); padding: 48px; }
    .stats-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
    .strip-stat { padding: 0 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
    .strip-stat:last-child { border-right: none; }
    .strip-num { font-family: 'Sora', sans-serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; color: var(--orange); letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px; }
    .strip-label { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
    .projects-section { padding: 80px 48px; background: var(--white); }
    .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .project-card {
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--white);
      overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    }
    .project-card:hover { box-shadow: 0 16px 52px rgba(27,58,140,0.1); transform: translateY(-5px); border-color: var(--blue); }
    .project-thumb {
      height: 200px;
      overflow: hidden;
      position: relative;
      background: var(--light);
    }
    .project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    .project-card:hover .project-thumb img { transform: scale(1.06); }
    .project-body { padding: 28px 26px; }
    .project-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
    .project-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 4px 10px; border-radius: 100px; }
    .tag-office { background: #eff3ff; color: var(--blue); }
    .tag-retail { background: #fff3ee; color: var(--orange-dark); }
    .tag-industrial { background: #f0fdf4; color: #16a34a; }
    .tag-hotel { background: #fdf4ff; color: #7c3aed; }
    .tag-mixed { background: #fefce8; color: #a16207; }
    .tag-resi { background: #f0f9ff; color: #0369a1; }
    .project-name { font-family: 'Sora', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; line-height: 1.3; margin-bottom: 6px; }
    .project-location { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; display: flex; align-items: center; gap: 5px; }
    .project-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
    .project-detail-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 2px; }
    .project-detail-val { font-family: 'Sora', sans-serif; font-size: 0.93rem; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; }
    .disclaimer-section { padding: 40px 48px; background: var(--light); border-top: 1px solid var(--border); }
    .disclaimer-inner { max-width: 1200px; margin: 0 auto; }
    .disclaimer-text { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }

    /* ══════════════════════════════════════════════
       LENDING PARAMETERS
    ══════════════════════════════════════════════ */
    .intro-section { padding: 90px 48px; background: var(--white); }
    .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .intro-text p { font-size: 1.05rem; color: var(--mid); line-height: 1.85; margin-bottom: 20px; }
    .intro-text p:last-child { margin-bottom: 0; }
    .intro-highlights { display: flex; flex-direction: column; gap: 20px; }
    .highlight-card { background: var(--light); border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.2s, box-shadow 0.2s; }
    .highlight-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(240,90,40,0.08); }
    .highlight-icon { flex-shrink: 0; line-height: 1; color: var(--orange); display: flex; align-items: center; }
    .highlight-content h4 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .highlight-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
    .params-section .section-inner { }
    .params-header { text-align: center; margin-bottom: 64px; }
    .param-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--blue); }
    .param-card.orange::before { background: var(--orange); }
    .param-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 10px; }
    .param-value { font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--blue); letter-spacing: -1.2px; margin-bottom: 8px; line-height: 1; }
    .param-card.orange .param-value { color: var(--orange); }
    .param-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
    .assets-section { padding: 90px 48px; background: var(--white); }
    .assets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
    .asset-card { border: 1.5px solid var(--border); border-radius: 14px; padding: 28px 22px; text-align: center; transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; }
    .asset-card:hover { border-color: var(--orange); background: var(--orange-light); box-shadow: 0 4px 20px rgba(240,90,40,0.08); }
    .asset-icon { margin-bottom: 14px; color: var(--orange); display: flex; justify-content: center; }
    .asset-name { font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .asset-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
    .process-section { padding: 90px 48px; background: var(--blue-deeper); }
    .process-section .section-eyebrow { color: var(--orange); }
    .process-section .section-title { color: var(--white); }
    .process-section .section-sub { color: rgba(255,255,255,0.6); }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 52px; position: relative; }
    .process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 1px; background: rgba(255,255,255,0.15); }
    .step { text-align: center; padding: 0 20px; }
    .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(240,90,40,0.35); }
    .step h4 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .step p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
    .conditions-section { padding: 90px 48px; background: var(--light); }
    .conditions-table { width: 100%; border-collapse: collapse; margin-top: 40px; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 20px rgba(8,21,64,0.07); }
    .conditions-table th { background: var(--blue-deeper); color: var(--white); font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 16px 24px; text-align: left; }
    .conditions-table th:first-child { width: 35%; }
    .conditions-table td { padding: 18px 24px; font-size: 0.93rem; color: var(--mid); border-bottom: 1px solid var(--border); vertical-align: top; }
    .conditions-table tr:last-child td { border-bottom: none; }
    .conditions-table tr:nth-child(even) td { background: var(--light); }
    .conditions-table td:first-child { font-weight: 600; color: var(--dark); }
    .tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin: 2px 2px 2px 0; }
    .tag-blue { background: rgba(27,58,140,0.08); color: var(--blue); }
    .tag-orange { background: var(--orange-light); color: var(--orange); }

    /* ══════════════════════════════════════════════
       CONTACT
    ══════════════════════════════════════════════ */
    .contact-section { padding: 80px 48px; background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; max-width: 1200px; margin: 0 auto; }
    .contact-form-card { background: var(--light); border-radius: 20px; padding: 48px; border: 1px solid var(--border); }
    .contact-form-card h2 { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing: -0.8px; margin-bottom: 8px; }
    .contact-form-card .sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 36px; line-height: 1.65; }
    .form-row { margin-bottom: 18px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
    .form-label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--mid); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.06em; }
    .form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,58,140,0.08); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
    .form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
    .form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--orange); width: 15px; height: 15px; flex-shrink: 0; }
    .form-consent label { font-size: 0.78rem; color: var(--muted); line-height: 1.6; cursor: pointer; }
    .form-consent label a { color: var(--blue); }
    .btn-submit { width: 100%; padding: 15px; background: var(--orange); color: var(--white); font-size: 1rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; font-family: 'Inter', sans-serif; }
    .btn-submit:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(240,90,40,0.35); }
    .form-success { display: none; text-align: center; padding: 40px 20px; }
    .form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
    .form-success h3 { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .form-success p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
    .contact-info { display: flex; flex-direction: column; gap: 28px; }
    .contact-info-header h2 { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing: -0.8px; margin-bottom: 12px; }
    .contact-info-header p { font-size: 1rem; color: var(--muted); line-height: 1.8; }
    .contact-detail-card { padding: 24px; background: var(--light); border-radius: 14px; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 16px; transition: border-color 0.2s; }
    .contact-detail-card:hover { border-color: var(--orange); }
    .contact-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; color: var(--orange); }
    .contact-detail-text h4 { font-weight: 700; color: var(--dark); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; }
    .contact-detail-text p, .contact-detail-text a { font-size: 0.93rem; color: var(--mid); line-height: 1.65; }
    .contact-detail-text a { color: var(--blue); transition: opacity 0.2s; }
    .contact-detail-text a:hover { opacity: 0.7; }
    .map-placeholder { border-radius: 16px; overflow: hidden; background: var(--light); border: 1px solid var(--border); height: 240px; position: relative; display: flex; align-items: center; justify-content: center; }
    .map-placeholder iframe { width: 100%; height: 100%; border: none; }
    .contact-team { margin-top: 8px; }
    .contact-team h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
    .contact-person { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--light); border-radius: 12px; border: 1px solid var(--border); margin-bottom: 10px; transition: border-color 0.2s; }
    .contact-person:hover { border-color: var(--blue); }
    .contact-person-avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 0.75rem; color: var(--blue); background: white; flex-shrink: 0; }
    .contact-person-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
    .contact-person-role { font-size: 0.75rem; color: var(--muted); }
    .contact-person-email { margin-left: auto; font-size: 0.78rem; font-weight: 600; color: var(--blue); }
    /* ── Contact Form 7 Integration ── */
    .wpcf7 .wpcf7-form { font-family: 'Inter', sans-serif; }
    .wpcf7 .wpcf7-form p { margin-bottom: 16px; }
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 select,
    .wpcf7 textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); outline: none; transition: border-color 0.2s; box-sizing: border-box; }
    .wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { border-color: var(--blue); }
    .wpcf7 textarea { min-height: 140px; resize: vertical; }
    .wpcf7 .wpcf7-submit { width: 100%; padding: 14px; background: var(--orange); color: var(--white); font-size: 0.975rem; font-weight: 700; border: none; border-radius: 9px; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s, transform 0.2s; }
    .wpcf7 .wpcf7-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
    .wpcf7 label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
    .wpcf7 .wpcf7-acceptance label { font-size: 0.75rem; font-weight: 400; text-transform: none; letter-spacing: normal; color: var(--muted); line-height: 1.6; display: inline; }
    .wpcf7 .wpcf7-acceptance input[type="checkbox"] { accent-color: var(--orange); width: 16px; height: 16px; margin-right: 8px; vertical-align: middle; }
    .wpcf7 .wpcf7-list-item { margin: 0 0 8px; }
    .wpcf7 .wpcf7-list-item label { font-size: 0.85rem; font-weight: 400; text-transform: none; letter-spacing: normal; color: var(--mid); cursor: pointer; }
    .wpcf7 .wpcf7-list-item input[type="checkbox"] { accent-color: var(--orange); width: 16px; height: 16px; margin-right: 8px; }
    .wpcf7 .wpcf7-not-valid-tip { color: #e53e3e; font-size: 0.78rem; margin-top: 4px; }
    .wpcf7 .wpcf7-response-output { border: none !important; padding: 12px 16px !important; margin: 16px 0 0 !important; border-radius: 9px !important; font-size: 0.85rem; }
    .wpcf7-response-output.wpcf7-mail-sent-ok,
    .wpcf7 .wpcf7-mail-sent-ok { background: #f0fdf4; color: #166534; }
    .wpcf7-response-output.wpcf7-validation-errors,
    .wpcf7 .wpcf7-validation-errors { background: #fef2f2; color: #991b1b; }
    .wpcf7 .wpcf7-spinner { display: none; }

    /* ══════════════════════════════════════════════
       NEWS
    ══════════════════════════════════════════════ */
    .featured-section { padding: 80px 48px 60px; background: var(--white); }
    .featured-article {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--white);
      box-shadow: 0 8px 36px rgba(27,58,140,0.08);
    }
    .featured-thumb { position: relative; min-height: 420px; overflow: hidden; }
    .featured-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
    .featured-tag { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: var(--orange-light); border: 1px solid rgba(240,90,40,0.25); border-radius: 100px; font-size: 0.7rem; font-weight: 700; color: var(--orange-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; width: fit-content; }
    .featured-body h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--dark); letter-spacing: -1px; line-height: 1.18; margin-bottom: 16px; }
    .featured-body p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
    .featured-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
    .featured-date { font-size: 0.8rem; color: var(--muted); }
    .featured-author { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--mid); }
    .author-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; font-family: 'Sora', sans-serif; }
    .btn-read-more { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--blue-deeper); color: var(--white); font-size: 0.875rem; font-weight: 700; border-radius: 9px; transition: background 0.2s, transform 0.2s; width: fit-content; }
    .btn-read-more:hover { background: var(--blue); transform: translateY(-1px); }
    .filter-bar { padding: 0 48px 40px; background: var(--white); }
    .filter-inner { max-width: 1200px; margin: 0 auto; }
    .filter-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; }
    .filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
    .filter-tab { padding: 8px 18px; font-size: 0.83rem; font-weight: 600; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); color: var(--mid); cursor: pointer; transition: all 0.2s; }
    .filter-tab:hover { border-color: var(--blue); color: var(--blue); }
    .filter-tab.active { background: var(--blue-deeper); border-color: var(--blue-deeper); color: var(--white); }
    .articles-section { padding: 0 48px 100px; background: var(--white); }
    .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .article-excerpt { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
    .article-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--blue); margin-top: 12px; transition: gap 0.2s; }
    .article-link:hover { gap: 10px; }
    .subscribe-section { padding: 80px 48px; background: var(--light); }
    .subscribe-inner { max-width: 720px; margin: 0 auto; text-align: center; }
    .subscribe-inner h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--dark); letter-spacing: -1px; margin-bottom: 14px; }
    .subscribe-inner p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
    .subscribe-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
    .subscribe-input { flex: 1; padding: 13px 18px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); transition: border-color 0.2s; outline: none; }
    .subscribe-input:focus { border-color: var(--blue); }
    .subscribe-btn { padding: 13px 24px; background: var(--orange); color: var(--white); font-size: 0.875rem; font-weight: 700; border: none; border-radius: 9px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
    .subscribe-btn:hover { background: var(--orange-dark); }

    /* ══════════════════════════════════════════════
       NEWS ARTICLE
    ══════════════════════════════════════════════ */
    .article-hero { padding-top: 70px; min-height: 480px; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
    .article-hero-bg { position: absolute; inset: 0; background-color: var(--blue-deeper); background-image: linear-gradient(to top, rgba(8,21,64,0.92) 0%, rgba(8,21,64,0.6) 50%, rgba(8,21,64,0.35) 100%), url('img-kvika-partnership.jpg'); background-position: center; background-size: cover; background-repeat: no-repeat; }
    .article-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; }
    .article-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 860px; margin: 0 auto; padding: 100px 0 56px; text-align: left; }
    .article-category { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(240,90,40,0.15); border: 1px solid rgba(240,90,40,0.3); border-radius: 100px; font-size: 0.7rem; font-weight: 700; color: #ffb899; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 22px; }
    .article-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 24px; text-align: left; }
    .article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
    .meta-date { font-size: 0.82rem; color: #ffffff; }
    .meta-sep { color: rgba(255,255,255,0.15); }
    .meta-read { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
    .article-body-section { padding: 60px 48px 100px; }
    .article-layout { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
    .article-content { min-width: 0; }
    .article-content p { font-size: 1.05rem; color: var(--dark); line-height: 1.88; margin-bottom: 24px; }
    .article-content p:last-child { margin-bottom: 0; }
    .article-content h2 { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--dark); letter-spacing: -0.8px; line-height: 1.2; margin: 44px 0 18px; }
    .article-content h3 { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; margin: 32px 0 14px; }
    .article-blockquote { margin: 36px 0; padding: 28px 32px; background: var(--light); border-left: 4px solid var(--orange); border-radius: 0 12px 12px 0; }
    .article-blockquote p { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--dark); line-height: 1.65; margin-bottom: 12px !important; font-style: italic; }
    .article-blockquote cite { font-size: 0.82rem; color: var(--muted); font-style: normal; font-weight: 600; }
    .article-highlight { margin: 36px 0; padding: 28px 32px; background: var(--blue-deeper); border-radius: 14px; }
    .article-highlight h4 { font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 16px; }
    .highlight-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .highlight-stat-num { font-family: 'Sora', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--white); letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
    .highlight-stat-lab { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
    .article-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
    .article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
    .article-tag-item { padding: 6px 14px; background: var(--light); border: 1px solid var(--border); border-radius: 100px; font-size: 0.75rem; font-weight: 600; color: var(--mid); }
    .article-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 22px; }
    .sidebar-card { background: var(--light); border-radius: 14px; padding: 24px; border: 1px solid var(--border); }
    .sidebar-card h4 { font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 16px; }
    .sidebar-contact-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
    .sidebar-contact-role { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
    .sidebar-contact-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 700; color: var(--blue); transition: opacity 0.2s; }
    .sidebar-contact-link:hover { opacity: 0.7; }
    .sidebar-cta { background: var(--blue-deeper); border-radius: 14px; padding: 24px; text-align: center; }
    .sidebar-cta h4 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
    .sidebar-cta p { font-size: 0.82rem; color: #ffffff; line-height: 1.6; margin-bottom: 18px; }
    .btn-sidebar { display: block; padding: 12px 20px; background: var(--orange); color: var(--white); font-size: 0.875rem; font-weight: 700; border-radius: 9px; text-align: center; transition: background 0.2s; }
    .btn-sidebar:hover { background: var(--orange-dark); }
    .related-item { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .related-item:last-child { border-bottom: none; padding-bottom: 0; }
    .related-item-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); }
    .related-item-title { font-size: 0.83rem; font-weight: 600; color: var(--dark); line-height: 1.4; }
    .related-item-date { font-size: 0.72rem; color: var(--muted); }
    .related-item a:hover .related-item-title { color: var(--blue); }
    .back-section { padding: 48px; background: var(--light); border-top: 1px solid var(--border); }
    .back-inner { max-width: 860px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
    .back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: var(--blue); transition: gap 0.2s; }
    .back-link:hover { gap: 12px; }

    /* ══════════════════════════════════════════════
       WEEKLY REVIEW
    ══════════════════════════════════════════════ */
    .subscribe-hero { padding: 80px 48px; background: var(--light); }
    .subscribe-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .subscribe-text h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -1.5px; line-height: 1.12; color: var(--dark); margin-bottom: 16px; }
    .subscribe-text p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 24px; }
    .subscribe-bullets { display: flex; flex-direction: column; gap: 10px; }
    .subscribe-bullet { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--mid); }
    .subscribe-bullet::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .subscribe-form-card { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 12px 40px rgba(27,58,140,0.08); border: 1px solid var(--border); }
    .subscribe-form-card h3 { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); letter-spacing: -0.3px; margin-bottom: 6px; }
    .subscribe-form-card .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
    .form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); transition: border-color 0.2s; outline: none; }
    .form-input:focus { border-color: var(--blue); }
    .checkbox-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .checkbox-item { display: flex; align-items: flex-start; gap: 10px; }
    .checkbox-item input[type="checkbox"] { margin-top: 2px; accent-color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; }
    .checkbox-item label { font-size: 0.85rem; color: var(--mid); cursor: pointer; line-height: 1.5; }
    .checkbox-item label strong { font-weight: 700; color: var(--dark); }
    .form-submit { width: 100%; padding: 14px; background: var(--orange); color: var(--white); font-size: 0.975rem; font-weight: 700; border: none; border-radius: 9px; cursor: pointer; transition: background 0.2s, transform 0.2s; }
    .form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
    .issues-section { padding: 80px 48px; background: var(--white); }
    .issues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 0; }
    .issue-card { padding: 24px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; display: flex; align-items: flex-start; gap: 18px; }
    .issue-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(27,58,140,0.08); }
    .issue-num-badge { width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px; background: var(--blue-deeper); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 0.7rem; color: var(--orange); }
    .issue-meta { flex: 1; }
    .issue-title { font-family: 'Sora', sans-serif; font-size: 0.93rem; font-weight: 700; color: var(--dark); letter-spacing: -0.2px; margin-bottom: 4px; }
    .issue-date { font-size: 0.76rem; color: var(--muted); margin-bottom: 8px; }
    .issue-link { font-size: 0.78rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
    .issue-link:hover { gap: 9px; }
    .archive-section { padding: 80px 48px; background: var(--light); }
    .archive-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 48px; }
    .archive-year { padding: 20px 16px; background: var(--white); border-radius: 12px; border: 1px solid var(--border); text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
    .archive-year:hover { border-color: var(--orange); background: var(--orange-light); }
    .archive-year .year { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); }
    .archive-year .count { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }

    /* ── Article content formatting (weekly review imports) ── */
    .article-content strong, .article-content b { color: var(--dark); font-weight: 700; }
    .article-content em, .article-content i { color: var(--orange); font-style: italic; }
    .article-content a { color: var(--blue); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(27,58,140,0.2); transition: border-color 0.2s; }
    .article-content a:hover { border-color: var(--blue); }
    .article-content ul, .article-content ol { margin: 0 0 24px 24px; font-size: 1.05rem; color: var(--dark); line-height: 1.88; }
    .article-content li { margin-bottom: 8px; }
    .article-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 24px 0; }
    .article-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
    .article-content p:empty, .article-content p br:only-child { display: none; }
    .article-content br + br { display: none; }

    /* ── Article responsive ── */
    @media (max-width: 860px) {
        .article-layout { grid-template-columns: 1fr; gap: 40px; }
        .article-sidebar { position: static; }
        .article-hero-inner { padding: 80px 24px 40px; }
        .article-body-section { padding: 40px 24px 60px; }
        .article-hero { min-height: 380px; }
        .back-section { padding: 32px 24px; }
    }
    @media (max-width: 480px) {
        .article-hero h1 { font-size: 1.5rem; letter-spacing: -0.8px; }
        .article-hero { min-height: 320px; }
        .article-content p { font-size: 0.95rem; }
        .highlight-stats { grid-template-columns: 1fr; }
    }
