  :root {
      --bg: #ffffff;
      --bg-soft: #f5f8fb;
      --card: rgba(255, 255, 255, 0.78);
      --card-border: rgba(13, 55, 104, 0.12);
      --text: #102033;
      --muted: #627086;
      --blue: #02193f;
      --blue-dark: #0b2f5f;
      --blue-mid: #386caa;
      --blue-soft: rgba(18, 84, 151, 0.10);
      --shadow: 0 28px 80px rgba(13, 55, 104, 0.12);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background:
        radial-gradient(circle at 12% 8%, rgba(18, 84, 151, 0.10), transparent 34%),
        radial-gradient(circle at 90% 18%, rgba(18, 84, 151, 0.08), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 42%, #ffffff 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(13, 55, 104, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 55, 104, 0.045) 1px, transparent 1px);
      background-size: 68px 68px;
      mask-image: radial-gradient(circle at center, black, transparent 82%);
      z-index: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site {
      position: relative;
      z-index: 1;
    }

    section {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
      scroll-margin-top: 96px;
    }

    .nav {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: min(calc(100% - 32px), var(--max));
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border: 1px solid var(--card-border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(22px);
      box-shadow: 0 18px 54px rgba(13, 55, 104, 0.10);
      z-index: 20;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--blue-dark);
    }

    .brand-logo {
      width: 42px;
      height: 42px;
      object-fit: contain;
      background: transparent;
      border: none;
      box-shadow: none;
    }

    .brand-word {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .brand-full-logo {
      width: 170px;
      height: auto;
      display: block;
      object-fit: contain;
    }

.brand-word small {
      margin-top: 3px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: rgba(16, 32, 51, 0.56);
    }

    .nav-links {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .nav-links a,
    .nav-cta,
    .btn {
      border: 1px solid transparent;
      transition: 0.28s ease;
    }

    .nav-links a {
      color: var(--muted);
      padding: 10px 12px;
      border-radius: 999px;
      font-size: 14px;
    }

    .nav-links a:hover {
      color: var(--blue-dark);
      border-color: var(--card-border);
      background: rgba(18, 84, 151, 0.07);
    }

    .nav-cta {
      padding: 11px 17px;
      border-radius: 999px;
      background: rgba(18, 84, 151, 0.10);
      border-color: rgba(18, 84, 151, 0.22);
      color: var(--blue-dark);
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 0 30px rgba(18, 84, 151, 0.08);
    }

    .nav-cta:hover,
    .btn.primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 42px rgba(18, 84, 151, 0.18);
    }

    .hero {
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 140px 0 80px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 13px;
      border: 1px solid rgba(18, 84, 151, 0.22);
      background: rgba(18, 84, 151, 0.08);
      border-radius: 999px;
      color: var(--blue-dark);
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 24px;
      font-weight: 700;
    }

    .eyebrow span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 22px rgba(18, 84, 151, 0.45);
    }

    h1 {
      font-size: clamp(52px, 8vw, 108px);
      line-height: 0.9;
      letter-spacing: -0.075em;
      max-width: 820px;
    }

    .gradient-text {
      background: linear-gradient(90deg, var(--blue-dark), var(--blue) 55%, #5f94c9);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      margin-top: 28px;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.7;
      max-width: 650px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 36px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 20px;
      border-radius: 999px;
      font-weight: 700;
      backdrop-filter: blur(18px);
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue));
      color: #ffffff;
      box-shadow: 0 20px 60px rgba(18, 84, 151, 0.20);
    }

    .btn.secondary {
      background: rgba(255,255,255,0.74);
      border-color: var(--card-border);
      color: var(--blue-dark);
    }

    .btn.secondary:hover {
      transform: translateY(-2px);
      background: rgba(18, 84, 151, 0.07);
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
      perspective: 900px;
    }

    .tower-card {
      position: absolute;
      inset: 0;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(13, 55, 104, 0.12);
      box-shadow: var(--shadow);
      overflow: hidden;
      transform: rotateY(-8deg) rotateX(3deg);
      background: #eaf2fb;
    }

    .tower-card::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(9, 45, 89, 0.42)),
        radial-gradient(circle at 70% 18%, rgba(255,255,255,0.24), transparent 30%);
      pointer-events: none;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.04);
      transition: opacity 1.2s ease, transform 6.5s ease;
      z-index: 1;
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .slide-dots {
      position: absolute;
      z-index: 3;
      left: 24px;
      bottom: 24px;
      display: flex;
      gap: 7px;
      padding: 9px 11px;
      border-radius: 999px;
      background: rgba(255,255,255,0.58);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.42);
    }

    .slide-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(11,47,95,0.28);
      transition: 0.3s ease;
    }

    .slide-dot.active {
      width: 22px;
      background: var(--blue-dark);
    }

    .floating-stat {
      position: absolute;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(13, 55, 104, 0.12);
      background: rgba(255, 255, 255, 0.76);
      backdrop-filter: blur(20px);
      box-shadow: 0 22px 70px rgba(13,55,104,0.12);
      z-index: 2;
      animation: float 5.5s ease-in-out infinite;
    }

    .floating-stat strong {
      font-size: 34px;
      display: block;
      letter-spacing: -0.05em;
      color: var(--blue-dark);
    }

    .floating-stat small {
      color: var(--muted);
    }

    .stat-one { left: -28px; top: 80px; }
    .stat-two { right: -20px; bottom: 94px; animation-delay: -2s; }

    .section {
      padding: 92px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: end;
      margin-bottom: 36px;
    }

    .section-head h2 {
      font-size: clamp(36px, 5vw, 68px);
      line-height: 0.95;
      letter-spacing: -0.06em;
      max-width: 720px;
    }

    .section-head p {
      color: var(--muted);
      max-width: 470px;
      line-height: 1.7;
    }

    .glass-panel {
      border: 1px solid var(--card-border);
      background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(246,250,255,0.78));
      border-radius: var(--radius-xl);
      backdrop-filter: blur(22px);
      box-shadow: var(--shadow);
    }

    .about-panel {
      padding: 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .about-panel img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      border-radius: 26px;
      filter: saturate(0.86) contrast(1.05);
    }

    .about-copy {
      padding: 18px;
      align-self: center;
    }

    .about-copy h3 {
      font-size: 34px;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
      color: var(--blue-dark);
    }

    .about-copy p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .pill {
      padding: 10px 13px;
      border-radius: 999px;
      background: rgba(18, 84, 151, 0.07);
      border: 1px solid rgba(18, 84, 151, 0.12);
      color: var(--blue-dark);
      font-size: 14px;
      font-weight: 700;
    }

    .stand-grid,
    .service-grid,
    .values-grid,
    .stats-grid,
    .testimonial-grid,
    .policy-grid {
      display: grid;
      gap: 16px;
    }

    .stand-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .service-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
      grid-template-columns: repeat(5, 1fr);
    }

    .testimonial-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .policy-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .card {
      padding: 26px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--card-border);
      background: rgba(255,255,255,0.78);
      box-shadow: 0 18px 46px rgba(13,55,104,0.07);
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      background: #ffffff;
      box-shadow: 0 24px 80px rgba(13,55,104,0.14);
    }

    .card .num,
    .card .label {
      color: var(--blue);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 28px;
      font-weight: 800;
    }

    .card h3 {
      font-size: 24px;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
      color: var(--blue-dark);
    }

    .card p,
    .card li {
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
    }

    .card ul {
      padding-left: 18px;
      display: grid;
      gap: 8px;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .large-card {
      padding: 34px;
      border-radius: var(--radius-xl);
    }

    .large-card h3 {
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1;
      letter-spacing: -0.06em;
      margin-bottom: 20px;
    }

    .project-marquee {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 18px;
    }

    .project-card {
      min-height: 420px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
      border: 1px solid var(--card-border);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }

    .project-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 15%, rgba(7,34,69,0.74));
    }

    .project-info {
      position: absolute;
      z-index: 2;
      left: 26px;
      right: 26px;
      bottom: 26px;
      color: white;
    }

    .project-info span {
      color: #dbeeff;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .project-info h3 {
      margin-top: 9px;
      font-size: 32px;
      letter-spacing: -0.05em;
    }

    .stat-box {
      padding: 28px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--card-border);
      background: rgba(255,255,255,0.78);
      box-shadow: 0 18px 46px rgba(13,55,104,0.07);
    }

    .stat-box strong {
      font-size: 54px;
      letter-spacing: -0.025em;
      color: var(--blue-dark);
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      display: inline-block;
    }

    .stat-box p {
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.5;
    }

    .credentials-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }

    .credential {
      min-height: 110px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 20px;
      border-radius: 22px;
      border: 1px solid var(--card-border);
      background: rgba(255,255,255,0.78);
      color: var(--blue-dark);
      font-weight: 800;
      box-shadow: 0 14px 35px rgba(13,55,104,0.06);
    }


    .work-gallery {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }

    .work-item {
      min-height: 310px;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--card-border);
      background-size: cover;
      background-position: center;
      box-shadow: 0 18px 46px rgba(13,55,104,0.08);
      transition: 0.35s ease;
    }

    .work-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 80px rgba(13,55,104,0.16);
    }

    .work-item.large {
      grid-column: span 7;
      min-height: 470px;
    }

    .work-item.medium {
      grid-column: span 5;
      min-height: 470px;
    }

    .work-item.small {
      grid-column: span 4;
    }

    .work-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(7,34,69,0.72));
    }

    .work-caption {
      position: absolute;
      z-index: 2;
      left: 22px;
      right: 22px;
      bottom: 22px;
      color: #ffffff;
    }

    .work-caption span {
      display: block;
      color: #dbeeff;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .work-caption h3 {
      font-size: 24px;
      line-height: 1.05;
      letter-spacing: -0.04em;
    }


    .accordion-section {
      padding: 10px 0 92px;
    }

    .accordion-panel {
      border-top: 1px solid rgba(16, 32, 51, 0.22);
      max-width: 980px;
      margin: 0 auto;
    }

    .accordion-item {
      border-bottom: 1px solid rgba(16, 32, 51, 0.22);
    }

    .accordion-toggle {
      width: 100%;
      border: none;
      outline: none;
      background: transparent;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 26px 0;
      cursor: pointer;
      font-family: inherit;
      font-size: 21px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-align: left;
    }

    .accordion-icon {
      width: 12px;
      height: 12px;
      border-right: 2px solid var(--text);
      border-bottom: 2px solid var(--text);
      transform: rotate(45deg);
      transition: transform 0.25s ease;
      flex: 0 0 auto;
      margin-right: 6px;
    }

    .accordion-content {
      color: #555d69;
      line-height: 1.75;
      font-size: 17px;
      max-width: 920px;
      padding: 0;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.38s ease, opacity 0.28s ease, padding 0.28s ease;
    }

    .accordion-item.active .accordion-content {
      max-height: 520px;
      opacity: 1;
      padding: 0 0 28px;
    }

    .accordion-item.active .accordion-icon {
      transform: rotate(-135deg);
    }

    .accordion-content ul {
      padding-left: 24px;
      display: grid;
      gap: 12px;
    }

    .accordion-content li {
      font-weight: 700;
    }

    .contact-panel {
      padding: 54px;
      display: grid;
      grid-template-columns: 1fr 0.82fr;
      gap: 36px;
      align-items: center;
      background:
        radial-gradient(circle at 85% 0%, rgba(18,84,151,0.13), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,250,255,0.80));
    }

    .contact-panel h2 {
      font-size: clamp(42px, 6vw, 84px);
      line-height: 0.92;
      letter-spacing: -0.07em;
      margin-bottom: 20px;
    }

    .contact-panel p {
      color: var(--muted);
      line-height: 1.75;
      max-width: 600px;
    }

    .contact-card {
      padding: 24px;
      border-radius: 26px;
      background: rgba(255,255,255,0.72);
      border: 1px solid var(--card-border);
      box-shadow: 0 18px 46px rgba(13,55,104,0.07);
    }

    .contact-line {
      padding: 16px 0;
      border-bottom: 1px solid rgba(13,55,104,0.10);
    }

    .contact-line:last-child {
      border-bottom: none;
    }

    .contact-line small {
      color: var(--muted);
      display: block;
      margin-bottom: 6px;
    }

    .contact-line strong {
      color: var(--blue-dark);
    }

    footer {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
      padding: 32px 0 44px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: var(--muted);
      font-size: 14px;
    }

    .reveal {
      opacity: 1;
      transform: none;
      transition: 0.8s cubic-bezier(.2,.8,.2,1);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }

    @media (max-width: 1100px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .about-panel,
      .contact-panel,
      .project-marquee,
      .mission-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 480px;
      }

      .stand-grid,
      .service-grid,
      .values-grid,
      .stats-grid,
      .testimonial-grid,
      .policy-grid,
      .credentials-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .work-item.large,
      .work-item.medium,
      .work-item.small {
        grid-column: span 6;
      }

      .section-head {
        display: block;
      }

      .section-head p {
        margin-top: 18px;
      }
    }

    @media (max-width: 560px) {
      .hero {
        padding-top: 130px;
      }

      .stand-grid,
      .service-grid,
      .values-grid,
      .stats-grid,
      .testimonial-grid,
      .policy-grid,
      .credentials-strip {
        grid-template-columns: 1fr;
      }

      .work-gallery {
        grid-template-columns: 1fr;
      }

      .work-item.large,
      .work-item.medium,
      .work-item.small {
        grid-column: span 1;
        min-height: 320px;
      }

      .about-panel,
      .contact-panel,
      .large-card {
        padding: 22px;
      }

      .floating-stat {
        display: none;
      }

      footer {
        flex-direction: column;
      }
    }
  
    /* HACFI-inspired fullscreen welcome hero */
    .hero.hacfi-hero {
      width: 100%;
      max-width: none;
      min-height: 100vh;
      padding: 0;
      display: block;
      position: relative;
      overflow: hidden;
      color: #ffffff;
      background: #06111d;
    }

    .hero-bg-slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-bg-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 1.2s ease, transform 7s ease;
    }

    .hero-bg-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-bg-slideshow::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg, rgba(2, 10, 22, 0.70), rgba(2, 10, 22, 0.38) 46%, rgba(2, 10, 22, 0.62)),
        linear-gradient(180deg, rgba(2, 10, 22, 0.16), rgba(2, 10, 22, 0.76));
      pointer-events: none;
    }

    .hacfi-hero-inner {
      position: relative;
      z-index: 3;
      width: calc(100% - 88px);
      margin: 0 auto;
      min-height: 100vh;
      padding: 118px 0 82px;
    }

    .hero-logo-corner {
      position: absolute;
      top: 28px;
      left: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ffffff;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 18px;
    }

    .hero-logo-corner img {
      width: 92px;
      height: 92px;
      object-fit: contain;
      filter: none;
      margin-right: -4px;
    }

    .hero-logo-corner small {
      display: block;
      margin-top: 4px;
      font-size: 12px;
      letter-spacing: 0.24em;
      color: rgba(255,255,255,0.76);
    }

    .hero-topline {
      position: absolute;
      top: 70px;
      right: 0;
      width: min(48vw, 650px);
      height: 2px;
      background: rgba(255,255,255,0.76);
    }

    .hero-mini-title {
      position: absolute;
      top: 98px;
      right: 0;
      width: min(48vw, 650px);
      font-size: 22px;
      font-weight: 800;
      line-height: 1.45;
      color: rgba(255,255,255,0.90);
      text-align: left;
    }

    .hero-mini-title span {
      display: block;
      color: #5f94c9;
      font-size: 26px;
      margin-top: 6px;
    }

    .hero-language {
      position: absolute;
      top: 31px;
      right: 0;
      font-size: 13px;
      font-weight: 800;
      color: rgba(255,255,255,0.86);
    }

    .hacfi-hero-copy {
      position: absolute;
      left: 0;
      bottom: 82px;
      max-width: 900px;
    }

    .hacfi-hero-copy h1 {
      color: #ffffff;
      font-size: clamp(58px, 9vw, 128px);
      line-height: 0.88;
      letter-spacing: -0.08em;
      text-shadow: 0 18px 50px rgba(0,0,0,0.28);
      max-width: 920px;
    }

    .hacfi-hero-copy h1 span {
      display: block;
      font-size: clamp(34px, 4.4vw, 58px);
      letter-spacing: -0.04em;
      margin-top: 32px;
    }

    .orange-mark {
      width: 46px;
      height: 12px;
      border-radius: 999px;
      background: #5f94c9;
      margin: 20px 0 26px;
      box-shadow: 0 0 28px rgba(95,148,201,0.42);
    }

    .hacfi-hero-copy p {
      color: rgba(255,255,255,0.92);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.6;
      max-width: 760px;
      margin: 0;
      font-weight: 600;
    }

    .hero-location {
      margin-top: 82px;
      color: rgba(255,255,255,0.88);
      font-size: 16px;
      font-weight: 600;
    }

    .side-menu {
      position: absolute;
      top: 112px;
      right: 28px;
      display: grid;
      gap: 17px;
      width: 240px;
    }

    .side-menu a {
      position: relative;
      display: block;
      color: rgba(255,255,255,0.90);
      font-size: 23px;
      font-weight: 850;
      padding-left: 36px;
      transition: 0.25s ease;
      text-shadow: 0 8px 24px rgba(0,0,0,0.30);
    }

    .side-menu a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 11px;
      height: 1px;
      background: rgba(255,255,255,0.70);
      transition: 0.25s ease;
    }

    .side-menu a:hover,
    .side-menu a.active {
      color: #5f94c9;
      transform: translateX(5px);
    }

    .side-menu a:hover::before,
    .side-menu a.active::before {
      width: 18px;
      background: #5f94c9;
    }

    .hero-arrows {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 4;
      display: grid;
      gap: 10px;
    }

    .hero-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.52);
      background: rgba(255,255,255,0.06);
      color: #ffffff;
      display: grid;
      place-items: center;
      font-size: 22px;
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: 0.25s ease;
    }

    .hero-arrow:hover {
      background: rgba(255,255,255,0.18);
      transform: translateY(-2px);
    }

    .main-nav-hidden-on-hero {
      display: none;
    }

    @media (max-width: 1000px) {
      .hacfi-hero-inner {
        width: min(calc(100% - 36px), 760px);
        padding: 112px 0 60px;
      }

      .hacfi-hero-copy {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 60px;
      }

      .side-menu,
      .hero-topline,
      .hero-mini-title,
      .hero-language {
        display: none;
      }

      .hero-logo-corner {
      position: absolute;
      top: 28px;
      left: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ffffff;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 18px;
    }

      .hacfi-hero-copy h1 {
        font-size: clamp(54px, 16vw, 94px);
      }

      .hero-location {
        margin-top: 46px;
      }
    }

  
    .animate-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .animate-in.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .animate-in,
      .animate-in.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

  
    /* FINAL SINGLE HERO - slideshow and welcome content in one page */
    .one-hero {
      width: 100%;
      min-height: 100vh;
      margin: 0;
      padding: 0;
      position: relative;
      overflow: hidden;
      background: #06111d;
      color: #ffffff;
      display: block;
    }

    .one-hero .hero-bg-slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: #06111d;
    }

    .one-hero .hero-bg-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.06);
      filter: brightness(1.06) saturate(1.02);
      transition: opacity 1.2s ease, transform 7s ease;
    }

    .one-hero .hero-bg-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .one-hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.10) 48%, rgba(0, 0, 0, 0.24)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28));
      pointer-events: none;
    }

    .one-hero-inner {
      position: relative;
      z-index: 2;
      width: min(calc(100% - 88px), 1340px);
      margin: 0 auto;
      min-height: 100vh;
    }

    .one-hero-logo {
      position: absolute;
      top: 28px;
      left: 0;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      color: #ffffff;
      text-decoration: none;
      text-shadow: 0 10px 30px rgba(0,0,0,0.35);
      z-index: 4;
      max-width: 230px;
    }

    .one-hero-logo img {
      object-fit: contain;
      display: block;
      width: 100%;
      height: auto;
    }

    .one-hero-logo .hero-full-logo {
      width: 230px;
      max-width: 100%;
      height: auto;
      margin-right: 0;
    }

    .one-hero-logo strong {
      display: block;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .one-hero-logo small {
      display: block;
      margin-top: 5px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.24em;
      color: rgba(255,255,255,0.78);
    }

    .one-hero-language {
      position: absolute;
      top: 34px;
      right: 0;
      color: rgba(255,255,255,0.88);
      font-size: 13px;
      font-weight: 850;
    }

    .one-hero-topline {
      position: absolute;
      top: 78px;
      right: 0;
      width: min(48vw, 650px);
      height: 2px;
      background: rgba(255,255,255,0.72);
    }

    .one-hero-mini {
      display: none;
    }

    .one-hero-mini span {
      display: none;
    }

    .one-hero-menu {
      position: absolute;
      top: 150px;
      right: 34px;
      width: min(48vw, 650px);
      display: grid;
      gap: 17px;
      justify-items: end;
      text-align: left;
    }

    .one-hero-menu a {
      position: relative;
      color: rgba(255,255,255,0.92);
      text-decoration: none;
      padding-left: 38px;
      font-size: 24px;
      font-weight: 900;
      text-shadow: 0 10px 30px rgba(0,0,0,0.38);
      transition: 0.25s ease;
      width: 260px;
      display: block;
    }

    .one-hero-menu a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 12px;
      height: 1px;
      background: rgba(255,255,255,0.72);
      transition: 0.25s ease;
    }

    .one-hero-menu a.active,
    .one-hero-menu a:hover {
      color: #5f94c9;
      transform: translateX(5px);
    }

    .one-hero-menu a.active::before,
    .one-hero-menu a:hover::before {
      width: 22px;
      background: #5f94c9;
    }

    .one-hero-copy {
      position: absolute;
      left: 0;
      bottom: 76px;
      max-width: 880px;
    }

    .one-hero-copy h1 {
      margin: 0;
      color: #ffffff;
      font-size: clamp(64px, 9vw, 132px);
      line-height: 0.9;
      letter-spacing: -0.08em;
      text-shadow: 0 18px 60px rgba(0,0,0,0.36);
    }

    .one-hero-copy h1 span {
      display: block;
      margin-top: 28px;
      font-size: clamp(36px, 4.7vw, 62px);
      letter-spacing: -0.04em;
    }

    .one-hero-mark {
      width: 48px;
      height: 11px;
      margin: 20px 0 26px;
      border-radius: 999px;
      background: #5f94c9;
      box-shadow: 0 0 28px rgba(95,148,201,0.42);
    }

    .one-hero-copy p {
      margin: 0;
      max-width: 780px;
      color: rgba(255,255,255,0.94);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.6;
      font-weight: 750;
      text-shadow: 0 12px 38px rgba(0,0,0,0.38);
    }

    .one-hero-location {
      margin-top: 70px;
      color: rgba(255,255,255,0.86);
      font-size: 16px;
      font-weight: 700;
      text-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

    .one-hero .hero-arrows {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 4;
      display: grid;
      gap: 10px;
    }

    .one-hero .hero-arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.56);
      background: rgba(255,255,255,0.08);
      color: #ffffff;
      display: grid;
      place-items: center;
      font-size: 22px;
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: 0.25s ease;
    }

    .one-hero .hero-arrow:hover {
      background: rgba(255,255,255,0.18);
      transform: translateY(-2px);
    }

    @media (max-width: 1050px) {
      .one-hero-inner {
        width: min(calc(100% - 36px), 760px);
      }

      .one-hero-topline,
      .one-hero-mini,
      .one-hero-menu,
      .one-hero-language {
        display: none;
      }

      .one-hero-copy {
        left: 0;
        right: 0;
        bottom: 58px;
      }

      .one-hero-copy h1 {
        font-size: clamp(56px, 16vw, 96px);
      }

      .one-hero-location {
        margin-top: 42px;
      }
    }

  
    .one-hero-copy .hero-quote {
      font-family: Georgia, "Times New Roman", Times, serif !important;
      font-style: italic;
      font-weight: 400 !important;
      letter-spacing: -0.025em;
      color: rgba(255,255,255,0.96) !important;
      font-size: clamp(30px, 3.5vw, 56px) !important;
      line-height: 1.12 !important;
      max-width: 980px !important;
      text-shadow: 0 14px 42px rgba(0,0,0,0.45);
    }

  
    @media (max-width: 1180px) {
      .stats-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 760px) {
      .stats-grid {
        grid-template-columns: 1fr;
      }
    }


    @media (max-width: 900px) {
      .one-hero-logo .hero-full-logo {
      width: 185px;
      max-width: 100%;
      height: auto;
      margin-right: 0;
    }

      .brand-full-logo {
        width: 140px;
      }
    }

    @media (max-width: 640px) {
      .one-hero-logo {
        top: 24px;
      }

      .one-hero-logo .hero-full-logo {
      width: 185px;
      max-width: 100%;
      height: auto;
      margin-right: 0;
    }

      .brand-full-logo {
        width: 120px;
      }
    }

  
    /* Logo clarity improvement */
    .one-hero-logo {
      padding: 14px 18px 12px 14px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.07));
      border: 1px solid rgba(255,255,255,0.22);
      backdrop-filter: blur(10px);
      box-shadow: 0 18px 55px rgba(0,0,0,0.22), 0 0 45px rgba(255,255,255,0.10);
    }

    .one-hero-logo .hero-full-logo {
      filter: brightness(1.28) contrast(1.18) saturate(1.08) drop-shadow(0 10px 24px rgba(0,0,0,0.35));
    }

  
    

  
    /* Clean top-left hero logo with no glass card */
    .one-hero-logo {
      position: absolute;
      top: 28px;
      left: 0;
      z-index: 4;
      display: flex !important;
      align-items: flex-start;
      justify-content: flex-start;
      max-width: 240px;
      padding: 0 !important;
      background: transparent !important;
      border: none !important;
      border-radius: 0 !important;
      backdrop-filter: none !important;
      box-shadow: none !important;
    }

    .one-hero-logo .hero-full-logo {
      width: 210px;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      margin: 0;
      filter: none !important;
    }

    @media (max-width: 900px) {
      .one-hero-logo .hero-full-logo {
        width: 180px;
      }
    }

    @media (max-width: 640px) {
      .one-hero-logo {
        top: 24px;
      }
      .one-hero-logo .hero-full-logo {
        width: 150px;
      }
    }

  
    .pill-row a.pill {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

  
    #what-we-do {
      scroll-margin-top: 40px;
    }

  

    .contact-socials {
      margin-top: 28px;
    }

    .contact-socials-label {
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .contact-socials-row {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .contact-social-link {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 44px;
      padding: 10px 15px;
      border: 1px solid var(--card-border);
      border-radius: 999px;
      background: rgba(255,255,255,0.62);
      color: var(--blue-dark);
      font-weight: 700;
      text-decoration: none;
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
    }

    .contact-social-link:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.92);
      box-shadow: 0 14px 34px rgba(18,84,151,0.14);
    }

    .contact-social-icon {
      width: 20px;
      height: 20px;
      display: block;
      flex: 0 0 auto;
    }