
  /* ============================================================
   qbdatainvoice — DESIGN TOKENS
   Palette: ink (near-black), warm paper, ledger green, ledger gold
   Display: Space Grotesk | Body: Inter | Numerals: JetBrains Mono
   Signature element: the animated "bulk import" ledger panel
   ============================================================ */
  :root {
    --ink: #12151A;
    --ink-soft: #454B54;
    --paper: #FAF9F5;
    --paper-deep: #F0EEE6;
    --green-900: #0A3B22;
    --green-700: #0F7A3D;
    --green-600: #16974A;
    --green-500: #1FB159;
    --green-100: #E4F3E9;
    --gold: #B98F1F;
    --gold-soft: #F4E8C9;
    --border: rgba(18, 21, 26, .12);
    --shadow: 0 20px 50px -22px rgba(18, 21, 26, .35);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }

  h1,
  h2,
  h3,
  h4,
  .dn-brand-text {
    font-family: var(--font-display);
    color: var(--ink);
  }

  .num {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
  }

  a {
    text-decoration: none;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  ::selection {
    background: var(--green-100);
    color: var(--green-900);
  }

  :focus-visible {
    outline: 3px solid var(--green-500);
    outline-offset: 2px;
    border-radius: 3px;
  }

  .skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    background: var(--ink);
    color: #fff;
    padding: .75rem 1.25rem;
    z-index: 2000;
    border-radius: 0 0 8px 0;
  }

  .skip-link:focus {
    left: 0;
    top: 0;
  }

  /* ---------- Section rhythm ---------- */
  .dn-section {
    padding: 5.5rem 0;
  }

  .dn-section-tight {
    padding: 3.5rem 0;
  }

  .dn-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-700);
    font-weight: 600;
    margin-bottom: .9rem;
  }

  .dn-eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
  }

  .dn-heading {
    font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin-bottom: 1rem;
  }

  .dn-sub {
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 640px;
  }

  .dn-head-block {
    margin-bottom: 3rem;
  }

  /* ---------- Buttons ---------- */
  .dn-btn-solid,
  .dn-btn-outline,
  .dn-btn-ghost {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 8px;
    padding: .72rem 1.5rem;
    border: 1.5px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
  }

  .dn-btn-solid {
    background: var(--green-700);
    color: #fff;
  }

  .dn-btn-solid:hover {
    background: var(--green-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(15, 122, 61, .55);
  }

  .dn-btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--border);
  }

  .dn-btn-outline:hover {
    border-color: var(--green-700);
    color: var(--green-700);
  }

  .dn-btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border);
  }

  .dn-btn-ghost:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-2px);
  }

  .dn-btn-oncta {
    background: #fff;
    color: var(--green-800, var(--green-900));
  }

  .dn-btn-oncta:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
  }

  /* ---------- Navbar ---------- */
  .dn-navbar {
    background: rgba(250, 249, 245, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    padding: .9rem 0;
    transition: box-shadow .25s ease, padding .25s ease, border-color .25s ease;
  }

  .dn-navbar.is-scrolled {
    box-shadow: 0 6px 24px -14px rgba(18, 21, 26, .25);
    border-color: var(--border);
    padding: .55rem 0;
  }

  .dn-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
  }

  .dn-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .15);
  }

  .dn-brand-text {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--ink);
  }

  .dn-brand-text strong {
    color: var(--green-700);
    font-weight: 700;
  }

  .dn-nav-links {
    gap: .15rem;
  }

  .dn-nav-links .nav-link {
    color: var(--ink);
    font-weight: 500;
    font-size: .94rem;
    padding: .5rem .85rem !important;
    border-radius: 6px;
  }

  .dn-nav-links .nav-link:hover,
  .dn-nav-links .nav-link.active {
    color: var(--green-700);
  }

  .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: .5rem;
  }

  .dropdown-item {
    border-radius: 6px;
    font-size: .9rem;
    padding: .5rem .75rem;
  }

  .dropdown-item:hover {
    background: var(--green-100);
    color: var(--green-900);
  }

  .dn-nav-cta .dn-btn-outline {
    padding: .55rem 1.1rem;
    font-size: .88rem;
  }

  .dn-nav-cta .dn-btn-solid {
    padding: .55rem 1.1rem;
    font-size: .88rem;
  }

  /* ---------- Hero ---------- */
  .dn-hero {
    padding: 9.5rem 0 5rem;
    background:
      repeating-linear-gradient(180deg, rgba(18, 21, 26, .035) 0px, rgba(18, 21, 26, .035) 1px, transparent 1px, transparent 42px),
      var(--paper);
    position: relative;
    overflow: hidden;
  }

  .dn-hero-title {
    font-size: clamp(2.1rem, 1.2rem + 3.2vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 1.15rem;
  }

  .dn-hero-sub {
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 1.85rem;
  }

  .dn-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1.9rem;
  }

  .dn-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    font-size: .85rem;
    color: var(--ink-soft);
  }

  .dn-hero-trust div {
    display: flex;
    align-items: center;
    gap: .45rem;
  }

  .dn-hero-trust i {
    color: var(--green-700);
  }

  /* Signature element: mock bulk-import ledger panel */
  .dn-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transform: rotate(-1.1deg);
    transition: transform .35s ease;
    overflow: hidden;
  }

  .dn-panel:hover {
    transform: rotate(0deg);
  }

  .dn-panel-bar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: var(--ink);
    color: #fff;
  }

  .dn-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
  }

  .dn-dot-r {
    background: #EA5B4E;
  }

  .dn-dot-y {
    background: #E8B33D;
  }

  .dn-dot-g {
    background: #3FBF6F;
  }

  .dn-panel-title {
    font-size: .78rem;
    color: rgba(255, 255, 255, .85);
    margin-left: .4rem;
    font-family: var(--font-mono);
  }

  .dn-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    color: var(--green-500);
    font-family: var(--font-mono);
  }

  .dn-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-500);
    animation: dnPulse 1.6s ease-in-out infinite;
  }

  @keyframes dnPulse {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(31, 177, 89, .55);
    }

    50% {
      box-shadow: 0 0 0 6px rgba(31, 177, 89, 0);
    }
  }

  .dn-panel-body {
    padding: 1.1rem 1.1rem .4rem;
  }

  .dn-row {
    display: grid;
    grid-template-columns: 1.5fr .9fr 1fr .9fr;
    gap: .5rem;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: .85rem;
  }

  .dn-row:last-of-type {
    border-bottom: none;
  }

  .dn-row-head {
    color: var(--ink-soft);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
  }

  .dn-status {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 600;
    padding: .25rem .55rem;
    border-radius: 99px;
    background: var(--paper-deep);
    color: var(--ink-soft);
    transition: background .3s ease, color .3s ease;
  }

  .dn-status.done {
    background: var(--green-100);
    color: var(--green-700);
  }

  .dn-status i {
    font-size: .7rem;
  }

  .dn-panel-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    font-size: .8rem;
    color: var(--ink-soft);
  }

  .dn-progress {
    flex: 1;
    max-width: 180px;
    height: 6px;
    background: var(--paper-deep);
    border-radius: 99px;
    overflow: hidden;
  }

  .dn-progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--green-600);
    border-radius: 99px;
    transition: width .5s ease;
  }

  /* ---------- About / stats ---------- */
  .dn-quote {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 500;
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .dn-body-text {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
  }

  .dn-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }

  .dn-stat {
    background: #fff;
    padding: 1.6rem 1.3rem;
  }

  .dn-stat .num {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-700);
    line-height: 1;
  }

  .dn-stat-label {
    display: block;
    margin-top: .5rem;
    font-size: .85rem;
    color: var(--ink-soft);
  }

  /* ---------- Cards (products/resources) ---------- */
  .dn-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .dn-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
  }

  .dn-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--green-100);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
  }

  .dn-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-soft);
    padding: .25rem .6rem;
    border-radius: 99px;
    margin-bottom: .85rem;
  }

  .dn-card h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem;
  }

  .dn-card p {
    color: var(--ink-soft);
    font-size: .93rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
  }

  .dn-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .dn-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .87rem;
    color: var(--ink-soft);
    padding: .32rem 0;
  }

  .dn-feature-list i {
    color: var(--green-600);
    margin-top: .18rem;
  }

  /* ---------- Services (numbered process) ---------- */
  .dn-service {
    padding: 0 0 1rem;
  }

  .dn-service h3 {
    font-size: 1.25rem;
    margin: .9rem 0 .5rem;
  }

  .dn-service p {
    color: var(--ink-soft);
    font-size: .93rem;
    line-height: 1.65;
    margin-bottom: 1.3rem;
  }

  .dn-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
  }

  .dn-steps li {
    display: flex;
    gap: .9rem;
    align-items: baseline;
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .87rem;
    color: var(--ink-soft);
  }

  .dn-steps .num {
    color: var(--gold);
    font-weight: 600;
    font-size: .8rem;
    min-width: 22px;
  }

  /* ---------- Why us (dark band) ---------- */
  .dn-why {
    background: var(--ink);
    color: #fff;
  }

  .dn-why .dn-heading,
  .dn-why .dn-eyebrow {
    color: #fff;
  }

  .dn-why .dn-eyebrow {
    color: var(--green-500);
  }

  .dn-why .dn-sub {
    color: rgba(255, 255, 255, .65);
  }

  .dn-why-item {
    padding: 1.6rem 0;
  }

  .dn-why-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: var(--green-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .dn-why-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: .5rem;
  }

  .dn-why-item p {
    color: rgba(255, 255, 255, .62);
    font-size: .87rem;
    line-height: 1.65;
    margin: 0;
  }

  /* ---------- Integrations marquee ---------- */
  .dn-marquee-wrap {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .dn-marquee {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: dnScroll 26s linear infinite;
  }

  .dn-marquee:hover {
    animation-play-state: paused;
  }

  @keyframes dnScroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .dn-badge {
    display: flex;
    align-items: center;
    gap: .6rem;
    white-space: nowrap;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: .65rem 1.25rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink);
  }

  .dn-badge i {
    color: var(--green-700);
    font-size: 1.05rem;
  }

  /* ---------- Pricing ---------- */
  .dn-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    margin-bottom: 2.75rem;
    font-size: .92rem;
  }

  .dn-save-badge {
    background: var(--gold-soft);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 99px;
  }

  .form-switch .form-check-input {
    width: 2.6em;
    height: 1.4em;
    cursor: pointer;
  }

  .form-switch .form-check-input:checked {
    background-color: var(--green-700);
    border-color: var(--green-700);
  }

  .form-switch .form-check-input:focus {
    box-shadow: 0 0 0 .2rem rgba(15, 122, 61, .25);
  }

  .dn-price-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    height: 100%;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .dn-price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
  }

  .dn-price-card.popular {
    border-color: var(--green-700);
    box-shadow: 0 20px 45px -22px rgba(15, 122, 61, .4);
  }

  .dn-popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-700);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 99px;
  }

  .dn-price-card h3 {
    font-size: 1.15rem;
    margin-bottom: .35rem;
  }

  .dn-price-card .dn-plan-desc {
    color: var(--ink-soft);
    font-size: .85rem;
    margin-bottom: 1.4rem;
    min-height: 2.6em;
  }

  .dn-price-amount {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: .25rem;
  }

  .dn-price-amount .num {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--ink);
  }

  .dn-price-period {
    color: var(--ink-soft);
    font-size: .85rem;
  }

  .dn-price-note {
    font-size: .78rem;
    color: var(--ink-soft);
    margin-bottom: 1.6rem;
    min-height: 1.2em;
  }

  .dn-price-card .dn-feature-list {
    margin-bottom: 1.8rem;
  }

  .dn-price-card .dn-feature-list li {
    color: var(--ink-soft);
  }

  /* ---------- Testimonials ---------- */
  .dn-testi-wrap {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
  }

  .dn-testi-track {
    display: flex;
    transition: transform .5s ease;
  }

  .dn-testi-slide {
    min-width: 100%;
    text-align: center;
    padding: 0 1rem;
  }

  .dn-testi-slide p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 1.4rem;
  }

  .dn-testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto .7rem;
    font-family: var(--font-display);
  }

  .dn-testi-name {
    font-weight: 600;
    font-size: .92rem;
  }

  .dn-testi-role {
    font-size: .8rem;
    color: var(--ink-soft);
  }

  .dn-testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.8rem;
  }

  .dn-testi-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
  }

  .dn-testi-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .dn-testi-dots {
    display: flex;
    gap: .5rem;
  }

  .dn-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }

  .dn-testi-dot.active {
    background: var(--green-700);
    transform: scale(1.3);
  }

  /* ---------- FAQ ---------- */
  .accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: .75rem;
  }

  .accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .98rem;
    color: var(--ink);
    background: #fff;
  }

  .accordion-button:not(.collapsed) {
    color: var(--green-700);
    background: var(--green-100);
    box-shadow: none;
  }

  .accordion-button:focus {
    box-shadow: 0 0 0 .2rem rgba(15, 122, 61, .2);
  }

  .accordion-button::after {
    filter: none;
  }

  .accordion-body {
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.7;
  }

  /* ---------- CTA band ---------- */
  .dn-cta {
    background: linear-gradient(135deg, var(--green-800, var(--green-900)) 0%, var(--green-700) 100%);
    color: #fff;
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .dn-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .05) 0px, rgba(255, 255, 255, .05) 1px, transparent 1px, transparent 34px);
    pointer-events: none;
  }

  .dn-cta h2 {
    color: #fff;
    font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem);
    margin-bottom: .6rem;
  }

  .dn-cta p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 0;
  }

  /* ---------- Footer ---------- */
 /* ---------- Footer ---------- */
