@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@600;700;800&display=swap');

:root {
    --bg-dark: #050505;
    --bg-panel: rgba(13, 17, 23, 0.85);
    /* Increased opacity */
    --primary-color: #eab308;
    --primary-glow: rgba(234, 179, 8, 0.5);
    --secondary-color: #f59e0b;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-glass: rgba(255, 220, 50, 0.2);
    /* Sharper border */
    --glass-blur: 20px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-body);
    font-weight: 300;
    /* Thinner body font */
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll from orbs */
    width: 100%;
}

/* Background Effects */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    animation: orb-float 20s infinite alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    /* Thin headings */
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-glow);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Specific override for the logo highlight span */
.logo .highlight,
.footer-logo .highlight {
    color: #fff;
    /* User request: white */
    -webkit-text-fill-color: #fff;
    /* Override gradient */
    background: none;
    /* Remove gradient */
    font-weight: 700;
    text-shadow: none;
    /* Remove glow to match CS */
}

.logo-text {
    font-size: 1.8rem;
    /* Reduced to ~1.8rem (another 5% less) */
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* Glassmorphism Components */
/* Enhanced Glassmorphism */
.glass-panel {
    background: rgba(13, 17, 23, 0.4);
    /* Reduced from 0.85 for "water" transparency */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Glass Card Updates */
.glass-card {
    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    /* Lighter surface on hover */
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Intense border */
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 30px var(--primary-glow);
    /* Stronger glow */
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.8s;
}

.glass-card:hover::after {
    left: 100%;
}

/* Modal Styling */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.9);
    /* Very dark overlay */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.modal-backdrop.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-main);
}


.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: 0.5s;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-main);
    padding: 1rem;
    width: 100%;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    margin-bottom: 1.5rem;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-main);
    transition: all 0.3s;
}

.custom-select-trigger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.custom-select-trigger .arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    transition: transform 0.3s;
}

.custom-select.open .custom-select-trigger .arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    background: #0d1117;
    /* Solid dark background */
    backdrop-filter: blur(16px);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    margin-top: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: 250px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover,
.custom-option.selected {
    color: #fff;
    background-color: var(--primary-color);
}

.form-group {
    position: relative;
    /* ensure stacking context */
}


/* Buttons */
/* Unified Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-heading);
    /* Changed to Outfit (site font) based on user feedback */
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #0d1117;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-glass);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-glass-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--primary-color);
}

.btn-glass-outline:hover {
    border-color: var(--primary-color);
    background: rgba(234, 179, 8, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
    margin-top: auto;
    /* Pushes button to bottom */
}

.price-tag {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    /* Added matching font */
    color: var(--primary-color);
    background: linear-gradient(to bottom, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    text-align: left;
    margin: 0.5rem 0 1.5rem 0;
}

.price-tag s {
    -webkit-text-fill-color: var(--text-muted);
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-tag span {
    -webkit-text-fill-color: var(--text-muted);
    color: var(--text-muted);
}

/* Header: Floating Pill Style */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0;
}


.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Icy Physical Glass */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.0) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* More visible glass edge */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 9999px;
    padding: 0.8rem 2rem;
    width: 100%;
    position: relative;
    transition: all 0.4s ease;
}

.header.scrolled .header-container {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(20, 20, 20, 0.4) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: absolute;
    /* Take out of flow to allow true centering of nav */
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Yellow theme: logo already has yellow circle background built in */
.logo img,
.footer-brand img,
.footer-logo img {
    filter: none;
    background: none !important;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    position: relative;
    /* Context for absolute positioning of Login button */
    width: 100%;
}

/* Navigation Styles - Restored Icons & Hover */
.nav-list {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    background: transparent;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    /* Center the links */
    width: 100%;
    padding-right: 0;
    /* Remove padding as links are centered */
}

.nav-list a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid transparent;
}

.nav-list a i {
    display: inline-block;
    /* Restore Icons */
    font-size: 1rem;
    opacity: 0.9;
}

.nav-list a:hover {
    color: #0d1117;
    background: rgba(234, 179, 8, 0.85);
    box-shadow: none;
    border: 1px solid #eab308;
    text-shadow: none;
    transform: none;
}

/* Special styling for the LOGIN button to pop */
.nav-list li:last-child {
    position: absolute;
    right: 0;
    /* Push to far right edge */
    top: 50%;
    transform: translateY(-50%);
}

