:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --bg-card-hover: #161616;
    --primary: #8a2be2;
    /* Purple */
    --primary-glow: rgba(138, 43, 226, 0.5);
    --secondary: #00ff9d;
    /* Neon Green */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #222222;

    /* Gradients */
    --gradient-text: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    --gradient-glow: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);

    /* Sizing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --transition: all 0.3s ease;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glow-card: 0 0 20px rgba(138, 43, 226, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utility */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: #7922c7;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: #fff;
    color: #000;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.ghost-icon i {
    color: var(--primary);
    font-size: 1.5rem;
}

.btn-nav {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.headline {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-note i {
    color: var(--secondary);
}

/* Floating Elements (Hero) */
.floating-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: none;
    /* Mobile hidden by default */
}

@media (min-width: 992px) {
    .floating-container {
        display: block;
    }
}

.float-tag {
    position: absolute;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.float-tag i {
    font-size: 1.2rem;
}

.tag-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
    border-color: rgba(0, 166, 126, 0.3);
}

/* ChatGPT */
.tag-1 i {
    color: #00A67E;
}

.tag-2 {
    top: 30%;
    right: -20px;
    animation-delay: 1s;
    border-color: rgba(0, 196, 204, 0.3);
}

/* Canva */
.tag-2 i {
    color: #00C4CC;
}

.tag-3 {
    bottom: 20%;
    left: 20px;
    animation-delay: 2s;
    border-color: rgba(255, 122, 0, 0.3);
}

/* Semrush */
.tag-3 i {
    color: #FF7A00;
}

.tag-4 {
    top: 50%;
    left: 40%;
    animation-delay: 1.5s;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Spy */
.tag-4 i {
    color: #fff;
}

.tag-5 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2.5s;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Midjourney */
.tag-5 i {
    color: #fff;
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-20px) translateX(5px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Tools Section */
.tools-section {
    padding: 100px 0;
}

/* Tools Section - Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

/* Tools Grid - Tab Content */
.tools-grid-tab {
    display: none;
    /* Hidden by default */
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    animation: fadeIn 0.5s ease;
}

.tools-grid-tab.active {
    display: grid;
}

.tool-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

/* Tools Footer */
.tools-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.highlight-purple {
    color: var(--primary);
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Tweaks for Tabs */
@media (max-width: 768px) {
    .tabs-container {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex: 1 1 auto;
        /* Allow buttons to shrink/grow */
        justify-content: center;
    }

    .tools-grid-tab {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
    }
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #080808;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    padding: 20px;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--text-muted);
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: -20px;
    z-index: -1;
    position: relative;
    top: 0;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--text-muted);
}

.step-line {
    display: none;
    height: 1px;
    width: 50px;
    background: var(--border-color);
    margin-top: 50px;
}

@media (min-width: 768px) {
    .step-line {
        display: block;
    }
}

.center-btn {
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.user-info strong {
    display: block;
    font-size: 1rem;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonial-card p {
    font-style: italic;
    color: #ccc;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    scroll-margin-top: 80px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(20, 20, 20, 0.8);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.1);
    transform: scale(1.05);
    position: relative;
    overflow: visible;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.saving-text {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.features-list li i {
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(138, 43, 226, 0.3);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* remove default triangle */
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
}

.faq-item[open] summary::after {
    content: '-';
    color: var(--primary);
}

.faq-item p {
    padding: 0 20px 20px;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    padding-top: 20px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a052b 100%);
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    background: #000;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}