/*
Theme Name: Calqo
Theme URI: https://calqo.io
Author: Calqo Limited
Author URI: https://calqo.io
Text Domain: calqo

*/

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

 html, :host {
	font-family: Roboto, Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
  :root {
    --ink: #0f1117;
    --ink-muted: #5a5f6e;
    --ink-faint: #a0a5b2;
    --surface: #ffffff;
    --surface-2: #f8f7ff;
    --surface-3: #f0eeff;
    --accent: rgb(125, 76, 254);
    --accent-mid: rgb(148, 108, 254);
    --accent-light: rgb(214, 200, 255);
    --accent-pale: rgb(240, 235, 255);
    --border: #e4e2f0;
    --radius: 10px;
    --radius-lg: 16px;
  }

  body {
    background: var(--surface);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5, h6{
    font-family: Poppins, Roboto, Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }

  header{
    position: sticky;
    top: 0px;
    z-index: 190;
    border-bottom: 1px solid var(--border);
  }

  img.custom-logo{
    width:130px;
    height:unset;
    margin-top: 10px;
  }

  #site-title{
    padding: 20px 0px;
  }

  /* -- MAIN NAV -- */
  .main-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0px 48px;
  }
  .logo {
    font-size: 22px;
    color: var(--accent);
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  .logo-mark {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-mark svg { width: 16px; height: 16px; fill: white; }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding-top: 10px;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--ink); background: var(--surface-2); }
  .nav-links a.active { color: var(--accent); background: var(--accent-pale); font-weight: 500; }
  .nav-cta {
    background: oklch(0.511 0.262 276.966) !important;
    color: white !important;
    font-weight: 500 !important;
    padding: 8px 18px !important;
  }
  .nav-cta:hover { background: rgb(95, 46, 214) !important; }

  /* -- SUB NAV -- */
  .sub-nav {
    position: sticky;
    top: 60px;
    z-index: 190;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
  }
  .sub-nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sub-nav-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
  }
  .sub-nav-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sub-nav-icon svg { width: 16px; height: 16px; }
  .sub-nav-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
  }
  .sub-nav-breadcrumb {
    font-size: 13px;
    color: var(--ink-faint);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .sub-nav-breadcrumb a { color: var(--ink-muted); text-decoration: none; }
  .sub-nav-breadcrumb a:hover { color: var(--accent); }
  .sub-nav-divider { color: var(--ink-faint); }
  .sub-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .sub-nav-links a {
    font-size: 14px;
    color: var(--ink-muted);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .sub-nav-links a:hover { color: var(--ink); background: var(--surface-2); }
  .sub-nav-links a.active {
    color: var(--accent);
    font-weight: 500;
    position: relative;
  }
  .sub-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px 2px 0 0;
  }

  /* -- SHARED -- */
  section { padding: 80px 48px; }
  .section-inner { max-width: 1160px; margin: 0 auto; }
  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-mid);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: var(--ink);
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--ink-muted);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
  }
  .section-header { margin-bottom: 52px; }
  .btn-primary {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: rgb(95, 46, 214); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--ink-muted); background: var(--surface-2); }

  /* -- HERO -- */
  #overview.hero {
    padding: 80px 48px 72px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
  }
  #home.hero {
    padding: 80px 48px;
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    border: none;
    background: none;
  }
  .hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-pale);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid var(--accent-light);
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-mid);
    border-radius: 50%;
  }
  .hero h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .hero h1 span { color: var(--accent-mid); }
  .hero-sub {
    font-size: 17px;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    font-weight: 300;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }
  .stat-number {
    font-size: 26px;
    color: var(--ink);
    letter-spacing: -0.5px;
  }
  .stat-label { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }

  /* Hero screen mockup */
  .hero-screen {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(125,76,254,0.1);
  }
  .screen-topbar {
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .screen-dots { display: flex; gap: 6px; }
  .screen-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #ffb3b0; }
  .dot-y { background: #ffd580; }
  .dot-g { background: #b0e0b0; }
  .screen-url {
    flex: 1;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--ink-faint);
  }
  .screen-body { padding: 20px; }
  .screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .screen-title { font-size: 15px; font-weight: 500; color: var(--ink); }
  .screen-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--accent-pale);
    color: var(--accent);
  }
  .screen-progress-bar {
    background: var(--surface-2);
    border-radius: 4px;
    height: 6px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  .screen-progress-fill {
    height: 100%;
    width: 72%;
    background: var(--accent);
    border-radius: 4px;
  }
  .screen-steps { display: flex; flex-direction: column; gap: 8px; }
  .screen-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 13px;
  }
  .screen-step.done { background: var(--accent-pale); border-color: var(--accent-light); }
  .screen-step.active { background: white; border-color: var(--accent); }
  .screen-step.pending { background: var(--surface-2); }
  .step-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
  }
  .check-done { background: var(--accent); color: white; }
  .check-active { background: white; border: 2px solid var(--accent); }
  .check-pending { background: var(--surface-3); border: 1px solid var(--border); }
  .step-label { flex: 1; color: var(--ink); }
  .screen-step.pending .step-label { color: var(--ink-faint); }
  .step-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 100px;
  }
  .tag-done { background: var(--accent-pale); color: var(--accent); }
  .tag-active { background: #fff3e0; color: #b06000; }
  .tag-pending { color: var(--ink-faint); }
  .screen-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .screen-footer-text { font-size: 12px; color: var(--ink-faint); }
  .screen-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
  }

  /* Hero visual */
  .hero-visual {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .filing-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 16px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
    animation: slideUp 0.5s ease both;
  }
  .filing-card:nth-child(2) { animation-delay: 0.1s; }
  .filing-card:nth-child(3) { animation-delay: 0.2s; }
  .filing-card:nth-child(4) { animation-delay: 0.3s; }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .filing-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .icon-green { background: var(--accent-pale); }
  .icon-blue { background: #e8f0fe; }
  .icon-amber { background: #fdf3e3; }
  .filing-info { flex: 1; }
  .filing-title { font-size: 14px; font-weight: 500; color: var(--ink); }
  .filing-meta { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
  .filing-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.03em;
  }
  .badge-done { background: var(--accent-light); color: var(--accent); }
  .badge-due { background: #fdf3e3; color: #8a5c1a; }
  .badge-progress { background: #e8f0fe; color: #1a56ab; }

  /* -- OVERVIEW SECTIONS -- */

  /* Compliance standards strip */
  .standards-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 28px 48px;
  }
  .standards-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .standards-label { font-size: 12px; color: var(--ink-faint); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
  .standards-items { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
  .standard-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
  }
  .standard-dot { width: 7px; height: 7px; background: var(--accent-light); border-radius: 50%; }

  /* Who it's for */
  .who { background: var(--surface); }
  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .who-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .who-card:hover { border-color: var(--accent-light); transform: translateY(-2px); }
  .who-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-pale);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
  }
  .who-title { font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
  .who-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.65; font-weight: 300; }

  /* -- FEATURES SECTION -- */
  .features { background: var(--surface-2); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.2s;
  }
  .feature-card:hover { border-color: var(--accent-light); }
  .feature-card.wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .feature-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-pale);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent-mid); margin-bottom: 8px; }
  .feature-title { font-size: 22px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.3px; }
  .feature-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; font-weight: 300; margin-bottom: 18px; }
  .feature-list { list-style: none; }
  .feature-list li {
    font-size: 13px;
    color: var(--ink-muted);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-bottom: 1px solid var(--border);
  }
  .feature-list li:last-child { border-bottom: none; }
  .feature-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent-light);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
  }

  /* Feature visual panel */
  .feature-visual {
    background: var(--surface-2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .mini-table { width: 100%; border-collapse: collapse; font-size: 13px; }
  .mini-table th {
    text-align: left;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-faint);
    padding: 6px 10px;
    border-bottom: 1px solid var(--border);
  }
  .mini-table td { padding: 8px 10px; color: var(--ink-muted); border-bottom: 1px solid var(--surface-2); }
  .mini-table tr:last-child td { border-bottom: none; }
  .mini-table .amount { text-align: right; font-weight: 500; color: var(--ink); }
  .mini-table .tag-xbrl {
    display: inline-block;
    font-size: 10px;
    background: var(--accent-pale);
    color: var(--accent);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
  }
  .xbrl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .xbrl-title { font-size: 13px; font-weight: 500; color: var(--ink); }
  .xbrl-status {
    font-size: 11px;
    background: var(--accent-pale);
    color: var(--accent);
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
  }

  /* ── COMPARISON TABLE ── */
  .comparison { background: var(--surface); }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .compare-table th {
    padding: 20px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    color: var(--ink);
  }
  .compare-table th.highlight {
    background: var(--accent-pale);
    color: var(--accent);
    border-bottom-color: var(--accent-light);
  }
  .compare-table td {
    padding: 15px 24px;
    font-size: 14px;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table td.highlight { background: rgb(248,245,255); }
  .compare-table td.row-label { font-weight: 500; color: var(--ink); font-size: 13px; }
  .check-yes { color: var(--accent); font-size: 16px; font-weight: 600; }
  .check-no { color: var(--ink-faint); font-size: 16px; }
  .check-partial { color: var(--ink-faint); font-size: 13px; }

  /* ── PRICING ── */
  .pricing { background: var(--surface-2); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
  }
  .price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
  }
  .price-card.popular {
    border: 2px solid var(--accent);
  }
  .popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
  .price-tier { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 10px; }
  .price-name { font-size: 24px; color: var(--ink); margin-bottom: 8px; }
  .price-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 24px; font-weight: 300; }
  .price-amount {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 6px;
  }
  .price-currency { font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
  .price-number { font-size: 48px; color: var(--ink); line-height: 1; letter-spacing: -2px; }
  .price-period { font-size: 14px; color: var(--ink-faint); margin-bottom: 28px; }
  .price-cta {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 28px;
    transition: background 0.2s, border-color 0.2s;
  }
  .cta-outline {
    border: 1px solid var(--border);
    color: var(--ink);
    background: transparent;
  }
  .cta-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-pale); }
  .cta-filled {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
  }
  .cta-filled:hover { background: rgb(95,46,214); }
  .price-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
  .price-features { list-style: none; }
  .price-features li {
    font-size: 13px;
    color: var(--ink-muted);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-weight: 300;
  }
  .pf-check {
    width: 16px;
    height: 16px;
    background: var(--accent-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pf-check::after {
    content: '';
    width: 7px; height: 4px;
    border-left: 1.5px solid var(--accent);
    border-bottom: 1.5px solid var(--accent);
    transform: rotate(-45deg) translate(1px,-1px);
  }
  .pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--ink-faint);
    margin-top: 28px;
    font-weight: 300;
  }
  .pricing-note a { color: var(--accent); text-decoration: none; }
  .pricing-note a:hover { text-decoration: underline; }

  /* FAQ */
  .faq { background: var(--surface); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    transition: border-color 0.2s;
  }
  .faq-item:hover { border-color: var(--accent-light); }
  .faq-q { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
  .faq-a { font-size: 14px; color: var(--ink-muted); line-height: 1.7; font-weight: 300; }

  /* CTA band */
  .cta-band { background: var(--ink); padding: 72px 48px; }
  .cta-band-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
  .cta-band h2 {
    font-size: 36px;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
  }
  .cta-band h2 span { color: rgb(196, 175, 255); }
  .cta-band p { font-size: 15px; color: rgba(255,255,255,0.5); font-weight: 300; }
  .cta-band-actions { display: flex; gap: 12px; flex-shrink: 0; }
  .btn-white {
    background: white;
    color: var(--ink);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
  }
  .btn-white:hover { background: var(--surface-2); }
  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: white; }

  /* ── TRUSTED BANNER ── */
  .trusted {
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 48px;
  }
  .trusted-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .trusted-label { font-size: 12px; color: var(--ink-faint); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
  .trusted-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
  .trusted-logo { font-size: 14px; font-weight: 600; color: var(--ink-muted); letter-spacing: -0.2px; }

  /* ── PRODUCTS GRID ── */
  .products { background: var(--surface-2); border-top: 1px solid var(--border); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
  }
  .product-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26,75,60,0.08);
  }
  .product-card.featured {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    grid-column: span 1;
  }
  .product-card.featured .product-desc { color: rgba(255,255,255,0.7); }
  .product-card.featured .product-tag { background: rgba(255,255,255,0.2); color: white; }
  .product-card.featured .product-link { color: white; }
  .product-card.featured .product-icon-wrap { background: rgba(255,255,255,0.15); }
  .product-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--accent-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .product-icon-wrap svg { width: 24px; height: 24px; }
  .product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--accent-pale);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
  }
  .product-name {
    font-size: 22px;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }
  .product-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .product-features {
    list-style: none;
    margin-bottom: 24px;
  }
  .product-features li {
    font-size: 13px;
    color: var(--ink-muted);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .product-card.featured .product-features li { color: rgba(255,255,255,0.75); }
  .product-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--accent-mid);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .product-card.featured .product-features li::before { background: rgba(255,255,255,0.6); }
  .product-link,
  .coming-soon-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .product-link:hover { text-decoration: underline; }
  .coming-soon-link:hover { text-decoration: none; }

  /* ── HOW IT WORKS ── */
  .how { background: var(--surface-2); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }
  .step { padding: 0 24px; position: relative; z-index: 1; }
  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .step-title { font-size: 16px; font-weight: 500; margin-bottom: 8px; color: var(--ink); }
  .step-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.6; font-weight: 300; }

  /* ── BETA CTA ── */
  .beta { background: var(--ink); }
  .beta-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 24px;
  }
  .pulse-dot {
    width: 6px;
    height: 6px;
    background: rgb(178, 150, 255);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .beta h2 {
    font-size: 42px;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .beta h2 span { color: rgb(196, 175, 255); }
  .beta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
  }
  .beta-perks {
    list-style: none;
    margin-bottom: 36px;
  }
  .beta-perks li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .perk-check {
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .perk-check::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 1.5px solid white;
    border-bottom: 1.5px solid white;
    transform: rotate(-45deg) translate(1px, -1px);
  }
  .beta-form { }
  .beta-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
  }
  .beta-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 6px;
  }
  .beta-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
  }
  .form-group { margin-bottom: 14px; }
  .form-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 6px; display: block; font-weight: 400; }
  .form-input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-input-light{
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    color: #000000;
    outline: none;
    transition: border-color 0.2s;
  }
  .search-field,
  #comment {
    min-width: 300px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    color: #000000;
    outline: none;
    transition: border-color 0.2s;
    display: block;
  }
  .form-input::placeholder { color: rgba(255,255,255,0.3); }
  .form-input:focus { border-color: var(--accent-mid); }
  .form-select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    outline: none;
    cursor: pointer;
    appearance: none;
  }
  .form-select option { background: #1a2030; color: white; }
  .btn-beta,
  .wpcf7-submit {
    width: 100%;
    background: var(--accent-mid);
    color: white;
    border: none;
    padding: 15px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
  }
  .search-submit,
  .submit{
    background: var(--accent-mid);
    color: white;
    border: none;
    padding: 12px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
    display: block;
  }
  .btn-beta:hover { background: rgb(95, 46, 214); }
  .beta-note { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; }


  .page { background: var(--surface); }
  /* ── INTEGRATIONS ── */
  .integrations { background: var(--surface); }
  .integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .integrations-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .integration-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: border-color 0.2s;
    cursor: default;
  }
  .integration-card:hover { border-color: var(--accent-light); }
  .int-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
  }
  .int-name { font-size: 15px; font-weight: 500; color: var(--ink); }
  .int-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.5; font-weight: 300; }
  .int-tag {
    font-size: 11px;
    font-weight: 500;
    background: var(--surface-3);
    color: var(--ink-muted);
    padding: 3px 9px;
    border-radius: 100px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    padding: 64px 48px 40px;
  }
  .footer-inner { max-width: 1160px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand .logo { margin-bottom: 14px; display: inline-flex; }
  .footer-brand p {
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 240px;
    margin-bottom: 20px;
  }
  .footer-compliance { display: flex; flex-wrap: wrap; gap: 8px; }
  .compliance-badge {
    font-size: 11px;
    background: var(--surface-3);
    color: var(--ink-muted);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
  }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-faint);
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    font-size: 14px;
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-col a.active-link { color: var(--accent); font-weight: 500; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom p { font-size: 13px; color: var(--ink-faint); font-weight: 300; }
  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a { font-size: 13px; color: var(--ink-faint); text-decoration: none; }
  .footer-legal a:hover { color: var(--ink-muted); }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--surface-3); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
  }
  .quote-mark {
    font-size: 48px;
    line-height: 0.8;
    color: var(--accent-light);
    margin-bottom: 12px;
    display: block;
  }
  .testimonial-text { font-size: 14px; color: var(--ink-muted); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
  .testimonial-author { display: flex; align-items: center; gap: 10px; }
  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
  }
  .author-name { font-size: 13px; font-weight: 500; color: var(--ink); }
  .author-role { font-size: 12px; color: var(--ink-faint); }


  .wpcf7 form.sent .wpcf7-response-output{
    background: oklch(0.95 0.052 163.051);
    border: 2px solid oklch(0.596 0.145 163.225);
    color: oklch(0.596 0.145 163.225);
    font-size: 14px;
  }

  .wpcf7 form.invalid .wpcf7-response-output{
    background: oklch(0.936 0.032 17.717);
    border: 2px solid oklch(0.577 0.245 27.325);
    color: oklch(0.577 0.245 27.325);
    font-size: 14px;
  }

  @media (max-width: 800px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .beta-inner {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .integrations-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
      grid-template-columns: 1fr 1fr;
    }

    #home.hero {
      grid-template-columns: 1fr;
    }

    .hero-inner {
      grid-template-columns: 1fr;
    }

    .who-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.wide {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .products-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .integrations-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .footer-top {
      grid-template-columns: 1fr;
    }

    .who-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .pricing-grid {
      grid-template-columns: repeat(1, 1fr);
    }

    .faq-grid {
      grid-template-columns: 1fr;
    }

    .cta-band-inner{
      display: grid;
      grid-template-columns: 1fr;
    }

    .feature-card.wide {
      grid-column: unset;
      grid-template-columns: 1fr;
    }

    .features-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

#comments footer{
  padding: 15px;
  background: none;
  border: none;
}

#comments ul{
  list-style: none;
}

.comment-respond{
  padding: 80px 48px;
  max-width: 1250px;
  margin: 0 auto;
}

section section{
  padding: 0px;
}