.nav-list li:last-child a {
    background: #eab308;
    color: #0d1117;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 0;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-list li:last-child a:hover {
    transform: scale(1.05);
    background: #f59e0b;
    color: #0d1117;
    box-shadow: 0 0 25px rgba(234, 179, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-list li:last-child a i {
    color: inherit;
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: #fff;
}



.mobile-menu-btn {
    display: none;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    background: transparent;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    /* Reduced from 80vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 170px;
    /* Increased +10% */
    position: relative;
    padding-bottom: 3rem;
    /* Increased gap to next section */
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    /* Green tint */
    border: 1px solid rgba(34, 197, 94, 0.3);
    /* Green border */
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #4ade80;
    /* Bright green text */
    margin-bottom: 1.5rem;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    /* Bright green dot */
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    /* Green glow */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.9;
    }
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections Common */
.section {
    padding: 4rem 0;
    /* Reduced from 6rem */
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    /* Reduced from 4rem */
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* About Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Packages Grid */
/* Expanded Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.feature-card .icon-wrapper {
    margin-bottom: 1.5rem;
}

/* Common Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-category {
    padding: 2rem;
}

.problem-category h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.problem-category h3 i {
    font-size: 1.2rem;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--primary-color);
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.problem-list li i {
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Specific Problem Colors/Icons */
.prob-performance i {
    color: #f59e0b;
}

/* Amber */
.prob-security i {
    color: #ef4444;
}

/* Red */
.prob-network i {
    color: #3b82f6;
}

/* Blue */
.prob-cloud i {
    color: #06b6d4;
}

/* Cyan */
.prob-email i {
    color: #10b981;
}

/* Green */
.prob-emergency i {
    color: #8b5cf6;
}

/* Purple */

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    display: flex;
    flex-direction: column;
}

.popular-card {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    /* Gradient matching stats */
    color: #0a0a0a;
    /* Dark contrast for visibility */
    padding: 0.35rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-bottom-left-radius: 12px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.package-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.package-icon {
    font-size: 2rem;
    margin-bottom: 0;
    color: #e2e8f0;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.package-header p {
    flex-basis: 100%;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.package-desc {
    /* Keeping for legacy if used elsewhere */
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 50px;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.package-features i {
    color: var(--primary-color);
}

/* Contact */
/* Contact */
.contact-card {
    border-radius: 24px;
    padding: 3rem;
    /* Reduced from 4rem */
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    /* Reduced gap */
    align-items: center;
}

.contact-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-content p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.method-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

textarea.glass-input {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 2rem 0 2rem;
    border-top: 1px solid var(--border-glass);
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-flex;
    flex-direction: row;
    /* Force row */
    flex-wrap: nowrap;
    /* Force single line */
    align-items: center;
    justify-content: center;
    gap: 0;
    /* Removed gap entirely */
    font-family: var(--font-heading);
    /* Website font */
    font-size: 1.8rem;
    color: #ffffff;
    /* User requested "whote" */
    letter-spacing: -0.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.footer-logo svg {
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

/* Enforce font and color on footer logo text */
.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Footer Glassy Buttons */
.footer-links {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem !important;
    /* Overwrite inline gap if needed */
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    color: var(--text-main) !important;
    /* Force white text */
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    /* Slightly rounded */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-2px);
    color: white !important;
}

/* .footer-logo .highlight removed to fix visibility */



.footer p {
    color: var(--text-muted);
}

.payment-methods {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: rgba(13, 17, 23, 0.85);
    /* Dark Glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    /* Rounded card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.payment-methods i {
    font-size: 2rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}


/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    /* Reduced from 3rem */
    border-radius: 24px;
    text-align: center;
    margin-top: 2rem;
    /* Removed overlap */
    z-index: 10;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Section */
.section-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.partner-logoglass {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem;
    flex-direction: column;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.partner-logoglass i,
.partner-logo-svg {
    font-size: 3rem;
    color: var(--text-main);
    opacity: 0.7;
    transition: all 0.3s;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-svg.directadmin-logo {
    width: 55px;
    height: 55px;
    /* Balanced size */
}

.partner-logoglass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.partner-logoglass:hover i,
.partner-logoglass:hover .partner-logo-svg {
    opacity: 1;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

/* FAQ Section */
.faq-search-wrapper {
    max-width: 500px;
    margin: 2rem auto 2rem auto;
    /* Added top margin */
}

.faq-search-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
}

.faq-search-box i {
    color: var(--primary-color);
    font-size: 1rem;
}

.faq-search-box input {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 0.95rem;
    flex: 1;
    outline: none;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-category-wrapper {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.category-header:hover {
    background: rgba(255, 255, 255, 0.06);
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0 !important;
    border: none !important;
    padding: 0 !important;
}

.toggle-icon {
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.faq-category-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.01);
}

/* Category Active State */
.faq-category-wrapper.active {
    background: rgba(255, 255, 255, 0.02);
}

.faq-category-wrapper.active .category-header {
    background: rgba(255, 255, 255, 0.08);
}

.faq-category-wrapper.active .toggle-icon {
    transform: rotate(90deg);
}

.faq-category-wrapper.active .faq-category-content {
    max-height: 2000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    padding: 1rem 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    /* Undeniably round */
    overflow: visible;
    /* Let children handle their own radius */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Clearer border definition */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Depth to show edges */
    display: flex;
    flex-direction: column;
}

.category-title i {
    color: var(--primary-color);
    font-size: 1rem;
    opacity: 0.8;
}

.faq-question {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: auto;
    border-radius: 16px;
    /* Round all corners by default */
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    /* Subtle hover feedback */
}

.faq-question h3 {
    font-size: 1rem;
    /* Standard readable size */
    font-weight: 400;
    /* Regular weight (Clean but visible) */
    margin: 0;
    line-height: 1.5;
    /* comfortable reading */
    color: var(--text-main);
    /* Brighter standard text */
    letter-spacing: normal;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 16px 16px;
    /* Always bottom round */
}

.faq-answer p {
    padding: 0.5rem 1rem 1rem 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px 16px 0 0;
    /* Only top round when active */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
    background: rgba(13, 17, 23, 0.4);
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Payment Methods */
.payment-methods {
    display: inline-flex;
    /* Single line container */
    gap: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.payment-methods i {
    transition: all 0.3s;
}

.payment-methods i:hover {
    color: var(--text-main);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-content {
        text-align: center;
    }

    .contact-methods {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1180px) {
    .section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        /* Full viewport width to escape header constraint */
        height: 100vh;
        z-index: 998;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        justify-content: flex-end;
        /* Align drawer to right */
        background: transparent;
        padding: 0;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    .nav.active {
        transform: translateX(0);
    }

    .header {
        position: fixed;
        top: 1rem;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        width: calc(100% - 2rem) !important;
        max-width: 450px !important;
        transform: none !important;
        border-radius: 50px;
        z-index: 1000;
        /* Ensure no overflow hidden here */
        overflow: visible !important;
    }

    .header-container {
        min-height: 70px;
        padding: 0 2rem;
    }

    .mobile-menu-btn {
        display: block;
        position: fixed;
        /* Fixed to viewport, not header */
        right: 2rem;
        top: 45px;
        /* Aligned vertically with header center */
        transform: translateY(-50%);
        z-index: 1001;
        background: transparent;
        /* Removed dark background ("black spot") */
        /* Optional: distinct background if needed, but transparent is fine */
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: none;
        /* Removed blur */
    }

    .nav-list {
        /* The Drawer styling moves here */
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        /* Ensure strict top align */
        gap: 0.5rem;
        width: 75%;
        max-width: 320px;
        height: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        padding: 85px 2rem 2rem !important;
        /* EXACTLY clears button (82px bottom) + 3px gap */
        border-left: 1px solid var(--border-glass);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        margin: 0 !important;
    }

    /* Mobile Menu Buttons */
    .nav-list a {
        width: 100%;
        justify-content: flex-start;
        /* Left align text in drawer */
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(255, 255, 255, 0.05);
        /* Subtle separation */
        border-radius: 12px;
        padding: 1rem;
        font-size: 1.1rem;
        /* Reduced from 1.1rem */
        border-radius: 50px;
    }

    /* Reset Login Button for Mobile */
    .nav-list li:last-child {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin: 0;
    }

    .nav-list li:last-child a {
        background: var(--primary-color);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        justify-content: center;
        /* Keep login centered/prominent */
        width: fit-content;
        margin: 1rem auto 0;
        /* Center and add top gap */
        padding: 0.6rem 2rem;
        font-size: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        align-items: flex-start;
        padding-top: 140px;
        /* Move content up, reduced gap */
        min-height: auto;
        /* Remove full viewport requirement on mobile */
        padding-bottom: 4rem;
        padding-left: 2rem;
        /* Prevent edge sticking */
        padding-right: 2rem;
        /* Prevent edge sticking */
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 1rem;
    }

    .footer-logo {
        font-size: 1.5rem;
        white-space: normal;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-logo svg {
        width: 32px;
        height: 32px;
        margin: 0;
    }

    .btn {
        width: 100%;
        /* Keep full width but rely on container padding */
    }
}

/* Whitish Glass Card */
.glass-card.whitish {
    background: rgba(255, 255, 255, 0.15);
    /* Increased opacity for visibility */
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-card.whitish:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.company-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* Footer Contact Card Horizontal Layout */
.footer-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    text-align: left;
    padding: 3rem !important;
    margin: 0 auto 3rem;

    /* Darker Glass Background */
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    /* Gradient Border Magic */
    position: relative;
    border-radius: 20px;
    /* Slightly more rounded */
    background-clip: padding-box;
    /* Important for border */
    border: 1px solid transparent;
    /* Placeholder */

    /* Deep Shadow for "Floating" Effect */
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    /* Inner sheen */

    max-width: 900px !important;
    overflow: hidden;
    /* For pseudo-elements */
}

/* Gradient Border Pseudo-element */
.footer-contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    /* Border thickness */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(96, 165, 250, 0.5), rgba(139, 92, 246, 0.5), rgba(255, 255, 255, 0.1));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Subtle background glow */
.footer-contact-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.05), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.contact-card-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Increased gap */
    flex: 1;
    z-index: 1;
    /* Above glow */
}

.contact-profile-img {
    width: 95px;
    height: 95px;
    border-radius: 24px;
    /* Smooth squircle */
    overflow: hidden;
    /* Thicker, Vibrant Gradient Ring */
    background: linear-gradient(135deg, #3b82f6, #d946ef);
    /* Blue to Pink/Purple */
    padding: 6px;
    /* Thick border */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
}

.contact-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    /* Inner radius to match outer curve */
    background: #000;
}


.contact-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    /* Increased size to match visual weight */
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.2;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.contact-card-right {
    align-items: flex-end;
    gap: 0.5rem;
    /* Reduced gap between text and icons */
    flex-shrink: 0;
    justify-content: center;
    /* Center vertically if needed, or specific padding */
    padding-top: 1rem;
    /* "some down" - push it down a bit */
}

.connect-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 2px;
    /* Slight alignment adjustment */
}

/* Social Buttons Row */
.social-links-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    /* Glass base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* Inner shadow for depth */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

/* Hover Effects */
.social-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        0 10px 20px -5px rgba(96, 165, 250, 0.5),
        /* Blue glow */
        0 0 15px rgba(139, 92, 246, 0.3);
    /* Purple aura */
}

/* Icon specific colors on hover for fun */
.social-btn[aria-label="Email"]:hover {
    color: #60a5fa;
}

.social-btn[aria-label="Telegram"]:hover {
    color: #229ED9;
}

.social-btn[aria-label="Twitter"]:hover {
    color: #1DA1F2;
}

.contact-details-row {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .footer-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem !important;
        gap: 2rem;
    }

    .contact-card-left {
        flex-direction: column;
        text-align: center;
    }

    .contact-card-right {
        align-items: center;
    }

    .contact-details-row {
        justify-content: center;
    }
}

/* Horizontal Feature Cards Refinement */
.feature-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-card {
    text-align: left !important;
    padding: 2.25rem !important;
}

.icon-wrapper,
.feature-icon {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 0 !important;
    font-size: 1.1rem !important;
}

.feature-card h3 {
    margin-bottom: 0 !important;
    font-size: 1.1rem !important;
    white-space: nowrap;
}

/* =========================================
   Footer Redesign (Modern Split Layout)
   ========================================= */

/* Most structure is handled by utility classes and inline styles in PHP for reliability */

.footer-nav-list li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-list li a:hover {
    color: #60a5fa;
    /* Blue highlight */
    transform: translateX(5px);
}

/* Payment Icons - Premium Glass Hover */
.payment-methods-panel i {
    transition: all 0.3s ease;
}

.payment-methods-panel i:hover {
    color: #fff !important;
    transform: scale(1.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .footer-top-section {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        gap: 3rem !important;
        padding-bottom: 2rem !important;
    }

    .footer-bottom-section {
        flex-direction: column;
        justify-content: center !important;
        text-align: center;
        gap: 1.5rem !important;
    }

    .footer-links-grid {
        width: 100%;
        justify-content: center;
        gap: 3rem !important;
    }

    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .copyright-text {
        text-align: center;
    }
}