/* ==========================================================================
   Diamond Capitals — Modern Theme Overlay
   Loads after main.css. Restyles the shared header/footer (all pages) and
   introduces new `.dc-*` components used by the homepage redesign.
   Legacy template classes (.special-heading, .fw-theme-steps, etc.) are left
   alone everywhere they are still used on non-home pages.
   ========================================================================== */

:root{
    --dc-bg: #060a13;
    --dc-bg-alt: #0b101d;
    --dc-panel: rgba(255,255,255,0.04);
    --dc-panel-solid: #10182b;
    --dc-border: rgba(255,255,255,0.09);
    --dc-text: #eef1f7;
    --dc-text-dim: #97a1b8;
    --dc-gold: #f0b840;
    --dc-gold-soft: #f7d78a;
    --dc-teal: #2fd6c2;
    --dc-green: #34d399;
    --dc-radius: 20px;
    --dc-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Logo ---------- */
.mv-logo{ display: inline-flex; align-items: center; gap: 10px; line-height: 1; }
.mv-logo-mark{ flex-shrink: 0; }
.mv-logo-text{ display: flex; flex-direction: column; font-family: var(--dc-font); }
.mv-logo-line1{ font-weight: 800; font-size: 17px; letter-spacing: .06em; color: #fff; }
.mv-logo-line2{ font-weight: 600; font-size: 11px; letter-spacing: .28em; color: var(--dc-gold); margin-top: 1px; }

/* ---------- Global nav (every page) ---------- */
.page_header{
    /* No backdrop-filter here: it makes this element a containing block for its
       position:fixed descendants, which breaks the legacy theme's full-screen
       mobile nav overlay (.top-nav/.sf-menu rely on being fixed to the viewport). */
    background: rgba(8,12,22,0.82);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background .3s ease, box-shadow .3s ease;
}
.page_header.scrolled,
.page_header.small-header{
    background: rgba(6,10,19,0.92);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.page_header .logo{ display: inline-flex; }
.page_header .container-fluid{ padding-left: 28px !important; padding-right: 28px !important; }
/* main.css ships `.text-sm-right .top-nav{display:inline-block}`, which is MORE specific
   than its own `@media(min-width:1200px){.top-nav{display:flex;flex-grow:10}}` rule — so
   .top-nav was silently shrink-to-fit instead of filling the header, starving the nav of
   room and triggering the superfish "..." overflow collapse well before it should. */
@media (min-width: 1200px){
    .text-sm-right .top-nav{
        display: flex !important;
        width: 100% !important;
        justify-content: flex-end !important;
    }
}
.top-nav ul.sf-menu > li > a{
    font-family: var(--dc-font);
    color: #e8ebf3 !important;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 10px 0 !important;
    margin: 0 11px !important;
    transition: color .2s ease;
}
.top-nav ul.sf-menu > li > a:hover,
.top-nav ul.sf-menu > li.active > a{
    color: var(--dc-gold) !important;
}
.top-nav ul.sf-menu > li > ul{
    background: var(--dc-panel-solid) !important;
    border: 1px solid var(--dc-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}
.top-nav ul.sf-menu > li > ul > li > a{
    color: var(--dc-text-dim) !important;
    font-size: 13px;
    padding: 10px 18px !important;
}
.top-nav ul.sf-menu > li > ul > li > a:hover{
    color: var(--dc-gold) !important;
    background: rgba(240,184,64,0.08);
}
.top-nav ul.sf-menu > li > a[href*="register"]{
    background: linear-gradient(135deg, var(--dc-gold), #d99a1f);
    color: #1a1200 !important;
    border-radius: 999px;
    padding: 10px 22px !important;
    margin: 0 0 0 8px !important;
}
.toggle_menu span, .toggle_menu span::before, .toggle_menu span::after{ background: #fff !important; }

/* Mobile off-canvas nav panel: legacy theme ships this white with a lime-green
   (#a9c200) top bar and toggle button — recolor to match the dark/gold theme. */
.top-nav ul.sf-menu{
    background-color: var(--dc-panel-solid) !important;
    border-top-color: var(--dc-bg) !important;
}
.toggle_menu.mobile-active{ background-color: var(--dc-bg-alt) !important; }
.top-nav ul.sf-menu > li + li:before{ background-color: var(--dc-border) !important; }
#google_translate_element .goog-te-combo{
    background: transparent !important;
    color: var(--dc-text-dim) !important;
    border-color: var(--dc-border) !important;
}

/* ---------- Inner-page breadcrumb banner (every non-home page) ---------- */
/* main.css's minified `.cover-background,.header_absolute.s-parallax{background-image:url(breadcrumbs_bg.jpg)}`
   rule attaches the stock photo to the bare .cover-background class we still carry — replace it. */
.cover-background{
    background-image: none !important;
    background-color: var(--dc-bg) !important;
    background: radial-gradient(ellipse 60% 100% at 85% 0%, rgba(240,184,64,.16), transparent 60%), var(--dc-bg) !important;
}
.page_title{ background-color: transparent !important; }
.page_title .breadcrumb, .page_title .breadcrumb a{ color: var(--dc-text-dim) !important; font-family: var(--dc-font); }
.page_title .breadcrumb .active{ color: var(--dc-gold) !important; }
.page_title h1{ font-family: var(--dc-font); font-weight: 800 !important; color: #fff !important; }

/* ---------- Global footer (every page) ---------- */
.page_footer{
    background: var(--dc-bg-alt);
    border-top: 1px solid var(--dc-border);
}
.page_footer, .page_footer p, .page_footer li, .page_footer a{
    font-family: var(--dc-font);
    color: var(--dc-text-dim);
}
.page_footer a:hover{ color: var(--dc-gold); }
.page_footer .widget-title{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 14px;
    margin-bottom: 18px;
}
.page_footer .widget_archive ul li{ margin-bottom: 10px; list-style: none; }
.page_footer .widget_text img{ opacity: .95; }
.widget_mailchimp .mailchimp_email{
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid var(--dc-border) !important;
    color: #fff !important;
    border-radius: 999px !important;
    padding: 14px 54px 14px 22px !important;
    height: auto !important;
}
.widget_mailchimp .mailchimp_email::placeholder{ color: var(--dc-text-dim) !important; opacity: 1 !important; }
.widget_mailchimp .search-submit{
    background: var(--dc-gold) !important;
    color: #1a1200 !important;
    border-radius: 50% !important;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
}
.page_copyright{ background: var(--dc-bg); border-top: 1px solid var(--dc-border); }
.page_copyright p{ color: var(--dc-text-dim); font-size: 13px; margin: 0; }

/* ---------- Telegram float button ---------- */
.float{
    background: linear-gradient(135deg, #2fa9e8, #1e88d1) !important;
    box-shadow: 0 10px 30px rgba(31,136,209,0.45) !important;
}

/* ---------- Section scaffolding (home page only) ---------- */
.dc-section{ padding: 100px 0; position: relative; }
.dc-section-dark{ background: var(--dc-bg); color: var(--dc-text); }
.dc-section-alt{ background: var(--dc-bg-alt); color: var(--dc-text); }
.dc-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--dc-font);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dc-gold);
    margin-bottom: 16px;
}
.dc-eyebrow::before{ content:''; width: 22px; height: 2px; background: var(--dc-gold); display: inline-block; }
.dc-heading{
    font-family: var(--dc-font);
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 18px;
    text-transform: none;
}
.dc-heading strong{ color: var(--dc-gold); font-weight: 800; }
.dc-sub{
    font-family: var(--dc-font);
    color: var(--dc-text-dim);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 640px;
}
.dc-center{ text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.dc-hero{
    position: relative;
    background: var(--dc-bg);
    overflow: hidden;
    padding: 190px 0 90px;
}
.dc-hero::before, .dc-hero::after{
    content:'';
    position: absolute;
    width: 620px; height: 620px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .28;
    z-index: 0;
}
.dc-hero::before{ background: var(--dc-gold); top: -220px; right: -160px; }
.dc-hero::after{ background: var(--dc-teal); bottom: -260px; left: -200px; opacity: .18; }
.dc-hero-grid{
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 75%);
}
.dc-hero .container{ position: relative; z-index: 1; }
.dc-hero-content{ max-width: 780px; margin: 0 auto; text-align: center; }
.dc-hero h1{
    font-family: var(--dc-font);
    font-weight: 800;
    font-size: clamp(34px, 5.4vw, 64px);
    line-height: 1.08;
    color: #fff;
    margin: 0 0 22px;
    text-transform: none;
}
.dc-hero h1 span{
    background: linear-gradient(100deg, var(--dc-gold), var(--dc-gold-soft) 55%, var(--dc-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.dc-hero p.dc-sub{ font-size: 18px; margin: 0 auto 38px; }
.dc-hero-ctas{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-dc-primary, .btn-dc-outline, .btn-dc-light{
    font-family: var(--dc-font);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    padding: 15px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    text-decoration: none !important;
}
.btn-dc-primary{
    background: linear-gradient(135deg, var(--dc-gold), #d99a1f);
    color: #1a1200 !important;
    box-shadow: 0 14px 34px rgba(240,184,64,0.28);
}
.btn-dc-primary:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px rgba(240,184,64,0.4); }
.btn-dc-outline{
    background: transparent;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-dc-outline:hover{ border-color: var(--dc-gold); color: var(--dc-gold) !important; transform: translateY(-2px); }
.btn-dc-light{ background:#fff; color:#0b101d !important; }
.btn-dc-light:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,0.25); }

.dc-trust-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.dc-trust-pill{
    display: flex; align-items: center; gap: 10px;
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: 999px;
    padding: 10px 20px;
    font-family: var(--dc-font);
    font-size: 13.5px;
    color: var(--dc-text-dim);
}
.dc-trust-pill i{ color: var(--dc-green); }

/* Ticker widget wrapper on hero */
.dc-ticker-wrap{
    margin-top: 60px;
    border-top: 1px solid var(--dc-border);
    border-bottom: 1px solid var(--dc-border);
    background: rgba(255,255,255,0.02);
}

/* ---------- Stats ---------- */
.dc-stats-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.dc-stat-card{
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 34px 24px;
    text-align: center;
}
.dc-stat-card .counter,
.dc-stat-card .counter-size{
    font-family: var(--dc-font) !important;
    font-weight: 800 !important;
    font-size: 40px !important;
    color: var(--dc-gold) !important;
    line-height: 1;
    margin: 0 0 10px !important;
}
.dc-stat-card .counter-text{
    font-family: var(--dc-font);
    color: var(--dc-text-dim);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0;
    font-weight: 600;
}

/* ---------- About ---------- */
.dc-about-grid{ display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.dc-about-grid p{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 16px; line-height: 1.8; }
.dc-contact-card{
    background: linear-gradient(160deg, rgba(240,184,64,0.12), rgba(255,255,255,0.02));
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 40px;
}
.dc-contact-card .dc-label{ font-family: var(--dc-font); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--dc-text-dim); font-weight: 700; }
.dc-contact-card .dc-value{ font-family: var(--dc-font); color: #fff; font-weight: 800; font-size: 22px; margin: 6px 0 26px; }
.dc-contact-card .dc-value:last-child{ margin-bottom: 0; }

/* ---------- Features ---------- */
.dc-features-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dc-feature-card{
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 32px 28px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.dc-feature-card:hover{ transform: translateY(-6px); border-color: rgba(240,184,64,0.4); background: rgba(255,255,255,0.06); }
.dc-feature-icon{
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(240,184,64,0.22), rgba(47,214,194,0.14));
    color: var(--dc-gold);
    font-size: 20px;
    margin-bottom: 20px;
}
.dc-feature-card h5{ font-family: var(--dc-font); color: #fff; font-weight: 700; font-size: 17px; margin: 0 0 10px; text-transform: none; }
.dc-feature-card p{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 14.5px; line-height: 1.7; margin: 0; }

/* ---------- Plans ---------- */
.dc-plans-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.dc-plans-grid--wide{ display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; align-items: stretch; }
.dc-plan-card{
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 40px 32px;
    display: flex; flex-direction: column;
    position: relative;
}
.dc-plan-card--featured{
    background: linear-gradient(165deg, rgba(240,184,64,0.14), rgba(255,255,255,0.03));
    border-color: rgba(240,184,64,0.45);
    transform: scale(1.03);
}
.dc-plan-badge{
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dc-gold), #d99a1f);
    color: #1a1200; font-family: var(--dc-font); font-weight: 700; font-size: 11.5px;
    text-transform: uppercase; letter-spacing: .06em;
    padding: 6px 16px; border-radius: 999px;
}
.dc-plan-name{ font-family: var(--dc-font); color: #fff; font-weight: 700; font-size: 20px; margin: 0 0 6px; text-transform: none; }
.dc-plan-rate{ font-family: var(--dc-font); color: var(--dc-gold); font-weight: 800; font-size: 42px; line-height: 1; margin: 10px 0 4px; }
.dc-plan-rate span{ font-size: 15px; color: var(--dc-text-dim); font-weight: 600; }
.dc-plan-range{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 14px; margin-bottom: 26px; }
.dc-plan-features{ list-style: none; padding: 0; margin: 0 0 30px; flex: 1; }
.dc-plan-features li{
    font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 14.5px;
    padding: 10px 0; border-top: 1px solid var(--dc-border);
    display: flex; align-items: center; gap: 10px;
}
.dc-plan-features li:first-child{ border-top: none; }
.dc-plan-features li i{ color: var(--dc-green); font-size: 13px; }

/* ---------- Steps ---------- */
.dc-steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.dc-step{ text-align: center; position: relative; }
.dc-step-num{
    width: 56px; height: 56px; margin: 0 auto 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--dc-font); font-weight: 800; font-size: 18px;
    background: var(--dc-panel-solid);
    border: 1px solid var(--dc-border);
    color: var(--dc-gold);
}
.dc-step h5{ font-family: var(--dc-font); color: #fff; font-weight: 700; font-size: 16.5px; margin: 0 0 10px; text-transform: none; }
.dc-step p{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 14px; line-height: 1.7; margin: 0; }

/* ---------- Market data card ---------- */
.dc-market-card{
    background: var(--dc-panel-solid);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 12px;
    overflow: hidden;
}

/* ---------- Timeline ---------- */
.dc-timeline{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dc-timeline-item{
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 30px 26px;
}
.dc-timeline-year{ font-family: var(--dc-font); color: var(--dc-gold); font-weight: 800; font-size: 24px; margin-bottom: 12px; }
.dc-timeline-item h5{ font-family: var(--dc-font); color: #fff; font-weight: 700; font-size: 16px; margin: 0 0 8px; text-transform: none; }
.dc-timeline-item p{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* ---------- Auth forms (login/register) ---------- */
.dc-auth-wrap{ padding: 190px 0 110px; background: var(--dc-bg); position: relative; overflow: hidden; min-height: 100vh; }
.dc-auth-wrap::before{
    content:''; position: absolute; width: 560px; height: 560px; border-radius: 50%;
    background: var(--dc-gold); filter: blur(150px); opacity: .16; top: -240px; right: -180px;
}
.dc-auth-grid{
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: center;
    max-width: 1100px; margin: 0 auto;
}
.dc-auth-grid--wide{ grid-template-columns: 0.85fr 1.3fr; align-items: flex-start; max-width: 1180px; }
.dc-auth-side{ padding-right: 20px; }
.dc-auth-side h2{ font-family: var(--dc-font); font-weight: 800; font-size: 34px; color: #fff; line-height: 1.2; margin: 0 0 18px; text-transform: none; }
.dc-auth-side h2 strong{ color: var(--dc-gold); font-weight: 800; }
.dc-auth-side p{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 15px; line-height: 1.8; margin: 0 0 30px; max-width: 420px; }
.dc-auth-points{ list-style: none; padding: 0; margin: 0; }
.dc-auth-points li{
    display: flex; align-items: center; gap: 12px;
    font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 14.5px;
    padding: 14px 0; border-top: 1px solid var(--dc-border);
}
.dc-auth-points li:first-child{ border-top: none; }
.dc-auth-points li i{
    width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(240,184,64,0.12); color: var(--dc-gold); font-size: 13px;
}
.dc-auth-card{
    position: relative; z-index: 1;
    width: 100%; max-width: 520px;
    background: var(--dc-panel-solid);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 36px 26px;
}
.dc-auth-grid--wide .dc-auth-card{ max-width: 640px; padding: 36px 34px; }
/* shop.css ships `.lost_reset_password,form.login{margin:auto;width:50%}` — our forms
   carry the legacy `.login` class too, which was silently halving the form width. */
.dc-auth-card form.login{ width: 100% !important; margin: 0 !important; }
.dc-auth-card .dc-eyebrow{ justify-content: center; }
.dc-auth-title{ font-family: var(--dc-font); font-weight: 800; font-size: 26px; color: #fff; text-align: center; margin: 0 0 8px; }
.dc-auth-sub{ font-family: var(--dc-font); font-size: 14px; color: var(--dc-text-dim); text-align: center; margin: 0 0 30px; }
@media (max-width: 991px){
    .dc-auth-grid, .dc-auth-grid--wide{ grid-template-columns: 1fr; max-width: 560px; gap: 40px; }
    .dc-auth-side{ text-align: center; padding-right: 0; }
    .dc-auth-side p{ margin-left: auto; margin-right: auto; }
    .dc-auth-side .dc-eyebrow{ justify-content: center; }
    .dc-auth-points{ text-align: left; max-width: 360px; margin: 0 auto; }
    .dc-auth-card{ max-width: 100%; }
}
.dc-form-row{ margin-bottom: 20px; }
.dc-form-row label{ display: block; font-family: var(--dc-font); font-size: 13px; font-weight: 600; color: var(--dc-text-dim); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.dc-form-row .form-control,
.dc-form-row select.form-control{
    width: 100%; background: rgba(255,255,255,0.05) !important; border: 1px solid var(--dc-border) !important;
    color: #fff !important; border-radius: 10px !important; padding: 12px 16px !important; height: auto !important;
    font-family: var(--dc-font); font-size: 14.5px;
}
.dc-form-row .form-control::placeholder{ color: #5c6883 !important; }
.dc-form-row .form-control:focus{ border-color: var(--dc-gold) !important; box-shadow: none !important; outline: none; }
.dc-auth-card .woocommerce-Button,
.dc-auth-card input[type="submit"]{
    width: 100%; display: block; text-align: center;
    background: linear-gradient(135deg, var(--dc-gold), #d99a1f) !important;
    color: #1a1200 !important; border: none !important; border-radius: 999px !important;
    padding: 13px 20px !important; font-family: var(--dc-font); font-weight: 700 !important; font-size: 15px;
    cursor: pointer; margin-top: 6px;
}
.dc-auth-card .woocommerce-form__label-for-checkbox{ display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-family: var(--dc-font); font-size: 13.5px; color: var(--dc-text-dim); line-height: 1.5; }
.dc-auth-card .woocommerce-form__input-checkbox{
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
    width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px;
    background: rgba(255,255,255,0.06); border: 1px solid var(--dc-border); border-radius: 4px;
    cursor: pointer; position: relative;
}
.dc-auth-card .woocommerce-form__input-checkbox:checked{
    background: var(--dc-gold); border-color: var(--dc-gold);
}
.dc-auth-card .woocommerce-form__input-checkbox:checked::after{
    content: ''; position: absolute; left: 5px; top: 1px;
    width: 4px; height: 9px;
    border: solid #1a1200; border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.dc-auth-card .woocommerce-form__label-for-checkbox span a{ color: var(--dc-gold); }
.dc-auth-card .lost_password{ text-align: center; margin-top: 18px; }
.dc-auth-card .lost_password a,
.dc-auth-foot a{ font-family: var(--dc-font); color: var(--dc-gold); font-size: 13.5px; }
.dc-auth-foot{ text-align: center; margin-top: 22px; font-family: var(--dc-font); font-size: 13.5px; color: var(--dc-text-dim); }
.dc-auth-card .alert{ font-family: var(--dc-font); font-size: 13.5px; border-radius: 10px; border: 1px solid var(--dc-border); }
.dc-auth-card .alert-warning{ background: rgba(240,184,64,0.1) !important; color: var(--dc-gold-soft) !important; border-color: rgba(240,184,64,0.3) !important; }
.dc-auth-card .alert-danger{ background: rgba(239,68,68,0.12) !important; color: #fca5a5 !important; border-color: rgba(239,68,68,0.35) !important; }
.dc-auth-card .alert-success{ background: rgba(52,211,153,0.12) !important; color: #6ee7b7 !important; border-color: rgba(52,211,153,0.35) !important; }
.dc-form-row-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px){ .dc-form-row-2{ grid-template-columns: 1fr; } .dc-auth-card{ padding: 34px 24px; } }

/* ---------- Security groups ---------- */
.dc-security-card{
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 34px 30px;
}
.dc-security-num{
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dc-panel-solid); border: 1px solid var(--dc-border);
    color: var(--dc-gold); font-family: var(--dc-font); font-weight: 800; font-size: 15px;
    margin-bottom: 20px;
}
.dc-security-card h5{ font-family: var(--dc-font); color: #fff; font-weight: 700; font-size: 18px; margin: 0 0 20px; text-transform: none; }
.dc-security-item{ padding: 16px 0; border-top: 1px solid var(--dc-border); }
.dc-security-item:first-of-type{ border-top: none; padding-top: 0; }
.dc-security-item h6{ font-family: var(--dc-font); color: var(--dc-gold-soft); font-weight: 700; font-size: 14px; margin: 0 0 6px; text-transform: none; }
.dc-security-item p{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 14px; line-height: 1.7; margin: 0; }

/* ---------- Testimonials ---------- */
.dc-section .testimonials-slider .quote-item{
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);
    padding: 36px;
}
.dc-section .testimonials-slider.style2 .quote-item .quote-image+p:before,
.dc-section .testimonials-slider.style2 .quote-item .quote-image+p:after{
    content: none !important;
}
.dc-section .testimonials-slider .quote-item p{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 15.5px; line-height: 1.8; margin-top: 4px !important; padding: 0 !important; }
.dc-section .testimonials-slider .quote-item footer cite{ font-family: var(--dc-font); color: #fff; font-weight: 700; font-style: normal; }
.dc-section .testimonials-slider .quote-item .author_job{ color: var(--dc-gold); font-size: 13px; }
.dc-section .testimonials-slider .quote-image img{ border-radius: 50%; width: 56px; height: 56px; object-fit: cover; }
.dc-section .owl-nav button{
    background: var(--dc-panel-solid) !important;
    border: 1px solid var(--dc-border) !important;
    color: #fff !important;
    width: 44px; height: 44px; border-radius: 50%;
}

/* ---------- Final CTA ---------- */
.dc-cta{
    background: linear-gradient(135deg, #0b101d, #131a2b);
    border: 1px solid var(--dc-border);
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dc-cta::before{
    content:''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: var(--dc-gold); filter: blur(140px); opacity: .18; top: -220px; right: -140px;
}
.dc-cta > *{ position: relative; z-index: 1; }

/* ---------- Legal content (terms/privacy) ---------- */
.dc-legal-notice{
    display: flex; align-items: center; gap: 12px;
    background: rgba(240,184,64,0.09);
    border: 1px solid rgba(240,184,64,0.3);
    border-radius: 14px;
    padding: 16px 22px;
    font-family: var(--dc-font);
    color: var(--dc-gold-soft);
    font-size: 13.5px;
    max-width: 900px;
    margin: 0 auto 50px;
}
.dc-legal-notice i{ color: var(--dc-gold); font-size: 16px; }
.dc-legal{ max-width: 820px; margin: 0 auto; }
.dc-legal h4{
    font-family: var(--dc-font); color: #fff; font-weight: 700; font-size: 19px;
    margin: 46px 0 14px; text-transform: none;
}
.dc-legal h4:first-child{ margin-top: 0; }
.dc-legal p, .dc-legal li{ font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 15px; line-height: 1.85; }
.dc-legal ul{ margin: 0 0 18px; padding-left: 20px; }
.dc-legal li{ margin-bottom: 10px; }
.dc-legal li strong,
.dc-legal li em{ color: #fff; font-weight: 700; font-style: normal; }
.dc-legal hr{ border-color: var(--dc-border); margin: 30px 0; }

/* ---------- FAQ accordion ---------- */
.dc-faq{ max-width: 820px; margin: 0 auto; }
.dc-faq-item{
    background: var(--dc-panel);
    border: 1px solid var(--dc-border);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
}
.dc-faq-item summary{
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px;
    font-family: var(--dc-font); font-weight: 700; color: #fff; font-size: 15.5px;
}
.dc-faq-item summary::-webkit-details-marker{ display: none; }
.dc-faq-item summary::after{
    content: '+'; color: var(--dc-gold); font-size: 20px; font-weight: 400; flex-shrink: 0;
    transition: transform .2s ease;
}
.dc-faq-item[open] summary::after{ transform: rotate(45deg); }
.dc-faq-item-body{ padding: 0 24px 22px; font-family: var(--dc-font); color: var(--dc-text-dim); font-size: 14.5px; line-height: 1.8; }
.dc-faq-item-body p{ margin: 0 0 12px; }
.dc-faq-item-body a{ color: var(--dc-gold); }

/* ---------- Responsive ---------- */
@media (max-width: 991px){
    .dc-stats-grid{ grid-template-columns: repeat(2, 1fr); }
    .dc-features-grid{ grid-template-columns: repeat(2, 1fr); }
    .dc-plans-grid{ grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .dc-plan-card--featured{ transform: none; }
    .dc-steps{ grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .dc-timeline{ grid-template-columns: repeat(2, 1fr); }
    .dc-about-grid{ grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 575px){
    .dc-stats-grid{ grid-template-columns: 1fr 1fr; }
    .dc-features-grid{ grid-template-columns: 1fr; }
    .dc-steps{ grid-template-columns: 1fr; }
    .dc-timeline{ grid-template-columns: 1fr; }
    .dc-hero{ padding: 150px 0 60px; }
    .dc-cta{ padding: 50px 26px; }
}
