 :root {
      --navy: #0f172a;
      --navy-2: #111c35;
      --blue: #2563eb;
      --blue-dark: #1d4ed8;
      --teal: #14b8a6;
      --white: #ffffff;
      --bg: #f8fafc;
      --surface: #ffffff;
      --text: #1e293b;
      --muted: #64748b;
      --line: #e2e8f0;
      --shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
      --radius: 20px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .section {
      padding: 96px 0;
    }

    .section-light {
      background: var(--white);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--blue);
      font-weight: 800;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--teal);
    }

    .section-title {
      font-family: Manrope, Inter, sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.12;
      letter-spacing: -0.045em;
      color: var(--navy);
      max-width: 790px;
    }

    .section-copy {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 720px;
      margin-top: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      transition: 0.25s ease;
      cursor: pointer;
    }

    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      box-shadow: 0 15px 35px rgba(37, 99, 235, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
    }

    .btn-secondary {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.35);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    /* Navigation */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      transition: 0.25s ease;
    }

    .site-header.scrolled {
      background: rgba(15, 23, 42, 0.92);
      backdrop-filter: blur(18px);
      box-shadow: 0 8px 30px rgba(2, 6, 23, 0.18);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      color: var(--white);
      font-size: 1.55rem;
      font-weight: 900;
      letter-spacing: -0.045em;
    }

    .logo span {
      color: var(--teal);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.94rem;
      font-weight: 700;
    }

    .nav-links a:hover {
      color: var(--white);
    }

    .nav-cta {
      padding: 10px 18px;
      border: 1px solid rgba(255, 255, 255, 0.32);
      border-radius: 999px;
    }

    .menu-button {
      display: none;
      color: var(--white);
      background: transparent;
      border: 0;
      font-size: 1.7rem;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      min-height: 94vh;
      color: var(--white);
      background:
        radial-gradient(circle at 84% 20%, rgba(20, 184, 166, 0.23), transparent 30%),
        radial-gradient(circle at 15% 70%, rgba(37, 99, 235, 0.25), transparent 34%),
        linear-gradient(135deg, #07101f 0%, #0f172a 55%, #15294c 100%);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 50%;
    }

    .hero::before {
      width: 520px;
      height: 520px;
      right: -180px;
      top: 90px;
    }

    .hero::after {
      width: 340px;
      height: 340px;
      right: 20px;
      top: 180px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 70px;
      align-items: center;
      padding: 135px 0 90px;
      position: relative;
      z-index: 2;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      color: #cbd5e1;
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .hero-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.14);
    }

    .hero h1 {
      font-family: Manrope, Inter, sans-serif;
      font-size: clamp(3rem, 6.3vw, 5.6rem);
      max-width: 850px;
      line-height: 0.98;
      letter-spacing: -0.065em;
      margin-top: 28px;
    }

    .hero h1 span {
      color: #76e4d6;
    }

    .hero-copy {
      max-width: 710px;
      color: #cbd5e1;
      font-size: 1.16rem;
      margin-top: 28px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 38px;
      color: #cbd5e1;
      font-size: 0.91rem;
      font-weight: 700;
    }

    .hero-proof span::before {
      content: "✓";
      color: var(--teal);
      margin-right: 8px;
    }

    .hero-panel {
      position: relative;
    }

    .dashboard-card {
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.13);
      backdrop-filter: blur(22px);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 30px 80px rgba(2, 6, 23, 0.32);
    }

    .dashboard-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #cbd5e1;
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #a7f3d0;
    }

    .status::before {
      content: "";
      width: 7px;
      height: 7px;
      background: #34d399;
      border-radius: 50%;
    }

    .metric-main {
      margin-top: 28px;
      font-size: 3.4rem;
      font-weight: 900;
      letter-spacing: -0.05em;
    }

    .metric-label {
      color: #cbd5e1;
      margin-top: -6px;
    }

    .bars {
      height: 190px;
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 12px;
      align-items: end;
      margin-top: 30px;
      padding: 0 5px 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .bar {
      border-radius: 10px 10px 3px 3px;
      background: linear-gradient(180deg, #5eead4, #2563eb);
      min-height: 28px;
      animation: rise 1.2s ease both;
    }

    .bar:nth-child(1) { height: 38%; }
    .bar:nth-child(2) { height: 52%; }
    .bar:nth-child(3) { height: 46%; }
    .bar:nth-child(4) { height: 68%; }
    .bar:nth-child(5) { height: 61%; }
    .bar:nth-child(6) { height: 82%; }
    .bar:nth-child(7) { height: 96%; }

    @keyframes rise {
      from { height: 0; opacity: 0; }
      to { opacity: 1; }
    }

    .dashboard-foot {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .mini-metric {
      padding: 15px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
    }

    .mini-metric strong {
      display: block;
      font-size: 1.15rem;
    }

    .mini-metric span {
      color: #cbd5e1;
      font-size: 0.75rem;
    }

    /* Logo strip */
    .trust-strip {
      background: var(--white);
      border-bottom: 1px solid var(--line);
    }

    .trust-inner {
      min-height: 112px;
      display: grid;
      grid-template-columns: 1.2fr repeat(4, 1fr);
      align-items: center;
      gap: 28px;
    }

    .trust-copy {
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .trust-item {
      color: #94a3b8;
      text-align: center;
      font-weight: 900;
      letter-spacing: 0.05em;
    }

    /* Cards */
    .services-grid,
    .industries-grid,
    .case-grid {
      display: grid;
      gap: 22px;
      margin-top: 48px;
    }

    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .service-card,
    .industry-card,
    .case-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
      transition: 0.3s ease;
    }

    .service-card:hover,
    .industry-card:hover,
    .case-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: rgba(37, 99, 235, 0.28);
    }

    .service-card {
      padding: 30px;
    }

    .icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: var(--blue);
      background: #eff6ff;
      font-size: 1.35rem;
      margin-bottom: 22px;
    }

    .service-card h3,
    .industry-card h3,
    .case-card h3 {
      color: var(--navy);
      font-size: 1.18rem;
      line-height: 1.3;
    }

    .service-card p,
    .industry-card p,
    .case-card p {
      color: var(--muted);
      margin-top: 12px;
    }

    .service-card a {
      display: inline-flex;
      margin-top: 20px;
      color: var(--blue);
      font-weight: 800;
    }

    /* About / Why */
    .split {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .visual-panel {
      min-height: 520px;
      border-radius: 30px;
      background:
        linear-gradient(rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.72)),
        url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1400&q=80") center/cover;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .visual-badge {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      border-radius: 20px;
      padding: 24px;
      color: var(--white);
      background: rgba(15, 23, 42, 0.72);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .visual-badge strong {
      font-size: 1.35rem;
    }

    .visual-badge p {
      margin-top: 7px;
      color: #cbd5e1;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .feature-item {
      padding: 22px;
      border-radius: 18px;
      background: var(--white);
      border: 1px solid var(--line);
    }

    .feature-item strong {
      display: block;
      color: var(--navy);
    }

    .feature-item span {
      display: block;
      color: var(--muted);
      margin-top: 5px;
      font-size: 0.92rem;
    }

    /* Industries */
    .industries-grid {
      grid-template-columns: repeat(5, 1fr);
    }

    .industry-card {
      padding: 26px 22px;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.92)),
        var(--image) center/cover;
      color: var(--white);
      overflow: hidden;
    }

    .industry-card h3 {
      color: var(--white);
    }

    .industry-card p {
      color: #cbd5e1;
      font-size: 0.9rem;
    }

    /* Process */
    .process-wrap {
      margin-top: 52px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      position: relative;
    }

    .process-wrap::before {
      content: "";
      position: absolute;
      top: 29px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      z-index: 0;
    }

    .step {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 15px;
    }

    .step-number {
      width: 60px;
      height: 60px;
      margin: 0 auto 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      font-weight: 900;
      background: var(--navy);
      border: 7px solid var(--bg);
    }

    .step h3 {
      color: var(--navy);
      font-size: 1rem;
    }

    .step p {
      color: var(--muted);
      font-size: 0.88rem;
      margin-top: 7px;
    }

    /* Case studies */
    .case-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .case-card {
      overflow: hidden;
    }

    .case-image {
      height: 210px;
      background: var(--image) center/cover;
    }

    .case-body {
      padding: 26px;
    }

    .tag {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--blue);
      background: #eff6ff;
      font-size: 0.73rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 15px;
    }

    .case-result {
      display: flex;
      gap: 14px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }

    .case-result strong {
      color: var(--teal);
      font-size: 1.5rem;
      line-height: 1;
    }

    .case-result span {
      color: var(--muted);
      font-size: 0.82rem;
    }

    /* CTA */
    .cta {
      padding: 84px 0;
      background:
        radial-gradient(circle at 10% 10%, rgba(20, 184, 166, 0.22), transparent 24%),
        linear-gradient(135deg, #0f172a, #172d50);
      color: var(--white);
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
    }

    .cta h2 {
      font-family: Manrope, Inter, sans-serif;
      font-size: clamp(2.1rem, 4vw, 3.4rem);
      line-height: 1.1;
      letter-spacing: -0.045em;
      max-width: 760px;
    }

    .cta p {
      color: #cbd5e1;
      max-width: 680px;
      margin-top: 17px;
    }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 60px;
      margin-top: 46px;
    }

    .contact-panel {
      padding: 34px;
      border-radius: 24px;
      background: var(--navy);
      color: var(--white);
    }

    .contact-panel p {
      color: #cbd5e1;
      margin-top: 16px;
    }

    .contact-detail {
      margin-top: 30px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.13);
    }

    .contact-detail strong {
      display: block;
      margin-bottom: 4px;
    }

    .contact-detail span {
      color: #cbd5e1;
    }

    .contact-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--navy);
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      color: var(--text);
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    .form-note {
      grid-column: 1 / -1;
      font-size: 0.82rem;
      color: var(--muted);
    }

    /* Footer */
    footer {
      background: #08111f;
      color: #cbd5e1;
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 50px;
    }

    .footer-brand p {
      max-width: 370px;
      margin-top: 16px;
      color: #94a3b8;
    }

    .footer-column h4 {
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-column a {
      display: block;
      color: #94a3b8;
      margin: 9px 0;
    }

    .footer-column a:hover {
      color: var(--white);
    }

    .footer-bottom {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.09);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      color: #64748b;
      font-size: 0.86rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    @media (max-width: 980px) {
      .nav-links {
        position: fixed;
        top: 78px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.98);
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .menu-button {
        display: block;
      }

      .hero-grid,
      .split,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        gap: 50px;
      }

      .services-grid,
      .case-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .industries-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .process-wrap::before {
        display: none;
      }

      .step {
        display: grid;
        grid-template-columns: 60px 1fr;
        text-align: left;
        align-items: start;
        gap: 18px;
        padding: 0;
      }

      .step-number {
        margin: 0;
      }

      .cta-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .trust-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 0;
      }

      .trust-copy {
        grid-column: 1 / -1;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 28px), var(--max));
      }

      .section {
        padding: 72px 0;
      }

      .hero-grid {
        padding-top: 120px;
      }

      .hero h1 {
        font-size: 3.1rem;
      }

      .hero-actions,
      .hero-actions .btn {
        width: 100%;
      }

      .dashboard-foot,
      .services-grid,
      .case-grid,
      .industries-grid,
      .feature-list,
      .contact-form,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .field.full {
        grid-column: auto;
      }

      .trust-inner {
        grid-template-columns: 1fr 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

