:root {
      --black: #05070b;
      --navy: #0a111d;
      --navy-2: #101a2b;
      --gold: #d7b45a;
      --gold-light: #f4dc91;
      --silver: #d7dde7;
      --blue: #3ea6ff;
      --white: #ffffff;
      --muted: #aeb8c7;
      --border: rgba(215, 180, 90, 0.24);
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
      --max: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(62, 166, 255, 0.10), transparent 34%),
        radial-gradient(circle at top right, rgba(215, 180, 90, 0.12), transparent 28%),
        var(--black);
      color: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 85%);
      z-index: -1;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(5, 7, 11, 0.78);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 0 24px rgba(215, 180, 90, 0.25);
    }

    .brand span {
      color: var(--gold-light);
    }

    .nav-links {
      display: flex;
      gap: 26px;
      color: var(--silver);
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      color: var(--gold-light);
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid var(--gold);
      border-radius: 999px;
      color: var(--gold-light);
      font-weight: 700;
      transition: 0.25s ease;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: #090909;
      transform: translateY(-1px);
    }

    .hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding: 128px 0 80px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      align-items: center;
      gap: 64px;
    }

    .hero-logo-wrap {
      position: relative;
    }

    .hero-logo-wrap::before {
      content: "";
      position: absolute;
      inset: 8%;
      background: radial-gradient(circle, rgba(62,166,255,0.22), transparent 50%);
      filter: blur(40px);
      z-index: -1;
    }

    .hero-logo {
      width: min(520px, 100%);
      margin: 0 auto;
      filter: drop-shadow(0 24px 70px rgba(0,0,0,.5));
    }

    .eyebrow {
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-weight: 800;
      font-size: 0.78rem;
      margin-bottom: 18px;
    }

    h1, h2, h3 {
      line-height: 1.12;
    }

    h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3rem, 7vw, 6.6rem);
      letter-spacing: -0.045em;
      margin-bottom: 20px;
      background: linear-gradient(180deg, #fff7d9 0%, #d7b45a 56%, #9b6d1d 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .tagline {
      font-size: clamp(1.35rem, 2.3vw, 2rem);
      max-width: 720px;
      color: var(--white);
      margin-bottom: 20px;
      font-weight: 700;
    }

    .hero-copy {
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 660px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 800;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #0a0a0a;
      box-shadow: 0 14px 36px rgba(215,180,90,.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(215,180,90,.34);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,.18);
      color: var(--white);
      background: rgba(255,255,255,.03);
    }

    .btn-secondary:hover {
      border-color: var(--blue);
      color: #ccecff;
      transform: translateY(-2px);
    }

    section {
      padding: 96px 0;
    }

    .section-heading {
      max-width: 800px;
      margin-bottom: 44px;
    }

    .section-heading h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.2rem, 4vw, 4rem);
      color: var(--gold-light);
      margin-bottom: 16px;
    }

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

    .about {
      background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.03));
      border-top: 1px solid rgba(255,255,255,.05);
      border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 50px;
      align-items: start;
    }

    .about-copy p {
      margin-bottom: 18px;
      color: var(--silver);
    }

    .stat-card {
      background:
        linear-gradient(145deg, rgba(16,26,43,.96), rgba(5,7,11,.96));
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .stat-number {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 5rem;
      color: var(--gold-light);
      line-height: 1;
    }

    .stat-label {
      margin-top: 10px;
      color: var(--white);
      font-size: 1.25rem;
      font-weight: 800;
    }

    .stat-note {
      color: var(--muted);
      margin-top: 12px;
    }

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

    .service-card {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      padding: 34px;
      border-radius: 24px;
      background: linear-gradient(160deg, rgba(16,26,43,.95), rgba(6,9,15,.98));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: var(--shadow);
      transition: 0.3s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: rgba(62,166,255,.08);
      top: -70px;
      right: -60px;
      filter: blur(6px);
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: var(--border);
    }

    .service-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      background: linear-gradient(135deg, rgba(215,180,90,.22), rgba(62,166,255,.14));
      border: 1px solid rgba(215,180,90,.25);
      font-size: 1.5rem;
    }

    .service-card h3 {
      font-size: 1.55rem;
      color: var(--gold-light);
      margin-bottom: 14px;
    }

    .service-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .service-card ul {
      list-style: none;
      display: grid;
      gap: 11px;
      color: var(--silver);
    }

    .service-card li::before {
      content: "◆";
      color: var(--gold);
      margin-right: 10px;
      font-size: .75rem;
    }

    .why {
      background:
        radial-gradient(circle at 70% 20%, rgba(62,166,255,.08), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.02), transparent);
    }

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

    .why-item {
      padding: 24px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      background: rgba(255,255,255,.025);
    }

    .why-item strong {
      display: block;
      color: var(--white);
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .why-item span {
      color: var(--muted);
      font-size: .94rem;
    }

    .contact {
      padding-top: 40px;
    }

    .contact-panel {
      text-align: center;
      padding: 64px 30px;
      border-radius: 32px;
      background:
        radial-gradient(circle at top center, rgba(215,180,90,.16), transparent 42%),
        linear-gradient(145deg, rgba(16,26,43,.96), rgba(5,7,11,.98));
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .contact-panel h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.25rem, 4vw, 4rem);
      color: var(--gold-light);
      margin-bottom: 16px;
    }

    .contact-panel p {
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto 28px;
    }

    .email-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 24px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #0a0a0a;
      font-weight: 900;
      word-break: break-word;
    }

    footer {
      padding: 38px 0 48px;
      color: #7f8a99;
      text-align: center;
      font-size: .9rem;
    }

    .footer-brand {
      color: var(--gold-light);
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy-wrap {
        text-align: center;
      }

      .hero-copy {
        margin-inline: auto;
      }

      .hero-actions {
        justify-content: center;
      }

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

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-logo {
        max-width: 420px;
      }
    }

    @media (max-width: 760px) {
      .nav-links {
        display: none;
      }

      .nav {
        min-height: 68px;
      }

      .brand span {
        display: none;
      }

      section {
        padding: 72px 0;
      }

      .hero {
        padding-top: 110px;
      }

      .hero-grid {
        gap: 34px;
      }

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

      .nav-cta {
        padding: 10px 14px;
        font-size: .88rem;
      }
    }
