    :root {
      --bg: #0b1220;
      --bg-2: #111827;
      --panel: rgba(15, 23, 42, 0.82);
      --card: #ffffff;
      --text: #e5e7eb;
      --muted: #cbd5e1;
      --dark: #0f172a;
      --line: rgba(255,255,255,0.14);
      --accent: #d62828;
      --accent-2: #2563eb;
      --shadow: 0 18px 45px rgba(0,0,0,0.24);
      --radius: 20px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Lato', sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #08101d 0%, #101827 100%);
      line-height: 1.6;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .topbar {
      background: #050b14;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 0.92rem;
      color: var(--muted);
    }

    .topbar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      padding: 8px 0;
    }

    .topbar .left,
    .topbar .right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(14px);
      background: rgba(7, 12, 22, 0.84);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 78px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
      box-shadow: 0 8px 18px rgba(0,0,0,0.25);
      position: relative;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      background: rgba(255,255,255,0.14);
      transform: rotate(-14deg);
    }

    .brand-mark::before {
      width: 24px;
      height: 72px;
      left: 9px;
      top: -10px;
    }

    .brand-mark::after {
      width: 12px;
      height: 46px;
      right: 6px;
      top: 0;
    }

    .brand-text {
      min-width: 0;
    }

    .brand-text strong {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      line-height: 1.1;
      letter-spacing: 0.02em;
      color: #fff;
    }

    .brand-text span {
      display: block;
      font-size: 0.84rem;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 22px;
      list-style: none;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav a {
      color: #f8fafc;
      font-weight: 700;
      font-size: 0.95rem;
      transition: color .2s ease;
    }

    nav a:hover,
    nav a:focus-visible { color: #93c5fd; }

    .hero {
      position: relative;
      min-height: 88vh;
      display: grid;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5,9,18,0.86) 0%, rgba(5,9,18,0.70) 42%, rgba(5,9,18,0.30) 100%),
        url('images/hero-pool.jpg') center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(37,99,235,0.16), transparent 35%), radial-gradient(circle at bottom left, rgba(214,40,40,0.18), transparent 30%);
      z-index: -1;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 36px;
      align-items: center;
      padding: 72px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.14);
      color: #dbeafe;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .hero h1 {
      margin: 18px 0 14px;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4.5rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      color: #fff;
    }

    .hero h1 span {
      display: block;
      color: #93c5fd;
    }

    .hero p {
      margin: 0 0 24px;
      max-width: 700px;
      font-size: 1.08rem;
      color: #dbe4ef;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: 0.02em;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      box-shadow: var(--shadow);
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #ef4444);
      color: #fff;
    }

    .btn-secondary {
      background: rgba(255,255,255,0.1);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: none;
    }

    .hero-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 24px;
      padding: 24px;
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
    }

    .hero-card img {
      border-radius: 18px;
      aspect-ratio: 4 / 4.4;
      object-fit: cover;
      width: 100%;
      margin-bottom: 18px;
    }

    .hero-card h2 {
      margin: 0 0 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.35rem;
      color: #fff;
    }

    .hero-points {
      display: grid;
      gap: 10px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      color: #dbeafe;
    }

    .hero-points li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .hero-points li::before {
      content: "•";
      color: #60a5fa;
      font-weight: 900;
    }

    section {
      padding: 88px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-block;
      font-size: 0.84rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #93c5fd;
      margin-bottom: 10px;
    }

    .section-head h2 {
      margin: 0 0 12px;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.8rem, 3vw, 3rem);
      line-height: 1.05;
      color: #fff;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .about {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(8,15,27,0.88) 0%, rgba(8,15,27,0.82) 46%, rgba(8,15,27,0.70) 100%),
        url('images/about-background.jpg') center/cover no-repeat;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: stretch;
    }

    .about-card,
    .timeline-card,
    .contact-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: 28px;
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow);
    }

    .about-card p,
    .timeline-card p,
    .timeline-card li,
    .contact-card p {
      color: #e2e8f0;
    }

    .about-lead {
      font-size: 1.08rem;
      color: #fff;
    }

    .timeline {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 14px;
    }

    .timeline li {
      padding: 14px 0 0 18px;
      border-top: 1px solid rgba(255,255,255,0.1);
      position: relative;
    }

    .timeline li:first-child { border-top: 0; padding-top: 0; }

    .timeline li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 20px;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(135deg, #ef4444, #3b82f6);
      box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
    }

    .timeline li:first-child::before { top: 6px; }

    .timeline strong {
      display: block;
      font-family: 'Montserrat', sans-serif;
      color: #fff;
      margin-bottom: 4px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .service-card {
      background: #fff;
      color: var(--dark);
      border-radius: 18px;
      padding: 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(15,23,42,0.08);
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.08rem;
    }

    .service-card p {
      margin: 0;
      color: #334155;
      font-size: 0.98rem;
    }

    .projects {
      background: linear-gradient(180deg, #0e1626 0%, #0b1220 100%);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .project-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .project-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .project-card .copy {
      padding: 18px 18px 20px;
    }

    .project-card h3 {
      margin: 0 0 8px;
      font-family: 'Montserrat', sans-serif;
      color: #fff;
      font-size: 1.08rem;
    }

    .project-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.97rem;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-card h3,
    .contact-panel h3 {
      margin: 0 0 12px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.3rem;
      color: #fff;
    }

    .contact-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 14px;
    }

    .contact-list li {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
    }

    .contact-list strong {
      display: block;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #93c5fd;
      margin-bottom: 4px;
    }

    .contact-panel {
      background: #fff;
      color: var(--dark);
      border-radius: 20px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .contact-panel h3 { color: var(--dark); }

    .contact-panel p,
    .contact-panel li {
      color: #334155;
    }

    .contact-panel ul {
      padding-left: 18px;
      margin: 14px 0 0;
    }

    .footer {
      padding: 28px 0 40px;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: #070d17;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .note {
      font-size: 0.92rem;
      color: #cbd5e1;
    }

    @media (max-width: 1100px) {
      .hero-inner,
      .about-grid,
      .contact-wrap,
      .services-grid,
      .projects-grid {
        grid-template-columns: 1fr 1fr;
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 760px) {
      .nav-wrap,
      .topbar-inner,
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul {
        justify-content: flex-start;
        gap: 14px;
      }

      .hero {
        min-height: auto;
      }

      .hero-inner,
      .about-grid,
      .contact-wrap,
      .services-grid,
      .projects-grid {
        grid-template-columns: 1fr;
      }

      .hero-card img {
        aspect-ratio: 4 / 3;
      }

      section { padding: 68px 0; }
    }
.process-section {
  margin-top: 3rem;
}

.process-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.process-grid + .process-grid {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}