:root {
    /* Colors */
    --bg-dark: #07070a;
    --bg-card: rgba(18, 18, 25, 0.65);
    --bg-card-hover: rgba(28, 28, 40, 0.8);
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #14b8a6;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-hover: rgba(255, 255, 255, 0.15);
    
    /* Gradients */
    --gradient-text: linear-gradient(135deg, var(--primary), #ec4899, var(--secondary));
    --gradient-bg: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 40%),
                   radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.15), transparent 40%);
    
    /* Layout */
    --wrapper-width: 1100px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: var(--gradient-bg);
    background-attachment: fixed;
    font-size: 17px;
}

/* Background Glowing Orbs */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
    animation: drift 20s infinite alternate linear;
}

.bg-glow-1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
}

.bg-glow-2 {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 60%);
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.1); }
}

/* Typography elements */
.font-bold {
    font-weight: 800;
}

h1, h2, h3, h4, h5 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.highlight-text {
    color: #fca5a5;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.text-sm {
    font-size: 0.9rem;
}

.italic {
    font-style: italic;
}

/* Accent Colors for Icons */
.text-yellow { color: #f59e0b; }
.text-cyan { color: #06b6d4; }
.text-green { color: #10b981; }
.text-purple { color: #8b5cf6; }
.text-pink { color: #ec4899; }

/* Wrapper & Layout */
.wrapper {
    max-width: var(--wrapper-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 7rem 0;
}

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-auto { margin-top: auto; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-slow);
}

.navbar.scrolled {
    padding: 0.8rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 2rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
}

/* Glassmorphism */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-minimal {
    background: rgba(20, 20, 30, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: transparent;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background: #7c3aed;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-full {
    width: 100%;
}

.glow-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.glow-btn:hover::before {
    opacity: 1;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 6rem; /* Account for navbar */
    max-width: 900px;
    margin: 0 auto;
}

.hero-context {
    font-size: 1.15rem;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Grids */
.grid {
    display: grid;
    gap: 1.5rem;
}

.features-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.vps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Need more & Who this is for */
.layout-2-col {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .layout-2-col {
        grid-template-columns: 1fr;
    }
}

.flex-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    transition: var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-hover);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.inline-icon {
    display: inline-flex;
    margin-bottom: 1rem;
}

.full-width {
    grid-column: 1 / -1;
}

/* VPS Cards */
.vps-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vps-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.vps-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Lists */
.icon-list {
    list-style: none;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.icon-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-list i {
    color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.check-list li i.uil {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 1.25rem;
}

.highlight-border {
    position: relative;
}

.highlight-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Pricing Table */
.pricing-table {
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.pricing-row {
    display: flex;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-glass);
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.col-service {
    flex: 1;
}

.col-price {
    min-width: 150px;
    text-align: right;
    font-weight: 600;
}

.flex-service {
    display: flex;
    flex-direction: column;
}

.flex-service span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
}

.highlight-row {
    background: rgba(139, 92, 246, 0.05);
}

.price-tag {
    color: var(--secondary);
    font-size: 1.25rem;
}

/* Pulse Hover */
.pulse-hover {
    animation: none;
}
.pulse-hover:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Bottom CTA Banner */
.glass-banner {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(40, 30, 60, 0.8));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(139, 92, 246, 0.1);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
    background: rgba(5, 5, 8, 0.8);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpAnim 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .glass-card { padding: 2rem; }
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .col-price { text-align: left; }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-slow);
    background: rgba(18, 18, 25, 0.95);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.modal-content {
    flex: 1;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #fff; /* Google calendar is mostly white */
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        height: 90vh;
    }
    .modal-close {
        top: -35px;
        right: 10px;
    }
}
