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

    :root {
      --bg: #03060F;
      --bg2: #070D1C;
      --surface: rgba(255,255,255,0.04);
      --surface-hover: rgba(255,255,255,0.07);
      --border: rgba(255,255,255,0.07);
      --border-teal: rgba(0,210,200,0.25);
      --teal: #00D4C8;
      --teal2: #0EA5E9;
      --teal-dim: rgba(0,212,200,0.12);
      --white: #FFFFFF;
      --gray-1: #F0F4F8;
      --gray-2: #A8B2C1;
      --gray-3: #5C6878;
      --gray-4: #2A3344;
      --red: #FF4D6A;
      --orange: #FF8C42;
      --green: #34D399;
      --purple: #A78BFA;
      --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--gray-1);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,180,170,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(14,165,233,0.1) 0%, transparent 60%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
      pointer-events: none;
      z-index: 0;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 16px;
      z-index: 1000;
      margin: 16px auto;
      max-width: 1160px;
      padding: 0 1.5rem;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      isolation: isolate;
      background:
        linear-gradient(
          125deg,
          rgba(255,255,255,0.16) 0%,
          rgba(255,255,255,0.04) 38%,
          rgba(0,212,200,0.1) 72%,
          rgba(120,200,255,0.06) 100%
        ),
        rgba(7,13,28,0.42);
      backdrop-filter: blur(44px) saturate(185%);
      -webkit-backdrop-filter: blur(44px) saturate(185%);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 16px;
      padding: 0.6rem 1.1rem;
      gap: 0.75rem 1rem;
      box-shadow:
        0 0 0 1px rgba(0,0,0,0.35) inset,
        0 1px 0 0 rgba(255,255,255,0.14) inset,
        0 -1px 0 0 rgba(0,212,200,0.08) inset,
        0 28px 56px -16px rgba(0,4,16,0.55),
        0 12px 32px -12px rgba(0,212,200,0.14);
    }

    .nav-logo {
      flex-shrink: 0;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }

    .logo-icon {
      width: 30px;
      height: 30px;
      background: linear-gradient(135deg, var(--teal), var(--teal2));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 900;
      color: #03060F;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      min-width: 0;
      flex-wrap: wrap;
      gap: 0.125rem 0.2rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links li { display: flex; align-items: center; }
    .nav-links a {
      color: var(--gray-2);
      text-decoration: none;
      font-size: 0.8125rem;
      font-weight: 500;
      padding: 0.45rem 0.55rem;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--white); background: var(--surface); }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-family: var(--font);
      font-weight: 600;
      font-size: 0.875rem;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-ghost { background: transparent; color: var(--gray-2); padding: 0.5rem 0.875rem; border-radius: 8px; }
    .btn-ghost:hover { color: var(--white); background: var(--surface); }

    .btn-primary {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
      color: #03060F;
      padding: 0.6rem 1.25rem;
      border-radius: 9px;
      box-shadow: 0 0 20px rgba(0,212,200,0.25);
    }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(0,212,200,0.4); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--border);
      padding: 0.6rem 1.25rem;
      border-radius: 9px;
    }
    .btn-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }

    .btn-lg { font-size: 1rem; padding: 0.875rem 2rem; border-radius: 12px; }

    .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-2); border-radius: 2px; transition: 0.3s; }

    /* ── HERO ── */
    #hero {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      padding: 5rem 1.5rem 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      min-height: 90vh;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(0,212,200,0.1);
      border: 1px solid rgba(0,212,200,0.2);
      color: var(--teal);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.375rem 0.875rem;
      border-radius: 100px;
      margin-bottom: 1.5rem;
      letter-spacing: 0.02em;
    }

    .hero-badge .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

    .hero-h1 {
      font-size: 3.75rem;
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -2px;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .hero-h1 .grad {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub { font-size: 1.1rem; color: var(--gray-2); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }

    .hero-actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; margin-bottom: 2.5rem; }

    .hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 0.375rem; font-size: 0.825rem; color: var(--gray-3); }
    .trust-item svg { color: var(--teal); }

    /* ── DASHBOARD MOCKUP (hero) ── */
    .hero-visual { position: relative; }

    .dashboard-mockup {
      position: relative;
      background: rgba(7,13,28,0.9);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(0,212,200,0.1), 0 40px 80px rgba(0,0,0,0.6), 0 0 80px rgba(0,212,200,0.08);
    }

    .mock-topbar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1rem;
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
    }

    .mock-dot { width: 10px; height: 10px; border-radius: 50%; }
    .mock-dot.red { background: #FF5F57; }
    .mock-dot.yellow { background: #FEBC2E; }
    .mock-dot.green { background: #28C840; }

    .mock-url {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.25rem 0.75rem;
      font-size: 0.7rem;
      color: var(--gray-3);
      margin: 0 0.5rem;
    }

    .mock-body { display: grid; grid-template-columns: 155px 1fr; height: 340px; }
    .mock-sidebar { background: rgba(255,255,255,0.015); border-right: 1px solid var(--border); padding: 1rem 0.75rem; }
    .mock-sidebar-item {
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.45rem 0.625rem; border-radius: 7px;
      font-size: 0.68rem; color: var(--gray-3); margin-bottom: 0.2rem; cursor: pointer;
    }
    .mock-sidebar-item.active { background: var(--teal-dim); color: var(--teal); border: 1px solid rgba(0,212,200,0.15); }

    .mock-main { padding: 1rem; overflow: hidden; }
    .mock-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; margin-bottom: 0.875rem; }
    .mock-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 0.625rem; }
    .mock-stat-label { font-size: 0.58rem; color: var(--gray-3); margin-bottom: 0.2rem; }
    .mock-stat-val { font-size: 1rem; font-weight: 700; color: var(--white); }
    .mock-stat-val.teal { color: var(--teal); }
    .mock-stat-val.green { color: var(--green); }
    .mock-stat-delta { font-size: 0.54rem; color: var(--green); margin-top: 0.1rem; }
    .mock-section-title { font-size: 0.62rem; font-weight: 700; color: var(--gray-2); margin-bottom: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; }
    .mock-table { width: 100%; border-collapse: collapse; }
    .mock-table th { font-size: 0.56rem; color: var(--gray-3); font-weight: 600; text-align: left; padding: 0.3rem 0.5rem; border-bottom: 1px solid var(--border); letter-spacing: 0.04em; text-transform: uppercase; }
    .mock-table td { font-size: 0.6rem; color: var(--gray-2); padding: 0.3rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
    .mock-badge { display: inline-block; padding: 0.1rem 0.4rem; border-radius: 100px; font-size: 0.54rem; font-weight: 600; }
    .mock-badge.paid { background: rgba(52,211,153,0.15); color: var(--green); }
    .mock-badge.pending { background: rgba(255,140,66,0.15); color: var(--orange); }
    .mock-badge.overdue { background: rgba(255,77,106,0.15); color: var(--red); }
    .mock-chart { display: flex; align-items: flex-end; gap: 3px; height: 38px; margin-top: 0.75rem; }
    .mock-bar { flex: 1; background: linear-gradient(180deg, var(--teal) 0%, rgba(0,212,200,0.3) 100%); border-radius: 3px 3px 0 0; opacity: 0.8; }
    .mock-glow { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); width: 60%; height: 60px; background: radial-gradient(ellipse, rgba(0,212,200,0.2) 0%, transparent 70%); pointer-events: none; }

    .float-badge {
      position: absolute;
      background: rgba(7,13,28,0.95);
      border: 1px solid var(--border-teal);
      border-radius: 10px;
      padding: 0.5rem 0.75rem;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--white);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .float-badge .float-val { font-size: 1rem; font-weight: 800; color: var(--teal); display: block; }
    .float-badge .float-label { color: var(--gray-3); font-size: 0.62rem; font-weight: 500; }
    .float-badge-1 { top: -18px; right: -18px; }
    .float-badge-2 { bottom: 40px; left: -22px; }

    /* ── LOGOS ── */
    .logos-section { position: relative; z-index: 1; padding: 3rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
    .logos-label { text-align: center; font-size: 0.8rem; font-weight: 600; color: var(--gray-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2rem; }
    .logos-track { display: flex; gap: 2.5rem; animation: scroll 28s linear infinite; width: max-content; }
    @keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .logo-chip { display: flex; align-items: center; gap: 0.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 0.5rem 1.25rem; font-size: 0.825rem; font-weight: 600; color: var(--gray-3); white-space: nowrap; }

    /* ── PORTFOLIO TYPES (property-style icons, Buildium-adjacent pattern) ── */
    .portfolios-section {
      position: relative; z-index: 1;
      max-width: 1160px; margin: 0 auto;
      padding: 3.25rem 1.5rem 1.5rem;
    }
    .portfolios-head { text-align: center; margin-bottom: 2rem; }
    .portfolios-head h2 {
      font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--white);
      letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 0.5rem;
    }
    .portfolios-head .grad-teal { color: var(--teal); }
    .portfolios-head p { font-size: 0.95rem; color: var(--gray-2); max-width: 540px; margin: 0 auto; line-height: 1.55; }
    .portfolios-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
    }
    @media (max-width: 960px) {
      .portfolios-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 600px) {
      .portfolios-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .portfolio-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.2rem 0.85rem;
      text-align: center;
      transition: border-color 0.2s, transform 0.2s, background 0.2s;
    }
    .portfolio-card:hover {
      border-color: var(--border-teal);
      background: var(--surface-hover);
      transform: translateY(-3px);
    }
    .portfolio-card .p-icon {
      width: 52px; height: 52px; margin: 0 auto 0.8rem;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,212,200,0.08);
      border: 1px solid rgba(0,212,200,0.22);
      border-radius: 12px;
      color: var(--teal);
    }
    .portfolio-card .p-icon svg { width: 28px; height: 28px; }
    .portfolio-card h3 {
      font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; line-height: 1.25;
    }
    .portfolio-card p { font-size: 0.72rem; color: var(--gray-3); line-height: 1.45; }

    /* ── TEAMS / ROLES (people-style illustration strip) ── */
    .teams-section {
      position: relative; z-index: 1;
      max-width: 1160px; margin: 0 auto;
      padding: 1rem 1.5rem 2.5rem;
    }
    .teams-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 2rem;
      align-items: center;
      background: linear-gradient(135deg, rgba(0,212,200,0.07) 0%, rgba(14,165,233,0.05) 100%);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.75rem 2rem;
    }
    @media (max-width: 900px) {
      .teams-inner { grid-template-columns: 1fr; text-align: center; }
      .teams-visual { justify-content: center !important; }
    }
    .teams-visual {
      display: flex;
      flex-direction: column;
      gap: 0;
      justify-content: flex-start;
    }
    .team-face { width: 100px; text-align: center; }
    .team-face .face-art {
      width: 76px; height: 76px; margin: 0 auto 0.45rem;
      border-radius: 50%;
      border: 2px solid rgba(0,212,200,0.35);
      overflow: hidden;
      background: var(--bg2);
    }
    .team-face .face-art svg { width: 100%; height: 100%; display: block; }
    .team-face .role {
      font-size: 0.65rem; font-weight: 700; color: var(--teal);
      text-transform: uppercase; letter-spacing: 0.07em;
    }
    .team-face .name { font-size: 0.74rem; color: var(--gray-2); margin-top: 0.2rem; line-height: 1.3; }

    /* ── Teams: real workplace photography (stock, diverse teams) ── */
    .teams-photo-collage {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 0.75rem;
      align-content: start;
    }
    @media (max-width: 900px) {
      .teams-photo-collage { grid-template-columns: 1fr; }
    }
    .teams-photo-stack {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .teams-photo {
      margin: 0;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow:
        0 0 0 1px rgba(0,0,0,0.25) inset,
        0 16px 40px -12px rgba(0,4,16,0.55);
      background: var(--bg2);
    }
    /* height:auto + aspect-ratio: % height on figure had no basis, so images collapsed */
    .teams-photo img {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: center 28%;
      display: block;
    }
    .teams-photo--hero img {
      aspect-ratio: 4 / 3;
      min-height: 200px;
      max-height: 320px;
    }
    .teams-photo-stack .teams-photo img {
      aspect-ratio: 16 / 10;
      min-height: 130px;
      max-height: 200px;
      object-position: center center;
    }
    .teams-photo-credit {
      font-size: 0.65rem;
      color: var(--gray-3);
      margin-top: 0.85rem;
      line-height: 1.45;
      max-width: 36rem;
    }
    .teams-photo-credit a {
      color: var(--gray-2);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .teams-photo-credit a:hover { color: var(--teal); }

    .teams-copy h2 {
      font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 800; color: var(--white);
      letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.65rem;
    }
    .teams-copy > p { font-size: 0.93rem; color: var(--gray-2); margin-bottom: 1rem; line-height: 1.55; }
    .teams-copy ul { list-style: none; padding: 0; margin: 0; }
    .teams-copy li {
      position: relative; padding-left: 1.3rem; margin-bottom: 0.5rem;
      font-size: 0.88rem; color: var(--gray-2);
    }
    .teams-copy li::before {
      content: '—'; position: absolute; left: 0; color: var(--teal); font-weight: 700;
    }

    /* ── STATS ── */
    .stats-section { position: relative; z-index: 1; max-width: 1160px; margin: 5rem auto; padding: 0 1.5rem; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
    .stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; transition: all 0.3s; }
    .stat-card:hover { border-color: var(--border-teal); background: var(--surface-hover); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    .stat-num { font-size: 2.75rem; font-weight: 800; letter-spacing: -2px; background: linear-gradient(135deg, var(--teal), var(--teal2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
    .stat-label { font-size: 0.875rem; color: var(--gray-3); margin-top: 0.25rem; }

    /* ── SECTIONS ── */
    .section-wrap { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 6rem 1.5rem; }
    .section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
    .section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--teal); border-radius: 2px; }
    .section-h2 { font-size: 2.75rem; font-weight: 800; color: var(--white); letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 1rem; }
    .section-sub { font-size: 1.05rem; color: var(--gray-2); max-width: 540px; line-height: 1.7; margin-bottom: 3rem; }

    /* ── APP SCREENSHOT SECTION ── */
    .app-preview-section {
      position: relative;
      z-index: 1;
      padding: 6rem 1.5rem;
      background: linear-gradient(180deg, transparent 0%, rgba(0,212,200,0.03) 50%, transparent 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .app-preview-inner { max-width: 1160px; margin: 0 auto; }

    .preview-tabs {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      margin: 2.5rem 0 3rem;
      flex-wrap: wrap;
    }

    .preview-tab {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--gray-2);
      font-family: var(--font);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.625rem 1.25rem;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .preview-tab.active, .preview-tab:hover {
      background: var(--teal-dim);
      border-color: var(--border-teal);
      color: var(--teal);
    }

    /* App Screenshot Frame */
    .app-frame {
      background: rgba(7,13,28,0.95);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(0,212,200,0.08), 0 60px 120px rgba(0,0,0,0.7), 0 0 100px rgba(0,212,200,0.06);
      position: relative;
    }

    .app-frame::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--teal), transparent);
      opacity: 0.6;
    }

    .app-topbar {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.015);
    }

    .app-topbar-dots { display: flex; gap: 6px; }
    .app-topbar-dot { width: 12px; height: 12px; border-radius: 50%; }
    .app-topbar-dot.r { background: #FF5F57; }
    .app-topbar-dot.y { background: #FEBC2E; }
    .app-topbar-dot.g { background: #28C840; }

    .app-urlbar {
      flex: 1;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--gray-3);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      max-width: 400px;
      margin: 0 auto;
    }

    .app-urlbar::before { content: '🔒'; font-size: 0.7rem; }

    .app-layout {
      display: grid;
      grid-template-columns: 220px 1fr;
      min-height: 580px;
    }

    /* App Sidebar */
    .app-sidebar {
      background: rgba(255,255,255,0.015);
      border-right: 1px solid var(--border);
      padding: 1.5rem 1rem;
    }

    .app-sidebar-brand {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0 0.5rem;
      margin-bottom: 2rem;
    }

    .app-sidebar-brand .logo { width: 26px; height: 26px; background: linear-gradient(135deg, var(--teal), var(--teal2)); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 900; color: #03060F; }
    .app-sidebar-brand .name { font-size: 0.875rem; font-weight: 800; color: var(--white); }

    .app-sidebar-label { font-size: 0.65rem; font-weight: 700; color: var(--gray-4); text-transform: uppercase; letter-spacing: 0.1em; padding: 0 0.75rem; margin-bottom: 0.5rem; margin-top: 1.25rem; }

    .app-nav-item {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.55rem 0.75rem;
      border-radius: 8px;
      font-size: 0.8rem;
      color: var(--gray-3);
      margin-bottom: 0.2rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .app-nav-item:hover { color: var(--white); background: var(--surface); }
    .app-nav-item.active { color: var(--white); background: rgba(255,255,255,0.07); font-weight: 600; }
    .app-nav-item .nav-icon { width: 18px; height: 18px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }
    .app-nav-item.active .nav-icon { background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #03060F; }

    .app-nav-badge { margin-left: auto; background: rgba(255,77,106,0.2); color: var(--red); font-size: 0.6rem; font-weight: 700; padding: 0.1rem 0.4rem; border-radius: 100px; }

    .app-sidebar-user {
      margin-top: auto;
      padding: 0.75rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.625rem;
      margin-top: 2rem;
    }

    .user-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--teal2)); display: flex; align-items: center; justify-content: center; font-size: 0.625rem; font-weight: 700; color: white; flex-shrink: 0; }
    .user-info .user-name { font-size: 0.75rem; font-weight: 600; color: var(--white); }
    .user-info .user-role { font-size: 0.65rem; color: var(--gray-3); }

    /* App Main Content - shown per tab */
    .app-content { padding: 2rem; overflow: hidden; display: none; }
    .app-content.active { display: block; }

    .app-page-title { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 0.25rem; }
    .app-page-sub { font-size: 0.8rem; color: var(--gray-3); margin-bottom: 2rem; }

    /* Dashboard content */
    .kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
    .kpi-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
    .kpi-label { font-size: 0.72rem; color: var(--gray-3); margin-bottom: 0.5rem; font-weight: 500; }
    .kpi-val { font-size: 1.75rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
    .kpi-val.teal { color: var(--teal); }
    .kpi-val.green { color: var(--green); }
    .kpi-val.orange { color: var(--orange); }
    .kpi-delta { font-size: 0.7rem; margin-top: 0.375rem; font-weight: 600; }
    .kpi-delta.up { color: var(--green); }
    .kpi-delta.down { color: var(--red); }

    .dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .dash-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
    .dash-panel-title { font-size: 0.75rem; font-weight: 700; color: var(--gray-2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }

    .chart-wrap { height: 80px; display: flex; align-items: flex-end; gap: 4px; }
    .chart-bar { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--teal) 0%, rgba(0,212,200,0.25) 100%); }

    .activity-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
    .activity-item:last-child { border-bottom: none; }
    .act-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .act-dot.teal { background: var(--teal); }
    .act-dot.green { background: var(--green); }
    .act-dot.orange { background: var(--orange); }
    .act-dot.red { background: var(--red); }
    .act-text { font-size: 0.75rem; color: var(--gray-2); flex: 1; }
    .act-time { font-size: 0.65rem; color: var(--gray-3); }

    /* Payments content */
    .payments-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: gap; }
    .payments-filters { display: flex; gap: 0.5rem; }
    .filter-chip { background: var(--surface); border: 1px solid var(--border); color: var(--gray-3); font-size: 0.72rem; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 100px; cursor: pointer; }
    .filter-chip.active { background: var(--teal-dim); border-color: var(--border-teal); color: var(--teal); }

    .payments-table { width: 100%; border-collapse: collapse; }
    .payments-table th { font-size: 0.68rem; font-weight: 700; color: var(--gray-3); text-align: left; padding: 0.625rem 0.75rem; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.04em; }
    .payments-table td { font-size: 0.8rem; color: var(--gray-2); padding: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
    .payments-table tr:hover td { background: var(--surface); }

    .p-badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.2rem 0.625rem; border-radius: 100px; font-size: 0.68rem; font-weight: 700; }
    .p-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
    .p-badge.paid { background: rgba(52,211,153,0.12); color: var(--green); }
    .p-badge.pending { background: rgba(255,140,66,0.12); color: var(--orange); }
    .p-badge.overdue { background: rgba(255,77,106,0.12); color: var(--red); }
    .p-badge.processing { background: rgba(167,139,250,0.12); color: var(--purple); }

    .tenant-row { display: flex; align-items: center; gap: 0.5rem; }
    .tenant-ava { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal2)); display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; color: #03060F; flex-shrink: 0; }

    /* Maintenance content */
    .maint-kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .kanban-col { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 10px; padding: 0.875rem; }
    .kanban-col-title { font-size: 0.7rem; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.875rem; display: flex; align-items: center; justify-content: space-between; }
    .kanban-count { background: var(--surface); color: var(--gray-2); font-size: 0.65rem; padding: 0.1rem 0.4rem; border-radius: 100px; border: 1px solid var(--border); }
    .ticket-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem; margin-bottom: 0.625rem; cursor: pointer; transition: all 0.2s; }
    .ticket-card:hover { border-color: var(--border-teal); transform: translateY(-1px); }
    .ticket-title { font-size: 0.75rem; font-weight: 600; color: var(--white); margin-bottom: 0.375rem; }
    .ticket-meta { display: flex; align-items: center; gap: 0.375rem; font-size: 0.65rem; color: var(--gray-3); }
    .ticket-prio { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .ticket-prio.high { background: var(--red); }
    .ticket-prio.med { background: var(--orange); }
    .ticket-prio.low { background: var(--green); }

    /* Leasing CRM content */
    .pipeline-stages { display: flex; gap: 0; margin-bottom: 1.5rem; overflow: hidden; border-radius: 10px; border: 1px solid var(--border); }
    .pipeline-stage { flex: 1; padding: 0.75rem; border-right: 1px solid var(--border); text-align: center; }
    .pipeline-stage:last-child { border-right: none; }
    .pipeline-stage-name { font-size: 0.65rem; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
    .pipeline-stage-val { font-size: 1.1rem; font-weight: 800; color: var(--white); }
    .pipeline-stage-sub { font-size: 0.6rem; color: var(--gray-3); }

    .lead-table { width: 100%; border-collapse: collapse; }
    .lead-table th { font-size: 0.65rem; font-weight: 700; color: var(--gray-3); text-align: left; padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--border); text-transform: uppercase; }
    .lead-table td { font-size: 0.775rem; color: var(--gray-2); padding: 0.625rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.03); }
    .lead-score { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.7rem; font-weight: 700; }
    .score-bar-bg { width: 40px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
    .score-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--teal), var(--teal2)); }

    /* ── PROBLEM / SOLUTION ── */
    .ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .ps-col-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
    .ps-col-badge { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
    .ps-col-badge.bad { background: rgba(255,77,106,0.15); color: var(--red); }
    .ps-col-badge.good { background: rgba(0,212,200,0.12); color: var(--teal); }
    .ps-card { border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 1rem; transition: all 0.3s; }
    .ps-card.bad { background: rgba(255,77,106,0.05); border: 1px solid rgba(255,77,106,0.15); }
    .ps-card.bad:hover { background: rgba(255,77,106,0.1); }
    .ps-card.good { background: rgba(0,212,200,0.05); border: 1px solid rgba(0,212,200,0.15); }
    .ps-card.good:hover { background: rgba(0,212,200,0.1); }
    .ps-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.375rem; }
    .ps-card p { font-size: 0.875rem; color: var(--gray-2); line-height: 1.6; }

    /* ── BENTO ── */
    .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .bento-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
    .bento-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: opacity 0.3s; }
    .bento-card:hover { border-color: var(--border-teal); background: var(--surface-hover); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    .bento-card:hover::before { opacity: 1; }
    .bento-card.wide { grid-column: span 2; }
    .bento-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.25rem; background: var(--teal-dim); border: 1px solid rgba(0,212,200,0.2); }
    .bento-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
    .bento-card p { font-size: 0.875rem; color: var(--gray-2); line-height: 1.65; }
    .bento-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
    .bento-tag { background: rgba(0,212,200,0.08); border: 1px solid rgba(0,212,200,0.15); color: var(--teal); font-size: 0.725rem; font-weight: 600; padding: 0.25rem 0.625rem; border-radius: 100px; }

    /* ── MIGRATION ── */
    .migration-section { position: relative; z-index: 1; background: linear-gradient(135deg, rgba(0,212,200,0.04) 0%, rgba(14,165,233,0.04) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 6rem 1.5rem; }
    .migration-inner { max-width: 1160px; margin: 0 auto; }
    .migration-steps { display: flex; gap: 0; margin: 3rem 0; position: relative; }
    .migration-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0.3; }
    .migration-step { flex: 1; text-align: center; padding: 0 0.5rem; }
    .step-circle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #03060F; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 0 20px rgba(0,212,200,0.3); }
    .migration-step p { font-size: 0.85rem; font-weight: 600; color: var(--gray-2); }
    .platforms-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2.5rem; }
    .platform-chip { background: var(--surface); border: 1px solid var(--border-teal); color: var(--teal); font-size: 0.8rem; font-weight: 600; padding: 0.5rem 1.125rem; border-radius: 100px; }

    /* ── PRICING ── */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: all 0.3s; position: relative; display: flex; flex-direction: column; }
    .price-card:hover { border-color: var(--border-teal); transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
    .price-card.featured { background: linear-gradient(135deg, rgba(0,212,200,0.08), rgba(14,165,233,0.06)); border-color: rgba(0,212,200,0.35); box-shadow: 0 0 40px rgba(0,212,200,0.1); }
    .price-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #03060F; font-size: 0.7rem; font-weight: 800; padding: 0.25rem 0.875rem; border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
    .price-tier { font-size: 0.8rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
    .price-amount { font-size: 3rem; font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; margin-bottom: 0.25rem; }
    .price-amount sup { font-size: 1.25rem; font-weight: 600; letter-spacing: 0; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
    .price-amount sub { font-size: 1rem; font-weight: 400; color: var(--gray-3); letter-spacing: 0; }
    .price-units { font-size: 0.85rem; color: var(--gray-3); margin-bottom: 2rem; }
    .price-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
    .price-features { list-style: none; flex-grow: 1; margin-bottom: 2rem; }
    .price-features li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--gray-2); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
    .price-features li:last-child { border-bottom: none; }
    .check { color: var(--teal); font-weight: 700; font-size: 0.85rem; margin-top: 1px; flex-shrink: 0; }
    .price-note { text-align: center; font-size: 0.775rem; color: var(--gray-3); margin-top: 3rem; }

    /* ── TESTIMONIALS ── */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: all 0.3s; }
    .testimonial-card:hover { border-color: var(--border-teal); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    .testimonial-stars { color: var(--teal); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .testimonial-text { font-size: 0.9rem; color: var(--gray-1); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
    .author-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: #03060F; }
    .author-name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
    .author-role { font-size: 0.775rem; color: var(--gray-3); }

    /* ── FAQ ── */
    .faq-list { max-width: 760px; margin: 3rem auto 0; }
    .faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
    .faq-btn { width: 100%; background: none; border: none; color: var(--white); font-family: var(--font); font-size: 0.975rem; font-weight: 600; text-align: left; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
    .faq-btn:hover { color: var(--teal); }
    .faq-chevron { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--gray-3); transition: all 0.3s; }
    .faq-item.open .faq-chevron { background: var(--teal-dim); border-color: var(--teal); color: var(--teal); transform: rotate(180deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 0.9rem; color: var(--gray-2); line-height: 1.7; }
    .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }

    /* ── FINAL CTA ── */
    .cta-section { position: relative; z-index: 1; margin: 0 1.5rem 5rem; border-radius: 24px; padding: 5rem 2rem; text-align: center; background: linear-gradient(135deg, rgba(0,212,200,0.1) 0%, rgba(14,165,233,0.08) 100%); border: 1px solid rgba(0,212,200,0.2); overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(0,212,200,0.2) 0%, transparent 70%); pointer-events: none; }
    .cta-section h2 { font-size: 3rem; font-weight: 800; color: var(--white); letter-spacing: -1.5px; margin-bottom: 1rem; }
    .cta-section p { font-size: 1.05rem; color: var(--gray-2); margin-bottom: 2.5rem; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ── FOOTER ── */
    footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 4rem 1.5rem 2rem; }
    .footer-inner { max-width: 1160px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand p { font-size: 0.875rem; color: var(--gray-3); line-height: 1.6; margin-top: 0.75rem; max-width: 260px; }
    .footer-col h5 { font-size: 0.8rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.75rem; }
    .footer-col ul li a { font-size: 0.875rem; color: var(--gray-3); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--teal); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
    .footer-bottom p { font-size: 0.825rem; color: var(--gray-3); }
    .footer-bottom a { color: var(--teal); text-decoration: none; }

    /* ── ANIMATIONS ── */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .bento-grid { grid-template-columns: repeat(2,1fr); }
      .bento-card.wide { grid-column: span 1; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .kpi-row { grid-template-columns: repeat(2,1fr); }
      .maint-kanban { grid-template-columns: repeat(2,1fr); }
      .dash-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      nav { margin: 8px; top: 8px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 70px;
        left: 1rem;
        right: 1rem;
        background:
          linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(0,212,200,0.08) 100%),
          rgba(7,13,28,0.52);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 16px;
        padding: 0.75rem;
        gap: 0.2rem;
        z-index: 999;
        box-shadow:
          0 0 0 1px rgba(0,0,0,0.25) inset,
          0 1px 0 0 rgba(255,255,255,0.1) inset,
          0 24px 48px -12px rgba(0,4,16,0.5);
      }
      .nav-links.mobile-open a {
        display: block;
        padding: 0.65rem 0.875rem;
      }
      #hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.5rem; gap: 2.5rem; }
      .hero-h1 { font-size: 2.5rem; }
      .hero-visual { order: -1; }
      .float-badge-1, .float-badge-2 { display: none; }
      .mock-body { height: 260px; grid-template-columns: 1fr; }
      .mock-sidebar { display: none; }
      .section-h2 { font-size: 2rem; }
      .ps-grid { grid-template-columns: 1fr; }
      .bento-grid { grid-template-columns: 1fr; }
      .migration-steps { flex-wrap: wrap; gap: 1rem; }
      .migration-steps::before { display: none; }
      .migration-step { flex: 0 0 40%; }
      .app-layout { grid-template-columns: 1fr; }
      .app-sidebar { display: none; }
      .cta-section h2 { font-size: 2rem; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .kpi-row { grid-template-columns: repeat(2,1fr); }
      .maint-kanban { grid-template-columns: 1fr; }
      .dash-grid { grid-template-columns: 1fr; }
      .pipeline-stages { display: grid; grid-template-columns: repeat(2,1fr); border-radius: 10px; }
      .pipeline-stage { border-right: none; border-bottom: 1px solid var(--border); }
    }


    /* ── OVERAGE BADGE + ESTIMATOR ── */
    .overage-badge {
      display: inline-flex; align-items: center; gap: 0.35rem;
      background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2);
      color: #A78BFA; font-size: 0.7rem; font-weight: 700;
      padding: 0.25rem 0.625rem; border-radius: 100px;
      margin-top: 0.5rem; margin-bottom: 0.75rem;
    }
    .overage-estimator {
      background: var(--surface);
      border: 1px solid var(--border-teal);
      border-radius: 16px;
      padding: 2rem;
      margin-top: 2.5rem;
    }
    .overage-estimator h4 {
      font-size: 1rem; font-weight: 800; color: var(--white);
      margin-bottom: 0.375rem;
    }
    .overage-estimator p {
      font-size: 0.825rem; color: var(--gray-3); margin-bottom: 1.5rem;
    }
    .overage-form {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem;
      align-items: end;
    }
    .overage-field label {
      display: block; font-size: 0.72rem; font-weight: 700;
      color: var(--gray-3); text-transform: uppercase;
      letter-spacing: 0.06em; margin-bottom: 0.5rem;
    }
    .overage-select, .overage-input {
      width: 100%; background: rgba(255,255,255,0.05);
      border: 1px solid var(--border); border-radius: 8px;
      padding: 0.625rem 0.875rem; color: var(--white);
      font-family: var(--font); font-size: 0.875rem; outline: none;
      transition: border-color 0.2s;
    }
    .overage-select:focus, .overage-input:focus { border-color: var(--teal); }
    .overage-select option { background: #0A1628; }
    .overage-result {
      background: linear-gradient(135deg, rgba(0,212,200,0.08), rgba(14,165,233,0.06));
      border: 1px solid rgba(0,212,200,0.2);
      border-radius: 12px; padding: 1.25rem 1.5rem;
      margin-top: 1.25rem;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    }
    .ovr-col { text-align: center; }
    .ovr-label { font-size: 0.65rem; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.06em; }
    .ovr-val { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-top: 0.25rem; letter-spacing: -0.5px; }
    .ovr-val.teal { color: var(--teal); }
    .ovr-val.green { color: var(--green); }
    .ovr-val.purple { color: var(--purple); }
    .ovr-sub { font-size: 0.6rem; color: var(--gray-3); margin-top: 0.125rem; }
    .ovr-upgrade-note {
      margin-top: 1rem; padding: 0.75rem 1rem;
      background: rgba(255,140,66,0.08); border: 1px solid rgba(255,140,66,0.2);
      border-radius: 8px; font-size: 0.8rem; color: var(--orange); text-align: center;
      display: none;
    }
    @media (max-width: 768px) {
      .overage-form { grid-template-columns: 1fr; }
      .overage-result { grid-template-columns: repeat(2,1fr); }
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
      margin-top: 1.5rem;
    }
    .trust-chip {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.775rem; font-weight: 600; color: var(--gray-3);
    }
    .trust-chip .tc-icon {
      width: 18px; height: 18px; border-radius: 50%;
      background: rgba(0,212,200,0.12); border: 1px solid rgba(0,212,200,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem; color: var(--teal); flex-shrink: 0;
    }

    /* ── INTEGRATIONS ── */
    .integrations-section {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border);
      padding: 5rem 1.5rem;
    }
    .integrations-inner { max-width: 1160px; margin: 0 auto; text-align: center; }
    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1rem;
      margin-top: 3rem;
    }
    .integration-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem 1rem;
      display: flex; flex-direction: column; align-items: center; gap: 0.625rem;
      transition: all 0.2s;
      cursor: default;
    }
    .integration-card:hover {
      border-color: var(--border-teal);
      background: var(--surface-hover);
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    }
    .int-logo {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
    }
    .integration-card .int-name { font-size: 0.8rem; font-weight: 700; color: var(--white); }
    .integration-card .int-type { font-size: 0.68rem; color: var(--gray-3); }

    /* ── ROI CALCULATOR ── */
    .roi-section {
      position: relative; z-index: 1;
      background: linear-gradient(135deg, rgba(0,212,200,0.04) 0%, rgba(14,165,233,0.03) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 6rem 1.5rem;
    }
    .roi-inner { max-width: 960px; margin: 0 auto; }
    .roi-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
      align-items: start; margin-top: 3rem;
    }
    .roi-inputs { display: flex; flex-direction: column; gap: 2rem; }
    .roi-field label {
      display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray-2);
      margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em;
    }
    .roi-field .val-display {
      font-size: 1.25rem; font-weight: 800; color: var(--teal);
      float: right; letter-spacing: -0.5px;
    }
    .roi-slider {
      -webkit-appearance: none; appearance: none;
      width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--teal) 0%, var(--teal) var(--pct,40%), rgba(255,255,255,0.1) var(--pct,40%));
      border-radius: 2px; outline: none; cursor: pointer;
    }
    .roi-slider::-webkit-slider-thumb {
      -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal2));
      cursor: pointer; box-shadow: 0 0 10px rgba(0,212,200,0.4);
    }
    .roi-results {
      background: var(--surface);
      border: 1px solid var(--border-teal);
      border-radius: 20px; padding: 2rem;
      box-shadow: 0 0 40px rgba(0,212,200,0.08);
    }
    .roi-result-title { font-size: 0.75rem; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem; }
    .roi-result-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.875rem 0; border-bottom: 1px solid var(--border);
    }
    .roi-result-row:last-of-type { border-bottom: none; }
    .roi-result-label { font-size: 0.875rem; color: var(--gray-2); }
    .roi-result-val { font-size: 1rem; font-weight: 800; color: var(--white); }
    .roi-result-val.big {
      font-size: 2rem; letter-spacing: -1px;
      background: linear-gradient(135deg, var(--teal), var(--teal2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .roi-total-row {
      margin-top: 1.25rem; padding: 1.25rem;
      background: rgba(0,212,200,0.08); border: 1px solid rgba(0,212,200,0.2);
      border-radius: 12px; text-align: center;
    }
    .roi-total-label { font-size: 0.75rem; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.08em; }
    .roi-total-val { font-size: 2.5rem; font-weight: 800; letter-spacing: -1.5px; margin-top: 0.25rem;
      background: linear-gradient(135deg, var(--teal), var(--teal2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .roi-total-sub { font-size: 0.8rem; color: var(--gray-3); margin-top: 0.25rem; }
    .roi-plan-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--teal-dim); border: 1px solid var(--border-teal);
      color: var(--teal); font-size: 0.75rem; font-weight: 700;
      padding: 0.375rem 0.875rem; border-radius: 100px; margin-top: 1rem;
    }

    /* ── COMPARISON TABLE ── */
    .comparison-section { position: relative; z-index: 1; padding: 6rem 1.5rem; }
    .comparison-inner { max-width: 1000px; margin: 0 auto; }
    .comparison-table-wrap { overflow-x: auto; margin-top: 3rem; border-radius: 16px; border: 1px solid var(--border); }
    .comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
    .comparison-table thead tr {
      background: rgba(255,255,255,0.02);
      border-bottom: 1px solid var(--border);
    }
    .comparison-table th {
      padding: 1.25rem 1rem; font-size: 0.875rem; font-weight: 800; text-align: center;
    }
    .comparison-table th:first-child { text-align: left; font-size: 0.75rem; color: var(--gray-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
    .th-opcontrol { color: var(--teal); }
    .th-other { color: var(--gray-2); }
    .comparison-table td {
      padding: 0.875rem 1rem; font-size: 0.875rem; color: var(--gray-2);
      border-bottom: 1px solid rgba(255,255,255,0.03); text-align: center;
    }
    .comparison-table td:first-child { text-align: left; color: var(--white); font-weight: 500; font-size: 0.875rem; }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
    .col-opcontrol { background: rgba(0,212,200,0.04); }
    .comp-yes { color: var(--teal); font-size: 1rem; font-weight: 700; }
    .comp-no { color: var(--gray-4); font-size: 1rem; }
    .comp-partial { color: var(--orange); font-size: 0.75rem; font-weight: 600; }
    .comp-price { font-size: 0.8rem; font-weight: 700; }
    .price-good { color: var(--green); }
    .price-bad { color: var(--red); }
    .comp-section-row td {
      background: rgba(255,255,255,0.015);
      font-size: 0.7rem; font-weight: 700; color: var(--gray-3);
      text-transform: uppercase; letter-spacing: 0.08em;
      padding: 0.5rem 1rem;
    }
    .comp-section-row td:first-child { text-align: left; }

    /* ── EMAIL CAPTURE ── */
    .email-capture-section {
      position: relative; z-index: 1;
      padding: 5rem 1.5rem;
      background: linear-gradient(135deg, rgba(0,212,200,0.05) 0%, rgba(14,165,233,0.04) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .email-capture-inner { max-width: 640px; margin: 0 auto; text-align: center; }
    .email-capture-inner h2 { font-size: 2.25rem; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 0.875rem; }
    .email-capture-inner p { font-size: 1rem; color: var(--gray-2); margin-bottom: 2rem; line-height: 1.6; }
    .email-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto 1rem; }
    .email-input {
      flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
      border-radius: 10px; padding: 0.875rem 1.25rem;
      color: var(--white); font-family: var(--font); font-size: 0.9rem;
      outline: none; transition: border-color 0.2s;
    }
    .email-input::placeholder { color: var(--gray-3); }
    .email-input:focus { border-color: var(--teal); }
    .email-success { display: none; padding: 1rem; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); border-radius: 10px; color: var(--green); font-weight: 600; font-size: 0.9rem; }
    .email-note { font-size: 0.775rem; color: var(--gray-3); }

    /* ── LEAD MAGNET (marketing CTA) ── */
    .lead-magnet-section {
      position: relative; z-index: 1;
      padding: 3.25rem 1.5rem;
      border-bottom: 1px solid var(--border);
      background: radial-gradient(ellipse 75% 55% at 50% -25%, rgba(0,212,200,0.14), transparent 52%);
    }
    .lead-magnet-inner { max-width: 720px; margin: 0 auto; text-align: center; }
    .lead-magnet-badge {
      display: inline-flex; align-items: center; gap: 0.35rem;
      font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--teal); background: rgba(0,212,200,0.1); border: 1px solid rgba(0,212,200,0.28);
      padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1rem;
    }
    .lead-magnet-h2 {
      font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; color: var(--white);
      letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.65rem;
    }
    .lead-magnet-sub {
      font-size: 1.05rem; color: var(--gray-2); line-height: 1.55; max-width: 560px;
      margin: 0 auto 1.2rem;
    }
    .lead-magnet-bullets {
      list-style: none; padding: 0; margin: 0 auto 1.5rem; max-width: 440px; text-align: left;
    }
    .lead-magnet-bullets li {
      position: relative; padding-left: 1.45rem; margin-bottom: 0.45rem;
      font-size: 0.9rem; color: var(--gray-2);
    }
    .lead-magnet-bullets li::before {
      content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700;
    }
    .lead-magnet-form {
      display: grid; grid-template-columns: 1fr 1fr auto; gap: 0.65rem;
      max-width: 660px; margin: 0 auto 0.65rem; align-items: stretch;
    }
    .lead-magnet-form .email-input { min-width: 0; }
    .lead-magnet-submit {
      white-space: nowrap; padding: 0.875rem 1.2rem !important; border-radius: 10px !important;
      font-weight: 700;
    }
    #leadMagnetSuccess { display: none; max-width: 520px; margin: 0 auto 0.5rem; text-align: center; }
    @media (max-width: 680px) {
      .lead-magnet-form { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .integrations-grid { grid-template-columns: repeat(3, 1fr); }
      .roi-grid { grid-template-columns: 1fr; }
      .email-form { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .integrations-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── LANGUAGE SWITCHER ── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 3px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 4px 5px;
    }
    .lang-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 24px;
      border-radius: 6px;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.15s;
      opacity: 0.45;
      cursor: pointer;
      border: none;
      background: transparent;
      line-height: 1;
    }
    .lang-btn:hover { opacity: 0.85; background: var(--surface-hover); }
    .lang-btn.active {
      opacity: 1;
      background: var(--teal-dim);
      border: 1px solid var(--border-teal);
      box-shadow: 0 0 8px rgba(0,212,200,0.15);
    }
    @media (max-width: 600px) { .lang-switcher { display: none; } }

    /* ── Shared nav active state (site-nav.js) ── */
    .nav-links a.is-active,
    .nav-actions a.btn.is-active {
      color: var(--white);
      background: var(--surface);
      box-shadow: 0 0 0 1px var(--border-teal);
    }

    /* ── Standalone pages (/buy) ── */
    /*
     * Buy page: the nav uses glass (backdrop-filter). As it sticks and scrolls, what’s
     * *behind* the bar changes, so the bar’s color seems to shift. Stronger opaque base +
     * lighter blur keeps the brand look without the “breathing” tint.
     */
    body[data-page="buy"] .nav-inner {
      background:
        linear-gradient(
          125deg,
          rgba(255,255,255,0.14) 0%,
          rgba(255,255,255,0.05) 40%,
          rgba(0,212,200,0.09) 100%
        ),
        rgba(7,13,28,0.92);
      backdrop-filter: blur(20px) saturate(150%);
      -webkit-backdrop-filter: blur(20px) saturate(150%);
    }

    .page-main {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
      padding: 1.5rem 1.5rem 5rem;
    }
    .page-main .buy-card {
      background:
        linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
        rgba(7,13,28,0.75);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2rem;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow:
        0 0 0 1px rgba(0,0,0,0.2) inset,
        0 1px 0 0 rgba(255,255,255,0.06) inset,
        0 24px 48px -20px rgba(0,4,16,0.5);
    }
    .page-main .buy-card label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gray-2);
      margin-bottom: 0.35rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .page-main .buy-card .field { margin-bottom: 1.25rem; }
    .page-main .buy-card select,
    .page-main .buy-card input[type="number"] {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--gray-1);
      font-family: var(--font);
      font-size: 1rem;
    }
    .page-main .buy-card .row { display: flex; gap: 1rem; flex-wrap: wrap; }
    .page-main .buy-card .row .field { flex: 1; min-width: 140px; }
    .page-main .buy-card fieldset { border: none; margin: 0 0 1.25rem; padding: 0; }
    .page-main .buy-card legend {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--gray-2);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .page-main .buy-card .radio-line {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.35rem;
      color: var(--gray-1);
      font-size: 0.95rem;
    }
    .page-main .buy-card .btn-submit-buy {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 0.9rem 1.25rem;
      border: none;
      border-radius: 10px;
      font-family: var(--font);
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      text-decoration: none;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal2) 100%);
      color: #03060F;
      box-shadow: 0 0 20px rgba(0,212,200,0.25);
      margin-top: 0.5rem;
    }
    .page-main .buy-card .btn-submit-buy:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 28px rgba(0,212,200,0.4);
    }
    .page-main .buy-steps {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      font-size: 0.875rem;
      color: var(--gray-2);
    }
    .page-main .buy-steps ol { margin: 0.5rem 0 0 1.25rem; }
    .page-main .buy-steps li { margin-bottom: 0.35rem; }
    .page-main .page-back a {
      color: var(--gray-2);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
    }
    .page-main .page-back a:hover { color: var(--teal); }
    .page-main .page-h1 {
      font-size: 2.25rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      margin: 1rem 0 0.5rem;
      /* Solid fill avoids gradient-text repaint flicker on some browsers while scrolling */
      color: var(--white);
      text-shadow: 0 0 42px rgba(0, 212, 200, 0.22);
    }
    .page-main .page-sub { color: var(--gray-2); font-size: 1rem; margin-bottom: 1.75rem; line-height: 1.55; }
    .page-main .buy-hint { font-size: 0.8rem; color: var(--gray-2); margin-top: 0.75rem; line-height: 1.45; }
    .page-main .buy-hint a { color: var(--teal); }
