        /*
===================================================
Table of Content
===================================================
1) reset css
2) global css
3) table css
4) button css
5) form css
6) keyframes css
7) header
8) hero css
9) inner-hero css
10) cureency section css
11) about section css
12) package section css
13) choose us section css
14) profit calculator section css
15) how work section css
16) testimonial section css
17) team section css
18) data section css
19) top investor section css
20) cta section css
21) payment brand section css
22) blog section css
23) blog-details-section css
24) subscribe section css
25) account section css
26) contact-wrapper css
27) dashboard section css
28) sidebar css
29) footer
*/
/* reset css start */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&amp;family=Exo&amp;family=Playfair+Display&amp;display=swap");

/* Avenir Black */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-Black-03.woff2") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


/* Avenir Light */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-Light-07.woff2") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Avenir Light Oblique */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-LightOblique-08.woff2") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Avenir Medium */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir-Medium-09.woff2") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

/* Using a CSS variable for dynamic header heights */
:target {
  scroll-margin-top: var(--header-height, 120px);
}
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        :root {
            --bg: linear-gradient(289deg, #2b1a00, #120900);
            --btn: #2b1a00;
            --btn-hover: #b78b36;
            --gold: #956e36;
            --gold-pale: #F0E6B2;
            --cream: #F7F3EC;
            --ink: #1C1C1C;
            --ink-soft: #4A4A4A;
            --ink-muted: #7A7A7A;
            --white: #FFFFFF;
            --border: #D9D2C4;
            --green: #16a34a;
            --red: #dc2626;
            --radius: 4px;
        }

        body {
            font-family: "Avenir", sans-serif !important;
            background: var(--bg);
            color: var(--white);
            font-size: 16px;
            line-height: 1.75;
            text-rendering: optimizeSpeed;
        }

.section{
    content-visibility:auto;
    contain-intrinsic-size:1px 1000px;
}

  /* ── HERO ─────────────────────────────────── */
  .hero {
    background: var(--bg);
    color: #fff;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(184,150,12,0.03) 60px,
      rgba(184,150,12,0.03) 61px
    );
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 24px;
    max-width: 700px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-snippet {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    max-width: 600px;
    margin-bottom: 36px;
  }
  .hero-snippet strong {
    color: rgba(255,255,255,0.92);
    font-weight: 500;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 48px;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #916416;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--btn-hover); color: #fff; }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: #916416; color: var(--fff); }

  /* Trust bar inside hero */
  .trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 36px;
  }
  .trust-item {
    padding: 0 24px 0 0;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .trust-item:last-child { border-right: none; }
  .trust-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }
  .trust-label {
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  /* ── CONTAINER ────────────────────────────── */
  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* ── SECTION COMMON ───────────────────────── */
  section { padding: 72px 0; }
  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--white); }
  .section-body {
    font-size: 15.5px;
    color: var(--white);
    line-height: 1.75;
    max-width: 680px;
  }

  /* ── FEATURED SNIPPET TARGET ──────────────── */
  .snippet-block {
    background: #2b1a00;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 28px 32px;
    margin: 40px 0;
  }
  .snippet-block p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--white);
  }
  .snippet-block strong { color: var(--white); font-weight: 500; }

  /* ── WHY SECTION — 5P CARDS ──────────────── */
  .why-section { background: var(--bg); }
  .cards-5p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 40px;
  }
  .card-5p {
    background: #2b1a00;
    /* border: 1px solid var(--gold-pale); */
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
  }
  .card-5p::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .card-5p:hover::after { opacity: 1; }
  .card-5p-letter {
    font-size: 48px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
  }
  .card-5p-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
  }
  .card-5p-text {
    font-size: 13px;
    color: var(--white);
    line-height: 1.6;
  }

  /* ── PRODUCT GRID ─────────────────────────── */
  .products-section { background: #2b1a00; }
  .filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 36px 0 32px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0;
  }
  .filter-tab {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .filter-tab:hover { color: var(--white); }
  .filter-tab.active { color: var(--gold); border-bottom-color: var(--gold); font-weight: 500; }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
  }
  .product-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .product-card:hover {
    border-color: var(--border);
    box-shadow: 0 4px 24px rgba(26,26,46,0.06);
  }
  .product-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--btn-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
  }
  .product-logo img { width: 100%; height: 100%; object-fit: contain; }
  .product-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(184,150,12,0.08);
    padding: 3px 10px;
    border-radius: 20px;
     align-items: center;
    width: fit-content;
    max-width: max-content;
  }
  .product-name {
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.35;
  }
  .product-desc {
    font-size: 13px;
    color: var(--white);
    line-height: 1.6;
    flex: 1;
  }
  .product-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
  }
  .product-link:hover { color: var(--gold); }
  .product-link::after { content: '→'; }

  /* ── PROCESS ──────────────────────────────── */
  .process-section { background: #2b1a00; color: #fff; }
  .process-section .section-title { color: #fff; }
  .process-section .section-title em { color: var(--gold); }
  .process-section .section-label { color: var(--gold); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    margin-top: 48px;
    position: relative;
  }
  .process-step {
    padding: 0 30px 0 30px;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .process-step:last-child { border-right: none; padding-right: 0; }
  .step-num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 400;
    color: var(--btn-hover);
    line-height: 1;
    margin-bottom: 16px;
  }
  .step-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .step-text {
    font-size: 13px;
    color: var(--white);
    line-height: 1.65;
  }

  /* ── COMPARISON TABLE ─────────────────────── */
  .comparison-section { background: var(--bg); }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    font-size: 14px;
  }
  .compare-table th {
    text-align: left;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 13px;
    color: var(--white);
    /* background: #fff; */
    border-bottom: 2px solid var(--border);
  }
  .compare-table th.highlight {
    background: #2b1a00;
    color: #fff;
    border-bottom-color: var(--gold);
  }
  .compare-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--white);
    vertical-align: top;
  }
  .compare-table td.highlight {
    background: rgba(26,26,46,0.03);
    color: var(--white);
    font-weight: 400;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .check { color: var(--gold); font-size: 16px; }
  .cross { color: var(--white); font-size: 16px; }

  /* ── FAQ ──────────────────────────────────── */
  .faq-section { background: var(--bg); }
  .faq-list { margin-top: 40px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    font-size: 19px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    line-height: 1.35;
  }
  .faq-toggle {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gold);
    margin-top: 2px;
    cursor: pointer;
    transition: background 0.2s;
    user-select: none;
  }
  .faq-a {
    font-size: 15px;
    color: var(--white);
    line-height: 1.75;
    text-align: justify;
    display: none;
    /*max-width: 680px;*/
  }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-toggle { background: var(--gold); color: #fff; border-color: var(--gold); }

  

  @media (max-width: 640px) {
    .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trust-item { border-right: none; padding-right: 0; }
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
    .process-step { border-right: none; padding-right: 0; padding-left: 0; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 32px; }
    .process-step:last-child { border-bottom: none; }
     .container { padding: 0 20px; } 
    section { padding: 52px 0; }
    .compare-table { font-size: 13px; }
    .compare-table td, .compare-table th { padding: 10px 12px; }
  }
  
  
  @media (max-width: 767px) {
  .table-responsive-custom {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    min-width: 800px;
    border-collapse: collapse;
}

.product-grid {
    grid-template-columns: 1fr;
  }
}


.product-list{
    margin: 15px 0;
    padding-left: 0px;
}

.product-list li{
    margin-bottom: 8px;
}

.product-list li i {
    color: #916416;
    padding-right: 10px;
}

.product-list li a{
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.product-list li a:hover{
    color: #916416;
    padding-left: 3px;
}
