/* style.css */
:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-muted: #94a3b8;

    --primary-color: #7b2cbf;
    --primary-glow: rgba(123, 44, 191, 0.5);
    --secondary-color: #3f37c9;

    --accent-purple: #c77dff;
    --accent-blue: #4cc9f0;
    --accent-orange: #f72585;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--accent-purple);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Social Showcase */
.social-showcase-wrapper {
    padding-top: 140px;
    /* Space from top */
    padding-bottom: 20px;
    /* Space before hero */
    position: relative;
    width: 100%;
    z-index: 10;
}

.social-showcase {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-box {
    position: relative;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-box.yt {
    color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
}

.social-box.yt:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
}

.social-box.fb {
    color: #1877f2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.15);
}

.social-box.fb:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
    transform: translateY(-3px);
}

.social-box.ig {
    color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.15);
}

.social-box.ig:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.3);
    transform: translateY(-3px);
}

.social-box.tt {
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.social-box.tt:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-box.x {
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.social-box.x:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-box.wa {
    color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}

.social-box.wa:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
}

.social-box.tg {
    color: #0088cc;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.15);
}

.social-box.tg:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
    transform: translateY(-3px);
}

.social-box.li {
    color: #0077b5;
    box-shadow: 0 0 20px rgba(0, 119, 181, 0.15);
}

.social-box.li:hover {
    background: rgba(0, 119, 181, 0.1);
    border-color: rgba(0, 119, 181, 0.3);
    transform: translateY(-3px);
}

.social-box.pin {
    color: #bd081c;
    box-shadow: 0 0 20px rgba(189, 8, 28, 0.15);
}

.social-box.pin:hover {
    background: rgba(189, 8, 28, 0.1);
    border-color: rgba(189, 8, 28, 0.3);
    transform: translateY(-3px);
}

.social-box.snap {
    color: #fffc00;
    box-shadow: 0 0 20px rgba(255, 252, 0, 0.15);
}

.social-box.snap:hover {
    background: rgba(255, 252, 0, 0.1);
    border-color: rgba(255, 252, 0, 0.3);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-purple);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 225px);
    /* Subtract social header height */
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    /* Prevent blob elements from expanding horizontal width */
}

/* Decorative background elements */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(123, 44, 191, 0.1);
    color: var(--accent-purple);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-badge span {
    margin-left: 0.5rem;
}

.trust-badge strong {
    color: var(--text-primary);
}

/* Hero Images / Glass Cards */
.hero-image {
    position: relative;
    height: 500px;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: absolute;
}

.main-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.icon-purple {
    color: var(--accent-purple);
}

.icon-blue {
    color: var(--accent-blue);
}

.icon-orange {
    color: var(--accent-orange);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 150px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.bar {
    width: 100%;
    background: linear-gradient(to top, var(--primary-color), var(--accent-purple));
    border-radius: 5px 5px 0 0;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

.bar-1 {
    height: 30%;
    animation-delay: 0.2s;
}

.bar-2 {
    height: 50%;
    animation-delay: 0.4s;
}

.bar-3 {
    height: 40%;
    animation-delay: 0.6s;
}

.bar-4 {
    height: 70%;
    animation-delay: 0.8s;
}

.bar-5 {
    height: 100%;
    animation-delay: 1s;
}

@keyframes growBar {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

.float-card-1 {
    top: 10%;
    right: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.float-card-2 {
    bottom: 15%;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 7s ease-in-out infinite reverse;
    z-index: 3;
}

.float-card-1 h4,
.float-card-2 h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.float-card-1 p,
.float-card-2 p {
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin: 0;
}

.float-card-2 p {
    color: var(--accent-orange);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services */
.services {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(123, 44, 191, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(123, 44, 191, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-purple);
    transition: transform 0.4s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

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

.service-card p {
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(76, 201, 240, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.glow-effect:hover::after {
    opacity: 1;
    left: 100%;
    transition: 0.7s;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .social-box {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .social-showcase {
        gap: 0.8rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .navbar.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        text-align: center;
    }

    .navbar.active .nav-btn {
        display: inline-flex;
        margin: 1rem auto;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 1.5rem auto;
    }

    .social-links {
        justify-content: center;
    }
}

/* Legal Pages Styling */
.legal-page {
    padding: 150px 0 80px;
    min-height: calc(100vh - 300px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.legal-content>p {
    color: var(--accent-purple);
    margin-bottom: 3rem;
    font-size: 1rem;
    font-weight: 500;
}

.legal-text h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2.5rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }
}


/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 0 0 10px var(--bg-dark), 0 5px 20px var(--primary-glow);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Who Uses Our Platform */
.who-uses {
    padding: 6rem 0;
}

.users-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* YouTube Marketing Section */
.yt-marketing {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), transparent);
    border-top: 1px solid var(--border-color);
}

.yt-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.yt-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.yt-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.yt-features {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.yt-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.yt-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yt-card {
    position: relative !important;
    width: 300px;
    text-align: center;
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.user-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.user-pill:hover {
    background: rgba(123, 44, 191, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.2);
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .user-pill {
        width: 100%;
        justify-content: center;
    }

    /* Additional Mobile Fixes */
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .glass-panel {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .social-box {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .btn-lg,
    .btn-xl {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .hero-image {
        height: 350px;
        margin-top: 2rem;
    }

    .main-card {
        width: 90%;
        max-width: 280px;
        padding: 1.2rem;
    }

    .float-card-1 {
        top: -5%;
        right: -5%;
        padding: 1rem;
    }

    .float-card-2 {
        bottom: 0;
        left: -5%;
        padding: 1rem;
    }

    .float-card-1 h4,
    .float-card-2 h4 {
        font-size: 0.8rem;
    }

    .float-card-1 p,
    .float-card-2 p {
        font-size: 0.75rem;
    }

    .yt-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .yt-content h2 {
        font-size: 2.2rem;
    }
}