/* === RESET & BASE === */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #0e2447;
      --navy-deep: #07152b;
      --navy-mid: #162f5a;
      --navy-light: #1e3f7a;
      --signal: #2563eb;
      --signal-light: #3b82f6;
      --ice: #f0f4fb;
      --white: #ffffff;
      --gray-100: #f3f4f6;
      --gray-200: #e5e7eb;
      --gray-400: #9ca3af;
      --gray-500: #6b7280;
      --gray-700: #374151;
      --gray-900: #111827;
      --font-body: 'Inter', -apple-system, sans-serif;
      --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--gray-900);
      background: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    /* === NAVIGATION === */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 2rem;
      height: 72px;
      display: flex;
      align-items: center;
      transition: background 0.35s ease, box-shadow 0.35s ease;
    }
    .nav-inner {
      width: 100%;
      max-width: 1280px;
      height: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 1.5rem;
    }
    .nav.scrolled {
      background: var(--navy);
      box-shadow: 0 1px 0 rgba(255,255,255,0.08);
    }
    .nav-logo img {
      height: 38px;
      width: auto;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.75rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.01em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.625rem 1.25rem;
      background: var(--signal);
      color: var(--white);
      font-size: 0.875rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
      border-radius: 0;
    }
    .nav-cta:hover { background: var(--signal-light); }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      transition: all 0.3s;
    }

    /* === HERO === */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--navy);
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(7,21,43,0.94) 0%, rgba(14,36,71,0.88) 34%, rgba(14,36,71,0.58) 62%, rgba(7,21,43,0.38) 100%),
        linear-gradient(180deg, rgba(7,21,43,0.16) 0%, rgba(7,21,43,0.62) 100%),
        url('/assets/img/projects/home-hero-background.png');
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
    }
    /* Grid texture overlay */
    .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: 80px 80px;
      background-position: -1px -1px;
    }
    /* Animated accent lines */
    .hero-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .hero-line {
      position: absolute;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(37,99,235,0.4), transparent);
      animation: linePulse 4s ease-in-out infinite;
    }
    .hero-line:nth-child(1) { left: 20%; height: 60%; top: 20%; animation-delay: 0s; }
    .hero-line:nth-child(2) { left: 50%; height: 40%; top: 30%; animation-delay: 1.5s; }
    .hero-line:nth-child(3) { left: 78%; height: 50%; top: 15%; animation-delay: 0.8s; }
    @keyframes linePulse {
      0%, 100% { opacity: 0; }
      50% { opacity: 1; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      padding-top: 72px;
      width: 100%;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 0.7s ease forwards 0.3s;
    }
    .hero-eyebrow-line {
      width: 40px;
      height: 1px;
      background: var(--signal);
    }
    .hero-eyebrow-text {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--signal-light);
    }
    .hero-title {
      font-size: clamp(2.4rem, 5.5vw, 4.5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--white);
      max-width: 14ch;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease forwards 0.5s;
    }
    .hero-title em {
      font-style: normal;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    }
    .hero-sub {
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      font-weight: 400;
      line-height: 1.65;
      color: rgba(255,255,255,0.65);
      max-width: 52ch;
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease forwards 0.7s;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.7s ease forwards 0.9s;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      background: var(--signal);
      color: var(--white);
      font-size: 0.9375rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover {
      background: var(--signal-light);
      transform: translateY(-1px);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      background: transparent;
      color: rgba(255,255,255,0.8);
      font-size: 0.9375rem;
      font-weight: 500;
      border: 1px solid rgba(255,255,255,0.25);
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.6);
      color: var(--white);
      transform: translateY(-1px);
    }

    /* Hero stats */
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid rgba(255,255,255,0.1);
      opacity: 0;
      animation: fadeIn 0.7s ease forwards 1.2s;
    }
    .hero-stat {
      padding: 1.75rem 0;
      padding-right: 2rem;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: var(--font-mono);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .hero-stat-num span {
      font-size: 0.65em;
      font-weight: 400;
      opacity: 0.7;
    }
    .hero-stat-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    /* === TRUST BAR === */
    .trust-bar {
      background: var(--navy-deep);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 1.25rem 2rem;
    }
    .trust-bar-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .trust-bar-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-bar-divider {
      width: 1px;
      height: 16px;
      background: rgba(255,255,255,0.12);
      flex-shrink: 0;
    }
    .trust-clients {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      flex-wrap: wrap;
    }
    .trust-client {
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .trust-client:hover { color: rgba(255,255,255,0.75); }

    /* === SECTION SHELL === */
    .section {
      padding: 6rem 2rem;
    }
    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .eyebrow-line {
      width: 32px;
      height: 2px;
      background: var(--signal);
      flex-shrink: 0;
    }
    .eyebrow-text {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--signal);
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.75rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--gray-900);
      margin-bottom: 1.25rem;
    }
    .section-title--white { color: var(--white); }
    .section-lead {
      font-size: 1.0625rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--gray-500);
      max-width: 60ch;
    }
    .section-lead--light { color: rgba(255,255,255,0.6); }

    /* === PROOF STRIP (after hero) === */
    .proof-strip {
      background: var(--white);
      padding: 5rem 2rem;
    }
    .proof-strip-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .proof-text h2 {
      font-size: clamp(1.75rem, 2.5vw, 2.5rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: var(--gray-900);
      margin-bottom: 1.25rem;
    }
    .proof-text p {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--gray-500);
      margin-bottom: 1rem;
    }
    .proof-text p strong { color: var(--gray-900); font-weight: 600; }
    .proof-claim {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-top: 2rem;
      padding: 1.25rem 1.5rem;
      background: var(--ice);
      border-left: 3px solid var(--signal);
    }
    .proof-claim-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      margin-top: 1px;
      color: var(--signal);
    }
    .proof-claim p {
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--gray-700);
      line-height: 1.5;
      margin: 0;
    }
    .proof-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--gray-200);
    }
    .proof-metric {
      background: var(--white);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
    }
    .proof-metric-num {
      font-family: var(--font-mono);
      font-size: 2.25rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1;
    }
    .proof-metric-label {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--gray-500);
      line-height: 1.4;
    }
    .proof-metric-sub {
      font-size: 0.75rem;
      color: var(--gray-400);
    }

    /* === SERVICES === */
    .services {
      background: var(--navy);
      padding: 6rem 2rem;
    }
    .services-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
      margin-bottom: 4rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.08);
    }
    .service-card {
      background: var(--navy);
      padding: 2.5rem;
      position: relative;
      transition: background 0.25s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--signal);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .service-card:hover { background: var(--navy-mid); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 1.5rem;
      color: var(--signal-light);
    }
    .service-num {
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 500;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
    }
    .service-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.875rem;
      line-height: 1.3;
    }
    .service-desc {
      font-size: 0.9rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.55);
      margin-bottom: 1.5rem;
    }
    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .service-tag {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      padding: 0.25rem 0.6rem;
      border: 1px solid rgba(255,255,255,0.12);
    }

    /* === PROJECTS === */
    .projects {
      background: var(--white);
      padding: 6rem 2rem;
    }
    .projects-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .projects-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--gray-200);
      margin-bottom: 1px;
    }
    .project-card {
      background: var(--white);
      padding: 2.5rem;
      position: relative;
      transition: box-shadow 0.25s;
      cursor: default;
    }
    .project-card:hover {
      box-shadow: 0 8px 40px rgba(14,36,71,0.1);
      z-index: 1;
    }
    .project-status {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.25rem;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
    }
    .status-dot--complete { background: #059669; }
    .status-dot--progress {
      background: #d97706;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .status-text {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .status-text--complete { color: #059669; }
    .status-text--progress { color: #d97706; }
    .project-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 0.375rem;
      line-height: 1.25;
    }
    .project-client {
      font-size: 0.8rem;
      color: var(--gray-400);
      font-weight: 500;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }
    .project-desc {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--gray-500);
      margin-bottom: 1.75rem;
    }
    .project-stats {
      display: flex;
      gap: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--gray-100);
    }
    .project-stat-num {
      font-family: var(--font-mono);
      font-size: 1.375rem;
      font-weight: 600;
      color: var(--navy);
      display: block;
      line-height: 1;
      margin-bottom: 0.25rem;
    }
    .project-stat-label {
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--gray-400);
    }
    .project-location {
      position: absolute;
      top: 2.5rem;
      right: 2.5rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-400);
    }
    .projects-cta-row {
      background: var(--gray-200);
      padding: 1px;
    }
    .projects-cta-inner {
      background: var(--white);
      padding: 2rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }
    .projects-cta-text {
      font-size: 0.9375rem;
      color: var(--gray-500);
    }
    .projects-cta-text strong { color: var(--gray-900); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border: 1.5px solid var(--navy);
      color: var(--navy);
      font-size: 0.875rem;
      font-weight: 600;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .btn-outline:hover { background: var(--navy); color: var(--white); }

    /* === DELIVERY MODEL === */
    .delivery {
      background: var(--navy-deep);
      padding: 6rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .delivery::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .delivery-inner {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .delivery-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
      align-items: start;
    }
    .delivery-phases {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
    }
    .delivery-phases::before {
      content: '';
      position: absolute;
      top: 2rem;
      left: 2rem;
      right: 2rem;
      height: 1px;
      background: rgba(255,255,255,0.08);
    }
    .phase {
      padding: 0 1.5rem 2rem 0;
      position: relative;
    }
    .phase-num {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--signal-light);
      margin-bottom: 1.25rem;
      background: var(--navy-deep);
      position: relative;
      z-index: 1;
    }
    .phase-title {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.625rem;
    }
    .phase-desc {
      font-size: 0.82rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.4);
    }
    .delivery-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.06);
      margin-top: 4rem;
    }
    .pillar {
      background: rgba(255,255,255,0.03);
      padding: 2rem;
    }
    .pillar-title {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.625rem;
    }
    .pillar-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.45);
    }

    /* === WHY MCPOWER === */
    .why {
      background: var(--ice);
      padding: 6rem 2rem;
    }
    .why-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .why-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
      align-items: end;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--gray-200);
    }
    .why-item {
      background: var(--white);
      padding: 2rem;
      transition: transform 0.2s;
    }
    .why-item:hover { transform: translateY(-2px); }
    .why-item-marker {
      font-family: var(--font-mono);
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--signal);
      letter-spacing: 0.08em;
      margin-bottom: 0.75rem;
      display: block;
    }
    .why-item-title {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 0.5rem;
    }
    .why-item-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--gray-500);
    }

    /* === TEAM === */
    .team {
      background: var(--white);
      padding: 6rem 2rem;
    }
    .team-inner {
      max-width: 1280px;
      margin: 0 auto;
    }
    .team-header {
      margin-bottom: 4rem;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--gray-200);
    }
    .team-card {
      background: var(--white);
      padding: 2.5rem;
    }
    .team-avatar {
      width: 52px;
      height: 52px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 1.5rem;
    }
    .team-role {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--signal);
      margin-bottom: 0.375rem;
    }
    .team-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 1rem;
    }
    .team-bio {
      font-size: 0.875rem;
      line-height: 1.7;
      color: var(--gray-500);
      margin-bottom: 1.25rem;
    }
    .team-certs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.375rem;
    }
    .team-cert {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--gray-500);
      padding: 0.2rem 0.5rem;
      border: 1px solid var(--gray-200);
      text-transform: uppercase;
    }

    /* === CERTIFICATIONS === */
    .certs {
      background: var(--gray-100);
      padding: 4rem 2rem;
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
    }
    .certs-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .certs-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gray-400);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .certs-divider {
      width: 1px;
      height: 20px;
      background: var(--gray-300);
      flex-shrink: 0;
    }
    .certs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .cert-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.875rem;
      background: var(--white);
      border: 1px solid var(--gray-200);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gray-700);
      letter-spacing: 0.02em;
      transition: border-color 0.2s;
    }
    .cert-badge:hover { border-color: var(--navy); }
    .cert-dot {
      width: 6px;
      height: 6px;
      background: var(--signal);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* === CONTACT === */
    .contact {
      background: var(--navy);
      padding: 6rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .contact::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .contact-inner {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: start;
    }
    .contact-left h2 {
      font-size: clamp(1.75rem, 2.5vw, 2.5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin-bottom: 1rem;
    }
    .contact-left p {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.55);
      margin-bottom: 2.5rem;
    }
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .contact-item {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .contact-item-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
    }
    .contact-item-value {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.8);
      font-weight: 500;
    }
    .contact-item-value a {
      color: rgba(255,255,255,0.8);
      transition: color 0.2s;
    }
    .contact-item-value a:hover { color: var(--white); }
    .contact-right {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .contact-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 2rem;
      transition: background 0.2s;
    }
    .contact-card:hover { background: rgba(255,255,255,0.08); }
    .contact-card-title {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .contact-card-desc {
      font-size: 0.85rem;
      line-height: 1.6;
      color: rgba(255,255,255,0.45);
    }

    /* === FOOTER === */
    .footer {
      background: var(--navy-deep);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 2rem;
    }
    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .footer-logo img { height: 28px; opacity: 0.6; }
    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }
    .footer-links {
      display: flex;
      gap: 1.5rem;
    }
    .footer-links a {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.6); }

    /* === SCROLL ANIMATIONS === */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--navy);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }
    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: -0.01em;
    }
    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      background: none;
      border: none;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
    }

    /* === RESPONSIVE === */
    @media (max-width: 1024px) {
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .hero-stat { padding: 1.5rem 1.5rem 1.5rem 0; }
      .hero-stat:nth-child(2) { border-right: none; }
      .proof-strip-inner,
      .services-header,
      .delivery-header,
      .why-header,
      .contact-inner { grid-template-columns: 1fr; gap: 1.75rem; }
      .delivery-phases { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
      .delivery-phases::before { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .projects-header { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 768px) {
      .nav {
        background: var(--navy) !important;
        box-shadow: 0 1px 0 rgba(255,255,255,0.08) !important;
        height: 72px !important;
      }
      .nav-links, .nav-cta { display: none; }
      .nav-inner { grid-template-columns: auto auto; justify-content: space-between; }
      .nav-hamburger { display: flex; }
      .section { padding: 4rem 1.5rem; }
      .hero-content { padding: 0 1.5rem; padding-top: 72px; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); }
      .hero-stat { border-right: none; padding-right: 0; }
      .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); padding-right: 1rem; }
      .proof-metrics { grid-template-columns: 1fr 1fr; }
      .projects-grid { grid-template-columns: 1fr; }
      .project-location { position: static; margin-bottom: 0.75rem; }
      .projects-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
      }
      .projects-cta-inner .btn-outline {
        width: 100%;
        justify-content: center;
      }
      .team-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .delivery-phases { grid-template-columns: 1fr 1fr; }
      .delivery-pillars { grid-template-columns: 1fr; }
      .certs-inner { gap: 1.5rem; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .proof-strip { padding: 3.5rem 1.5rem; }
    }

    @media (max-width: 480px) {
      .hero-title { max-width: none; }
      .hero-stats { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .delivery-phases { grid-template-columns: 1fr; }
      .trust-bar-inner { gap: 1rem; }
      .trust-clients { gap: 1.5rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .reveal { opacity: 1; transform: none; }
    }

.hero-photo { display: none; }
    .project-card { overflow: hidden; }
    .project-card::before {
      content: '';
      display: block;
      width: calc(100% + 5rem);
      aspect-ratio: 16 / 9;
      min-height: 240px;
      margin: -2.5rem -2.5rem 2rem;
      background: var(--gray-200) center / cover no-repeat;
      border-bottom: 1px solid var(--gray-200);
    }
    .project-card:nth-child(1)::before { background-image: linear-gradient(rgba(14,36,71,.08), rgba(14,36,71,.08)), url('/assets/img/projects/project-01.jpg'); }
    .project-card:nth-child(2)::before { background-image: linear-gradient(rgba(14,36,71,.08), rgba(14,36,71,.08)), url('/assets/img/projects/project-03.jpg'); }
    .project-card:nth-child(3)::before { background-image: linear-gradient(rgba(14,36,71,.08), rgba(14,36,71,.08)), url('/assets/img/projects/project-06.jpg'); }
    .project-card:nth-child(4)::before { background-image: linear-gradient(rgba(14,36,71,.08), rgba(14,36,71,.08)), url('/assets/img/projects/project-02.jpg'); }
    .services::after {
      content: '';
      display: block;
      max-width: 1280px;
      height: 260px;
      margin: 4rem auto 0;
      background: linear-gradient(rgba(14,36,71,.42), rgba(14,36,71,.42)), url('/assets/img/projects/project-05.jpg') center / cover no-repeat;
      border: 1px solid rgba(255,255,255,.08);
    }
    .certs::after {
      content: '';
      display: block;
      max-width: 1280px;
      /* height: 180px; */
      margin: 2.5rem auto 0;
      /* background: url('/assets/img/proof/proof-02.png') center / contain no-repeat; */
      opacity: .18;
      pointer-events: none;
    }
    @media (max-width: 900px) {
      .hero-bg { background-position: 62% center; }
      .project-card::before { min-height: 220px; aspect-ratio: 4 / 3; }
      .services::after { margin-left: 2rem; margin-right: 2rem; height: 180px; }
    }

*, *::before, *::after { letter-spacing: 0 !important; }
    .hero-title { font-size: 4.25rem; line-height: 0.98; max-width: 980px; }
    .section-title, .projects-title, .why-title, .contact-title { font-size: 2.5rem; line-height: 1.08; }
    .metric-number, .project-metric-value { font-size: 2.35rem; line-height: 1; }
    .hero-subtitle { font-size: 1.15rem; line-height: 1.7; max-width: 640px; }
    .nav-logo img { max-width: 238px; height: auto; }
    .nav.scrolled .nav-logo img, .nav.menu-open .nav-logo img { filter: none; }
    .project-card, .service-card, .why-card, .team-card, .cert-card, .contact-card, .btn-primary, .nav-cta { border-radius: 4px !important; }
    .project-card::before { min-height: 240px; }
    .hero-actions .btn-primary { display: none !important; }
    .proof-item img { object-fit: cover; }
    @media (max-width: 1100px) {
      .hero-title { font-size: 3.25rem; }
      .section-title, .projects-title, .why-title, .contact-title { font-size: 2.15rem; }
    }
    @media (max-width: 700px) {
      .hero-title { font-size: 2.45rem; }
      .hero-subtitle { font-size: 1rem; }
      .section-title, .projects-title, .why-title, .contact-title { font-size: 1.85rem; }
      .metric-number, .project-metric-value { font-size: 1.9rem; }
      .nav-logo img { max-width: 190px; }
      .project-card::before { width: calc(100% + 3.5rem); min-height: 230px; margin: -1.75rem -1.75rem 1.5rem; }
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background-color: var(--signal);
      color: #fff;
      border: none;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(14, 36, 71, 0.2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s, transform 0.2s, background-color 0.2s;
    }
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    .back-to-top:hover {
      background-color: var(--signal-light);
      transform: translateY(-2px);
    }
    .back-to-top svg {
      width: 20px;
      height: 20px;
      stroke-width: 2.5;
    }
    @media (max-width: 768px) {
      .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
      }
    }