    :root {
      --navy: #071a33;
      --navy-deep: #03101f;
      --blue: #123a66;
      --blue-soft: #1a4778;
      --orange: #c76c2d;
      --orange-light: #f09b54;
      --cream: #f6efe6;
      --paper: #fffaf2;
      --white: #ffffff;
      --ink: #121924;
      --muted: #6a7280;
      --line: rgba(7, 26, 51, 0.12);
      --shadow: 0 30px 90px rgba(7, 26, 51, 0.24);
      --soft-shadow: 0 18px 52px rgba(7, 26, 51, 0.12);
      --radius: 30px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      background:
        radial-gradient(circle at 12% 10%, rgba(199, 108, 45, 0.14), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(18, 58, 102, 0.14), transparent 30%),
        linear-gradient(180deg, #fff8ef 0%, #f6efe6 48%, #fffaf2 100%);
    }

    .header {
      position: fixed;
      top: 18px;
      left: 50%;
      z-index: 1000;
      width: min(1180px, calc(100% - 32px));
      transform: translateX(-50%);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 999px;
      background: rgba(7, 26, 51, 0.92);
      box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
      backdrop-filter: blur(18px);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 12px 14px 12px 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--white);
      font-weight: 950;
      letter-spacing: 0.045em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-mark {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: rgba(255, 250, 242, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.35);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
      overflow: hidden;
    }

    .brand-logo {
      width: 56px;
      height: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.92rem;
      font-weight: 800;
    }

    .nav-links a {
      padding: 10px 14px;
      border-radius: 999px;
      transition: 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.1);
    }

    .nav-button {
      color: var(--white);
      background: var(--orange);
      box-shadow: 0 12px 28px rgba(199, 108, 45, 0.32);
    }

    .mobile-menu {
      display: none;
      position: relative;
    }

    .menu-toggle {
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 1.2rem;
      cursor: pointer;
    }

    .mobile-dropdown {
      position: absolute;
      top: 58px;
      right: 0;
      min-width: 220px;
      padding: 10px;
      border-radius: 20px;
      background: rgba(7, 26, 51, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
      display: none;
      flex-direction: column;
      gap: 6px;
    }

    .mobile-dropdown a {
      color: var(--white);
      padding: 12px 14px;
      border-radius: 12px;
      font-weight: 800;
    }

    .mobile-dropdown a:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .mobile-menu:hover .mobile-dropdown {
      display: flex;
    }

    .hero {
      position: relative;
      padding: 132px 24px 78px;
      color: var(--white);
      overflow: hidden;
      background:
        linear-gradient(112deg, rgba(7, 26, 51, 0.98), rgba(7, 26, 51, 0.82) 56%, rgba(7, 26, 51, 0.96)),
        radial-gradient(circle at 78% 26%, rgba(240, 155, 84, 0.34), transparent 30%),
        linear-gradient(135deg, var(--navy), var(--blue-soft));
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.15;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
      background-size: 70px 70px;
      mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      color: var(--orange-light);
      font-size: 0.78rem;
      font-weight: 950;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h1 {
      max-width: 820px;
      font-size: clamp(2.6rem, 5vw, 5.2rem);
      line-height: 0.94;
      letter-spacing: -0.08em;
      margin-bottom: 24px;
    }

    .hero h1 span {
      color: var(--orange-light);
    }

    .hero-copy p {
      max-width: 720px;
      color: rgba(255, 255, 255, 0.82);
      font-size: clamp(1.05rem, 1.65vw, 1.24rem);
      margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 52px;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 950;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--orange), var(--orange-light));
      box-shadow: 0 16px 36px rgba(199, 108, 45, 0.38);
    }

    .button-secondary {
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.06);
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .trust-pill {
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.74);
      background: rgba(255, 255, 255, 0.06);
      font-size: 0.9rem;
      font-weight: 850;
    }

    .hero-card {
      position: relative;
      padding: 18px;
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.16);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .hero-card-inner {
      position: relative;
      z-index: 1;
      padding: 26px;
      border-radius: 26px;
      background:
        linear-gradient(135deg, rgba(240, 155, 84, 0.14), transparent 42%),
        rgba(7, 26, 51, 0.34);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-card small {
      display: block;
      color: var(--orange-light);
      font-size: 0.72rem;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .hero-card h2 {
      font-size: 1.7rem;
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 16px;
    }

    .hero-card p {
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 18px;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 18px;
    }

    .stat {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat strong {
      display: block;
      color: var(--white);
      font-size: 1.35rem;
      line-height: 1;
      margin-bottom: 5px;
    }

    .stat span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .section {
      padding: 88px 24px;
    }

    .section-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
    }

    .section-heading {
      max-width: 820px;
      margin-bottom: 42px;
    }

    .label {
      display: inline-block;
      color: var(--orange);
      font-size: 0.76rem;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(1.9rem, 4vw, 3.7rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
      margin-bottom: 18px;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      position: relative;
      overflow: hidden;
      min-height: 310px;
      padding: 28px;
      border-radius: var(--radius);
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--blue-soft));
      box-shadow: var(--soft-shadow);
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 20%, rgba(240, 155, 84, 0.36), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%);
    }

    .service-card h3,
    .service-card p,
    .service-card ul {
      position: relative;
      z-index: 1;
    }

    .service-card h3 {
      font-size: 1.45rem;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .service-card p {
      color: rgba(255, 255, 255, 0.78);
      margin-bottom: 16px;
    }

    .service-card ul {
      list-style: none;
      display: grid;
      gap: 8px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.94rem;
    }

    .service-card li::before {
      content: "•";
      color: var(--orange-light);
      margin-right: 8px;
    }

    .dark-section {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    }

    .dark-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 18%, rgba(240, 155, 84, 0.28), transparent 24%),
        radial-gradient(circle at 90% 74%, rgba(26, 71, 120, 0.6), transparent 32%);
      opacity: 0.9;
    }

    .story-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      align-items: center;
    }

    .story-copy .label {
      color: var(--orange-light);
    }

    .story-copy h2 {
      font-size: clamp(1.9rem, 4vw, 3.7rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
      margin-bottom: 20px;
    }

    .story-copy p {
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.06rem;
      margin-bottom: 18px;
    }

    .story-card {
      padding: 34px;
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.13);
      box-shadow: var(--shadow);
    }

    .story-card h3 {
      font-size: 1.6rem;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .story-card p {
      color: rgba(255, 255, 255, 0.74);
      margin-bottom: 14px;
    }

    .portfolio-strip {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 22px;
      align-items: stretch;
    }

    .portfolio-feature {
      min-height: 360px;
      padding: 34px;
      border-radius: var(--radius);
      color: var(--white);
      background:
        linear-gradient(135deg, rgba(7, 26, 51, 0.72), rgba(7, 26, 51, 0.92)),
        radial-gradient(circle at 80% 20%, rgba(240, 155, 84, 0.34), transparent 32%),
        linear-gradient(135deg, var(--navy), var(--blue-soft));
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .portfolio-feature h3 {
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
      margin-bottom: 14px;
    }

    .portfolio-feature p {
      color: rgba(255, 255, 255, 0.78);
      max-width: 620px;
    }

    .portfolio-list {
      display: grid;
      gap: 14px;
    }

    .portfolio-item {
      padding: 22px;
      border-radius: 24px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 14px 36px rgba(7, 26, 51, 0.08);
    }

    .portfolio-item h3 {
      color: var(--navy);
      margin-bottom: 7px;
      line-height: 1.15;
    }

    .portfolio-item p {
      color: var(--muted);
      font-size: 0.96rem;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .process-step {
      padding: 24px;
      border-radius: 24px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 14px 36px rgba(7, 26, 51, 0.08);
    }

    .process-step small {
      display: block;
      color: var(--orange);
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .process-step h3 {
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.15;
    }

    .process-step p {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .contact {
      padding: 92px 24px;
    }

    .contact-panel {
      width: min(1180px, 100%);
      margin: 0 auto;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      border-radius: 38px;
      color: var(--white);
      background:
        radial-gradient(circle at 90% 8%, rgba(240, 155, 84, 0.35), transparent 26%),
        linear-gradient(135deg, var(--navy), var(--blue));
      box-shadow: var(--shadow);
    }

    .contact-main {
      padding: 50px;
    }

    .contact-main .label {
      color: var(--orange-light);
    }

    .contact-main h2 {
      font-size: clamp(1.9rem, 4vw, 3.7rem);
      line-height: 0.94;
      letter-spacing: -0.075em;
      margin-bottom: 20px;
    }

    .contact-main p {
      max-width: 660px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 1.08rem;
      margin-bottom: 30px;
    }

    .contact-info {
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
      background: rgba(255, 255, 255, 0.07);
      border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .info-card {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .info-card small {
      display: block;
      color: var(--orange-light);
      font-size: 0.7rem;
      font-weight: 950;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .info-card span {
      color: rgba(255, 255, 255, 0.86);
      font-weight: 850;
    }

    .footer {
      padding: 30px 24px;
      color: rgba(255, 255, 255, 0.68);
      text-align: center;
      background: #06111f;
      font-size: 0.92rem;
    }

    @media (max-width: 980px) {
      .hero-inner,
      .story-grid,
      .portfolio-strip,
      .contact-panel {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .process-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 760px) {
      .header {
        top: 10px;
        width: calc(100% - 20px);
        border-radius: 24px;
      }

      .nav {
        align-items: flex-start;
      }

      .brand {
        white-space: normal;
        line-height: 1.1;
      }

      .brand-mark {
        width: 58px;
        height: 58px;
        border-radius: 18px;
      }

      .brand-logo {
        width: 50px;
      }

      .nav-links {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .hero {
        padding: 116px 18px 58px;
      }

      .services-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .contact-info {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }
    }

    @media (max-width: 560px) {
      .hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.4rem);
      }

      .section,
      .contact {
        padding: 64px 18px;
      }

      .hero-card-inner,
      .contact-main,
      .contact-info {
        padding: 24px;
      }

      .stat-grid {
        grid-template-columns: 1fr;
      }
    }