/* Product-specific styles for AI Auto Booking Tally & Supplier Reconciliation */
      :root {
        --bg: #07111f;
        --bg2: #0b1728;
        --card: #0e1d31;
        --card2: #12243b;
        --line: rgba(8, 180, 217, 0.2);
        --text: #f4f8ff;
        --muted: #9fb0c7;
        --blue: #62a8ff;
        --cyan: #47e5d2;
        --green: #41d88a;
        --amber: #ffc861;
        --red: #ff6f7d;
        --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
        --radius: 22px;
        --max: 1180px;
      }
      * {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family:
          Inter,
          ui-sans-serif,
          system-ui,
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
        color: var(--text);
        background:
          radial-gradient(
            circle at 14% 10%,
            rgba(98, 168, 255, 0.17),
            transparent 28%
          ),
          radial-gradient(
            circle at 90% 5%,
            rgba(71, 229, 210, 0.1),
            transparent 24%
          ),
          linear-gradient(180deg, var(--bg), #081321 55%, #06101c);
        line-height: 1.6;
      }
      a {
        color: inherit;
        text-decoration: none;
      }
      .nav {
        position: sticky;
        top: 0;
        z-index: 20;
        backdrop-filter: blur(16px);
        background: rgba(7, 17, 31, 0.78);
        border-bottom: 1px solid var(--line);
      }
      .nav-in {
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }
      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        letter-spacing: 0.1px;
      }
      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--blue), var(--cyan));
        display: grid;
        place-items: center;
        color: #06101c;
        font-weight: 950;
        box-shadow: 0 10px 35px rgba(71, 229, 210, 0.18);
      }
      .brand span {
        color: var(--cyan);
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 22px;
        color: var(--muted);
        font-size: 14px;
      }
      .nav-links a:hover {
        color: var(--text);
      }
      .btn-below{
            width: 310px;
      }
      .btn-primary:hover {
        transform: translateY(-1px);
        filter: brightness(1.04);
      }
      .btn-ghost {
        background: rgba(255, 255, 255, 0.035);
      }
      
      .hero-grid {
        display: grid;
        grid-template-columns: 1.03fr 0.97fr;
        gap: 44px;
        align-items: center;
      }
      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        color: var(--primary);
        background: var(--primary-glow);
        border: 1px solid var(--line2);
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 13px;
      }
      .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        box-shadow: 0 0 0 5px rgba(65, 216, 138, 0.12);
      }
      h1 {
        font-size: clamp(30px, 6vw, 60px);
        line-height: 1.03;
        margin: 18px 0 22px;
        letter-spacing: -2.8px;
      }
      .grad {
        background: var(--accent);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }
      .lead {
        font-size: 19px;
        color: #b5c3d7;
        max-width: 720px;
      }
      .hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin: 28px 0;
      }
      .hero-points {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        color: var(--muted);
        font-size: 13px;
      }
      .hero-points span {
        display: flex;
        align-items: center;
        gap: 7px;
      }
      .check {
        color: var(--green);
        font-weight: 900;
      }
      .demo {
        background: linear-gradient(
          180deg,
          rgba(18, 36, 59, 0.94),
          rgba(12, 28, 47, 0.92)
        );
        border: 1px solid var(--line);
        border-radius: 28px;
        box-shadow: var(--shadow);
        overflow: hidden;
      }
      .demo-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        border-bottom: 1px solid var(--line);
      }
      .demo-title {
        font-size: 14px;
        font-weight: 800;
      }
      .status-pill {
        font-size: 11px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(65, 216, 138, 0.1);
        color: #8ff0bd;
        border: 1px solid rgba(65, 216, 138, 0.18);
      }
      .demo-body {
        padding: 18px;
      }
      .mini-kpis {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 14px;
      }
      .mini {
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 13px;
      }
      .mini b {
        display: block;
        font-size: 20px;
      }
      .mini small {
        color: var(--muted);
      }
      .booking-row {
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 14px;
        margin-top: 10px;
      }
      .row-top {
        display: flex;
        justify-content: space-between;
        gap: 14px;
        align-items: center;
      }
      .row-hotel {
        font-weight: 750;
        font-size: 14px;
      }
      .row-id {
        color: var(--muted);
        font-size: 12px;
        margin-top: 2px;
      }
      .match,
      .mismatch,
      .review {
        font-size: 11px;
        font-weight: 850;
        padding: 6px 9px;
        border-radius: 999px;
        white-space: nowrap;
      }
      .match {
        background: rgba(65, 216, 138, 0.11);
        color: #8af0b9;
      }
      .mismatch {
        background: rgba(255, 111, 125, 0.11);
        color: #ff9aa4;
      }
      .review {
        background: rgba(255, 200, 97, 0.12);
        color: #ffd985;
      }
      .compare {
        display: grid;
        grid-template-columns: 1fr 24px 1fr;
        gap: 8px;
        align-items: center;
        margin-top: 12px;
      }
      .pricebox {
        background: #0a1728;
        border-radius: 12px;
        padding: 9px 10px;
      }
      .pricebox span {
        display: block;
        color: var(--muted);
        font-size: 10px;
      }
      .pricebox b {
        font-size: 14px;
      }
      .arrow {
        text-align: center;
        color: var(--muted);
      }
      section {
        padding: 88px 0;
      }
      .section-head {
        max-width: 800px;
        margin-bottom: 30px;
      }
      .kicker {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        color: var(--primary);
        font-weight: 850;
      }
      h2 {
        font-size: clamp(20px, 4vw, 48px);
        line-height: 1.08;
        letter-spacing: -1.5px;
        margin: 8px 0 13px;
      }
      .section-head p {
        color: var(--muted);
        font-size: 17px;
        margin: 0;
      }
      .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
      .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .card {
        border-radius: var(--radius);
        padding: 22px;
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.13);
      }
      .icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: rgba(98, 168, 255, 0.11);
        border: 1px solid rgba(98, 168, 255, 0.15);
        font-size: 20px;
        margin-bottom: 16px;
      }
      .card h3 {
        margin: 0 0 8px;
        font-size: 17px;
      }
      .card p {
        margin: 0;
        color: var(--muted);
        font-size: 14px;
      }
      .impact {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line2);
        border-radius: 24px;
        overflow: hidden;
      }
      .impact > div {
        background: #0a1829;
        padding: 28px;
      }
      .impact b {
        display: block;
        font-size: 34px;
        letter-spacing: -1px;
      }
      .impact span {
        color: var(--muted);
        font-size: 13px;
      }
      .versus {
        display: grid;
        grid-template-columns: 1fr 64px 1fr;
        gap: 20px;
        align-items: stretch;
      }
      .panel {
        border: 1px solid var(--line2);
        border-radius: 24px;
        padding: 26px;
        /* background: rgba(255, 255, 255, 0.025); */
      }
      .panel h3 {
        font-size: 22px;
        margin: 0 0 18px;
      }
      .list {
        display: grid;
        gap: 12px;
      }
      .item {
        display: flex;
        gap: 11px;
        align-items: flex-start;
        color: var(--muted);
        font-size: 14px;
      }
      .item i {
        font-style: normal;
        margin-top: 1px;
      }
      .vs {
        display: grid;
        place-items: center;
      }
      .vs span {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--card2);
        border: 1px solid var(--line);
        font-size: 12px;
        font-weight: 900;
        color: var(--amber);
      }
      .flow {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
      }
      .step {
        position: relative;
        border: 1px solid var(--line2);
        border-radius: 18px;
        padding: 18px;
        min-height: 150px;
      }
      .step-num {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background: rgba(98, 168, 255, 0.12);
        display: grid;
        place-items: center;
        font-weight: 900;
        color: #9fc8ff;
        margin-bottom: 14px;
      }
      .step h3 {
        font-size: 14px;
        margin: 0 0 7px;
      }
      .step p {
        font-size: 12px;
        color: var(--muted);
        margin: 0;
      }
      .table-wrap {
        overflow: auto;
        border-radius: 22px;
        border: 1px solid var(--line);
      }
      table {
        width: 100%;
        border-collapse: collapse;
        min-width: 900px;
        background: rgba(8, 22, 38, 0.8);
      }
      th,
      td {
        padding: 15px 16px;
        border-bottom: 1px solid var(--line);
        text-align: left;
        font-size: 13px;
      }
      th {
        color: #cfe2fb;
        background: rgba(255, 255, 255, 0.035);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
      }
      td {
        color: #b5c3d7;
      }
      tr:last-child td {
        border-bottom: 0;
      }
      .ok {
        color: #7deeb2;
        font-weight: 800;
      }
      .bad {
        color: #ff909b;
        font-weight: 800;
      }
      .warn {
        color: #ffd27c;
        font-weight: 800;
      }
      .rule-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 24px;
        border-radius: 24px;
        border: 1px solid rgba(98, 168, 255, 0.18);
      }
      .code {
        background: #06101c;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 18px;
        font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
        font-size: 12px;
        color: #bbcae1;
        white-space: pre-wrap;
      }
      .dash {
        border: 1px solid var(--line2);
        border-radius: 26px;
        overflow: hidden;
        box-shadow: var(--shadow);
      }
      .dash-head {
        padding: 18px 20px;
        border-bottom: 1px solid var(--line);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
      }
      .filters {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
      }
      .filter {
        padding: 7px 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid var(--line);
        font-size: 11px;
        color: var(--muted);
        cursor: pointer;
      }
      .filter.active {
        color: #ffffff;
        background: var(--accent);
        border-color: transparent;
      }
      .dash-body {
        padding: 18px;
      }
      .dash-kpis {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        margin-bottom: 15px;
      }
      .dkpi {
        border: 1px solid var(--line);
        border-radius: 15px;
        padding: 13px;
        background: rgba(255, 255, 255, 0.025);
      }
      .dkpi small {
        display: block;
        color: var(--muted);
        font-size: 10px;
      }
      .dkpi b {
        font-size: 20px;
      }
      .arch {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        align-items: center;
      }
      .arch-card {
        padding: 18px;
        border-radius: 18px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.025);
        text-align: center;
      }
      .arch-card b {
        display: block;
        font-size: 13px;
      }
      .arch-card span {
        font-size: 11px;
        color: var(--muted);
      }
      .arrow2 {
        text-align: center;
        color: var(--accent);
        font-size: 40px;
      }
      .faq {
        display: grid;
        gap: 12px;
      }
      details {
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.025);
        padding: 16px 18px;
      }
      summary {
        cursor: pointer;
        font-weight: 760;
      }
      details p {
        color: var(--muted);
        font-size: 14px;
        margin: 10px 0 0;
      }
      .cta {
        background:
          radial-gradient(
            circle at 12% 15%,
            rgba(98, 168, 255, 0.18),
            transparent 30%
          ),
          radial-gradient(
            circle at 88% 80%,
            rgba(71, 229, 210, 0.15),
            transparent 28%
          ),
          #0b1a2e;
        border: 1px solid rgba(98, 168, 255, 0.2);
        border-radius: 30px;
        padding: 44px;
        display: flex;
        justify-content: space-between;
        gap: 30px;
        align-items: center;
      }
      .cta h2 {
        margin-top: 0;
      }
      .cta p {
        color: var(--muted);
        max-width: 680px;
      }
      footer {
        padding: 34px 0 50px;
        color: var(--muted);
        font-size: 13px;
      }
      .footer-in {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        border-top: 1px solid var(--line);
        padding-top: 28px;
      }
      .small-note {
        font-size: 12px;
        color: #8295ad;
        margin-top: 12px;
      }
      @media (max-width: 1050px) {
        .hero-grid,
        .rule-box {
          grid-template-columns: 1fr;
        }
        .grid-4 {
          grid-template-columns: repeat(2, 1fr);
        }
        .flow {
          grid-template-columns: repeat(3, 1fr);
        }
        .impact {
          grid-template-columns: repeat(2, 1fr);
        }
        .dash-kpis {
          grid-template-columns: repeat(3, 1fr);
        }
        .arch {
          grid-template-columns: 1fr;
        }
        .arrow2 {
          transform: rotate(90deg);
        }
      }
      @media (max-width: 760px) {
        .impact b {
        font-size: 24px;
      }
        .hero-points{
          flex-direction: column;
        }
        .nav-links {
          display: none;
        }
        .hero {
          padding-top: 58px;
        }
        h1 {
          letter-spacing: -1.8px;
        }
        .grid-3,
        .grid-4,
        .impact,
        .flow {
          grid-template-columns: 1fr;
        }
        .versus {
          grid-template-columns: 1fr;
        }
        /* .vs {
          height: 34px;
        } */
        .dash-kpis {
          grid-template-columns: repeat(2, 1fr);
        }
        .cta {
          padding: 18px;
          display: block;
        }
        .cta .btn {
          margin-top: 12px;
                  max-width: fit-content;
        }
        .mini-kpis {
          grid-template-columns: 1fr;
        }
      }