/* ---------- Footer ---------- */
.dn-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 4.5rem 0 1.75rem;
}

.dn-footer h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 1.1rem;
}

.dn-footer a {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  line-height: 2.1;
  transition: color .15s ease;
}

.dn-footer a:hover {
  color: var(--green-500);
}

.dn-footer .dn-brand-text {
  color: #fff;
}

.dn-footer .dn-brand-text strong {
  color: var(--green-500);
}

.dn-footer p.dn-body-text {
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  max-width: 280px;
}

.dn-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}

.dn-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.dn-social a:hover {
  background: var(--green-700);
  border-color: var(--green-700);
}

.dn-footer hr {
  border-color: rgba(255, 255, 255, .12);
  margin: 2.5rem 0 1.5rem;
}

.dn-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
}

/* Payment Image Styles for Newsletter Sidebar */
.dn-footer-payments {
  display: block;
  margin-top: 1rem;
}

.payment-logo {
  max-width: 100%; /* Column se bahar na jaye */
  height: auto;
  max-height: 50px; /* Bohot badi na dikhe, balanced rahe */
  object-fit: contain;
  border-radius: 4px;
}

.dn-newsletter .form-control {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: .88rem;
}

.dn-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, .45);
}

.dn-newsletter .form-control:focus {
  background: rgba(255, 255, 255, .09);
  border-color: var(--green-500);
  box-shadow: none;
  color: #fff;
}

