/* ---------- ROOT THEME VARIABLES ---------- */
:root {
    --bg: #0f1724;
    /* page background */
    --card: #0b1220;
    /* card background (dark blue block) */
    --muted: #94a3b8;
    --muted-1: #bababa;
    /* muted text */
    --accent: #6ee7b7;
    /* aqua accent */
    --accent-2: #7c4dff;
    /* aurora purple accent */
    --accent-3: #00613a;
    /* aurora green accent */
    --max-width: 1200px;
    /* page content width */
    --radius: 12px;
    /* rounded corners */
    --transition: 200ms ease;
    /* default small transitions */
    --widget-images: url() no-repeat;
}
/* ---------- BASE ---------- */
html,
body {
    height: 100%;
}
body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: linear-gradient(180deg, #04060a 0%, #071029 100%);
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.65;
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
a {
    color: inherit;
    text-decoration: none
}
img {
    max-width: 100%;
    display: block
}
.muted {
    color: var(--muted);
}
.muted-list {
    color: var(--muted);
    margin: 8px 0 0;
    padding-left: 16px
}
.hidden {
    display: none;
}
h2 {
    font-weight: 200;
    margin-bottom: 0;
    padding-bottom: 0;
}
p {
    margin-top: 0;
    padding-top: 0;
}
.TAC {
    text-align: center !important;
}
.MT40 {
    margin-top: 40px !important;
}
.PB20 {
    padding-bottom: 20px !important;
}
/* ---------- HEADER / NAV ---------- */
.site-header {
    background: transparent;
    padding: 18px 24px;
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: saturate(1.2) blur(6px);
    -webkit-backdrop-filter: saturate(1.2) blur(6px);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto
}
.brand {
    display: flex;
    gap: 12px;
    align-items: center
}
.brand img {
    height: 44px
}
/* ---------- HEADER / NAV ---------- */
.nav-links {
    display: flex;
    gap: 18px;
    align-items: center
}
.nav-links a {
    color: var(--muted);
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}
.nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff
}
.nav-links a.active,
[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.08)
}
.nav .cta {
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    padding: 10px 16px;
    border-radius: 10px;
    color: #051023;
    font-weight: 700;
    transition: filter var(--transition), transform var(--transition);
}
.nav .cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px)
}
/* ---------- BTN ---------- */
.btn {
    padding: 12px 18px;
    border-radius: 10px;
    display: inline-block;
    cursor: pointer
}
.btn-primary {
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    color: #041028;
    font-weight: 700
}
/* ---------- MOBILE ---------- */
.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 24px
}
/* ---------- SECTIONS ---------- */
.section {
    padding: 64px 24px
}
.container {
    max-width: var(--max-width);
    margin: 0 auto
}
.grid {
    display: grid;
    gap: 18px
}
/* ---------- COLUM ---------- */
.two-col {
    grid-template-columns: repeat(2, 1fr)
}
/* split two-column layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center
}
/* ---------- CARD ---------- */
.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03)
}
.card h3 {
    margin: 8px 0 6px
}
.card p {
    color: var(--muted);
    margin: 0
}
/* ---------- FOOTER ---------- */
footer {
    background: #050810;
    padding: 60px 18px 40px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.02)
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    max-width: var(--max-width);
    margin: 0 auto
}
footer h4 {
    margin: 0 0 12px
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0
}
footer li {
    margin: 8px 0;
    color: var(--muted)
}
footer li a {
    font-size: 12px;
    color: var(--muted)
}
footer .copyright {
    text-align: center;
    color: var(--muted);
    font-size: 12px;
    margin-top: 20px;
}
/* ---------- TRUST BADGES ---------- */
.trust_badges .icon_secure,
.trust_badges .icon_measurable,
.trust_badges .icon_support {
    background-size: 20px !important;
    background-position: left center !important;
    margin-top: 20px;
    padding-left: 30px;
    font-size: 14px;
}
.trust_badges .icon_secure {
    background: url(/assets/images/icon_secure.svg) no-repeat;
}
.trust_badges .icon_measurable {
    background: url(/assets/images/icon_measurable.svg) no-repeat;
}
.trust_badges .icon_support {
    background: url(/assets/images/icon_support.svg) no-repeat;
}
/* ---------- COMMON ---------- */
.gradient_blue {
    background: #04060a;
    /* Fallback solid color */
    background: linear-gradient(180deg, #04060a 0%, #071029 100%);
}
.btn-hover {
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.btn-hover:hover {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.btn-hover-black {
    color: var(--bg);
}
.btn-close {
    margin-top: 12px;
    background: #ef4444;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}
.floating-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease;
}
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
    color: #fff;
}
/* ---------- POPUP STYLE ---------- */
.lead-magnet-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 300px;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}
.lead-magnet-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #38bdf8;
    /* cyan accent */
}
.lead-magnet-content ul {
    margin: 10px 0;
    padding: 0;
    list-style: none;
}
.lead-magnet-content ul li {
    margin: 8px 0;
}
.lead-magnet-content a {
    color: #22d3ee;
    text-decoration: none;
    font-weight: 500;
}
/* ---------- COMMON HERO ---------- */
.common-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height, -80px);
    /* optional if header fixed */
    box-sizing: border-box;
    background-attachment: fixed !important;
}
.common-hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 200;
}
.common-hero .hero-content p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 200;
}
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-down span {
    width: 30px;
    height: 30px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    display: block;
    animation: bounce 1.5s infinite;
}
/* ---------- COMMON COLM ---------- */
.col2 {
    display: block;
    margin-top: 0;
    background-attachment: fixed;
    height: auto;
}
.col2 section.section {
    background: none
}
.col2 section.section .container .grid {
    margin-bottom: 20px
}
.col2 .card {
    text-align: left;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}
/* ---------- RESPONSIVE ---------- */
@media (max-width:900px) {
    .hero-title {
        font-size: 32px
    }
    .nav-links {
        display: none
    }
    /* hidden by default on mobile */
    .menu-toggle {
        display: inline-block
    }
    /* mobile menu sheet */
    .nav-links.open {
        position: absolute;
        right: 0;
        left: 0;
        top: 64px;
        background: var(--card);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-links.open a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        border-radius: 0;
    }
    .nav-links.open a:hover {
        background: rgba(255, 255, 255, 0.06)
    }
    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px
    }
    .hero-visual {
        width: 260px
    }
}
/* ---------- ANIMATION ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Reduced motion */
@media (prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(45deg);
    }
}