:root {
    --gold: #eeb356;
    --gold-hover: #d49d45;
    --cyan: #00f2fe;
    --cyan-dim: rgba(0, 242, 254, 0.1);
    --bg-dark: #020408;
    --bg-darker: #050b16;
    --bg-surface: #0f1629;
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --overlay-top: rgba(15, 23, 41, 0.92);
    --overlay-bottom: rgba(2, 4, 8, 0.98);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--overlay-top) 0%, var(--overlay-bottom) 100%);
    z-index: 1;
    pointer-events: none;
}

.section-padding .container {
    position: relative;
    z-index: 2;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.bg-surface {
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.bg-surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.text-accent {
    color: var(--gold) !important;
}

.text-gradient {
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #c9933d);
    color: #000;
    border: none;
    padding: 14px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(238, 179, 86, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c9933d, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(238, 179, 86, 0.3);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
}

.btn-outline:hover {
    background: rgba(238, 179, 86, 0.1);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.navbar {
    background: rgba(2, 4, 8, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(2, 4, 8, 0.95);
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    margin: 0 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: url('../images/hero-bg.png') no-repeat center right;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #020408 0%, rgba(2, 4, 8, 0.9) 40%, rgba(2, 4, 8, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--cyan-dim);
    background: var(--cyan-dim);
    color: var(--cyan);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.display-heading {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trust-indicators i {
    color: var(--gold);
    margin-right: 8px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--cyan);
    font-size: 1.5rem;
    position: relative;
    border: 1px solid var(--glass-border);
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card h4 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.glass-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-card {
    background: rgba(18, 24, 43, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    background: rgba(18, 24, 43, 0.7);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(238, 179, 86, 0.06) 0%, rgba(18, 24, 43, 0.6) 100%);
    border: 1px solid var(--gold);
    position: relative;
    transform: scale(1.05);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 10;
}

.card-body {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.pricing-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.pricing-cost {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 1.75rem;
    margin-right: 4px;
    margin-top: 8px;
    font-weight: 600;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    font-family: var(--font-body);
    margin-left: 8px;
    margin-top: auto;
    margin-bottom: 8px;
    font-weight: 400;
}

.pricing-meta {
    color: var(--cyan);
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-list {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-list li i {
    color: var(--gold);
    margin-right: 12px;
    width: 18px;
    text-align: center;
    margin-top: 4px;
}

.pricing-list li.na {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-list li.na i {
    color: rgba(255, 255, 255, 0.2);
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.feature-row {
    display: flex;
    align-items: flex-start;
    padding: 30px;
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: var(--cyan-dim);
    color: var(--cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
}

.feature-text h5 {
    margin-bottom: 5px;
}

.feature-text p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.ba-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: col-resize;
    background-color: #12182b;
}

.ba-after, .ba-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.ba-before {
    width: 50%;
    z-index: 2;
}

.ba-after img, .ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before img {
    width: auto;
    max-width: none;
    height: 100%;
    filter: grayscale(100%) brightness(0.8);
    transition: filter 0.3s ease;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 100%;
    background: var(--text-white);
    z-index: 10;
    pointer-events: none;
}

.ba-handle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 3px solid var(--text-white);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    pointer-events: none;
}

.ba-tag {
    position: absolute;
    bottom: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    pointer-events: none;
}

.ba-before .ba-tag { left: 15px; }
.ba-after .ba-tag { right: 15px; }

.ba-range-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 20;
    cursor: col-resize;
    margin: 0;
}

.cta-section {
    padding: 100px 0;
    background: url('../images/cta-bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 4, 8, 0.9);
}

.cta-box {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
    position: relative;
    z-index: 2;
}

.cta-star {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.cta-badges i {
    color: var(--cyan);
    margin-right: 8px;
}

.footer {
    background: #000000;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-logo {
    width: 280px;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    color: var(--gold);
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a, .footer-contact {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
    margin-right: 10px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: #5d6d7e;
}

.footer-bottom a {
    color: #5d6d7e;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: var(--gold);
}

@media (max-width: 991px) {
    .display-heading { font-size: 3rem; }
    .hero-section { text-align: center; background-position: center; }
    .hero-btns { justify-content: center; }
    .trust-indicators { justify-content: center; }
    .pricing-card.featured { transform: scale(1); margin: 20px 0; }
    .pricing-cost { font-size: 3rem; }
    .feature-row { padding: 20px; }
    .hero-overlay { background: rgba(2, 4, 8, 0.85); }
}