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

    :root {
      --bg: #040404;
      --bg2: #0c0c0c;
      --bg3: #131313;
      --cream: #F0EDE6;
      --cream-dim: #b8b4ac;
      --gold: #0443F2;
      --gold-light: #3a6af5;
      --border: #333333;
      --border-light: #3e3e3e;
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Barlow', sans-serif;
      --font-cond: 'Barlow Condensed', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--cream);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 5%;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(4,4,4,0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo img { height: 75px; }
    .nav-links { display: flex; gap: 32px; align-items: center; }
    .nav-links a {
      color: var(--cream-dim);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--cream); }
    .nav-cta {
      background: var(--gold) !important;
      color: var(--bg) !important;
      padding: 10px 22px;
      border-radius: 4px;
      font-weight: 700 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--cream);
      border-radius: 2px;
      transition: 0.3s;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: #040404;
      border-bottom: 1px solid var(--border);
      padding: 24px 5%;
      flex-direction: column;
      gap: 20px;
      z-index: 99;
    }
    .mobile-menu a {
      color: var(--cream-dim);
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .mobile-menu.open { display: flex; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      padding: 140px 5% 100px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero-noise {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
    }
    .hero-glow {
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(4,67,242,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(4,67,242,0.1);
      border: 1px solid rgba(4,67,242,0.25);
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 100px;
      width: fit-content;
      margin-bottom: 32px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-tag::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }
    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(44px, 6vw, 80px);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -0.02em;
      max-width: 900px;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-sub {
      margin-top: 28px;
      font-size: clamp(15px, 2vw, 18px);
      color: var(--cream-dim);
      max-width: 560px;
      line-height: 1.7;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-actions {
      margin-top: 44px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--bg);
      padding: 16px 36px;
      border-radius: 4px;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-outline {
      border: 1px solid var(--border-light);
      color: var(--cream);
      padding: 16px 32px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--gold); background: rgba(4,67,242,0.06); }
    .hero-stats {
      margin-top: 64px;
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
      border-top: 1px solid var(--border);
      padding-top: 40px;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .stat { display: flex; flex-direction: column; gap: 4px; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 700;
      color: var(--cream);
      line-height: 1;
    }
    .stat-label { font-size: 12px; color: var(--cream-dim); letter-spacing: 0.08em; text-transform: uppercase; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── TICKER ── */
    .ticker {
      background: var(--gold);
      color: var(--bg);
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker-inner {
      display: inline-flex;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0 32px;
    }
    .ticker-sep { opacity: 0.4; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ── SECTIONS ── */
    section { padding: 96px 5%; }
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.01em;
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-sub {
      margin-top: 16px;
      color: var(--cream-dim);
      font-size: 16px;
      line-height: 1.7;
      max-width: 580px;
    }

    /* ── HOW IT WORKS ── */
    #how { background: var(--bg2); }
    .how-grid {
      margin-top: 64px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .how-card {
      background: var(--bg3);
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.25s;
    }
    .how-card:hover { background: #2f2f2f; }
    .how-num {
      font-family: var(--font-display);
      font-size: 80px;
      font-weight: 700;
      color: rgba(4,67,242,0.08);
      line-height: 1;
      position: absolute;
      top: 20px; right: 24px;
    }
    .how-icon {
      width: 48px; height: 48px;
      background: rgba(4,67,242,0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    .how-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
    .how-card h3 {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .how-card p { font-size: 14px; color: var(--cream-dim); line-height: 1.75; }
    .how-connector {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 0;
      color: var(--gold);
      opacity: 0.4;
    }

    /* ── RESULTS ── */
    #results { background: var(--bg); }
    .results-intro { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
    .results-grid {
      margin-top: 56px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .result-card {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
    }
    .result-card:hover { border-color: var(--gold); transform: translateY(-3px); }
    .result-card:first-child {
      grid-column: 1 / -1;
    }
    .result-card-img {
      width: 100%;
      display: block;
      border-bottom: 1px solid var(--border);
    }
    .result-card-body {
      padding: 24px 28px;
    }
    .result-card-tag {
      display: inline-block;
      background: rgba(4,67,242,0.1);
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 12px;
    }
    .result-card h4 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .result-card p { font-size: 13px; color: var(--cream-dim); line-height: 1.7; }
    .result-metrics {
      display: flex;
      gap: 28px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      flex-wrap: wrap;
    }
    .result-metric { display: flex; flex-direction: column; gap: 2px; }
    .result-metric strong {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 700;
      color: var(--gold);
    }
    .result-metric span { font-size: 11px; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.07em; }

    /* ── SERVICES ── */
    #services { background: var(--bg2); }
    .services-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      border: 1px solid var(--border);
      padding: 36px 30px;
      border-radius: 8px;
      transition: border-color 0.2s, background 0.2s;
      position: relative;
    }
    .service-card:hover {
      border-color: var(--gold);
      background: rgba(4,67,242,0.03);
    }
    .service-num {
      font-family: var(--font-cond);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .service-card p { font-size: 13px; color: var(--cream-dim); line-height: 1.75; }
    .service-card ul {
      list-style: none;
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .service-card ul li {
      font-size: 13px;
      color: var(--cream-dim);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .service-card ul li::before {
      content: '→';
      color: var(--gold);
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── WHY US ── */
    #why { background: var(--bg); }
    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 56px;
    }
    .why-list { display: flex; flex-direction: column; gap: 0; }
    .why-item {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }
    .why-item:first-child { border-top: 1px solid var(--border); }
    .why-dot {
      width: 36px; height: 36px;
      flex-shrink: 0;
      background: rgba(4,67,242,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }
    .why-item h4 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .why-item p { font-size: 13px; color: var(--cream-dim); line-height: 1.7; }
    .why-visual {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .why-card-title {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      line-height: 1.2;
    }
    .why-card-title em { font-style: italic; color: var(--gold); }
    .why-card-divider { height: 1px; background: var(--border); }
    .why-pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
    .why-pill {
      background: rgba(4,67,242,0.08);
      border: 1px solid rgba(4,67,242,0.18);
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 600;
      padding: 7px 16px;
      border-radius: 100px;
    }
    .why-guarantee {
      background: rgba(4,67,242,0.06);
      border: 1px solid rgba(4,67,242,0.15);
      border-radius: 8px;
      padding: 20px;
      font-size: 13px;
      color: var(--cream-dim);
      line-height: 1.65;
    }
    .why-guarantee strong { color: var(--gold); display: block; margin-bottom: 4px; font-size: 14px; }

    /* ── ABOUT ── */
    #about { background: var(--bg2); }
    .about-layout {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 72px;
      align-items: start;
      margin-top: 56px;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img {
      width: 100%;
      border-radius: 8px;
      display: block;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: top center;
    }
    .about-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--bg);
      padding: 16px 20px;
      border-radius: 8px;
      font-weight: 800;
      font-size: 13px;
      line-height: 1.4;
      text-align: center;
    }
    .about-badge span { display: block; font-size: 28px; font-family: var(--font-display); font-weight: 700; }
    .about-content { padding-top: 8px; }
    .about-content h3 {
      font-family: var(--font-display);
      font-size: 44px;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .about-content h3 em { font-style: italic; color: var(--gold); }
    .about-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .about-content p {
      font-size: 15px;
      color: var(--cream-dim);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .about-industries {
      margin-top: 28px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .about-industries-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream-dim);
      margin-bottom: 14px;
    }
    .industry-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .industry-tag {
      background: var(--bg3);
      border: 1px solid var(--border);
      color: var(--cream-dim);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 4px;
    }

    /* ── CTA BAND ── */
    #cta {
      background: var(--gold);
      padding: 96px 5%;
      text-align: center;
    }
    #cta h2 {
      font-family: var(--font-display);
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 700;
      color: var(--bg);
      line-height: 1.05;
      margin-bottom: 16px;
    }
    #cta h2 em { font-style: italic; }
    #cta p { font-size: 17px; color: rgba(26,26,26,0.65); max-width: 520px; margin: 0 auto 40px; line-height: 1.65; }
    .btn-dark {
      background: var(--bg);
      color: var(--cream);
      padding: 18px 44px;
      border-radius: 4px;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s;
    }
    .btn-dark:hover { background: #131313; }

    /* ── FOOTER ── */
    footer {
      background: #020202;
      padding: 56px 5% 36px;
      border-top: 1px solid var(--border);
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 32px;
    }
    .footer-brand img { height: 75px; margin-bottom: 12px; }
    .footer-brand p { font-size: 13px; color: var(--cream-dim); max-width: 300px; line-height: 1.65; }
    .footer-col h5 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: var(--cream-dim);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 12px; color: #555; }
    .footer-location {
      font-size: 12px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-location svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      nav { padding: 0 5%; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .how-grid { grid-template-columns: 1fr; gap: 2px; }
      .results-grid { grid-template-columns: 1fr; }
      .result-card:first-child { grid-column: auto; }
      .services-grid { grid-template-columns: 1fr; gap: 16px; }
      .why-layout { grid-template-columns: 1fr; gap: 40px; }
      .about-layout { grid-template-columns: 1fr; gap: 48px; }
      .about-badge { right: 0; bottom: -16px; }
      .about-content h3 { font-size: 36px; }
      .hero-stats { gap: 28px; }
      section { padding: 64px 5%; }
      .footer-top { flex-direction: column; }
    }
    @media (max-width: 600px) {
      .hero-h1 { font-size: 46px; }
      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-outline { text-align: center; }
      .results-grid { grid-template-columns: 1fr; }
    }