:root {
    --bg-dark: #050505;
    --bg-raised: #111111;
    --accent-cyan: #00F5FF;
    --accent-pink: #FF006E;
    --text-main: #FFFFFF;
    --text-dim: #BBBBBB;
    --gradient-main: linear-gradient(135deg, #00F5FF 0%, #7000FF 100%);
    --gradient-alert: linear-gradient(135deg, #FF006E 0%, #FF5A00 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.accent-cyan { color: var(--accent-cyan); }
.accent-pink { color: var(--accent-pink); }
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('hero_growth_background_1775324942169.png') no-repeat center center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.highlight {
    background: var(--accent-pink);
    padding: 0 10px;
    display: inline-block;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.5);
}

.btn-secondary {
    background: var(--bg-raised);
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: var(--bg-raised);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    border-color: var(--accent-pink);
    transform: translateY(-10px);
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-dim);
}

.problem-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
    background: rgba(255, 0, 110, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-pink);
}

/* Revelation Section */
.revelation {
    background: linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.9)), url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

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

.revelation-content {
    max-width: 800px;
    margin: 0 auto;
}

.big-text {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.hack-banner {
    background: var(--bg-raised);
    padding: 2rem;
    border-radius: 12px;
    border: 2px dashed var(--accent-cyan);
    margin: 3rem 0;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Solution Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

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

.feature-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: -2.5rem;
    line-height: 1;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.center-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Qualification Section */
.qualification-flex {
    display: flex;
    gap: 4rem;
}

.qualify-box {
    flex: 1;
    padding: 3rem;
    border-radius: 20px;
}

.qualify-box.yes {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.qualify-box.no {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.qualify-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.qualify-box ul {
    list-style: none;
}

.qualify-box li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Closing Section */
.closing {
    text-align: center;
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
}

.closing-text {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: var(--text-dim);
}

.pulse-btn {
    animation: pulse 2s infinite;
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.7); }
    70% { box-shadow: 0 0 0 30px rgba(0, 245, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 245, 255, 0); }
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.8rem; }
    .features-grid { grid-template-columns: 1fr; }
}

/* Pricing Section */
.pricing {
    background: #080808;
}

.section-subtitle.center {
    text-align: center;
    max-width: 800px;
    margin: -1.5rem auto 4rem auto;
    color: var(--text-dim);
    font-size: 1.2rem;
}

.category-block {
    margin-bottom: 6rem;
}

.category-header {
    text-align: left;
    border-left: 4px solid var(--accent-cyan);
    padding-left: 1.5rem;
    margin-bottom: 3rem;
}

.category-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.packages-grid {
    display: grid;
    gap: 2rem;
}

.packages-grid.integral {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.packages-grid.authority {
    grid-template-columns: repeat(3, 1fr);
}

.package-card, .package-card-simple {
    background: var(--bg-raised);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.package-card h4, .package-card-simple h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.card-tagline {
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
}

.features-list li strong {
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

.ideal-for {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-top: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.card-footer {
    margin-top: 1.5rem;
}

.price-container {
    margin: 2rem 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.price-regular {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    font-family: var(--font-body);
}

.price-offer {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-heading);
    line-height: 1;
}

.currency {
    font-size: 1rem;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Badges and Glows */
.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 2;
}

.package-card.featured, .package-card-simple.featured {
    transform: scale(1.05);
    z-index: 10;
    border-width: 2px;
}

.pink-glow {
    border-color: var(--accent-pink);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.15);
}

.cyan-glow {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.15);
}

.gold-glow {
    border-color: #FFD700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.gold-glow .badge {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: black;
}

/* Button Variants */
.btn-fuchsia {
    background: var(--gradient-alert);
    color: white;
    width: 100%;
    text-align: center;
}

.btn-cyan-bright {
    background: var(--accent-cyan);
    color: black;
    width: 100%;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: black;
    width: 100%;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background: white;
    color: black;
}

@media (max-width: 1024px) {
    .packages-grid.authority {
        grid-template-columns: 1fr;
    }
    .package-card.featured, .package-card-simple.featured {
        transform: scale(1);
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    .qualification-flex { flex-direction: column; }
    .section { padding: 5rem 0; }
    .section-title { font-size: 2.2rem; }
    .package-card, .package-card-simple { padding: 2rem 1.5rem; }
}
