/*
 * =============================================================
 *  custom.css — AmibrokerData.com
 *  All shared styles for all pages (root + blog).
 *
 *  Root pages:  <link rel="stylesheet" href="css/custom.css">
 *  Blog pages:  <link rel="stylesheet" href="../css/custom.css">
 * =============================================================
 */


/* ============================================================
   1. NAV — Buy Now Button
   ============================================================ */

li.buy-now-btn > a {
    background: #2d9bea !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 9px 22px !important;
    font-weight: 800;
    letter-spacing: 0.5px;
}
li.buy-now-btn > a:hover { background: #1a80cc !important; }


/* ============================================================
   2. ANNOUNCEMENT BAR
   ============================================================ */

.ad-bar {
    background: #1c3557;
    color: #fff;
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.4;
}
.ad-bar a      { color: #f5c842; font-weight: 700; text-decoration: underline; }
.ad-bar strong { color: #fff; }
/* .amd-top-bar — alias used by index.html (same as .ad-bar) */
.amd-top-bar {
    background: #1c3557;
    color: #fff;
    text-align: center;
    padding: 9px 20px;
    font-size: 13px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.4;
}
.amd-top-bar a      { color: #f5c842; font-weight: 700; text-decoration: underline; }
.amd-top-bar strong { color: #fff; }



/* ============================================================
   3. PAGE HERO BANNER
   ============================================================ */

.page-hero {
    background: linear-gradient(135deg, #0a2d5a 0%, #1a6fc4 100%);
    padding: 72px 0 56px;
    text-align: center;
    color: #fff;
}
.page-hero h1 {
    font-family: Raleway, sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 14px;
}
.page-hero p {
    color: rgba(255,255,255,.82);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 22px;
}

/* Legal pages use a slightly tighter hero */
.page-hero.hero-legal        { padding: 60px 0 44px; }
.page-hero.hero-legal h1     { font-size: 2.2rem; }
.page-hero.hero-legal p      { font-size: 15px; max-width: 560px; margin-bottom: 16px; }

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    flex-wrap: wrap;
}
.breadcrumb a    { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: #f5c842; }
.breadcrumb span { opacity: .5; }


/* ============================================================
   4. SECTION WRAPPERS & LAYOUT
   ============================================================ */

.amd-section     { padding: 72px 0; }
.amd-section.alt { background: #f5f7fa; }

.amd-inner        { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.amd-inner-narrow { max-width: 820px;  margin: 0 auto; padding: 0 28px; }
.amd-inner-blog   { max-width: 940px;  margin: 0 auto; padding: 0 28px; }

.amd-section-head              { text-align: center; margin-bottom: 52px; }
.amd-section-head .label {
    display: inline-block;
    font-family: Raleway, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2d9bea;
    background: rgba(45,155,234,.1);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.amd-section-head h2 { font-family: Raleway; font-size: 2rem; font-weight: 900; color: #1c1c1c; margin: 0 0 14px; }
.amd-section-head p  { color: #666; font-size: 16px; max-width: 640px; margin: 0 auto; }

/* Grid */
.amd-grid   { display: grid; gap: 24px; }
.amd-grid-2 { grid-template-columns: repeat(2, 1fr); }
.amd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.amd-grid-4 { grid-template-columns: repeat(4, 1fr); }


/* ============================================================
   5. FEATURE CARDS
   ============================================================ */

.feat-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 10px;
    padding: 28px 24px;
    transition: .3s;
}
.feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26,111,196,.1);
    border-color: rgba(45,155,234,.3);
}
.feat-card-icon {
    width: 52px; height: 52px;
    background: rgba(45,155,234,.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #2d9bea;
    margin-bottom: 16px;
    transition: .3s;
}
.feat-card:hover .feat-card-icon { background: #2d9bea; color: #fff; }
.feat-card h3 { font-family: Raleway; font-size: 15px; font-weight: 800; margin: 0 0 10px; color: #1c1c1c; }
.feat-card p  { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

.new-badge {
    background: #f5c842;
    color: #1c1c1c;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .5px;
    vertical-align: middle;
    margin-left: 6px;
}


/* ============================================================
   6. PRICING CARDS
   ============================================================ */

/* 2-column layout (15-sec page, older pages) */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

/* 3-column layout (pricing page) */
.price-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: .3s;
    position: relative;
}
.price-card.featured {
    background: linear-gradient(135deg, #1c3557, #2d9bea);
    border: none;
    box-shadow: 0 16px 48px rgba(26,111,196,.3);
    transform: scale(1.04);
}
.price-card.premium {
    background: linear-gradient(135deg, #2d0a5a, #7c3aed);
    border: none;
    box-shadow: 0 16px 48px rgba(124,58,237,.3);
}
.price-card:hover:not(.featured):not(.premium) { box-shadow: 0 8px 28px rgba(0,0,0,.1); }

.price-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: #f5c842;
    color: #1c1c1c;
    font-family: Raleway;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
}
.price-card h3 { font-family: Raleway; font-size: 1.1rem; font-weight: 800; color: #1c3557; margin: 0 0 8px; }
.price-card.featured h3,
.price-card.featured p,
.price-card.featured li,
.price-card.premium h3,
.price-card.premium p,
.price-card.premium li { color: #fff !important; }

.price-amount { font-family: Raleway; font-size: 3rem; font-weight: 900; color: #1c3557; line-height: 1; margin: 16px 0 4px; }
.price-card.featured .price-amount,
.price-card.featured .price-period,
.price-card.premium .price-amount,
.price-card.premium .price-period { color: #fff; }
.price-period { font-size: 13px; color: #888; margin-bottom: 20px; }

.price-list { list-style: none; padding: 0; margin: 20px 0 28px; text-align: left; }
.price-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    padding: 7px 0;
    color: #555;
    border-bottom: 1px solid #f0f4f8;
}
.price-list li:last-child { border: none; }
.price-list li i { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.price-list li.no i { color: #ef4444; }
.price-card.featured .price-list li,
.price-card.premium .price-list li { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }


/* ============================================================
   7. BUTTONS
   ============================================================ */

.btn-primary {
    display: inline-block;
    background: #2d9bea;
    color: #fff !important;
    font-family: Raleway;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: .3s;
}
.btn-primary:hover { background: #1a80cc; }

.btn-outline {
    display: inline-block;
    border: 2px solid #2d9bea;
    color: #2d9bea !important;
    font-family: Raleway;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: .3s;
}
.btn-outline:hover { background: #2d9bea; color: #fff !important; }

.price-card.featured .btn-primary { background: #fff; color: #1c3557 !important; }
.price-card.premium .btn-primary  { background: #f5c842; color: #2d0a5a !important; }

/* CTA section buttons (index.html style) */
.amd-cta-btn-primary {
    display: inline-block;
    background: #f5c842;
    color: #1c1c1c;
    font-family: Raleway;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 17px 42px;
    border-radius: 4px;
    margin: 0 8px 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    transition: all .25s;
}
.amd-cta-btn-primary:hover { background: #e5b732; color: #1c1c1c; }

.amd-cta-btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,.6);
    color: #fff !important;
    font-family: Raleway;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 38px;
    border-radius: 4px;
    margin: 0 8px 10px;
    text-decoration: none !important;
    transition: all .25s;
}
.amd-cta-btn-outline:hover { border-color: #fff; color: #fff !important; background: rgba(255,255,255,.1); }


/* ============================================================
   8. TABLES
   ============================================================ */

.amd-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.amd-table thead tr       { background: #1c3557; color: #fff; }
.amd-table th             { padding: 14px 16px; font-family: Raleway; font-weight: 700; font-size: 13px; text-align: left; }
.amd-table th.amd-our     { background: #2d9bea; }
.amd-table tbody tr       { background: #fff; border-bottom: 1px solid #eef1f5; }
.amd-table tbody tr:nth-child(even) { background: #f8fafc; }
.amd-table tbody tr:hover { background: #f0f7ff; }
.amd-table td             { padding: 12px 16px; color: #444; }
.amd-table td:first-child { font-weight: 600; color: #1c3557; }
.amd-table td.amd-our     { background: rgba(45,155,234,.06); font-weight: 600; color: #1a6fc4; }

/* System requirements table */
.sysreq-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sysreq-table td                    { padding: 11px 16px; border: 1px solid #e5e9ef; }
.sysreq-table tr:nth-child(even) td { background: #f8fafc; }
.sysreq-table td:first-child        { font-weight: 700; color: #1c3557; width: 38%; background: #f0f4fa; }

/* Comparison table (index.html) */
.amd-compare-wrap  { overflow-x: auto; margin: 0 auto; }
.amd-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
}
.amd-compare-table thead               { background: #1c3557; color: #fff; }
.amd-compare-table th                  { padding: 15px 16px; font-family: Raleway; font-size: 13px; font-weight: 700; text-align: left; }
.amd-compare-table th:first-child      { font-weight: 400; color: rgba(255,255,255,.65); }
.amd-compare-table th.amd-our         { background: #2d9bea; }
.amd-compare-table tbody tr           { background: #fff; border-bottom: 1px solid #eef1f5; }
.amd-compare-table tbody tr:nth-child(even) { background: #f8fafc; }
.amd-compare-table tbody tr:hover     { background: #f0f7ff; }
.amd-compare-table td                 { padding: 12px 16px; color: #444; }
.amd-compare-table td:first-child     { font-weight: 600; color: #1c1c1c; }
.amd-compare-table td.amd-our        { background: rgba(45,155,234,.06); font-weight: 600; color: #1a6fc4; }

/* Quarterly/annual pricing table */
.period-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.period-table th                        { background: #1c3557; color: #fff; padding: 13px 16px; font-family: Raleway; font-weight: 700; text-align: left; }
.period-table td                        { padding: 12px 16px; border-bottom: 1px solid #eef1f5; }
.period-table tr:nth-child(even) td    { background: #f8fafc; }
.period-table tr:hover td              { background: #f0f7ff; }
.period-table td:first-child           { font-weight: 700; color: #1c3557; }
.best-val                               { background: #f0fdf4 !important; border-left: 3px solid #22c55e; }
.best-val td:first-child               { color: #166534; }

/* Table status icons */
.ck { color: #22c55e; font-weight: 700; }
.cx { color: #ef4444; }
.cp { color: #f59e0b; font-size: 13px; }
.amd-ck { color: #22c55e; font-weight: 700; }
.amd-cx { color: #ef4444; }
.amd-cp { color: #f59e0b; font-size: 13px; }


/* ============================================================
   9. NOTICE & INFO BOXES
   ============================================================ */

.notice-box {
    background: #fff8e1;
    border: 1px solid #f5c842;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 14px;
    color: #5a4100;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.notice-box i { color: #f5c842; font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.info-box {
    background: #e8f4fd;
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 14px;
    color: #1e3a5f;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.info-box i { color: #2d9bea; font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.highlight-box {
    background: #e8f4fd;
    border-left: 4px solid #2d9bea;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-size: 14px;
    color: #1e3a5f;
}
.warning-box {
    background: #fff8e1;
    border-left: 4px solid #f5c842;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
    font-size: 14px;
    color: #5a4100;
}


/* ============================================================
   10. STEPS
   ============================================================ */

/* Inline steps (configure, download pages) */
.step-card     { text-align: center; padding: 0 16px; }
.step-card h3  { font-family: Raleway; font-weight: 800; font-size: 15px; margin-bottom: 10px; }
.step-card p   { font-size: 14px; color: #666; line-height: 1.7; }
.step-num {
    width: 60px; height: 60px;
    background: #2d9bea;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-family: Raleway;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 4px 16px rgba(45,155,234,.35);
}

/* Row steps (blog / 15-sec page) */
.step-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 16px;
}
.step-row .step-num {
    width: 52px; height: 52px;
    font-size: 20px;
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(45,155,234,.3);
}
.step-row h3 { font-family: Raleway; font-weight: 800; font-size: 1rem; margin: 0 0 8px; }
.step-row p  { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

/* Circle step (index.html) */
.amd-step-num {
    width: 52px; height: 52px;
    background: #2d9bea;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-family: Raleway;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(45,155,234,.35);
}


/* ============================================================
   11. FAQ ACCORDION
   ============================================================ */

.faq-item { border: 1px solid #eef1f5; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-q {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 22px;
    text-align: left;
    font-family: Raleway;
    font-size: 15px;
    font-weight: 700;
    color: #1c1c1c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q:hover                      { color: #2d9bea; }
.faq-q .faq-icon                  { color: #2d9bea; font-size: 16px; flex-shrink: 0; transition: .3s; }
.faq-item.open .faq-q .faq-icon   { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: #666; line-height: 1.75; }
.faq-item.open .faq-a             { display: block; }

.faq-section-title {
    font-family: Raleway;
    font-size: 1rem;
    font-weight: 800;
    color: #2d9bea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 16px;
    border-left: 3px solid #2d9bea;
    padding-left: 12px;
}
.faq-section-title:first-child { margin-top: 0; }


/* ============================================================
   12. PLAN PERIOD TABS (pricing page)
   ============================================================ */

.plan-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.plan-tab {
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid #e2e8f0;
    background: #fff;
    font-family: Raleway;
    font-size: 14px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: .3s;
    position: relative;
}
.plan-tab.active          { background: #1c3557; border-color: #1c3557; color: #fff; }
.plan-tab .save-tag {
    position: absolute;
    top: -10px; right: -4px;
    background: #22c55e;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
}
.plan-section        { display: none; }
.plan-section.active { display: block; }


/* ============================================================
   13. CTA STRIP
   ============================================================ */

.cta-strip        { background: linear-gradient(135deg, #1c3557 0%, #2d9bea 100%); padding: 60px 0; text-align: center; }
.cta-strip h2     { color: #fff; font-family: Raleway; font-size: 2rem; font-weight: 900; margin: 0 0 12px; }
.cta-strip p      { color: rgba(255,255,255,.82); font-size: 16px; margin-bottom: 28px; }

/* Index page variant */
.amd-cta-strip    { background: linear-gradient(135deg, #0a2d5a 0%, #2d9bea 100%); padding: 60px 0; text-align: center; }
.amd-cta-strip h2 { color: #fff; font-size: 2rem; font-family: Raleway; margin-bottom: 12px; font-weight: 900; }
.amd-cta-strip p  { color: rgba(255,255,255,.82); font-size: 16px; margin-bottom: 28px; }


/* ============================================================
   14. DOWNLOAD CARDS
   ============================================================ */

.dl-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: .3s;
}
.dl-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.dl-icon-wrap {
    width: 70px; height: 70px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}


/* ============================================================
   15. SUPPORT CARDS
   ============================================================ */

.support-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: .3s;
}
.support-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.support-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
}


/* ============================================================
   16. STAT BOXES
   ============================================================ */

.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}
.stat-box  { background: #fff; border: 1px solid #eef1f5; border-radius: 10px; padding: 28px 20px; text-align: center; }
.stat-num  { font-family: Raleway; font-size: 2.4rem; font-weight: 900; color: #2d9bea; margin-bottom: 6px; }
.stat-label{ font-size: 13px; color: #666; font-weight: 600; }

/* Index stat bar */
.amd-stat-bar   { background: #2d9bea; padding: 20px 0; }
.amd-stat-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 10px;
}
.amd-stat-item { text-align: center; color: #fff; }
.amd-stat-num {
    font-family: Raleway, sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}
.amd-stat-lbl {
    font-size: 11px;
    opacity: 0.82;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}
.amd-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }


/* ============================================================
   17. BLOG STYLES
   ============================================================ */

.blog-body           { font-size: 15.5px; color: #374151; line-height: 1.85; }
.blog-body h2        { font-family: Raleway; font-size: 1.5rem; font-weight: 900; color: #1c1c1c; margin: 44px 0 16px; padding-bottom: 8px; border-bottom: 2px solid #eef1f5; }
.blog-body h3        { font-family: Raleway; font-size: 1.1rem; font-weight: 800; color: #1c3557; margin: 28px 0 12px; }
.blog-body p         { margin: 0 0 18px; }
.blog-body ul,
.blog-body ol        { padding-left: 22px; margin: 0 0 18px; }
.blog-body li        { margin-bottom: 8px; }
.blog-body strong    { color: #1c1c1c; }
.blog-body a         { color: #2d9bea; text-decoration: none; }
.blog-body a:hover   { text-decoration: underline; }
.blog-body blockquote {
    border-left: 4px solid #2d9bea;
    background: #f0f7ff;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #1c3557;
}
.blog-body .highlight-box {
    background: linear-gradient(135deg, #0a2d5a, #1a6fc4);
    color: #fff;
    padding: 24px 28px;
    border-radius: 10px;
    margin: 28px 0;
}
.blog-body .highlight-box h3 { color: #f5c842; margin: 0 0 10px; }
.blog-body .highlight-box p  { color: rgba(255,255,255,.9); margin: 0; }

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef1f5;
}
.blog-tag {
    display: inline-block;
    background: #e8f4fd;
    color: #1a6fc4;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-right: 6px;
}
.toc            { background: #f5f7fa; border: 1px solid #eef1f5; border-radius: 10px; padding: 24px 28px; margin-bottom: 36px; }
.toc h4         { font-family: Raleway; font-weight: 800; font-size: 14px; color: #1c3557; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 1px; }
.toc ol         { padding-left: 18px; margin: 0; }
.toc li         { font-size: 14px; margin-bottom: 6px; }
.toc a          { color: #2d9bea; text-decoration: none; }
.toc a:hover    { text-decoration: underline; }

.blog-card                { background: #fff; border: 1px solid #eef1f5; border-radius: 10px; overflow: hidden; transition: .3s; }
.blog-card:hover          { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.blog-card-body           { padding: 24px; }
.blog-card-cat            { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #2d9bea; margin-bottom: 10px; }
.blog-card-body h3        { font-family: Raleway; font-size: 1rem; font-weight: 800; margin: 0 0 10px; color: #1c1c1c; line-height: 1.4; }
.blog-card-body p         { font-size: 13.5px; color: #666; margin: 0 0 16px; line-height: 1.6; }
.blog-card-body a.read-more { font-size: 13px; font-weight: 700; color: #2d9bea; text-decoration: none; }


/* ============================================================
   18. LEGAL PAGES
   ============================================================ */

.legal-body            { max-width: 820px; margin: 0 auto; padding: 60px 28px 80px; font-size: 15px; color: #374151; line-height: 1.85; }
.legal-body h2         { font-family: Raleway; font-size: 1.35rem; font-weight: 900; color: #1c1c1c; margin: 40px 0 14px; padding-bottom: 8px; border-bottom: 2px solid #eef1f5; }
.legal-body h3         { font-family: Raleway; font-size: 1.05rem; font-weight: 800; color: #1c3557; margin: 24px 0 10px; }
.legal-body p          { margin: 0 0 16px; }
.legal-body ul         { padding-left: 22px; margin: 0 0 16px; }
.legal-body li         { margin-bottom: 8px; }
.legal-body strong     { color: #1c1c1c; }
.legal-body a          { color: #2d9bea; text-decoration: none; }
.legal-body a:hover    { text-decoration: underline; }

.legal-meta            { background: #f5f7fa; border: 1px solid #eef1f5; border-radius: 8px; padding: 16px 20px; font-size: 13px; color: #666; margin-bottom: 36px; }
.legal-meta strong     { color: #1c3557; }


/* ============================================================
   19. MISCELLANEOUS
   ============================================================ */

.amd-new {
    background: #f5c842;
    color: #1c1c1c;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 6px;
}

.amd-disclaimer {
    background: #f8fafc;
    border-top: 1px solid #e5e9ef;
    padding: 14px 0;
    font-size: 12px;
    color: #888;
    text-align: center;
}

/* Antivirus/sysreq table (alias) */
.amd-sysreq                        { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 10px; }
.amd-sysreq td                     { padding: 9px 14px; border: 1px solid #e5e9ef; }
.amd-sysreq tr:nth-child(even) td  { background: #f8fafc; }
.amd-sysreq td:first-child         { font-weight: 700; color: #1c3557; width: 42%; }


/* ============================================================
   20. THEME FIXES
   ============================================================ */

.infinite-fixed-footer            { position: static !important; }
.infinite-fixed-footer-placeholder{ display: none !important; }


/* ============================================================
   21. RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .amd-grid-3,
    .amd-grid-4         { grid-template-columns: repeat(2, 1fr); }
    .price-grid-3       { grid-template-columns: repeat(2, 1fr); }
    .price-card.featured{ transform: none; }
    .stat-row           { grid-template-columns: repeat(2, 1fr); }
    .amd-stat-sep       { display: none; }
    .amd-compare-table th,
    .amd-compare-table td { padding: 9px 10px; font-size: 12px; }
    .amd-cta-strip h2   { font-size: 1.5rem; }
}

@media (max-width: 600px) {
    .amd-grid-2,
    .amd-grid-3,
    .amd-grid-4,
    .price-grid,
    .price-grid-3       { grid-template-columns: 1fr; }
    .stat-row           { grid-template-columns: repeat(2, 1fr); }
    .page-hero h1       { font-size: 1.8rem; }
    .cta-strip h2       { font-size: 1.5rem; }
}

/* ============================================================
   MOBILE HAMBURGER — visible border fix
   gdlr-style-custom.css sets border-color:#dddddd (near-invisible
   on white header). Override to a clear dark blue border.
   ============================================================ */

.infinite-mobile-menu .infinite-mobile-menu-button.infinite-mobile-button-hamburger-with-border {
    border-color: #1c3557 !important;
}
.infinite-mobile-menu-button i,
.infinite-top-menu-button i {
    color: #1c3557 !important;
}

/* ============================================================
   HOMEPAGE SLIDER — mobile overflow clip
   Prevents horizontal scroll without touching JS-managed captions
   ============================================================ */

@media only screen and (max-width: 999px) {
    .rev_slider_wrapper,
    .fullscreen-container,
    #rev_slider_1_1_wrapper {
        overflow: hidden !important;
        max-width: 100vw !important;
    }
}
