  /* ============================
     DESIGN TOKENS
  ============================ */
  :root {
    --red: #D42B2B;
    --red-dark: #A01F1F;
    --red-light: #F5E8E8;
    --gold: #F4C240;
    --gold-dark: #C49020;
    --gold-light: #FEF5DC;
    --navy: #1A2340;
    --navy-mid: #2C3A5C;
    --navy-light: #E8EAF0;
    --shell: #F2B84B;
    --off-white: #FDF9F0;
    --white: #FFFFFF;
    --text: #1A2340;
    --text-muted: #5A6480;
    --font: 'Open Sans', sans-serif;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-pill: 100px;
  }

  /* ============================
     RESET & BASE
  ============================ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ============================
     UTILITY
  ============================ */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.2px;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn:active { transform: scale(0.97); }
  .btn-primary { background: var(--red); color: var(--white); box-shadow: 0 4px 18px rgba(212,43,43,0.35); }
  .btn-primary:hover { background: var(--red-dark); box-shadow: 0 6px 24px rgba(212,43,43,0.45); }
  .btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 18px rgba(244,194,64,0.35); }
  .btn-gold:hover { box-shadow: 0 6px 24px rgba(244,194,64,0.5); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
  .btn-navy-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
  .btn-navy-outline:hover { background: var(--navy); color: var(--white); }

  /* ============================
     NAV
  ============================ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(26, 35, 64, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
  }
  .nav-wordmark {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
  }
  .nav-wordmark span { color: var(--gold); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    letter-spacing: 0.2px;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { display: flex; align-items: center; gap: 12px; }

  /* Hamburger button — hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 201;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  /* Animate to X when open */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ============================
     HERO
  ============================ */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
  }
  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(244,194,64,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244,194,64,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-bg-glow {
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,43,43,0.18) 0%, transparent 70%);
  }
  .hero-bg-glow-2 {
    position: absolute;
    bottom: -80px; left: 10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,194,64,0.1) 0%, transparent 70%);
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244,194,64,0.12);
    border: 1px solid rgba(244,194,64,0.25);
    border-radius: var(--r-pill);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }
  .hero-h1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  .hero-h1 .accent { color: var(--gold); }
  .hero-h1 .accent-red { color: var(--red); }
  .hero-desc {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat-num {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
  }
  .hero-stat-num span { color: var(--gold); }
  .hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0.3px;
  }

  /* Hero right — dashboard mockup */
  .hero-visual {
    position: relative;
  }
  .hero-dashboard {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-xl);
    padding: 24px;
    position: relative;
  }
  .hero-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .hero-dash-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }
  .hero-dash-badge {
    font-size: 10px;
    font-weight: 700;
    background: rgba(76,175,80,0.2);
    color: #81C784;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  .dash-metric {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    padding: 14px;
  }
  .dash-metric-val { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; line-height: 1; }
  .dash-metric-val.gold { color: var(--gold); }
  .dash-metric-val.red { color: #F87171; }
  .dash-metric-lbl { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
  .dash-metric-delta { font-size: 11px; font-weight: 700; color: #81C784; margin-top: 6px; }
  .dash-metric-delta.down { color: #F87171; }

  /* Mini bar chart */
  .dash-chart { margin-bottom: 20px; }
  .dash-chart-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
  .bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
  .bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
  .bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
  }
  .bar-red { background: var(--red); }
  .bar-gold { background: var(--gold); }
  .bar-navy { background: rgba(255,255,255,0.2); }
  .bar-lbl { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.35); }

  /* Pipeline */
  .dash-pipeline { }
  .pipeline-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
  .pipeline-stages { display: flex; gap: 4px; }
  .pipeline-stage {
    flex: 1;
    height: 6px;
    border-radius: 3px;
  }
  .p1 { background: var(--red); flex: 3; }
  .p2 { background: var(--shell); flex: 2.2; }
  .p3 { background: var(--gold); flex: 1.5; }
  .p4 { background: rgba(76,175,80,0.7); flex: 1; }
  .pipeline-labels { display: flex; gap: 4px; margin-top: 8px; }
  .pipeline-stage-lbl { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.35); }
  .pl1 { flex: 3; } .pl2 { flex: 2.2; } .pl3 { flex: 1.5; } .pl4 { flex: 1; }

  /* Floating cards */
  .float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .float-card-text { font-size: 12px; }
  .float-card-text strong { display: block; font-weight: 700; color: var(--navy); font-size: 13px; }
  .float-card-text span { color: var(--text-muted); }
  .fc-1 { top: -20px; right: -30px; animation: float1 4s ease-in-out infinite; }
  .fc-2 { bottom: 30px; left: -40px; animation: float2 5s ease-in-out infinite; }
  @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

  /* ============================
     LOGOS / TRUST BAR
  ============================ */
  .trust-bar {
    background: var(--off-white);
    border-top: 1px solid var(--navy-light);
    border-bottom: 1px solid var(--navy-light);
    padding: 28px 0;
  }
  .trust-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
  }
  .trust-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .trust-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
    overflow: hidden;
  }
  .trust-logo-item {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.6;
    letter-spacing: -0.3px;
  }

  /* ============================
     SERVICES
  ============================ */
  .services {
    padding: 100px 0;
    background: var(--white);
  }
  .services-header {
    max-width: 640px;
    margin-bottom: 64px;
  }
  .services-header h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .services-header h2 span { color: var(--red); }
  .services-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.65;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--navy-light);
    border-radius: var(--r-xl);
    overflow: hidden;
  }
  .service-card {
    background: var(--white);
    padding: 40px 36px;
    position: relative;
    transition: background 0.25s;
    cursor: default;
  }
  .service-card:hover { background: var(--off-white); }
  .service-card:hover .service-icon-wrap { background: var(--red); }
  .service-card:hover .service-icon-wrap svg path,
  .service-card:hover .service-icon-wrap svg rect,
  .service-card:hover .service-icon-wrap svg circle { stroke: var(--white); }
  .service-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  .service-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--red-light);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.25s;
  }
  .service-icon-wrap svg { width: 24px; height: 24px; }
  .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
  }
  .service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .tag {
    font-size: 11px;
    font-weight: 600;
    background: var(--navy-light);
    color: var(--navy-mid);
    padding: 4px 10px;
    border-radius: var(--r-pill);
  }

  /* ============================
     HOW IT WORKS
  ============================ */
  .how {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .how::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(244,194,64,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244,194,64,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .how-inner { position: relative; z-index: 2; }
  .how-header { text-align: center; margin-bottom: 72px; }
  .how-header .section-label { justify-content: center; }
  .how-header .section-label::before { display: none; }
  .how-header h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-top: 0;
  }
  .how-header h2 span { color: var(--gold); }
  .how-header h2 span.accent-red {color: var(--red); }
  .how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .how-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
  }
  .how-step {
    padding: 0 28px;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .how-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    margin: 0 auto 24px;
  }
  .how-step:first-child .how-step-num { background: var(--red); border-color: var(--red); color: var(--white); }
  .how-step h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; letter-spacing: -0.2px; }
  .how-step p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

  /* ============================
     RESULTS / METRICS
  ============================ */
  .results {
    padding: 100px 0;
    background: var(--off-white);
  }
  .results-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .results-left h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .results-left h2 span { color: var(--red); }
  .results-left p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
  }
  .results-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .result-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(26,35,64,0.07);
    border-left: 4px solid var(--red);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .result-card:hover { box-shadow: 0 8px 32px rgba(26,35,64,0.12); transform: translateY(-2px); }
  .result-card:nth-child(2) { border-left-color: var(--gold); }
  .result-card:nth-child(3) { border-left-color: var(--navy-mid); }
  .result-card:nth-child(4) { border-left-color: var(--shell); }
  .result-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .result-num span { color: var(--red); }
  .result-card:nth-child(2) .result-num span { color: var(--gold-dark); }
  .result-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }

  /* Right — visual dashboard mockup */
  .results-visual {
    background: var(--navy);
    border-radius: var(--r-xl);
    padding: 28px;
    position: relative;
    overflow: hidden;
  }
  .results-visual::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,43,43,0.2) 0%, transparent 70%);
  }
  .rv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .rv-title { font-size: 14px; font-weight: 700; color: var(--white); }
  .rv-period {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.07);
    padding: 4px 10px;
    border-radius: var(--r-pill);
  }
  .rv-funnel { margin-bottom: 24px; }
  .funnel-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  .funnel-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); width: 80px; flex-shrink: 0; }
  .funnel-bar-track { flex: 1; height: 24px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
  .funnel-bar-fill { height: 100%; border-radius: 4px; display: flex; align-items: center; padding-left: 10px; }
  .funnel-bar-val { font-size: 11px; font-weight: 700; color: var(--white); }
  .fb-red { background: var(--red); }
  .fb-shell { background: var(--shell); }
  .fb-gold { background: var(--gold); }
  .fb-green { background: rgba(76,175,80,0.7); }
  .rv-integrations { }
  .rv-int-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
  .int-chips { display: flex; flex-wrap: wrap; gap: 6px; }
  .int-chip {
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .int-chip.active { background: rgba(212,43,43,0.2); color: var(--red); border-color: rgba(212,43,43,0.3); }
  .int-chip.gold-chip { background: rgba(244,194,64,0.15); color: var(--gold); border-color: rgba(244,194,64,0.25); }

  /* ============================
     TECH STACK — MODERN REDESIGN
  ============================ */
  .tech-stack {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .tech-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .tech-stack-inner {
    position: relative;
    z-index: 2;
  }
  .tech-stack-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
  }
  .tech-stack-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-top: 12px;
  }
  .tech-stack-header h2 span { color: var(--gold); }
  .tech-stack-header .section-label { color: rgba(244,194,64,0.8); }
  .tech-stack-header .section-label::before { background: var(--gold); opacity: 0.6; }
  .tech-stack-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    align-self: end;
    padding-bottom: 4px;
  }

  /* Category tabs */
  .tech-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .tech-tab {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
  }
  .tech-tab:hover {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
  }
  .tech-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
  }

  /* Category rows */
  .tech-categories { display: flex; flex-direction: column; gap: 28px; }

  .tech-category {}
  .tech-cat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .tech-cat-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.07);
  }

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

  .tech-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--r-md);
    padding: 14px 18px;
    cursor: default;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    min-width: 160px;
    flex: 1;
    max-width: 220px;
  }
  .tech-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
  }
  .tech-card:hover .tc-icon-wrap {
    background: var(--red);
    border-color: var(--red);
  }
  .tech-card:hover .tc-icon-wrap i {
    color: var(--white);
  }

  .tc-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }
  .tc-icon-wrap i {
    font-size: 18px;
    transition: color 0.2s;
  }
  .tc-icon-wrap.ic-orange i { color: #FF7A45; }
  .tc-icon-wrap.ic-blue i   { color: #4DA8DA; }
  .tc-icon-wrap.ic-teal i   { color: #2EC4B6; }
  .tc-icon-wrap.ic-purple i { color: #A78BFA; }
  .tc-icon-wrap.ic-green i  { color: #4CAF50; }
  .tc-icon-wrap.ic-yellow i { color: var(--gold); }
  .tc-icon-wrap.ic-red i    { color: #F87171; }
  .tc-icon-wrap.ic-indigo i { color: #818CF8; }
  .tc-icon-wrap.ic-sky i    { color: #38BDF8; }
  .tc-icon-wrap.ic-pink i   { color: #F472B6; }
  .tc-icon-wrap.ic-lime i   { color: #A3E635; }
  .tc-icon-wrap.ic-slate i  { color: #94A3B8; }
  .tc-icon-wrap.ic-white i  { color: rgba(255,255,255,0.7); }

  .tc-info {}
  .tc-name {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .tc-type {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
  }

  /* Bottom capability strip */
  .tech-capabilities {
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .tech-cap-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .tech-cap-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: rgba(212,43,43,0.15);
    border: 1px solid rgba(212,43,43,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .tech-cap-icon i { font-size: 16px; color: var(--red); }
  .tech-cap-text {}
  .tech-cap-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 3px; }
  .tech-cap-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

  /* ============================
     TESTIMONIALS
  ============================ */
  .testimonials {
    padding: 100px 0;
    background: var(--off-white);
  }
  .testimonials-header { text-align: center; margin-bottom: 60px; }
  .testimonials-header h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    margin-top: 8px;
  }
  .testimonials-header h2 span { color: var(--red); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testi-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: 0 2px 16px rgba(26,35,64,0.06);
    position: relative;
  }
  .testi-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 72px;
    font-weight: 800;
    color: var(--red-light);
    line-height: 1;
  }
  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
  .testi-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
  }
  .av-red { background: var(--red); }
  .av-navy { background: var(--navy); }
  .av-gold { background: var(--gold-dark); }
  .testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
  .testi-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

  /* ============================
     CTA SECTION
  ============================ */
  .cta-section {
    padding: 100px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(244,194,64,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244,194,64,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212,43,43,0.15) 0%, transparent 70%);
  }
  .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
  .cta-inner h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 20px;
  }
  .cta-inner h2 span { color: var(--gold); }
  .cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .cta-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 20px; font-weight: 600; letter-spacing: 0.3px; }

  /* ============================
     FOOTER
  ============================ */
  footer {
    background: #111827;
    padding: 64px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin: 16px 0 24px;
    max-width: 280px;
  }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .social-btn i {
    color:#fff;
  }
  .social-btn:hover { background: rgba(212,43,43,0.3); border-color: rgba(212,43,43,0.4); }
  .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: 0.2px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 600; transition: color 0.2s; }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 600; }
  .footer-copy span { color: var(--red); }
  .footer-badges { display: flex; gap: 10px; }
  .footer-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.3);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* ============================
     ANIMATIONS
  ============================ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .anim { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
  .anim-1 { animation-delay: 0.1s; }
  .anim-2 { animation-delay: 0.25s; }
  .anim-3 { animation-delay: 0.4s; }
  .anim-4 { animation-delay: 0.55s; }
  .anim-5 { animation-delay: 0.7s; }

  /* ============================
     RESPONSIVE
  ============================ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .how-step { margin-bottom: 40px; }
    .results-inner { grid-template-columns: 1fr; }
    .tech-stack-header { grid-template-columns: 1fr; gap: 16px; }
    .tech-capabilities { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-hamburger { display: flex; }
    .nav-cta { display: none; }
    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--navy);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      z-index: 200;
      list-style: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 20px; font-weight: 700; color: var(--white); }
    .services-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .results-metrics { grid-template-columns: 1fr 1fr; }
    .tech-cards-row { flex-direction: column; }
    .tech-card { max-width: 100%; }
    .tech-capabilities { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  }

  /* ============================
     MODAL
  ============================ */


  /* hubspot scheduler */

  #hubspot_scheduler {
    display:none;
  }

  div#hubspot_scheduler h3, div#hubspot_scheduler p {
      text-align:Center;
      max-width:500px;
      display:block;
      margin:0 auto;
  }

  div#hubspot_scheduler h3 {
      margin-top:30px;
      color:#d42b2b;
  }

  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 26, 0.75);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .modal-overlay.open {
    opacity: 1;
    visibility: visible;
  }
  .modal {
    background: var(--white);
    border-radius: var(--r-xl);
    width: 100%;
    max-width: 560px;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(10,14,26,0.4);
  }
  .modal-overlay.open .modal {
    transform: translateY(0) scale(1);
  }
  .modal-header {
    background: var(--navy);
    padding: 32px 36px 28px;
    position: relative;
    overflow: hidden;
  }
  .modal-header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,43,43,0.2) 0%, transparent 70%);
  }
  .modal-header::after {
    content: '';
    position: absolute;
    bottom: -30px; left: 20%;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,194,64,0.12) 0%, transparent 70%);
  }
  .modal-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
  }
  .modal-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
  }
  .modal-title span { color: var(--gold); }
  .modal-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }
  .modal-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
    line-height: 1;
  }
  .modal-close:hover {
    background: rgba(212,43,43,0.4);
    color: var(--white);
    border-color: rgba(212,43,43,0.5);
  }
  .modal-body {
    padding: 32px 36px 36px;
    max-height:650px;
    overflow:Scroll;
  }

  .modal-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--off-white);
    border-radius: var(--r-md);
    padding: 14px 18px;
    margin-bottom: 28px;
  }
  .modal-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
  }
  .modal-trust-item i { color: var(--red); font-size: 13px; }
  .modal-trust-divider { width: 1px; height: 20px; background: var(--navy-light); flex-shrink: 0; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .form-row-single {
      margin-bottom:14px !important;
      display: inline-block;
      width: 100%;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
  }
  .form-group.full { grid-column: 1 / -1; }
  .form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.2px;
  }
  .form-label span { color: var(--red); }
  .form-input, .form-select, .form-textarea {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--navy-light);
    border-radius: var(--r-md);
    padding: 11px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: #A0AABF; }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(212,43,43,0.1);
  }
  .form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6480' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
  .form-textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
  .modal-submit {
    width: 100%;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 15px;
    border-radius: var(--r-pill);
    border: none;
    background: var(--red);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(212,43,43,0.35);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .modal-submit:hover {
    background: var(--red-dark);
    box-shadow: 0 6px 24px rgba(212,43,43,0.45);
    transform: translateY(-1px);
  }
  .modal-submit:active { transform: scale(0.98); }
  .modal-fine-print {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
  }

  /* Success state */
  .modal-success {
    display: none;
    text-align: center;
    padding: 48px 36px;
  }
  .modal-success.show { display: block; }
  .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #E8F5E9;
    border: 2px solid #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
  }
  .modal-success h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
  .modal-success p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
  }

  @media (max-width: 600px) {
    .modal-header { padding: 28px 24px 24px; }
    .modal-body { padding: 24px 24px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .modal-trust { flex-wrap: wrap; gap: 10px; }
    .modal-trust-divider { display: none; }
  }

@media screen and (max-width:450px){
  a.nav-logo {
      max-width:175px
  }


  div#modalFormView {
      max-height:400px;
  }
    
}

img.main_logo {
    max-width:40px;
    margin-right:5px;
}

a.nav-logo p {
    display:block !important;
    color:#fff;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}

a.nav-logo p span {
    color:#f4c240;
    font-weight:600;
}

