﻿  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --black: #060d1a;
    --navy: #0b1628;
    --mid: #0f1e35;
    --white: #f0f4ff;
    --grey: #F9F9F9;
    --cyan: #00aaff;
    --cyan2: #00d4ff;
    --blue: #0d3a7a;
    --muted: #607090;
    --border: rgba(0, 170, 255, 0.95);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--white);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE ── */
  body::before {
    content: '';
    position: fixed;
    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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    background: rgba(6, 13, 26, 0.12);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
  }

  .logo-img {
    height: 36px;
    display: block;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .nav-links a.active {
    color: var(--white);
  }

  .nav-links a:hover {
    color: var(--white);
  }

  .nav-cta {
    background: var(--cyan);
    color: var(--black) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2rem;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover {
    opacity: 0.85;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0, 170, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 170, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.13) 0%, transparent 65%);
    top: -300px;
    right: -200px;
    pointer-events: none;
  }

  .hero-glow2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 60, 140, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: 5%;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s forwards;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cyan);
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.25s forwards;
  }

  h1 em {
    font-style: normal;
    color: var(--cyan);
  }

  .hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s forwards;
  }

  .btn-primary {
    background: var(--cyan);
    color: var(--black);
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 170, 255, 0.35);
  }

  .btn-ghost {
    color: var(--black);
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-ghost:hover {
    border-color: rgba(0, 170, 255, 0.4);
    background: rgba(0, 170, 255, 0.05);
  }

  .hero-stats {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .stat-item {
    text-align: right;
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
  }

  .stat-num span {
    color: var(--cyan);
  }

  .stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
  }

  /* ── PAIN STRIP ── */
  .strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 4rem;
    background: var(--mid);
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
  }

  .strip-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cyan);
    white-space: nowrap;
    font-weight: 700;
  }

  .strip-scroll {
    display: flex;
    gap: 4rem;
    animation: scrollLeft 28s linear infinite;
    white-space: nowrap;
  }

  .strip-item {
    font-size: 0.83rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }

  .strip-item::before {
    content: '◆';
    color: var(--cyan);
    font-size: 0.45rem;
  }

  /* ── SECTIONS ── */
  section {
    padding: 7rem 4rem;
  }

  .section-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cyan);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  .section-intro {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    font-weight: 300;
    line-height: 1.75;
  }

  /* ── SERVICES ── */
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.07), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .service-card:hover {
    background: var(--mid);
    color: var(--white);
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 1.25rem;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.1rem;
    color: var(--border);
    transition: color 0.3s, transform 0.3s;
  }

  .service-card:hover .service-arrow {
    color: var(--cyan);
    transform: translate(3px, -3px);
  }

  /* ── HOW ── */
  .how-section {
    background: var(--grey);
  }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child {
    border-bottom: none;
  }

  .step-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cyan);
    min-width: 28px;
    padding-top: 0.2rem;
    letter-spacing: 0.1em;
  }

  .step-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .step-content p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* Symbol visual */
  .how-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .symbol-container {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .symbol-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.18) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
  }

  .symbol-img {
    width: 260px;
    height: 260px;
    object-fit: contain;
    position: relative;
    z-index: 2;
  }

  .symbol-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 170, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .ring-a {
    width: 320px;
    height: 320px;
    animation: spinSlow 25s linear infinite;
  }

  .ring-b {
    width: 380px;
    height: 380px;
    animation: spinSlow 18s linear infinite reverse;
    border-color: rgba(0, 170, 255, 0.08);
  }

  /* ── AUDIENCE ── */
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
  }

  .audience-card {
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 6px;
    transition: border-color 0.3s, transform 0.3s;
  }

  .audience-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
  }

  .audience-tag {
    display: inline-block;
    background: rgba(0, 170, 255, 0.1);
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }

  .audience-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }

  .audience-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .audience-card li {
    font-size: 0.875rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
  }

  .audience-card li::before {
    content: '→';
    color: var(--cyan);
    font-size: 0.75rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
  }

  /* ── WHY ── */
  .why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }

  .why-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 170, 255, 0.08);
    border: 1px solid rgba(0, 170, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .why-point-text h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
  }

  .why-point-text p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .why-visual {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-visual-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .metric-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .metric-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--muted);
  }

  .metric-label span:last-child {
    color: var(--white);
    font-weight: 600;
  }

  .metric-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
  }

  .metric-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #0d3a7a, var(--cyan));
  }

  .chip {
    font-size: 0.73rem;
    color: var(--muted);
    background: rgba(0, 170, 255, 0.05);
    padding: 0.3rem 0.75rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
  }

  /* ── TESTIMONIALS ── */
  .testimonial-section {
    background: var(--grey);
    text-align: center;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    text-align: left;
  }

  .testimonial-card {
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.3s;
  }

  .testimonial-card:hover {
    border-color: rgba(0, 170, 255, 0.3);
  }

  .stars {
    color: var(--cyan);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
  }

  .testimonial-card blockquote {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(240, 244, 255, 0.78);
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d3a7a, var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    font-family: 'Syne', sans-serif;
  }

  .author-name {
    font-size: 0.875rem;
    font-weight: 600;
    display: block;
  }

  .author-role {
    font-size: 0.75rem;
    color: var(--muted);
    display: block;
  }

  /* ── CTA ── */
  .cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 4rem;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 100, 220, 0.15) 0%, transparent 70%);
  }

  .cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.25rem;
    position: relative;
  }

  .cta-section p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    position: relative;
    font-weight: 300;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo-img {
    height: 28px;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--white);
  }

  .footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes scrollLeft {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  @keyframes spinSlow {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 0.6;
      transform: scale(1);
    }

    50% {
      opacity: 1;
      transform: scale(1.08);
    }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1200px) {
    .hero,
    section,
    .strip,
    .cta-section,
    footer {
      padding-left: 2rem;
      padding-right: 2rem;
    }
    .hero-stats {
      right: 2rem;
      bottom: 2rem;
    }
  }

  @media (max-width: 900px) {
    nav {
      padding: 1rem 1.2rem;
    }
    .hero {
      flex-direction: column;
      padding-top: 6rem;
      padding-bottom: 3rem;
    }
    .hero-content {
      max-width: 100%;
    }
    .hero-stats {
      position: static;
      margin-top: 2rem;
      gap: 1.5rem;
    }
    .services-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .services-grid,
    .audience-grid,
    .testimonial-grid {
      grid-template-columns: 1fr 1fr;
    }
    .how-grid,
    .why-section {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .strip {
      gap: 1rem;
    }
    .cta-section {
      padding: 4rem 1.2rem;
    }
    footer {
      flex-direction: column;
      gap: 1.5rem;
      padding: 2rem 1.2rem;
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      margin-top: 150px;
    }
    nav {
      min-height: 150px;
      flex-direction: column;
      align-items: center;
      padding: 1rem 0;
    }
    .nav-links {
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .logo-img {
      height: 28px;
    }
    .hero {
      padding: 3.5rem 0.7rem 2rem;
      min-height: 60vh;
    }
    h1 {
      font-size: 2.1rem;
    }
    .hero-sub {
      font-size: 0.95rem;
    }
    .hero-actions {
      flex-direction: column;
      gap: 0.7rem;
    }
    .hero-stats {
      flex-direction: column;
      gap: 0.7rem;
      margin-top: 1rem;
    }
    section {
      padding: 2.5rem 0.7rem;
    }
    .services-grid,
    .audience-grid,
    .testimonial-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .service-card,
    .audience-card,
    .testimonial-card {
      padding: 1.2rem;
    }
    .how-grid,
    .why-section {
      gap: 1rem;
    }
    .strip {
      flex-direction: column;
      gap: 0.5rem;
      padding: 0.7rem 0.7rem;
    }
    .strip-label {
      margin-bottom: 0.5rem;
    }
    .cta-section {
      padding: 2rem 0.7rem;
    }
    .cta-actions {
      flex-direction: column;
      gap: 0.7rem;
    }
    footer {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem 0.7rem;
    }
    .footer-links {
      gap: 0.7rem;
      flex-wrap: wrap;
    }
  }