:root {
    --bg-dark: #160627;
    --bg-purple: #230d3d;
    --orange: #eb6825;
    --orange-hover: #c9551c;
    --text-dark: #2a114f;
    
    /* Plan Gradients/Colors mimicking the image progression */
    --plan-1: #ffffff;
    --plan-2: #fff3ed;
    --plan-3: #ffe2cf;
    --plan-4: #ffaf80;
    --plan-5: #e85913;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Logo styling */
.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
}
.logo-sub {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

/* Colors */
.text-orange {
    color: var(--orange) !important;
}
.bg-orange {
    background-color: var(--orange) !important;
}
.bg-orange-subtle {
    background-color: rgba(235, 104, 37, 0.1) !important;
}

/* Buttons */
.btn-orange {
    background-color: var(--orange);
    color: white;
    border: none;
    transition: all 0.3s ease;
}
.btn-orange:hover {
    background-color: var(--orange-hover);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(235, 104, 37, 0.3) !important;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at center, var(--bg-purple) 0%, var(--bg-dark) 100%);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.highlight-svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

/* Shape Divider */
.custom-shape-divider-bottom-1682345678 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom-1682345678 svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 60px;
}
@media (min-width: 768px) {
    .custom-shape-divider-bottom-1682345678 svg {
        height: 120px;
    }
}

/* Switch Custom */
.switch-custom {
    width: 3.5rem !important;
    height: 1.75rem !important;
    cursor: pointer;
}
.switch-custom:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}
.switch-custom:focus {
    box-shadow: 0 0 0 0.25rem rgba(235, 104, 37, 0.25);
    border-color: var(--orange);
}
.transition-color {
    transition: color 0.3s ease;
}

/* Plan Cards */
.plan-col {
    transition: all 0.3s ease;
}

.plan-card {
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
}
.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Plan Background Colors */
.plan-bg-1 { background-color: var(--plan-1) !important; }
.plan-bg-2 { background-color: var(--plan-2) !important; }
.plan-bg-3 { background-color: var(--plan-3) !important; }
.plan-bg-4 { background-color: var(--plan-4) !important; }
.plan-bg-5 { background-color: var(--plan-5) !important; }

.popular-plan {
    transform: scale(1.08);
    z-index: 3;
    border: 3px solid white !important;
}
.popular-plan:hover {
    transform: scale(1.08) translateY(-10px);
}
@media (max-width: 1199px) {
    .popular-plan {
        transform: scale(1);
    }
    .popular-plan:hover {
        transform: translateY(-10px);
    }
}

.popular-badge {
    letter-spacing: 1px;
}

/* CTA & Footer */
.cta {
    background: linear-gradient(135deg, var(--orange) 0%, #d15515 100%);
}

.bg-footer {
    background-color: #0f041c;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
