/* Base tweaks */
:root {
    color-scheme: light;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero background accents */
.hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.hero-orb-left {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(124,58,237,0.6), transparent 60%);
    top: -60px;
    left: -80px;
}

.hero-orb-right {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(192,132,252,0.6), transparent 70%);
    bottom: 20px;
    right: -120px;
}

.hero-orb-light {
    inset: -10%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4), transparent 55%);
    opacity: 0.35;
}

/* Shared UI */
.section-header p {
    letter-spacing: 0.08em;
}

.check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    position: relative;
}

.check-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.packages-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(124,58,237,0.08), transparent 55%);
    pointer-events: none;
}

.packages {
    position: relative;
    overflow: hidden;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(192,132,252,0.25));
    color: #7c3aed;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.floating-call-btn {
    box-shadow: 0 25px 40px rgba(124, 58, 237, 0.35);
}

.floating-call-btn:hover {
    box-shadow: 0 35px 55px rgba(124, 58, 237, 0.45);
}

@media (max-width: 768px) {
    .hero-orb-left,
    .hero-orb-right {
        opacity: 0.25;
    }
}

