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

    :root {
      --bg-deep:    #ffffff;
      --bg-mid:     #f2f8fd;
      --bg-card:    #ffffff;
      --bg-card2:   #eaf4fb;
      --blue:       #00a7ef;
      --blue-light: #0090d4;
      --blue-glow:  rgba(0,167,239,0.12);
      --text:       #111111;
      --text-muted: #4e6279;
      --text-dim:   #94a8bc;
      --border:     rgba(0,167,239,0.22);
      --border-soft: rgba(0,0,0,0.09);
    }

    html { scroll-behavior: smooth; }

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

    /* ── Utility ─────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .mono { font-family: 'JetBrains Mono', monospace; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,167,239,0.1);
      border: 1px solid rgba(0,167,239,0.3);
      border-radius: 6px; border-left: 3px solid var(--blue); border-top: none; border-right: none; border-bottom: none;
      padding: 6px 16px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--blue-light);
      letter-spacing: 0.03em;
      margin-bottom: 20px;
    }
    .badge::before { content: ""; }

    .section-label { color: var(--blue-light); }

    h1, h2, h3 { line-height: 1.2; }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 16px; }

    .blue { color: var(--blue); }
    .muted { color: var(--text-muted); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
    }
    .btn-primary {
      background: var(--blue);
      color: #17324d;
    }
    .btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: #111111;
      border: 1.5px solid rgba(0,0,0,0.2);
    }
    .btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }

    section { padding: 90px 0; }

    /* ── NAVIGATION ──────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(16px); box-shadow: 0 2px 16px rgba(0,0,0,0.08);
      border-bottom: 1px solid var(--border-soft);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-mark {
      width: 36px;
      height: 36px;
      background: var(--blue);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.8rem;
      font-weight: 700;
      color: #17324d;
      letter-spacing: -0.5px;
    }
    .logo-text {
      font-size: 1.1rem;
      font-weight: 700;
      color: #17324d;
      letter-spacing: -0.3px;
    }

    /* Real TouchSuite logo image */
    .logo-img {
      height: 38px;
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--blue-light); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-actions .btn { padding: 9px 20px; font-size: 0.85rem; }

    /* hamburger */
    .nav-toggle { display: none; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav-toggle span {
      display: block; width: 22px; height: 2px;
      background: #111111; margin: 5px 0;
      transition: all 0.3s;
    }

    /* ── HERO ────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #f0f8ff 0%, #e4f3fd 60%, #f5fbff 100%);
      padding: 110px 0 100px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,167,239,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,167,239,0.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-content { position: relative; z-index: 2; }

    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }

    .hero-sub {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 520px;
    }

    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

    /* CSS card mockup */
    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .card-mockup {
      width: 100%;
      max-width: 380px;
      background: linear-gradient(135deg, #0080c8 0%, #00a7ef 50%, #007ab8 100%);
      border: 1px solid rgba(0,167,239,0.3);
      border-radius: 24px;
      padding: 32px;
      box-shadow:
        0 0 60px rgba(0,167,239,0.15),
        0 20px 60px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(0,0,0,0.04);
      position: relative;
      overflow: hidden;
    }
    .card-mockup::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,167,239,0.15) 0%, transparent 70%);
    }
    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 28px;
    }
    .card-brand {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--blue-light);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .card-contactless {
      width: 28px; height: 28px;
      border: 2px solid rgba(0,167,239,0.6);
      border-radius: 50%;
      position: relative;
    }
    .card-contactless::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 16px; height: 16px;
      border: 2px solid rgba(0,167,239,0.4);
      border-radius: 50%;
    }

    .card-chip {
      width: 42px; height: 32px;
      background: linear-gradient(135deg, #c8a84b 0%, #f0d060 50%, #c8a84b 100%);
      border-radius: 6px;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }
    .card-chip::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 28px; height: 20px;
      border: 1px solid rgba(180,140,0,0.5);
      border-radius: 3px;
    }
    .card-number {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.95rem;
      letter-spacing: 0.25em;
      color: rgba(17,17,17,0.7);
      margin-bottom: 16px;
    }
    .card-footer-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }
    .card-label {
      font-size: 0.62rem;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 2px;
    }
    .card-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.78rem;
      color: rgba(17,17,17,0.85);
      font-weight: 500;
    }
    .card-name {
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(17,17,17,0.9);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* stats pills under card */
    .hero-stats {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .stat-pill {
      background: rgba(0,167,239,0.1);
      border: 1px solid rgba(0,167,239,0.2);
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
    }
    .stat-pill strong { color: #111111; }

    /* ── PAYMENT METHODS BAR ─────────────────────── */
    .methods-bar {
      background: var(--bg-mid);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
      padding: 48px 0;
    }
    .methods-bar .badge { display: flex; justify-content: center; margin-bottom: 28px; }
    .methods-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }
    .method-pill {
      background: var(--bg-card);
      border: 1px solid rgba(0,0,0,0.1);
      border-radius: 10px;
      padding: 12px 22px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: all 0.2s;
    }
    .method-pill:hover {
      border-color: var(--blue);
      color: #17324d;
      background: rgba(0,167,239,0.08);
    }

    /* ── ABOUT / MISSION ─────────────────────────── */
    .about { background: var(--bg-deep); }
    .about-header { text-align: center; margin-bottom: 60px; }
    .about-header p { color: var(--text-muted); max-width: 680px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft); box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      border-radius: 20px;
      padding: 28px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature-card:hover {
      border-color: rgba(0,167,239,0.35);
      transform: translateY(-3px);
    }
    .feature-icon {
      width: 44px; height: 44px;
      background: rgba(0,167,239,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 1.2rem;
    }
    .feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

    /* ── RISK LEVELS ─────────────────────────────── */
    .risk { background: var(--bg-mid); }
    .risk-header { text-align: center; margin-bottom: 60px; }
    .risk-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

    .risk-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .risk-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 22px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .risk-card.featured {
      border-color: rgba(0,167,239,0.4);
      background: linear-gradient(160deg, #ddeefa 0%, #e6f2fb 100%);
      box-shadow: 0 4px 24px rgba(0,167,239,0.12);
    }
    .risk-tier {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--blue-light);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .risk-card h3 { font-size: 1.15rem; font-weight: 800; }
    .risk-card > p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.65; }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }
    .tag {
      background: rgba(0,0,0,0.03);
      border: 1px solid var(--border-soft);
      border-radius: 6px;
      padding: 4px 10px;
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* mini terminal mockup */
    .terminal-mock {
      background: var(--bg-deep);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 18px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
    }
    .terminal-mock .t-line { display: flex; justify-content: space-between; margin-bottom: 4px; }
    .terminal-mock .t-key { color: var(--text-dim); }
    .terminal-mock .t-val { color: var(--text-muted); }
    .terminal-mock .t-amount { font-size: 1.1rem; color: var(--blue-light); font-weight: 700; margin: 8px 0; }
    .terminal-mock .t-badge {
      display: inline-block;
      background: rgba(0,167,239,0.15);
      border: 1px solid rgba(0,167,239,0.3);
      border-radius: 4px;
      padding: 2px 8px;
      color: var(--blue-light);
      font-size: 0.65rem;
    }

    /* ── INTEGRATIONS ────────────────────────────── */
    .integrations { background: var(--bg-deep); }
    .integrations-header { text-align: center; margin-bottom: 50px; }
    .integrations-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

    .integrations-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }
    .integration-pill {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 10px;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s;
      cursor: default;
    }
    .integration-pill:hover {
      border-color: rgba(0,167,239,0.35);
      background: rgba(0,167,239,0.06);
      transform: translateY(-2px);
    }
    .int-abbr {
      width: 32px; height: 32px;
      background: rgba(0,167,239,0.15);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--blue-light);
    }
    .int-name { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); }

    /* ── API / GATEWAYS ──────────────────────────── */
    .gateways { background: var(--bg-mid); }
    .gateways-header { text-align: center; margin-bottom: 50px; }
    .gateways-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

    .gateways-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      max-width: 800px;
      margin: 0 auto;
    }
    .gateway-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 22px;
      padding: 36px;
      transition: border-color 0.2s;
    }
    .gateway-card:hover { border-color: rgba(0,167,239,0.4); }
    .gateway-name {
      font-family: 'JetBrains Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue-light);
      margin-bottom: 14px;
    }
    .gateway-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

    /* ── POS / SwipeSimple ───────────────────────── */
    .pos { background: var(--bg-deep); }
    .pos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .pos-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }
    .pos-tag {
      background: rgba(0,167,239,0.08);
      border: 1px solid rgba(0,167,239,0.2);
      border-radius: 6px;
      padding: 6px 12px;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-muted);
    }

    .pos-mockup {
      background: linear-gradient(160deg, var(--bg-card) 0%, #e6f2fb 100%);
      border: 1px solid rgba(0,167,239,0.25);
      border-radius: 24px;
      padding: 32px;
      font-family: 'JetBrains Mono', monospace;
      box-shadow: 0 4px 20px rgba(0,167,239,0.1);
    }
    .pos-mockup .pm-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 0.72rem;
    }
    .pos-mockup .pm-key { color: var(--text-dim); }
    .pos-mockup .pm-val { color: var(--text-muted); }
    .pos-mockup .pm-amount {
      font-size: 2rem;
      font-weight: 700;
      color: var(--blue-light);
      margin: 18px 0 8px;
      letter-spacing: -0.02em;
    }
    .pos-mockup .pm-sub { font-size: 0.68rem; color: var(--text-dim); margin-bottom: 20px; }
    .pm-badges {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .pm-badge {
      background: rgba(0,167,239,0.12);
      border: 1px solid rgba(0,167,239,0.25);
      border-radius: 6px;
      padding: 5px 10px;
      font-size: 0.65rem;
      color: var(--blue-light);
      font-weight: 600;
    }

    /* ── BUSINESS TYPES ──────────────────────────── */
    .business-types { background: var(--bg-mid); }
    .business-types-header { text-align: center; margin-bottom: 56px; }
    .business-types-header p { color: var(--text-muted); max-width: 580px; margin: 0 auto; }

    .biz-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .biz-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 20px;
      padding: 28px;
      transition: all 0.2s;
    }
    .biz-card:hover {
      border-color: rgba(0,167,239,0.35);
      transform: translateY(-3px);
    }
    .biz-icon { font-size: 1.6rem; margin-bottom: 14px; }
    .biz-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .biz-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

    /* ── WHY TOUCHSUITE ──────────────────────────── */
    .why { background: var(--bg-deep); }
    .why-header { text-align: center; margin-bottom: 56px; }
    .why-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .why-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 22px;
      padding: 32px;
      transition: all 0.2s;
    }
    .why-card:hover { border-color: rgba(0,167,239,0.35); transform: translateY(-2px); }
    .why-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--blue);
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
    .why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
    .why-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

    /* ── TESTIMONIALS ────────────────────────────── */
    .testimonials { background: var(--bg-mid); }
    .testimonials-header { text-align: center; margin-bottom: 56px; }
    .testimonials-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 22px;
      padding: 32px;
    }
    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 18px;
    }
    .star { color: #f59e0b; font-size: 1rem; }
    .testimonial-card blockquote {
      font-size: 0.93rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 20px;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-avatar {
      width: 38px; height: 38px;
      background: var(--blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      font-weight: 700;
      color: #17324d;
    }
    .author-name { font-size: 0.88rem; font-weight: 600; }
    .author-title { font-size: 0.78rem; color: var(--text-muted); }

    /* ── FAQ ─────────────────────────────────────── */
    .faq { background: var(--bg-deep); }
    .faq-header { text-align: center; margin-bottom: 56px; }
    .faq-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item input[type="checkbox"] { display: none; }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-soft);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:has(input:checked) { border-color: rgba(0,167,239,0.35); }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 22px 24px;
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 600;
      user-select: none;
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--blue-light); }
    .faq-arrow {
      width: 24px; height: 24px;
      background: rgba(0,167,239,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s;
      font-size: 0.75rem;
    }
    .faq-item input:checked ~ .faq-question .faq-arrow { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 24px;
    }
    .faq-item input:checked ~ .faq-answer {
      max-height: 300px;
      padding: 0 24px 22px;
    }
    .faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

    /* ── FOOTER ──────────────────────────────────── */
    footer {
      background: #f8fbfd;
      border-top: 1px solid var(--border-soft);
      padding: 80px 0 0;
    }
    footer { background: #f8fbfd; border-top: 1px solid var(--border-soft); padding: 64px 0 0; }
    footer .container { max-width: 1440px; padding: 0 40px; }

    /* ── Brand strip across the top ── */
    .footer-brand-strip {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid var(--border-soft);
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .footer-brand-left { display: flex; flex-direction: column; gap: 12px; max-width: 280px; }
    .footer-brand-left p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; margin: 0; }
    .footer-contact { display: flex; flex-direction: column; gap: 7px; }
    .footer-contact a { color: var(--text-muted); font-size: 0.82rem; text-decoration: none; display: flex; align-items: flex-start; gap: 7px; transition: color .2s; line-height: 1.4; }
    .footer-contact a:hover { color: var(--blue-light); }
    .footer-social { display: flex; gap: 8px; }
    .footer-social a { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,167,239,0.1); border: 1px solid rgba(0,167,239,0.2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all .2s; }
    .footer-social a:hover { background: rgba(0,167,239,0.25); color: #17324d; border-color: rgba(0,167,239,0.5); }
    .footer-legal { font-size: 0.7rem; color: var(--text-dim); line-height: 1.6; max-width: 420px; }

    /* ── 5-col footer grid: brand + 4 link cols ── */
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
      gap: 36px;
      padding-bottom: 52px;
    }
    .footer-grid > * { min-width: 0; }
    .footer-brand { display: flex; flex-direction: column; gap: 14px; }

    .footer-col h4 {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border-soft);
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.84rem;
      transition: color 0.2s;
      line-height: 1.4;
    }
    .footer-col ul a:hover { color: var(--blue-light); }

    .footer-stats {
      background: #00a7ef;
      border-top: 1px solid var(--border-soft);
      padding: 28px 0;
    }
    .footer-stats-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .stats-row {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }
    .stat-item { display: flex; flex-direction: column; gap: 2px; }
    .stat-value {
      font-family: 'JetBrains Mono', monospace;
      font-size: 1.1rem;
      font-weight: 700;
      color: #17324d;
    }
    .stat-desc { font-size: 0.75rem; color: rgba(23,50,77,0.8); }

    .footer-bottom {
      background: #0090d4;
      border-top: 1px solid var(--border-soft);
      padding: 20px 0;
    }
    .footer-bottom-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(23,50,77,0.8); }

    /* ── PAGE HERO (sub pages) ───────────────────── */
    .page-hero {
      background: linear-gradient(135deg, #f0f8ff 0%, #e4f3fd 60%, #f5fbff 100%);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,167,239,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero-content { max-width: 760px; margin: 0 auto; text-align: center; }
    .page-hero-content > div[style*="display:flex"][style*="flex-wrap:wrap"] {
      justify-content: center;
      gap: 12px;
    }
    .page-hero-content .btn + .btn {
      margin-left: 0 !important;
    }

    img {
      max-width: 100%;
      height: auto;
    }
    .page-hero h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .page-hero-sub {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 640px;
    }

    /* ── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .risk-grid { grid-template-columns: 1fr; }
      .biz-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-soft); margin-bottom: 8px; }
    }

    @media (max-width: 768px) {
      section { padding: 60px 0; }
      .hero { padding: 72px 0 60px; }
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero h1 { font-size: 2rem; }
      .hero-visual { order: -1; }
      .card-mockup { max-width: 320px; }

      .nav-links, .nav-actions { display: none; }
      .nav-toggle { display: block; }

      .features-grid { grid-template-columns: 1fr; }
      .risk-grid { grid-template-columns: 1fr; }
      .gateways-grid { grid-template-columns: 1fr; }
      .pos-grid { grid-template-columns: 1fr; }
      .biz-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { flex-direction: column; }
      .stats-row { gap: 24px; }
      .footer-stats-inner { flex-direction: column; align-items: flex-start; }
      .page-hero { padding: 60px 0 50px; }
    }

    @media (max-width: 480px) {
      h2 { font-size: 1.6rem; }
      .hero h1 { font-size: 1.75rem; }
      .hero-ctas { flex-direction: column; }
      .btn { width: 100%; justify-content: center; }
    }


/* ── Site Breadcrumb ───────────────────────────── */
.site-breadcrumb {
  background: #f0f7ff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 11px 0;
  font-size: 0.8rem;
}
.site-breadcrumb .container { max-width: 1440px; padding: 0 28px; display:flex; align-items:center; flex-wrap:wrap; gap:2px; }
.site-breadcrumb a { color: #94a8bc; text-decoration: none; transition: color 0.15s; }
.site-breadcrumb a:hover { color: #0090d4; }
.bc-sep { margin: 0 6px; color: #c8d8e4; font-size: 0.72rem; }
.bc-current { color: #4e6279; font-weight: 500; }
