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

    :root {
      --dark: #0f1420;
      --dark2: #1a1f2e;
      --orange: #f97316;
      --orange-light: #fb923c;
      --white: #ffffff;
      --gray: #6b7280;
      --light: #f8fafc;
      --border: #e2e8f0;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark2); overflow-x: hidden; }
    h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(15,20,32,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 0 6%;
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
      transition: background 0.3s;
    }

    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo-img { width: 36px; height: 36px; border-radius: 9px; overflow: hidden; }
    .nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }
    .nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: #fff; }

    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: #fff; }

    .nav-ctas { display: flex; align-items: center; gap: 10px; }
    .btn-ghost { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 8px; transition: color 0.2s; }
    .btn-ghost:hover { color: #fff; }
    .btn-nav { background: var(--orange); color: #fff; text-decoration: none; font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
    .btn-nav:hover { background: var(--orange-light); transform: translateY(-1px); }

    /* HERO */
    .hero {
      min-height: 100vh;
      background: var(--dark);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 120px 6% 80px;
    }

    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    .hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 65%); top: -150px; right: -150px; pointer-events: none; }
    .hero-glow2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%); bottom: -100px; left: 5%; pointer-events: none; }

    .hero-inner {
      max-width: 1240px; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 70px; align-items: center;
      position: relative; z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.28);
      border-radius: 20px; padding: 5px 14px;
      font-size: 12px; font-weight: 700; color: var(--orange);
      margin-bottom: 22px; letter-spacing: 0.06em; text-transform: uppercase;
    }

    .hero h1 { font-size: clamp(34px,4.5vw,58px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 18px; }
    .hero h1 .accent { color: var(--orange); }

    .hero-desc { font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 34px; }

    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

    .btn-cta-primary {
      background: var(--orange); color: #fff; text-decoration: none;
      font-size: 16px; font-weight: 700; padding: 14px 26px; border-radius: 10px;
      transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-cta-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,115,22,0.32); }

    .btn-cta-ghost {
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-size: 16px; font-weight: 600; padding: 14px 26px; border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.14); transition: all 0.2s;
    }
    .btn-cta-ghost:hover { border-color: rgba(255,255,255,0.38); color: #fff; }

    .hero-microcopy { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: -28px; margin-bottom: 36px; }

    .hero-trust-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .trust-pill {
      display: flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 5px 12px;
      font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
    }
    .trust-pill .check { color: #4ade80; }

    /* HERO RIGHT — dual device mockup */
    .hero-right { position: relative; }

    .device-wrapper {
      position: relative;
      display: flex; align-items: flex-end; gap: 16px;
    }

    /* Browser mockup */
    .browser-mockup {
      flex: 1;
      background: #1e2535;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    }

    .browser-bar {
      background: #161c29;
      padding: 10px 14px;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .browser-dot { width: 9px; height: 9px; border-radius: 50%; }
    .browser-url {
      flex: 1; margin-left: 8px;
      background: rgba(255,255,255,0.06);
      border-radius: 6px; padding: 4px 10px;
      font-size: 11px; color: rgba(255,255,255,0.3);
    }

    .browser-body { padding: 16px; }

    /* Phone mockup */
    .phone-mockup {
      width: 140px; flex-shrink: 0;
      background: #1e2535;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0,0,0,0.5);
      margin-bottom: 24px;
    }

    .phone-notch {
      background: #161c29;
      height: 28px;
      display: flex; align-items: center; justify-content: center;
    }

    .phone-notch-bar { width: 40px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
    .phone-body { padding: 10px; }

    /* Float badges */
    .float-badge {
      position: absolute;
      background: #fff; border-radius: 10px;
      padding: 8px 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; color: var(--dark2);
      white-space: nowrap;
      animation: floatAnim 3s ease-in-out infinite; z-index: 10; position: absolute;
    }
    @keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

    .fb1 { top: -18px; left: -10px; animation-delay: 0s; }
    .fb2 { bottom: 40px; right: -10px; animation-delay: 1s; }
    .fb3 { top: 40%; left: -20px; animation-delay: 2s; }

    /* Mock dashboard elements */
    .mock-sidebar {
      width: 44px; background: #0f1420; border-radius: 8px;
      padding: 8px 6px; display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .mock-sidebar-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 13px; }
    .mock-sidebar-icon.active { background: rgba(249,115,22,0.2); }

    .mock-main { flex: 1; }

    .mock-header-bar {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 12px;
    }
    .mock-header-title { font-family: 'Syne',sans-serif; font-size: 14px; font-weight: 700; color: #fff; }
    .mock-add-btn { background: var(--orange); color: #fff; border: none; padding: 5px 10px; border-radius: 6px; font-size: 10px; font-weight: 700; cursor: pointer; font-family: Inter,sans-serif; }

    .mock-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 10px; }
    .mock-stat-sm { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 8px; text-align: center; }
    .mock-stat-sm-val { font-family: 'Syne',sans-serif; font-size: 14px; font-weight: 800; color: var(--orange); }
    .mock-stat-sm-label { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 2px; }

    .mock-job-row {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px; padding: 8px 10px; display: flex; align-items: center;
      justify-content: space-between; margin-bottom: 5px;
    }
    .mock-job-left { display: flex; align-items: center; gap: 7px; }
    .mock-job-dot { width: 6px; height: 6px; border-radius: 50%; }
    .mock-job-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }
    .mock-job-client-sm { font-size: 9px; color: rgba(255,255,255,0.35); }
    .mock-status-badge { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 10px; }

    /* Phone content */
    .phone-client-item { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
    .phone-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; }
    .phone-client-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }
    .phone-client-info { font-size: 9px; color: rgba(255,255,255,0.35); }
    .phone-pay-btn { width: 100%; background: var(--orange); color: #fff; border: none; padding: 8px; border-radius: 8px; font-size: 10px; font-weight: 700; margin-top: 6px; cursor: pointer; font-family: Inter,sans-serif; }

    /* TRUST STRIP */
    .trust-strip { background: var(--dark2); padding: 24px 6%; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
    .trust-strip-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 10px; }
    .trust-industry-logo { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
    .trust-industry-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); }
    .trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.08); }

    /* SECTION SHARED */
    section { padding: 96px 6%; }
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-badge {
      display: inline-block; background: rgba(249,115,22,0.1); color: var(--orange);
      border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px;
    }

    .section-title { font-size: clamp(26px,3.5vw,42px); font-weight: 800; color: var(--dark2); line-height: 1.2; margin-bottom: 14px; }
    .section-sub { font-size: 17px; color: var(--gray); line-height: 1.72; }

    /* INDUSTRIES */
    .industries { background: var(--light); }

    .industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }

    .ind-card {
      background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px;
      transition: all 0.22s; cursor: default;
    }
    .ind-card:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(249,115,22,0.1); transform: translateY(-3px); }

    .ind-logo {
      width: 52px; height: 52px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; margin-bottom: 16px;
      position: relative; overflow: hidden;
    }

    .ind-title { font-family: 'Syne',sans-serif; font-size: 17px; font-weight: 700; color: var(--dark2); margin-bottom: 8px; }
    .ind-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* COMPARISON */
    .comparison { background: var(--dark2); }
    .comparison .section-title { color: #fff; }
    .comparison .section-sub { color: rgba(255,255,255,0.5); }

    .compare-table {
      margin-top: 48px;
      border-radius: 16px; overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .compare-header {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      background: rgba(255,255,255,0.04);
      padding: 16px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .compare-header-cell { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
    .compare-header-cell.highlight { color: var(--orange); }

    .compare-row {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.05);
      align-items: center;
    }

    .compare-row:last-child { border-bottom: none; }
    .compare-row:nth-child(even) { background: rgba(255,255,255,0.02); }

    .compare-feature { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }
    .compare-cell { font-size: 14px; font-weight: 600; text-align: center; }
    .compare-yes { color: #4ade80; }
    .compare-no { color: rgba(255,255,255,0.2); }
    .compare-maybe { color: #f59e0b; font-size: 12px; }
    .compare-price { color: var(--orange); font-weight: 800; }

    /* STATS */
    .stats-section { background: var(--orange); padding: 72px 6%; }
    .stats-inner { max-width: 1100px; margin: 0 auto; }
    .stats-title { font-family: 'Syne',sans-serif; font-size: clamp(20px,2.5vw,28px); font-weight: 800; color: #fff; text-align: center; margin-bottom: 52px; opacity: 0.9; }
    .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
    .stat-block { text-align: center; }
    .stat-num { font-family: 'Syne',sans-serif; font-size: clamp(36px,5vw,54px); font-weight: 800; color: #fff; line-height: 1; }
    .stat-lbl { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; line-height: 1.5; }

    /* FEATURES */
    .feat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-bottom: 100px; }
    .feat-block:last-child { margin-bottom: 0; }
    .feat-block.reverse { direction: rtl; }
    .feat-block.reverse > * { direction: ltr; }

    .feat-visual { background: var(--dark2); border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
    .feat-visual-bar { background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 11px 16px; display: flex; align-items: center; gap: 7px; }
    .wdot { width: 9px; height: 9px; border-radius: 50%; }
    .feat-visual-bar-label { color: rgba(255,255,255,0.25); font-size: 11px; margin-left: 6px; }
    .feat-visual-body { padding: 20px; }

    .feat-content .section-badge { margin-bottom: 12px; }
    .feat-title { font-family: 'Syne',sans-serif; font-size: clamp(22px,2.8vw,34px); font-weight: 800; color: var(--dark2); line-height: 1.2; margin-bottom: 16px; }
    .feat-desc { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }

    .feat-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .feat-checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--gray); line-height: 1.6; }
    .feat-check-icon { width: 21px; height: 21px; border-radius: 50%; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }

    /* invoice mock */
    .inv-mock { background: #fff; border-radius: 10px; overflow: hidden; margin: 6px; }
    .inv-header { background: var(--dark2); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
    .inv-header-title { font-weight: 700; color: #fff; font-size: 13px; }
    .inv-header-amt { font-family: 'Syne',sans-serif; font-weight: 800; font-size: 18px; color: var(--orange); }
    .inv-body { padding: 14px 18px; }
    .inv-row { display: flex; justify-content: space-between; font-size: 12px; padding: 6px 0; border-bottom: 1px solid #f1f5f9; color: #374151; }
    .inv-pay-btn { width: 100%; background: var(--orange); color: #fff; border: none; padding: 10px; border-radius: 7px; font-size: 13px; font-weight: 700; margin-top: 10px; cursor: pointer; font-family: Inter,sans-serif; }
    .inv-secure { text-align: center; font-size: 10px; color: #9ca3af; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 4px; }

    /* ai mock */
    .ai-user-msg { background: #f1f5f9; border-radius: 10px; padding: 10px 12px; font-size: 12px; color: #1a1f2e; margin-bottom: 10px; }
    .ai-preview { background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); border-radius: 10px; padding: 12px; margin-bottom: 10px; }
    .ai-preview-label { font-size: 10px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
    .ai-preview-row { font-size: 11px; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
    .ai-preview-row strong { color: #fff; }
    .ai-btns { display: flex; gap: 6px; margin-top: 10px; }
    .ai-confirm { flex: 1; background: var(--orange); color: #fff; border: none; padding: 8px; border-radius: 7px; font-size: 11px; font-weight: 700; cursor: pointer; font-family: Inter,sans-serif; }
    .ai-cancel { flex: 1; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); border: none; padding: 8px; border-radius: 7px; font-size: 11px; font-weight: 600; cursor: pointer; font-family: Inter,sans-serif; }

    /* TESTIMONIALS */
    .testimonials { background: var(--light); }
    .test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
    .test-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
    .test-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
    .test-quote { font-size: 15px; color: var(--dark2); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
    .test-author { display: flex; align-items: center; gap: 12px; }
    .test-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
    .test-name { font-size: 14px; font-weight: 700; color: var(--dark2); }
    .test-role { font-size: 12px; color: var(--gray); margin-top: 2px; }
    .test-result { display: inline-block; background: rgba(249,115,22,0.1); color: var(--orange); border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 700; margin-bottom: 14px; }

    /* FAQ */
    .faq-grid { max-width: 760px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { background: var(--light); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .faq-question { padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 600; color: var(--dark2); user-select: none; }
    .faq-question:hover { background: #f1f5f9; }
    .faq-icon { font-size: 18px; color: var(--orange); transition: transform 0.2s; flex-shrink: 0; }
    .faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 14px; color: var(--gray); line-height: 1.7; }
    .faq-item.open .faq-answer { max-height: 200px; padding: 0 22px 18px; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    /* PRICING */
    .pricing-wrap { max-width: 820px; margin: 52px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .price-card { background: #fff; border: 2px solid var(--border); border-radius: 20px; padding: 36px; position: relative; }
    .price-card.featured { border-color: var(--orange); background: var(--dark2); }
    .price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 14px; border-radius: 20px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
    .price-period { font-size: 12px; color: var(--gray); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
    .price-card.featured .price-period { color: rgba(255,255,255,0.45); }
    .price-amount { font-family: 'Syne',sans-serif; font-size: 46px; font-weight: 800; color: var(--dark2); line-height: 1; margin-bottom: 4px; }
    .price-card.featured .price-amount { color: #fff; }
    .price-amount sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
    .price-amount span { font-size: 16px; font-weight: 500; }
    .price-card .price-amount span { color: var(--gray); }
    .price-card.featured .price-amount span { color: rgba(255,255,255,0.4); }
    .price-save { font-size: 13px; color: #4ade80; font-weight: 700; margin-bottom: 26px; }
    .price-spacer { height: 22px; margin-bottom: 26px; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
    .price-features li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--gray); }
    .price-features li::before { content: '✓'; color: var(--orange); font-weight: 800; }
    .price-card.featured .price-features li { color: rgba(255,255,255,0.65); }
    .btn-price { display: block; text-align: center; text-decoration: none; padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: all 0.2s; }
    .btn-price-outline { border: 2px solid var(--border); color: var(--dark2); }
    .btn-price-outline:hover { border-color: var(--orange); color: var(--orange); }
    .btn-price-filled { background: var(--orange); color: #fff; }
    .btn-price-filled:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(249,115,22,0.3); }

    /* SECURITY STRIP */
    .security-strip { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 36px; }
    .sec-badge { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--gray); }
    .sec-badge-icon { font-size: 16px; }

    /* CTA */
    .cta-section { background: var(--dark); padding: 96px 6%; text-align: center; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px); background-size: 64px 64px; }
    .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-title { font-size: clamp(30px,4.5vw,50px); font-weight: 800; color: #fff; margin-bottom: 18px; line-height: 1.1; }
    .cta-title .accent { color: var(--orange); }
    .cta-sub { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 36px; line-height: 1.65; }
    .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    /* FOOTER */
    footer { background: var(--dark2); padding: 60px 6% 36px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
    .footer-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
    .footer-logo-img { width: 34px; height: 34px; border-radius: 8px; overflow: hidden; }
    .footer-logo-img img { width: 100%; height: 100%; object-fit: cover; }
    .footer-logo-text { font-family: 'Syne',sans-serif; font-weight: 800; font-size: 17px; color: #fff; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.65; max-width: 250px; }
    .footer-col-title { font-family: 'Syne',sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
    .footer-copy { font-size: 13px; color: rgba(255,255,255,0.2); }
    .footer-legal { display: flex; gap: 22px; }
    .footer-legal a { font-size: 13px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: rgba(255,255,255,0.55); }

    /* ANIMATIONS */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; }

    /* MOBILE */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .device-wrapper { display: none; }
      .industries-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .feat-block { grid-template-columns: 1fr; gap: 40px; }
      .feat-block.reverse { direction: ltr; }
      .test-grid { grid-template-columns: 1fr; }
      .pricing-wrap { grid-template-columns: 1fr; max-width: 420px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
      .compare-header, .compare-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
      .nav-links { display: none; }
    }

    @media (max-width: 540px) {
      .industries-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .trust-strip-inner { gap: 20px; }
      .compare-header span:nth-child(3), .compare-row div:nth-child(3) { display: none; }
    }
    /* ============ NEW: MULTI-PAGE NAV ADDITIONS ============ */
    .nav-links { position: relative; }
    .nav-dropdown-wrap { position: relative; }
    .nav-dropdown-wrap > a { cursor: pointer; display: flex; align-items: center; gap: 4px; }
    .nav-mega {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
      background: #fff; border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.25);
      padding: 22px; width: 620px; opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px;
    }
    .nav-dropdown-wrap:hover .nav-mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .nav-mega-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #9ca3af; margin: 10px 0 6px; grid-column: 1 / -1; }
    .nav-mega a { color: var(--dark2); font-size: 13px; font-weight: 500; text-decoration: none; padding: 7px 8px; border-radius: 7px; display: block; }
    .nav-mega a:hover { background: #fff7ed; color: var(--orange); }
    .nav-mega-see-all { grid-column: 1 / -1; margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--border); }
    .nav-mega-see-all a { color: var(--orange); font-weight: 700; }

    .mobile-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
    .mobile-menu-panel {
      display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 999;
      background: var(--dark); padding: 24px 6%; overflow-y: auto;
    }
    .mobile-menu-panel.open { display: block; }
    .mobile-menu-panel a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 16px; font-weight: 600; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .mobile-menu-panel .mm-sub { padding-left: 16px; }
    .mobile-menu-panel .mm-sub a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); padding: 10px 0; border-bottom: none; }
    .mobile-menu-panel .mm-label { color: rgba(255,255,255,0.35); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; padding: 16px 0 4px; }

    @media (max-width: 900px) {
      .mobile-menu-btn { display: block; }
    }

    /* ============ NEW: REQUEST-A-TRIAL MODAL ============ */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(15,20,32,0.7);
      align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px);
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: #fff; border-radius: 18px; max-width: 460px; width: 100%; padding: 34px;
      max-height: 90vh; overflow-y: auto; position: relative;
    }
    .modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 22px; color: #9ca3af; cursor: pointer; line-height: 1; }
    .modal-box h3 { font-size: 22px; margin-bottom: 6px; color: var(--dark2); }
    .modal-box .modal-sub { color: var(--gray); font-size: 14px; margin-bottom: 22px; line-height: 1.5; }
    .form-group { margin-bottom: 14px; }
    .form-group label { display: block; font-size: 12px; font-weight: 700; color: #374151; margin-bottom: 5px; }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 9px;
      font-size: 14px; font-family: 'Inter', sans-serif; color: var(--dark2); background: #fff;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
    .form-group textarea { resize: vertical; min-height: 70px; }
    .form-submit-btn {
      width: 100%; background: var(--orange); color: #fff; border: none; padding: 13px; border-radius: 9px;
      font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 4px; transition: background 0.2s;
    }
    .form-submit-btn:hover { background: var(--orange-light); }
    .form-submit-btn:disabled { background: #d1d5db; cursor: not-allowed; }
    .form-status { font-size: 13px; margin-top: 10px; text-align: center; display: none; }
    .form-status.success { display: block; color: #16a34a; font-weight: 600; }
    .form-status.error { display: block; color: #dc2626; font-weight: 600; }
    .form-note { font-size: 11.5px; color: #9ca3af; text-align: center; margin-top: 14px; line-height: 1.5; }

    /* ============ NEW: INDUSTRY / TRADE PAGE TEMPLATE ============ */
    .ind-hero { background: var(--dark); padding: 150px 6% 70px; position: relative; overflow: hidden; }
    .ind-hero-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
    .ind-hero .hero-eyebrow { margin: 0 auto 20px; }
    .ind-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.08; margin-bottom: 18px; }
    .ind-hero p { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.6; max-width: 560px; margin: 0 auto 30px; }

    .ind-features { max-width: 1080px; margin: 0 auto; padding: 70px 6%; }
    .ind-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
    .ind-feat-card { background: var(--light); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
    .ind-feat-card .icon { font-size: 26px; margin-bottom: 12px; }
    .ind-feat-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--dark2); }
    .ind-feat-card p { font-size: 14px; color: var(--gray); line-height: 1.55; }

    .ind-cta-strip { background: var(--light); border-top: 1px solid var(--border); padding: 60px 6%; text-align: center; }
    .ind-cta-strip h3 { font-size: 26px; margin-bottom: 10px; color: var(--dark2); }
    .ind-cta-strip p { color: var(--gray); margin-bottom: 24px; }

    .trades-grid-section { padding: 60px 6%; max-width: 1080px; margin: 0 auto; }
    .trades-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
    .trades-grid a { background: var(--light); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; text-decoration: none; color: var(--dark2); font-size: 13.5px; font-weight: 600; transition: border-color 0.2s, transform 0.2s; }
    .trades-grid a:hover { border-color: var(--orange); transform: translateY(-2px); }

    @media (max-width: 900px) {
      .ind-features-grid { grid-template-columns: 1fr; }
      .trades-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ============ NEW: PRODUCT PAGE ============ */
    .product-section { max-width: 1080px; margin: 0 auto; padding: 60px 6%; scroll-margin-top: 90px; }
    .product-section-alt { background: var(--light); }
    .product-toc { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; padding: 130px 6% 0; max-width: 900px; margin: 0 auto; }
    .product-toc a { background: var(--light); border: 1px solid var(--border); padding: 9px 16px; border-radius: 20px; text-decoration: none; color: var(--dark2); font-size: 13px; font-weight: 600; }
    .product-toc a:hover { border-color: var(--orange); color: var(--orange); }
    a.ind-card { text-decoration: none; display: block; }
