:root {
    --primary: #00d4ff;
    --secondary: #9d00ff;
    --accent: #ffd700;
    --bg-dark: #0b0e14;
    --bg-alt: #12161f;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nav Styles */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.glass-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    filter: brightness(0.4);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 14, 20, 0.2), var(--bg-dark));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Buttons */
.btn-primary, .btn-glow, .btn-outline {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-glow {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.alt-bg {
    background-color: var(--bg-alt);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.section-title span {
    color: var(--secondary);
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.glass-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.glass-card .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.glass-card.highlight {
    border: 1px solid var(--secondary);
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.1), rgba(0, 212, 255, 0.1));
}

.path-card {
    text-align: center;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}

.path-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.path-card .link-text {
    display: block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.path-card:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

/* Trust Bar */
.trust-bar {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 50px;
}

.trust-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-icons span {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.trust-icons img {
    height: 30px;
    filter: grayscale(1) opacity(0.7);
    transition: var(--transition);
}

.trust-icons img:hover {
    filter: grayscale(0) opacity(1);
}

.badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    transform: rotate(45deg);
}

/* Features List */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Image Placeholder */
.image-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #1a1e29, #0b0e14);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.glass-box {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary);
}

/* Modern Contact Form */
.modern-contact {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.st-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
    width: 100%;
}

.st-form input, .st-form textarea, .st-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    padding: 10px 0;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
}

.st-form select {
    cursor: pointer;
}

.st-form option {
    background: var(--bg-dark);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.st-form input:focus ~ label,
.st-form input:not(:placeholder-shown) ~ label,
.st-form textarea:focus ~ label,
.st-form textarea:not(:placeholder-shown) ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary);
}

.st-form input:focus, .st-form textarea:focus, .st-form select:focus {
    border-bottom-color: var(--primary);
}

.full-width {
    width: 100%;
    padding: 15px;
}

/* Brand Cards */
.brand-card {
    text-align: center;
    padding: 40px !important;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

.brand-card .link-text {
    display: block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer h4 {
    margin-bottom: 25px;
    color: #fff;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Accordion */
.benefit-block {
    padding: 30px;
    border-left: 3px solid var(--primary);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.benefit-block h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-block:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    padding: 0 !important;
    cursor: pointer;
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 35px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 30px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .grid-2, .contact-wrapper { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 30px; }
}