.dn-newsletter-msg {
  font-size: .8rem;
  color: var(--green-500);
  margin-top: .5rem;
  min-height: 1.2em;
}
  
  /* ---------- Sticky call bar / help fab / back to top ---------- */
  .dn-callbar {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 1040;
    background: var(--green-700);
    color: #fff;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .85rem 1.3rem;
    border-radius: 99px;
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: .92rem;
    transition: transform .2s ease, background .2s ease;
  }

  .dn-callbar:hover {
    background: var(--green-600);
    color: #fff;
    transform: translateY(-3px);
  }

  .dn-callbar i {
    animation: dnRing 2.4s ease-in-out infinite;
  }

  @keyframes dnRing {

    0%,
    85%,
    100% {
      transform: rotate(0);
    }

    88% {
      transform: rotate(-14deg);
    }

    91% {
      transform: rotate(12deg);
    }

    94% {
      transform: rotate(-8deg);
    }
  }

  .dn-help-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1040;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    transition: transform .2s ease;
  }

  .dn-help-fab:hover {
    transform: translateY(-3px) scale(1.04);
  }

  .dn-help-panel {
    position: fixed;
    right: 1.25rem;
    bottom: 5.2rem;
    z-index: 1039;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    width: 240px;
    padding: 1rem;
    display: none;
  }

  .dn-help-panel.open {
    display: block;
    animation: dnPopIn .18s ease;
  }

  @keyframes dnPopIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dn-help-panel a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .5rem;
    border-radius: 8px;
    color: var(--ink);
    font-size: .88rem;
    font-weight: 500;
  }

  .dn-help-panel a:hover {
    background: var(--green-100);
    color: var(--green-900);
  }

  .dn-help-panel a i {
    color: var(--green-700);
  }

  .dn-back-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1038;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
  }

  .dn-back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  @media(min-width:576px) {
    .dn-back-top {
      right: 5.6rem;
    }
  }

  /* ---------- Modal ---------- */
  .modal-content {
    border-radius: 16px;
    border: none;
  }

  .modal-header {
    border-bottom: 1px solid var(--border);
  }

  .modal-title {
    font-family: var(--font-display);
    font-weight: 600;
  }

  .form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink);
  }

  .form-control,
  .form-select {
    border-radius: 8px;
    border-color: var(--border);
    font-size: .92rem;
    padding: .6rem .8rem;
  }

  .form-control:focus,
  .form-select:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 .2rem rgba(15, 122, 61, .15);
  }

  .dn-success-box {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
  }

  .dn-success-box.show {
    display: block;
  }

  .dn-success-icon {
    font-size: 2.6rem;
    color: var(--green-600);
    margin-bottom: .75rem;
  }

  /* ---------- Reveal on scroll ---------- */
  .dn-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .dn-reveal.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Responsive ---------- */
  @media(max-width:991.98px) {
    .dn-hero {
      padding: 8.2rem 0 3.5rem;
    }

    .dn-nav-links {
      margin-top: 1rem;
    }

    .dn-nav-cta {
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    .dn-stat-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media(max-width:575.98px) {
    .dn-section {
      padding: 3.75rem 0;
    }

    .dn-hero {
      padding: 7.5rem 0 3rem;
    }

    .dn-hero-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .dn-row {
      grid-template-columns: 1.3fr 1fr 1fr;
      font-size: .78rem;
    }

    .dn-row>span:nth-child(2) {
      display: none;
    }

    .dn-row-head>span:nth-child(2) {
      display: none;
    }

    .dn-callbar span {
      display: none;
    }

    .dn-callbar {
      padding: .85rem;
    }

    .dn-cta {
      padding: 2.5rem 1.5rem;
      text-align: center;
    }

    .dn-cta .d-flex {
      justify-content: center;
      flex-wrap: wrap;
    }
  }

  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    .dn-marquee {
      animation: none;
    }

    .dn-live-dot,
    .dn-callbar i {
      animation: none;
    }

    .dn-reveal {
      transition: none;
      opacity: 1;
      transform: none;
    }

    .dn-panel {
      transform: none;
    }
  }
  /* ===================================================
   COMPLETE RESPONSIVE DESIGN
=================================================== */

/* 4K Screens */
@media (min-width:1600px){

.container{
    max-width:1450px;
}

.dn-hero{
    padding:12rem 0 7rem;
}

.dn-heading{
    font-size:3rem;
}

.dn-hero-title{
    font-size:4.3rem;
}

.dn-card,
.dn-price-card{
    padding:2.5rem;
}

}


/* Large Desktop */

@media (max-width:1400px){

.dn-hero-title{
    font-size:3.2rem;
}

}


/* Laptop */

@media (max-width:1200px){

.dn-hero-title{
    font-size:2.8rem;
}

.dn-heading{
    font-size:2.2rem;
}

.dn-card{
    padding:1.6rem;
}

.dn-price-card{
    padding:1.8rem;
}

}


/* Tablet Landscape */

@media (max-width:991px){

.dn-navbar{
    padding:.7rem 0;
}

.navbar-collapse{
    background:#fff;
    padding:20px;
    border-radius:15px;
    margin-top:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dn-nav-cta{
    width:100%;
    margin-top:20px;
}

.dn-nav-cta .btn{
    width:100%;
}

.dn-hero{
    text-align:center;
    padding-top:120px;
}

.dn-hero-sub{
    margin:auto;
    margin-bottom:25px;
}

.dn-hero-actions{
    justify-content:center;
}

.dn-hero-trust{
    justify-content:center;
}

.dn-panel{
    margin-top:20px;
}

.dn-stat-grid{
    margin-top:30px;
}

.dn-cta{
    text-align:center;
}

.dn-footer{
    text-align:center;
}

.dn-social{
    justify-content:center;
}

}


/* Tablet */

@media (max-width:768px){

.dn-section{
    padding:60px 0;
}

.dn-heading{
    font-size:2rem;
}

.dn-hero-title{
    font-size:2.3rem;
}

.dn-sub{
    font-size:16px;
}

.dn-card,
.dn-price-card{
    margin-bottom:20px;
}

.dn-testi-slide p{
    font-size:20px;
}

.dn-callbar{
    left:15px;
    bottom:15px;
}

.dn-help-fab{
    right:15px;
    bottom:15px;
}

.dn-back-top{
    right:80px;
    bottom:22px;
}

}


/* Mobile */

@media (max-width:576px){

body{
    overflow-x:hidden;
}

.container{
    padding-left:18px;
    padding-right:18px;
}

.dn-section{
    padding:50px 0;
}

.dn-hero{
    padding-top:100px;
    padding-bottom:40px;
}

.dn-hero-title{
    font-size:34px;
    line-height:1.2;
}

.dn-heading{
    font-size:28px;
}

.dn-sub{
    font-size:15px;
}

.dn-body-text{
    font-size:15px;
}

.dn-hero-actions{
    flex-direction:column;
}

.dn-hero-actions .btn{
    width:100%;
}

.dn-btn-solid,
.dn-btn-outline,
.dn-btn-ghost{
    width:100%;
    justify-content:center;
}

.dn-row{
    grid-template-columns:1fr;
    gap:10px;
    text-align:left;
}

.dn-row-head{
    display:none;
}

.dn-panel{
    transform:none;
}

.dn-panel:hover{
    transform:none;
}

.dn-panel-foot{
    flex-direction:column;
    align-items:flex-start;
}

.dn-progress{
    max-width:100%;
    width:100%;
}

.dn-stat-grid{
    grid-template-columns:1fr;
}

.dn-price-amount{
    justify-content:center;
}

.dn-price-card{
    text-align:center;
}

.dn-feature-list li{
    justify-content:center;
}

.dn-testi-slide p{
    font-size:18px;
}

.dn-cta{
    padding:35px 20px;
}

.dn-footer-bottom{
    flex-direction:column;
    text-align:center;
}

.dn-callbar span{
    display:none;
}

.dn-callbar{
    width:55px;
    height:55px;
    padding:0;
    justify-content:center;
}

}


/* Small Mobile */

@media (max-width:400px){

.dn-hero-title{
    font-size:30px;
}

.dn-heading{
    font-size:24px;
}

.dn-btn-solid,
.dn-btn-outline,
.dn-btn-ghost{
    font-size:14px;
}

.dn-card{
    padding:20px;
}

.dn-price-card{
    padding:20px;
}

}


/* Fold Devices */

@media (max-width:320px){

.dn-hero-title{
    font-size:26px;
}

.dn-heading{
    font-size:22px;
}

.dn-card{
    padding:15px;
}

}


/* Images */

img{
    max-width:100%;
    height:auto;
    display:block;
}


/* Videos */

video,
iframe{
    max-width:100%;
}


/* Tables */

table{
    width:100%;
    display:block;
    overflow-x:auto;
}


/* Forms */

input,
textarea,
select,
button{
    max-width:100%;
}


/* Prevent horizontal scrolling */

html,
body{
    overflow-x:hidden;
}
/* popup */
/* Popup Backdrop Setup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Background blur/dark effect */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Taki sabse upar dikhe */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Toggle Class for JavaScript */
.popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Main Popup Box */
.popup-box {
    background: linear-gradient(135deg, #ffffff 15%, #e1f5fe 40%, #4caf50 100%);
    /* Agar exact image jaisa solid green gradient chahiye to ise use karein:
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 25%, #4caf50 100%); */
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    color: #333;
}

/* Close Button (Top Right) */
.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #004d40;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 2px 10px;
    border-radius: 2px;
}

/* Typography & Content */
.popup-content h2 {
    color: #2e7d32;
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.popup-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.popup-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.popup-features li {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

/* Call Button */
.popup-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    background-color: #1b5e20;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-call:hover {
    background-color: #113f13;
}

.phone-icon {
    margin-right: 8px;
}

/*  */
.qb-proadvisor-section{
    background:#f5f8fc;
    padding:70px 0;
}

.qb-proadvisor-card{
    max-width:1050px;
    margin:auto;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:22px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.qb-top-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:50px;
    background:#eaf8ef;
    color:#118a4b;
    font-size:14px;
    font-weight:600;
}

.qb-top-badge i{
    font-size:16px;
}

.qb-title{
    margin-top:18px;
    font-size:32px;
    font-weight:700;
    color:#1f2937;
}

.qb-desc{
    max-width:700px;
    margin:15px auto 40px;
    color:#667085;
    font-size:16px;
    line-height:1.7;
}

.qb-certification-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.qb-certification-box{
    flex:1;
    min-width:280px;
    max-width:470px;
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:18px;
    padding:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.qb-certification-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.qb-main-badge{
    width:100%;
    max-width:240px;
}

.qb-second-badge{
    width:100%;
    max-width:420px;
}

@media(max-width:991px){

    .qb-proadvisor-card{
        padding:30px;
    }

    .qb-title{
        font-size:28px;
    }

    .qb-desc{
        font-size:15px;
        margin-bottom:30px;
    }

    .qb-certification-row{
        flex-direction:column;
    }

    .qb-certification-box{
        width:100%;
        max-width:500px;
    }

    .qb-main-badge{
        max-width:220px;
    }

    .qb-second-badge{
        max-width:100%;
    }

}

@media(max-width:576px){

    .qb-proadvisor-card{
        padding:20px;
    }

    .qb-title{
        font-size:24px;
    }

    .qb-desc{
        font-size:14px;
    }

    .qb-top-badge{
        font-size:13px;
        padding:7px 15px;
    }

}