 :root {
      --bg: hsl(240, 20%, 4%);
      --bg-card: hsl(240, 15%, 8%);
      --bg-secondary: hsl(240, 12%, 14%);
      --bg-muted: hsl(240, 10%, 12%);
      --fg: hsl(228, 20%, 92%);
      --fg-muted: hsl(228, 14%, 68%);
      --fg-soft: hsl(228, 16%, 80%);
      --primary: hsl(217, 91%, 60%);
      --accent: hsl(174, 72%, 50%);
      --border: hsl(240, 10%, 16%);
      --border-glow: hsl(217, 91%, 60%, 0.28);
      --grad: linear-gradient(135deg, hsl(217, 91%, 60%), hsl(174, 72%, 50%));
      --grad-text: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(174, 72%, 50%) 100%);
      --glow: 0 0 40px -8px hsl(217, 91%, 60%, 0.45), 0 0 80px -16px hsl(217, 91%, 60%, 0.2);
      --glow-sm: 0 0 20px -4px hsl(217, 91%, 60%, 0.3);
      --radius: 0.75rem;
      --radius-sm: 8px;
      --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --grid-line: hsl(217, 91%, 60%, 0.1);
      --max-w: 1240px;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--fg);
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Space Grotesk', sans-serif;
      line-height: 1.15
    }

    h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 800
    }

    h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      font-weight: 700
    }

    h3 {
      font-size: 1.15rem;
      font-weight: 600
    }

    ::-webkit-scrollbar {
      width: 4px
    }

    ::-webkit-scrollbar-track {
      background: var(--bg)
    }

    ::-webkit-scrollbar-thumb {
      background: hsl(217, 91%, 60%, 0.3);
      border-radius: 2px
    }

    /* UTILITY */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px
    }

    .grad {
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    /* GRID BG (hero pattern) */
    .grid-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 40%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 40%, transparent 100%);
    }

    /* BADGE */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      background: hsl(217, 91%, 60%, 0.1);
      border: 1px solid hsl(217, 91%, 60%, 0.25);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--primary);
      animation: pulse 2s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.3
      }
    }

    /* SECTION */
    section {
      position: relative;
      z-index: 1;
      padding: 100px 0
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px
    }

    .section-header h2 {
      margin-bottom: 16px;
      letter-spacing: -0.02em
    }

    .section-header p {
      color: var(--fg-muted);
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.02rem
    }

    /* BUTTONS */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--grad);
      color: #fff;
      font-weight: 700;
      font-size: 0.92rem;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: var(--t);
      box-shadow: var(--glow-sm);
      font-family: 'Space Grotesk', sans-serif;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--glow);
      opacity: 0.92
    }

    .btn-primary svg {
      width: 16px;
      height: 16px;
      transition: transform var(--t)
    }

    .btn-primary:hover svg {
      transform: translateX(3px)
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      border: 1px solid var(--border-glow);
      padding: 12px 28px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--t);
      background: transparent;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
    }

    .btn-ghost:hover {
      background: linear-gradient(315deg, hsl(217, 91%, 60%), hsl(174, 72%, 50%));
      color: #fff;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 0 24px -4px hsl(217, 91%, 60%, 0.45), 0 0 48px -10px hsl(174, 72%, 50%, 0.2);
    }

    .btn-ghost svg {
      width: 16px;
      height: 16px
    }

    .btn-large {
      padding: 17px 44px;
      font-size: 1.05rem;
      border-radius: 10px
    }

    /* FADE ANIMATION */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0)
    }

    /* ═══ NAV ═══ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 28px;
      transition: var(--t);
    }

    nav.scrolled {
      background: hsl(240, 20%, 4%, 0.94);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .nav-logo img {
      height: 38px;
      width: auto;
      object-fit: contain
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none
    }

    .nav-links>li {
      position: relative
    }

    .nav-links>li>a {
      color: var(--fg-soft);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: var(--t);
      display: flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    .nav-links>li>a:hover,
    .nav-links>li.active>a {
      color: var(--fg);
      background: hsl(217, 91%, 60%, 0.07)
    }

    .nav-links>li>a svg {
      width: 14px;
      height: 14px;
      transition: transform var(--t)
    }

    .nav-links>li:hover>a svg {
      transform: rotate(180deg)
    }

    /* DROPDOWN */
    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 220px;
      background: hsl(240, 15%, 9%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
      z-index: 100;
    }

    .nav-links>li:hover .dropdown {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0)
    }

    .dropdown a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      color: var(--fg-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: var(--t);
      border-bottom: 1px solid var(--border);
    }

    .dropdown a:last-child {
      border-bottom: none
    }

    .dropdown a:hover {
      background: hsl(217, 91%, 60%, 0.08);
      color: var(--fg)
    }

    .dropdown a svg {
      width: 14px;
      height: 14px;
      color: var(--primary);
      flex-shrink: 0
    }

    .nav-cta {
      background: var(--grad);
      color: #fff;
      font-weight: 700;
      font-size: 0.88rem;
      padding: 10px 22px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: var(--t);
      box-shadow: var(--glow-sm);
      white-space: nowrap;
    }

    .nav-cta:hover {
      opacity: 0.88;
      transform: translateY(-1px);
      box-shadow: var(--glow)
    }

    .nav-mobile-btn {
      display: none;
      background: none;
      border: none;
      color: var(--fg);
      cursor: pointer
    }

    .nav-mobile-btn svg {
      width: 24px;
      height: 24px
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: hsl(240, 20%, 4%, 0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 20px 28px;
      flex-direction: column;
      gap: 4px;
      z-index: 999;
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      color: var(--fg-soft);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      padding: 10px 12px;
      border-radius: 6px;
      transition: var(--t);
    }

    .mobile-menu a:hover {
      background: hsl(217, 91%, 60%, 0.08);
      color: var(--fg)
    }

    /* ── GRID BG ── */
    .grid-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        linear-gradient(hsl(217, 91%, 60%, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, hsl(217, 91%, 60%, 0.12) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      z-index: 1;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      overflow: hidden;
    }

    .hero-glow {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 100%;
      pointer-events: none;
      background: radial-gradient(ellipse 60% 50% at 50% 0%, hsl(217, 91%, 60%, 0.12), transparent);
    }

    .hero-content {
      position: relative;
      max-width: 820px
    }

    .hero p {
      font-size: 1.12rem;
      color: var(--fg-muted);
      max-width: 600px;
      margin: 0 auto 40px;
      font-weight: 400;
      line-height: 1.75;
    }

    .hero h1 {
      margin-bottom: 24px;
      letter-spacing: -0.03em
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--grad);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 40px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      transition: var(--t);
      box-shadow: var(--glow-sm);
      font-family: 'Space Grotesk', sans-serif;
      letter-spacing: 0.02em;
    }

    .hero-cta:hover {
      transform: translateY(-2px);
      opacity: 0.9
    }

    .hero-cta svg {
      transition: transform var(--t)
    }

    .hero-cta:hover svg {
      transform: translateX(4px)
    }

    .hero-sub {
      margin-top: 16px;
      font-size: 0.75rem;
      color: var(--fg-muted)
    }

    .hero-sub a {
      color: var(--primary);
      text-decoration: none
    }

    /* ── STATS ── */
    .stats-bar {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 900px;
      margin: 64px auto 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .stat {
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid var(--border);
      position: relative;
    }

    .stat:last-child {
      border-right: none
    }

    .stat::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad);
      opacity: 0;
      transition: opacity var(--t);
    }

    .stat:hover::after {
      opacity: 1
    }

    .stat-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--fg);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-num span {
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--fg-muted);
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }



    /* ═══ AUTOMATION OPPORTUNITY (CEO SECTION) ═══ */
    #opportunity {
      background: var(--bg-secondary);
      overflow: hidden
    }

    .opp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden
    }

    .opp-left {
      padding: 56px 52px;
      background: var(--bg-card);
      border-right: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .opp-left::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, hsl(217, 91%, 60%, 0.12), transparent 70%);
      pointer-events: none;
    }

    .opp-left h2 {
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      line-height: 1.2
    }

    .opp-left p {
      color: var(--fg-muted);
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 0.97rem
    }

    .opp-left p strong {
      color: var(--fg);
      font-weight: 600
    }

    .opp-left .opp-cta {
      margin-top: 32px
    }

    .opp-right {
      background: var(--bg-secondary);
      padding: 0
    }

    .opp-stat-list {
      display: flex;
      flex-direction: column;
      height: 100%
    }

    .opp-stat-item {
      padding: 32px 40px;
      border-bottom: 1px solid var(--border);
      position: relative;
      transition: var(--t);
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .opp-stat-item:last-child {
      border-bottom: none
    }

    .opp-stat-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--grad);
      opacity: 0;
      transition: opacity var(--t);
    }

    .opp-stat-item:hover {
      background: var(--bg-card)
    }

    .opp-stat-item:hover::before {
      opacity: 1
    }

    .opp-stat-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 8px;
    }

    .opp-stat-label {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--fg);
      margin-bottom: 4px
    }

    .opp-stat-desc {
      font-size: 0.83rem;
      color: var(--fg-muted);
      line-height: 1.5
    }

    /* DEPARTMENTS WE AUTOMATE */
    #departments {
      background: var(--bg)
    }

    .dept-intro {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 52px
    }

    .dept-intro h2 {
      margin-bottom: 16px;
      letter-spacing: -0.02em
    }

    .dept-intro p {
      color: var(--fg-muted);
      font-size: 1.02rem;
      line-height: 1.75
    }

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

    .dept-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: all var(--t);
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .dept-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, hsl(217, 91%, 60%, 0.07), transparent 60%);
      opacity: 0;
      transition: opacity var(--t);
    }

    .dept-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-3px);
      box-shadow: var(--glow-sm)
    }

    .dept-card:hover::before {
      opacity: 1
    }

    .dept-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: hsl(217, 91%, 60%, 0.1);
      border: 1px solid hsl(217, 91%, 60%, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .dept-icon svg {
      width: 22px;
      height: 22px
    }

    .dept-card h3 {
      font-size: 1.02rem;
      margin-bottom: 8px
    }

    .dept-card p {
      font-size: 0.85rem;
      color: var(--fg-muted);
      line-height: 1.6
    }

    .dept-saving {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 14px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.04em;
    }

    .dept-saving svg {
      width: 13px;
      height: 13px
    }

    /* FREE CONSULT STRIP */
    .consult-strip {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 32px 0;
    }

    .consult-strip-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .consult-strip-text h3 {
      font-size: 1.2rem;
      margin-bottom: 4px
    }

    .consult-strip-text p {
      color: var(--fg-muted);
      font-size: 0.9rem
    }

    .consult-strip-text strong {
      color: var(--primary)
    }

    /* ═══ PRODUCTS ═══ */
    #products {
      background: var(--bg-secondary)
    }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px
    }

    .product-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: all var(--t);
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad)
    }

    .product-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: var(--glow)
    }

    .product-logo-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px
    }

    .product-logo-row img {
      height: 40px;
      width: auto;
      object-fit: contain;
      max-width: 180px
    }

    .product-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .product-icon-wrap img {
      width: 32px;
      height: 32px;
      object-fit: contain
    }

    .product-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700
    }

    .product-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      background: hsl(174, 72%, 50%, 0.1);
      border: 1px solid hsl(174, 72%, 50%, 0.25);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .product-tagline {
      font-size: 0.92rem;
      font-weight: 500;
      margin-bottom: 16px;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .product-desc {
      color: var(--fg-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 28px
    }

    .product-stats {
      display: flex;
      gap: 28px;
      margin-bottom: 28px
    }

    .product-stat {
      text-align: left
    }

    .product-stat .num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--fg);
      line-height: 1;
    }

    .product-stat .num span {
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .product-stat .lbl {
      font-size: 0.72rem;
      color: var(--fg-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 3px
    }

    .product-actions {
      display: flex;
      gap: 12px
    }

    /* ═══ SUITE ═══ */
    #suite {
      background: var(--bg)
    }

    .suite-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 5px;
      margin: 0 auto 48px;
      width: fit-content;
      flex-wrap: wrap;
    }

    .suite-tab {
      padding: 10px 22px;
      border-radius: 7px;
      border: none;
      background: transparent;
      color: var(--fg-muted);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--t);
      font-family: 'Inter', sans-serif;
      white-space: nowrap;
    }

    .suite-tab:hover {
      color: var(--fg)
    }

    .suite-tab.active {
      background: var(--grad);
      color: #fff;
      box-shadow: 0 0 20px hsl(217, 91%, 60%, 0.3)
    }

    .suite-panel {
      display: none
    }

    .suite-panel.active {
      display: block
    }

    .suite-panel-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .suite-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      transition: all var(--t);
    }

    .suite-item:hover {
      border-color: var(--border-glow);
      background: var(--bg-secondary);
      transform: translateY(-2px);
      box-shadow: var(--glow-sm);
    }

    .suite-item-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: hsl(217, 91%, 60%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .suite-item-icon svg {
      width: 26px;
      height: 26px
    }

    .suite-item h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--fg)
    }

    .suite-item p {
      font-size: 0.86rem;
      color: var(--fg-muted);
      line-height: 1.6
    }

    .suite-cta {
      text-align: center;
      margin-top: 44px
    }

    .suite-cta p {
      color: var(--fg-soft);
      margin-bottom: 16px;
      font-size: 0.96rem
    }

    .suite-custom-card {
      border: 1px dashed hsl(217, 91%, 60%, 0.22);
      background: hsl(217, 91%, 60%, 0.03);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 160px;
      cursor: pointer;
      border-radius: var(--radius);
      padding: 28px;
      transition: all var(--t);
    }

    .suite-custom-card:hover {
      border-color: hsl(217, 91%, 60%, 0.4);
      background: hsl(217, 91%, 60%, 0.06)
    }

    .suite-custom-plus {
      font-size: 2.2rem;
      margin-bottom: 8px;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 800;
    }

    .suite-custom-card h4 {
      margin-bottom: 6px;
      font-size: 1rem
    }

    .suite-custom-card p {
      font-size: 0.85rem;
      color: var(--fg-muted)
    }

    /* ═══ SERVICES ═══ */
    #services {
      background: var(--bg-secondary)
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .service-card {
      background: var(--bg-card);
      padding: 36px 32px;
      transition: all var(--t);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 50%, hsl(217, 91%, 60%, 0.06), transparent 60%);
      opacity: 0;
      transition: opacity var(--t);
    }

    .service-card:hover::before {
      opacity: 1
    }

    .service-card:hover {
      background: var(--bg-secondary)
    }

    .svc-extra {
      display: none
    }

    .svc-extra.visible {
      display: block
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: hsl(217, 91%, 60%, 0.1);
      border: 1px solid hsl(217, 91%, 60%, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--primary);
    }

    .service-icon svg {
      width: 22px;
      height: 22px
    }

    .service-card h3 {
      margin-bottom: 10px
    }

    .service-card p {
      color: var(--fg-muted);
      font-size: 0.9rem;
      line-height: 1.6
    }

    .services-more {
      text-align: center;
      margin-top: 32px
    }

    /* ═══ CTA BANNER (beautiful) ═══ */
    .cta-section {
      padding: 0 0 100px;
      position: relative;
      z-index: 1;
      background: var(--bg)
    }

    .cta-banner {
      position: relative;
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid hsl(217, 91%, 60%, 0.25);
      border-radius: 20px;
      padding: 72px 60px;
      text-align: center;
    }

    /* multi-layer glow */
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, hsl(217, 91%, 60%, 0.2) 0%, transparent 65%);
      pointer-events: none;
    }

    /* corner accents */
    .cta-banner::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 20px;
      background: linear-gradient(135deg, hsl(217, 91%, 60%, 0.15), transparent 40%, transparent 60%, hsl(174, 72%, 50%, 0.15));
      pointer-events: none;
      z-index: 0;
    }

    /* dot pattern */
    .cta-dots {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, hsl(217, 91%, 60%, 0.18) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 40%, #000 100%);
      -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 40%, #000 100%);
    }

    .cta-content {
      position: relative;
      z-index: 1
    }

    .cta-banner h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      margin-bottom: 18px;
      letter-spacing: -0.02em
    }

    .cta-banner>div>p {
      color: var(--fg-muted);
      font-size: 1.02rem;
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.75
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap
    }

    .cta-note {
      font-size: 0.82rem;
      color: hsl(228, 14%, 58%);
      margin-top: 20px;
      position: relative;
      z-index: 1
    }

    .cta-note span {
      color: var(--accent)
    }

    .cta-pills {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--fg-muted);
      background: hsl(217, 91%, 60%, 0.07);
      border: 1px solid var(--border);
      padding: 5px 14px;
      border-radius: 100px;
    }

    .cta-pill svg {
      width: 13px;
      height: 13px;
      color: var(--primary)
    }

    /* ═══ TESTIMONIALS ═══ */
    #testimonials {
      background: var(--bg-secondary)
    }

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

    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: all var(--t);
    }

    .testimonial-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-3px)
    }

    .stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px
    }

    .stars svg {
      width: 15px;
      height: 15px;
      fill: #f59e0b
    }

    .testimonial-quote {
      font-size: 1rem;
      font-weight: 500;
      color: var(--fg);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-quote::before {
      content: '"';
      font-size: 2rem;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 0;
      vertical-align: -0.5rem;
      margin-right: 4px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .author-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: hsl(217, 91%, 60%, 0.1);
      border: 2px solid hsl(217, 91%, 60%, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      color: var(--primary);
      font-size: 0.95rem;
    }

    .author-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--fg)
    }

    .author-role {
      font-size: 0.8rem;
      color: var(--fg-muted)
    }

    /* ═══ CONTACT ═══ */
    #contact {
      background: var(--bg)
    }

    .contact-form-wrap {
      max-width: 680px;
      margin: 0 auto;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 52px;
      position: relative;
      overflow: hidden;
    }

    .contact-form-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad)
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px
    }

    .form-group {
      margin-bottom: 20px
    }

    .form-label {
      display: block;
      font-size: 0.85rem;
      color: var(--fg-soft);
      margin-bottom: 8px;
      font-weight: 500
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      color: var(--fg);
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      outline: none;
      transition: border-color var(--t);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: hsl(217, 91%, 60%, 0.5)
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--fg-muted)
    }

    .form-select {
      color: var(--fg-muted);
      cursor: pointer
    }

    .form-textarea {
      resize: vertical
    }

    .form-submit {
      width: 100%;
      background: var(--grad);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      font-family: 'Space Grotesk', sans-serif;
      letter-spacing: 0.02em;
      transition: opacity var(--t), box-shadow var(--t);
      box-shadow: 0 0 30px hsl(217, 91%, 60%, 0.25);
    }

    .form-submit:hover {
      opacity: 0.88;
      box-shadow: var(--glow)
    }

    .form-note {
      text-align: center;
      margin-top: 16px;
      font-size: 0.82rem;
      color: var(--fg-muted)
    }

    /* ═══ FOOTER ═══ */
    footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      padding: 60px 0 32px;
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-logo img {
      height: 42px;
      width: auto;
      object-fit: contain;
      display: block;
      margin-bottom: 16px
    }

    .footer-brand p {
      color: var(--fg-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 260px
    }

    .footer-col h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.83rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .footer-col ul li a {
      color: var(--fg-muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color var(--t)
    }

    .footer-col ul li a:hover {
      color: var(--primary)
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      color: var(--fg-muted);
      font-size: 0.84rem
    }

    .social-links {
      display: flex;
      gap: 12px
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--fg-muted);
      text-decoration: none;
      transition: var(--t);
    }

    .social-link:hover {
      border-color: var(--border-glow);
      color: var(--primary);
      background: hsl(217, 91%, 60%, 0.1)
    }

    .social-link svg {
      width: 16px;
      height: 16px
    }

    /* ═══ RESPONSIVE ═══ */
    @media(max-width:960px) {
      .opp-grid {
        grid-template-columns: 1fr
      }

      .opp-left {
        border-right: none;
        border-bottom: 1px solid var(--border)
      }

      .dept-grid {
        grid-template-columns: 1fr 1fr
      }

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

      .suite-panel-inner {
        grid-template-columns: 1fr 1fr
      }

      .testimonials-grid {
        grid-template-columns: 1fr
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }

      .stats-bar {
        grid-template-columns: repeat(2, 1fr)
      }

      .stat:nth-child(2) {
        border-right: none
      }

      .stat:nth-child(3) {
        border-top: 1px solid var(--border)
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .cta-banner {
        padding: 48px 32px
      }
    }

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

      .nav-mobile-btn {
        display: flex
      }

      .dept-grid {
        grid-template-columns: 1fr
      }

      .suite-panel-inner {
        grid-template-columns: 1fr
      }

      .testimonials-grid {
        grid-template-columns: 1fr
      }

      .footer-inner {
        grid-template-columns: 1fr
      }

      .hero {
        padding: 100px 20px 60px
      }

      .cta-banner {
        padding: 40px 24px
      }

      section {
        padding: 72px 0
      }

      .stats-bar {
        grid-template-columns: 1fr 1fr
      }

      .contact-form-wrap {
        padding: 36px 24px
      }

      .consult-strip-inner {
        flex-direction: column;
        text-align: center
      }

      .opp-left {
        padding: 36px 28px
      }

      .suite-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius)
      }

      .suite-tab {
        padding: 8px 14px;
        font-size: 0.82rem
      }
    }

    /* ═══ CEO / AUTOMATION SECTION ═══ */
    #automation {
      background: var(--bg-secondary);
      overflow: hidden
    }

    .auto-hero {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 72px;
      position: relative;
    }

    .auto-hero h2 {
      margin-bottom: 20px;
      letter-spacing: -0.02em
    }

    .auto-hero .lead {
      font-size: 1.18rem;
      color: var(--fg-muted);
      line-height: 1.8;
      max-width: 860px;
      margin: 0 auto;
    }

    .auto-hero .lead strong {
      color: var(--fg)
    }

    .auto-savings {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 64px;
    }

    .auto-saving-item {
      background: var(--bg-card);
      padding: 40px 32px;
      text-align: center;
      position: relative;
      transition: var(--t);
    }

    .auto-saving-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad);
      opacity: 0;
      transition: opacity var(--t);
    }

    .auto-saving-item:hover::before {
      opacity: 1
    }

    .auto-saving-item:hover {
      background: var(--bg-muted)
    }

    .auto-saving-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 10px;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .auto-saving-label {
      font-size: 1rem;
      font-weight: 600;
      color: var(--fg);
      margin-bottom: 8px
    }

    .auto-saving-desc {
      font-size: 0.85rem;
      color: var(--fg-muted);
      line-height: 1.6
    }

    .auto-question-wrap {
      background: var(--bg-card);
      border: 1px solid hsl(217, 91%, 60%, 0.2);
      border-radius: var(--radius);
      padding: 56px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .auto-question-wrap::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 500px;
      height: 320px;
      background: radial-gradient(ellipse, hsl(217, 91%, 60%, 0.12), transparent 65%);
      pointer-events: none;
    }

    .auto-question-wrap h2 {
      font-size: clamp(1.9rem, 3.2vw, 2.6rem);
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      position: relative;
      z-index: 1;
    }

    .auto-question-wrap p {
      font-size: 1.05rem;
      color: var(--fg-muted);
      max-width: 800px;
      margin: 0 auto 36px;
      line-height: 1.75;
      position: relative;
      z-index: 1;
    }

    .auto-free-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      background: hsl(174, 72%, 50%, 0.1);
      border: 1px solid hsl(174, 72%, 50%, 0.25);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .auto-free-tag svg {
      width: 14px;
      height: 14px
    }

    /* ═══ DEPARTMENTS ═══ */
    #departments {
      background: var(--bg)
    }

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

    .dept-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      transition: all var(--t);
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .dept-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, hsl(217, 91%, 60%, 0.07), transparent 60%);
      opacity: 0;
      transition: opacity var(--t);
    }

    .dept-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-3px);
      box-shadow: var(--glow-sm)
    }

    .dept-card:hover::before {
      opacity: 1
    }

    .dept-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: hsl(217, 91%, 60%, 0.1);
      border: 1px solid hsl(217, 91%, 60%, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .dept-icon svg {
      width: 22px;
      height: 22px
    }

    .dept-card h3 {
      font-size: 1.02rem;
      margin-bottom: 8px
    }

    .dept-card p {
      font-size: 0.85rem;
      color: var(--fg-muted);
      line-height: 1.6
    }

    .dept-saving {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-top: 14px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.04em;
    }

    .dept-saving svg {
      width: 13px;
      height: 13px
    }

    /* ═══ SUITE ═══ */
    #suite {
      background: var(--bg-secondary)
    }

    .suite-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 5px;
      margin: 0 auto 48px;
      width: fit-content;
      flex-wrap: wrap;
    }

    .suite-tab {
      padding: 10px 22px;
      border-radius: 7px;
      border: none;
      background: transparent;
      color: var(--fg-muted);
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--t);
      font-family: 'Inter', sans-serif;
      white-space: nowrap;
    }

    .suite-tab:hover {
      color: var(--fg)
    }

    .suite-tab.active {
      background: var(--grad);
      color: #fff;
      box-shadow: 0 0 20px hsl(217, 91%, 60%, 0.3)
    }

    .suite-panel {
      display: none
    }

    .suite-panel.active {
      display: block
    }

    .suite-panel-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .suite-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      transition: all var(--t);
    }

    .suite-item:hover {
      border-color: var(--border-glow);
      background: var(--bg-secondary);
      transform: translateY(-2px);
      box-shadow: var(--glow-sm);
    }

    .suite-item-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: hsl(217, 91%, 60%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 18px;
    }

    .suite-item-icon svg {
      width: 26px;
      height: 26px
    }

    .suite-item h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--fg)
    }

    .suite-item p {
      font-size: 0.86rem;
      color: var(--fg-muted);
      line-height: 1.6
    }

    .suite-cta {
      text-align: center;
      margin-top: 44px
    }

    .suite-cta p {
      color: var(--fg-soft);
      margin-bottom: 16px;
      font-size: 0.96rem
    }

    /* ═══ PRODUCTS ═══ */
    #products {
      background: var(--bg)
    }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px
    }

    .product-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px;
      position: relative;
      overflow: hidden;
      transition: all var(--t);
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad)
    }

    .product-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-4px);
      box-shadow: var(--glow)
    }

    .product-logo-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px
    }

    .product-logo-row img {
      height: 40px;
      width: auto;
      object-fit: contain;
      max-width: 180px
    }

    .product-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .product-icon-wrap img {
      width: 32px;
      height: 32px;
      object-fit: contain
    }

    .product-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem;
      font-weight: 700
    }

    .product-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      background: hsl(174, 72%, 50%, 0.1);
      border: 1px solid hsl(174, 72%, 50%, 0.25);
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .product-tagline {
      font-size: 0.92rem;
      font-weight: 500;
      margin-bottom: 16px;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .product-desc {
      color: var(--fg-muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 24px
    }

    .product-stats {
      display: flex;
      gap: 24px;
      margin-bottom: 20px
    }

    .product-stat {
      text-align: left
    }

    .product-stat .num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--fg);
      line-height: 1;
    }

    .product-stat .num span {
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .product-stat .lbl {
      font-size: 0.72rem;
      color: var(--fg-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 3px
    }

    .product-featured {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      margin-top: 4px;
      margin-bottom: 24px;
    }

    .product-featured-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--fg-muted);
      margin-bottom: 10px;
    }

    .product-featured-logos {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap
    }

    .featured-pill {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--fg-soft);
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      padding: 4px 12px;
      border-radius: 100px;
    }

    .product-actions {
      display: flex;
      gap: 12px
    }

    /* ═══ CTA BANNER ═══ */
    .cta-section {
      padding: 80px 0 100px;
      position: relative;
      z-index: 1;
      background: var(--bg-secondary)
    }

    .cta-banner {
      position: relative;
      overflow: hidden;
      background: var(--bg-card);
      border: 1px solid hsl(217, 91%, 60%, 0.25);
      border-radius: 20px;
      padding: 72px 60px;
      text-align: center;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, hsl(217, 91%, 60%, 0.2) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-banner::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 20px;
      background: linear-gradient(135deg, hsl(217, 91%, 60%, 0.15), transparent 40%, transparent 60%, hsl(174, 72%, 50%, 0.15));
      pointer-events: none;
      z-index: 0;
    }

    .cta-dots {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(circle, hsl(217, 91%, 60%, 0.18) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 40%, #000 100%);
      -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 40%, #000 100%);
    }

    .cta-content {
      position: relative;
      z-index: 1
    }

    .cta-banner h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      margin-bottom: 18px;
      letter-spacing: -0.02em
    }

    .cta-banner>div>p {
      color: var(--fg-muted);
      font-size: 1.02rem;
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.75
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap
    }

    .cta-note {
      font-size: 0.82rem;
      color: hsl(228, 14%, 58%);
      margin-top: 20px;
      position: relative;
      z-index: 1
    }

    .cta-note span {
      color: var(--accent)
    }

    .cta-pills {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--fg-muted);
      background: hsl(217, 91%, 60%, 0.07);
      border: 1px solid var(--border);
      padding: 5px 14px;
      border-radius: 100px;
    }

    .cta-pill svg {
      width: 13px;
      height: 13px;
      color: var(--primary)
    }

    /* ═══ SERVICES ═══ */
    #services {
      background: var(--bg)
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .service-card {
      background: var(--bg-card);
      padding: 36px 32px;
      transition: all var(--t);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 50%, hsl(217, 91%, 60%, 0.06), transparent 60%);
      opacity: 0;
      transition: opacity var(--t);
    }

    .service-card:hover::before {
      opacity: 1
    }

    .service-card:hover {
      background: var(--bg-secondary)
    }

    .svc-extra {
      display: none
    }

    .svc-extra.visible {
      display: block
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: hsl(217, 91%, 60%, 0.1);
      border: 1px solid hsl(217, 91%, 60%, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--primary);
    }

    .service-icon svg {
      width: 22px;
      height: 22px
    }

    .service-card h3 {
      margin-bottom: 10px
    }

    .service-card p {
      color: var(--fg-muted);
      font-size: 0.9rem;
      line-height: 1.6
    }

    .services-more {
      text-align: center;
      margin-top: 32px
    }

    /* ═══ TESTIMONIALS ═══ */
    #testimonials {
      background: var(--bg-secondary)
    }

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

    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: all var(--t);
    }

    .testimonial-card:hover {
      border-color: var(--border-glow);
      transform: translateY(-3px)
    }

    .stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px
    }

    .stars svg {
      width: 15px;
      height: 15px;
      fill: #f59e0b
    }

    .testimonial-quote {
      font-size: 1rem;
      font-weight: 500;
      color: var(--fg);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

    .testimonial-quote::before {
      content: '"';
      font-size: 2rem;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 0;
      vertical-align: -0.5rem;
      margin-right: 4px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .author-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: hsl(217, 91%, 60%, 0.1);
      border: 2px solid hsl(217, 91%, 60%, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      color: var(--primary);
    }

    .author-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--fg)
    }

    .author-role {
      font-size: 0.8rem;
      color: var(--fg-muted)
    }

    /* ═══ CONTACT ═══ */
    #contact {
      background: var(--bg)
    }

    .contact-form-wrap {
      max-width: 680px;
      margin: 0 auto;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 52px;
      position: relative;
      overflow: hidden;
    }

    .contact-form-wrap::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad)
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px
    }

    .form-group {
      margin-bottom: 20px
    }

    .form-label {
      display: block;
      font-size: 0.85rem;
      color: var(--fg-soft);
      margin-bottom: 8px;
      font-weight: 500
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      color: var(--fg);
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      outline: none;
      transition: border-color var(--t);
    }

    .form-select#cf-country-code {
      max-width: 140px;
      flex-shrink: 0
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: hsl(217, 91%, 60%, 0.5)
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--fg-muted)
    }

    .form-select {
      color: var(--fg-muted);
      cursor: pointer
    }

    .form-textarea {
      resize: vertical
    }

    .form-submit {
      width: 100%;
      background: var(--grad);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      font-family: 'Space Grotesk', sans-serif;
      letter-spacing: 0.02em;
      transition: opacity var(--t), box-shadow var(--t);
      box-shadow: 0 0 30px hsl(217, 91%, 60%, 0.25);
    }

    .form-submit:hover {
      opacity: 0.88;
      box-shadow: var(--glow)
    }

    .form-note {
      text-align: center;
      margin-top: 16px;
      font-size: 0.82rem;
      color: var(--fg-muted)
    }

    /* ═══ RESPONSIVE ═══ */
    @media(max-width:960px) {
      .auto-savings {
        grid-template-columns: 1fr 1fr
      }

      .dept-grid {
        grid-template-columns: 1fr 1fr
      }

      .suite-panel-inner {
        grid-template-columns: 1fr 1fr
      }

      .products-grid {
        grid-template-columns: 1fr
      }

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

      .testimonials-grid {
        grid-template-columns: 1fr
      }

      .cta-banner {
        padding: 48px 32px
      }

      .auto-question-wrap {
        padding: 40px 32px
      }

      .contact-form-wrap {
        padding: 40px 28px
      }
    }

    @media(max-width:640px) {
      .auto-savings {
        grid-template-columns: 1fr
      }

      .dept-grid {
        grid-template-columns: 1fr
      }

      .suite-panel-inner {
        grid-template-columns: 1fr
      }

      .auto-question-wrap {
        padding: 36px 20px
      }

      .cta-banner {
        padding: 40px 20px
      }

      .contact-form-wrap {
        padding: 32px 18px
      }

      .form-row {
        grid-template-columns: 1fr
      }

      section {
        padding: 72px 0
      }

      .suite-tab {
        padding: 8px 14px;
        font-size: 0.82rem
      }
    }


    /* ═══════════════════════════════════════
   MOBILE OPTIMISATION  (≤640 / ≤425 / ≤375 / ≤320)
   ═══════════════════════════════════════ */

    /* ── 640px and below ── */
    @media(max-width:640px) {

      /* NAV */
      .nav-inner {
        height: 60px;
        padding: 0 16px
      }

      .nav-logo img {
        height: 32px
      }

      .nav-links {
        display: none
      }

      .nav-cta {
        display: none
      }

      /* hide desktop CTA – mobile menu has it */
      .nav-mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        flex-shrink: 0
      }

      .mobile-menu {
        top: 60px;
        padding: 16px 20px
      }

      .mobile-menu a {
        font-size: 0.9rem;
        padding: 10px 14px
      }

      /* CONTAINER */
      .container {
        padding: 0 18px
      }

      /* SECTIONS */
      section {
        padding: 60px 0
      }

      /* HERO */
      .hero {
        padding: 90px 18px 56px
      }

      .hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.15
      }

      .hero p {
        font-size: 1rem;
        margin-bottom: 32px
      }

      .hero-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center
      }

      .hero-sub {
        font-size: 0.72rem
      }

      /* STATS BAR */
      .stats-bar {
        grid-template-columns: 1fr 1fr;
        margin-top: 44px
      }

      .stat {
        padding: 20px 16px
      }

      .stat-num {
        font-size: 1.6rem
      }

      .stat-label {
        font-size: 0.7rem
      }

      /* SECTION HEADERS */
      .section-header {
        margin-bottom: 40px
      }

      .section-header h2 {
        font-size: clamp(1.5rem, 7vw, 2rem)
      }

      .section-header p {
        font-size: 0.9rem
      }

      /* BUTTONS — full width stacked on small screens */
      .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
        text-align: center
      }

      .btn-ghost.btn-large {
        width: 100%;
        justify-content: center
      }

      .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px
      }

      .product-actions {
        flex-direction: column;
        gap: 10px
      }

      .auto-savings {
        grid-template-columns: 1fr
      }

      /* AUTOMATION SECTION */
      .auto-hero {
        margin-bottom: 44px
      }

      .auto-hero h2 {
        font-size: clamp(1.5rem, 7vw, 2rem)
      }

      .auto-hero .lead {
        font-size: 1rem
      }

      .auto-saving-num {
        font-size: 2.4rem
      }

      .auto-saving-label {
        font-size: 0.9rem
      }

      .auto-question-wrap {
        padding: 36px 20px
      }

      .auto-question-wrap h2 {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem)
      }

      /* DEPARTMENTS */
      .dept-grid {
        grid-template-columns: 1fr
      }

      .dept-card {
        padding: 22px 18px
      }

      /* SUITE */
      .suite-tabs {
        gap: 4px;
        padding: 5px
      }

      .suite-tab {
        padding: 8px 12px;
        font-size: 0.78rem
      }

      .suite-panel-inner {
        grid-template-columns: 1fr
      }

      .suite-item {
        padding: 22px 18px
      }

      .suite-item-icon {
        width: 44px;
        height: 44px
      }

      /* PRODUCTS */
      .products-grid {
        grid-template-columns: 1fr
      }

      .product-card {
        padding: 28px 20px
      }

      .product-stats {
        flex-wrap: wrap;
        gap: 16px
      }

      .product-stat .num {
        font-size: 1.3rem
      }

      .product-featured-logos {
        gap: 8px
      }

      .featured-pill {
        font-size: 0.7rem;
        padding: 3px 10px
      }

      /* CTA BANNER */
      .cta-section {
        padding: 48px 0 72px
      }

      .cta-banner {
        padding: 36px 20px;
        border-radius: 14px
      }

      .cta-banner h2 {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem)
      }

      .cta-pills {
        gap: 6px
      }

      .cta-pill {
        font-size: 0.72rem;
        padding: 4px 10px
      }

      /* SERVICES */
      .services-grid {
        grid-template-columns: 1fr
      }

      .service-card {
        padding: 26px 20px
      }

      /* TESTIMONIALS */
      .testimonials-grid {
        grid-template-columns: 1fr
      }

      /* CONTACT */
      .contact-form-wrap {
        padding: 28px 16px
      }

      .form-row {
        grid-template-columns: 1fr
      }

      /* FOOTER */
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center
      }

      .footer-bottom p {
        font-size: 0.78rem
      }
    }

    /* ── 425px and below ── */
    @media(max-width:425px) {
      .nav-inner {
        padding: 0 14px
      }

      .nav-logo img {
        height: 28px
      }

      .container {
        padding: 0 14px
      }

      .hero {
        padding: 80px 14px 48px
      }

      .hero h1 {
        font-size: clamp(1.7rem, 9vw, 2.2rem)
      }

      .hero-cta {
        padding: 13px 22px;
        font-size: 0.9rem
      }

      .section-header h2 {
        font-size: clamp(1.35rem, 8vw, 1.8rem)
      }

      .stats-bar {
        grid-template-columns: 1fr 1fr
      }

      .stat {
        padding: 16px 10px
      }

      .stat-num {
        font-size: 1.4rem
      }

      .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.02em
      }

      .auto-hero h2 {
        font-size: clamp(1.4rem, 8vw, 1.9rem)
      }

      .auto-saving-num {
        font-size: 2rem
      }

      .auto-question-wrap {
        padding: 28px 16px
      }

      .auto-question-wrap h2 {
        font-size: clamp(1.25rem, 7vw, 1.6rem)
      }

      .cta-banner {
        padding: 28px 16px
      }

      .cta-banner h2 {
        font-size: clamp(1.25rem, 7vw, 1.6rem)
      }

      .product-card {
        padding: 24px 16px
      }

      .contact-form-wrap {
        padding: 24px 14px
      }

      .suite-tab {
        padding: 7px 10px;
        font-size: 0.75rem
      }

      .form-select#cf-country-code {
        max-width: 120px;
      }
    }

    /* ── 375px and below ── */
    @media(max-width:375px) {
      .nav-inner {
        padding: 0 12px
      }

      .nav-logo img {
        height: 26px
      }

      .nav-mobile-btn svg {
        width: 22px;
        height: 22px
      }

      .container {
        padding: 0 12px
      }

      .hero {
        padding: 76px 12px 44px
      }

      .hero h1 {
        font-size: clamp(1.55rem, 9.5vw, 1.9rem)
      }

      .hero p {
        font-size: 0.92rem
      }

      .hero-cta {
        padding: 12px 18px;
        font-size: 0.88rem
      }

      .badge {
        font-size: 9.5px;
        padding: 5px 12px
      }

      .stats-bar {
        grid-template-columns: 1fr 1fr
      }

      .stat-num {
        font-size: 1.25rem
      }

      .auto-hero h2,
      .auto-question-wrap h2,
      .cta-banner h2,
      .section-header h2 {
        font-size: clamp(1.2rem, 8.5vw, 1.6rem)
      }

      .auto-hero .lead {
        font-size: 0.9rem
      }

      .auto-saving-num {
        font-size: 1.75rem
      }

      .auto-saving-label {
        font-size: 0.82rem
      }

      .btn-large {
        padding: 12px 18px;
        font-size: 0.88rem
      }

      .suite-tab {
        padding: 6px 8px;
        font-size: 0.72rem
      }

      .suite-item {
        padding: 18px 14px
      }

      .product-card {
        padding: 20px 14px
      }

      .product-stats {
        gap: 12px
      }

      .product-stat .num {
        font-size: 1.15rem
      }

      .contact-form-wrap {
        padding: 20px 12px
      }

      .form-input,
      .form-select,
      .form-textarea {
        padding: 10px 12px;
        font-size: 0.88rem
      }

      .cta-banner {
        padding: 24px 14px;
        border-radius: 12px
      }

      .service-card {
        padding: 22px 16px
      }

      .dept-card {
        padding: 18px 14px
      }

      .footer-brand p {
        font-size: 0.82rem
      }

      .footer-col h4 {
        font-size: 0.78rem
      }

      .footer-col ul li a {
        font-size: 0.8rem
      }
    }

    /* ── 320px and below ── */
    @media(max-width:320px) {
      .nav-inner {
        padding: 0 10px;
        height: 56px
      }

      .nav-logo img {
        height: 24px
      }

      .mobile-menu {
        top: 56px;
        padding: 12px 14px
      }

      .container {
        padding: 0 10px
      }

      .hero {
        padding: 70px 10px 40px
      }

      .hero h1 {
        font-size: clamp(1.4rem, 10vw, 1.75rem)
      }

      .hero p {
        font-size: 0.85rem
      }

      .hero-cta {
        padding: 11px 14px;
        font-size: 0.82rem
      }

      .hero-sub {
        font-size: 0.68rem
      }

      .stats-bar {
        grid-template-columns: 1fr 1fr
      }

      .stat {
        padding: 12px 8px
      }

      .stat-num {
        font-size: 1.1rem
      }

      .stat-label {
        font-size: 0.6rem
      }

      .auto-hero h2,
      .auto-question-wrap h2,
      .cta-banner h2,
      .section-header h2 {
        font-size: clamp(1.1rem, 9.5vw, 1.45rem)
      }

      .auto-hero .lead {
        font-size: 0.85rem;
        line-height: 1.65
      }

      .auto-saving-num {
        font-size: 1.55rem
      }

      .btn-large {
        padding: 11px 14px;
        font-size: 0.82rem
      }

      .suite-tab {
        padding: 5px 7px;
        font-size: 0.68rem
      }

      .suite-tabs {
        gap: 2px;
        padding: 3px
      }

      .suite-item {
        padding: 16px 12px
      }

      .suite-item h4 {
        font-size: 0.88rem
      }

      .product-card {
        padding: 18px 12px
      }

      .product-stat .num {
        font-size: 1rem
      }

      .product-name {
        font-size: 1.25rem
      }

      .cta-banner {
        padding: 20px 12px
      }

      .cta-pill {
        font-size: 0.65rem;
        padding: 3px 8px
      }

      .contact-form-wrap {
        padding: 18px 10px
      }

      .form-input,
      .form-select,
      .form-textarea {
        padding: 9px 10px;
        font-size: 0.82rem
      }



      .form-submit {
        padding: 13px;
        font-size: 0.88rem
      }

      section {
        padding: 48px 0
      }

      .section-header {
        margin-bottom: 28px
      }

      .service-card {
        padding: 18px 12px
      }

      .service-card h3 {
        font-size: 0.95rem
      }

      .dept-card {
        padding: 16px 12px
      }

      .dept-card h3 {
        font-size: 0.95rem
      }

      .testimonial-card {
        padding: 22px 16px
      }

      .testimonial-quote {
        font-size: 0.88rem
      }
    }