/* Global Reset & Variables */
:root {
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary: #00a0b0;
    --secondary: #bd00ff;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent-glow: rgba(0, 160, 176, 0.3);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    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;
    z-index: -2;
    pointer-events: none;
}

.ambient-light {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulseLight 10s infinite alternate;
}

@keyframes pulseLight {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-animated {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00C6FB, #005BEA);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 91, 234, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(255, 255, 255, 0.2), transparent 70%);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.glow-effect:hover::after {
    opacity: 1;
}

/* Header */
/* --- HEADER (Matches Main Site) --- */
header {
    padding: 20px 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    height: 500px;
    /* Slight increase for new visual */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dashboard Composition Styles */
.dashboard-composition {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-main-card {
    width: 400px;
    height: 280px;
    background: rgba(20, 23, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.ui-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.ui-dots {
    display: flex;
    gap: 6px;
}

.ui-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.ui-dots span:nth-child(1) {
    background: #ff5f56;
}

.ui-dots span:nth-child(2) {
    background: #ffbd2e;
}

.ui-dots span:nth-child(3) {
    background: #27c93f;
}

.ui-body {
    flex: 1;
    display: flex;
}

.ui-sidebar {
    width: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ui-line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 5px;
}

.ui-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ui-graph {
    height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 5px;
    position: relative;
}

.graph-bar {
    width: 12%;
    background: linear-gradient(to top, var(--primary), rgba(0, 160, 176, 0.3));
    border-radius: 4px 4px 0 0;
}

.graph-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-style: dashed;
}

.ui-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-row {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    width: 100%;
}

.ui-row:nth-child(2) {
    width: 90%;
}

.ui-row:nth-child(3) {
    width: 95%;
}


/* Floating Stat Cards for Hero */
.stat-card {
    position: absolute;
    background: rgba(30, 30, 40, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 12;
    min-width: 180px;
}

.stat-card .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.stat-card .stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.stat-optimize {
    top: 20%;
    right: 5%;
    transform: translateX(20px);
}

.stat-control {
    bottom: 15%;
    left: 10%;
    transform: translateX(-30px);
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delayed {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services */
.section {
    padding: 40px 0;
    /* Updated: Decreased space from 60px to 40px */
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
    /* Reduced margin */
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.grid {
    display: grid;
    gap: 30px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover .icon-box {
    background: var(--primary);
    color: #000;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Specific styling for the Advantages Title spacing */
#advantages .feature-text h2 {
    margin-bottom: 50px;
    /* Updated: Increased space below title */
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-list p {
    color: var(--text-muted);
}

/* Floating Cards Visual for Advantages */
.floating-cards-container {
    position: relative;
    height: 450px;
    /* Increased container height */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-hub {
    width: 150px;
    /* Increased from 120px */
    height: 150px;
    /* Increased from 120px */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 50px rgba(0, 160, 176, 0.2);
    animation: pulseHub 4s infinite ease-in-out;
}

@keyframes pulseHub {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 160, 176, 0.1);
    }

    50% {
        box-shadow: 0 0 60px rgba(0, 160, 176, 0.3);
    }
}

.hub-logo {
    font-size: 2.5rem;
    /* Increased font size */
    color: var(--primary);
    margin-bottom: 5px;
}

.central-hub span {
    font-size: 0.9rem;
    /* Increased font size */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.float-card {
    position: absolute;
    background: rgba(20, 20, 30, 0.85);
    /* Slightly more opaque */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    /* Increased padding */
    border-radius: 16px;
    /* Increased radius */
    display: flex;
    align-items: center;
    gap: 15px;
    /* Increased gap */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: white;
    min-width: 160px;
    /* Minimum width added */
    justify-content: center;
}

.float-card i {
    color: var(--secondary);
    font-size: 1.5rem;
    /* Increased icon size */
}

.float-card span {
    font-weight: 700;
    /* Bolder text */
    font-size: 1.1rem;
    /* Increased font size */
}

.card-1 {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 15%;
    left: 0%;
    animation: float 7s ease-in-out infinite 1s;
}

.card-3 {
    top: 30%;
    right: 0%;
    animation: float 8s ease-in-out infinite 2s;
}


/* Contact */
.contact-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 242, 255, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust if content is very long */
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    background: #050508;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.social-links a {
    font-size: 1.2rem;
    margin-left: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0a0f;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        padding: 30px;
    }
}

/* Scroll Animation States */
.hidden-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.visible-scroll {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        word-wrap: break-word;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .navbar-content {
        justify-content: space-between;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .card {
        margin-bottom: 20px;
    }
}

/* --- SOCIAL MEDIA PAGE STYLES --- */

/* Hero Adjustments */
.hero-social {
    padding: 140px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.hero-text-social h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text-social p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Visual Placeholder for Phone/Bubbles */
.social-bubbles {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.bubble {
    position: absolute;
    border-radius: 50%;
}

.bubble-yellow {
    width: 100px;
    height: 100px;
    background: #ffbd2e;
    top: 20px;
    right: 20px;
    opacity: 0.8;
}

.bubble-teal {
    width: 60px;
    height: 60px;
    background: #00c6fb;
    bottom: 40px;
    right: 80px;
    opacity: 0.8;
}

/* Pricing Grid */
.pricing-section {
    padding: 40px 20px 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    /* Allows independent card heights */
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Card Headers */
.card-header-badge {
    width: 100%;
    padding: 20px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.small-badge {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: none;
    margin-top: 5px;
}

.start-card .card-header-badge {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
}

.pro-card .card-header-badge {
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
}

.pro-plus-card .card-header-badge {
    background: linear-gradient(135deg, #0f766e, #115e59);
}

/* Price Tag */
.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 30px 0 10px 0;
    color: white;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
    align-self: flex-start;
    margin-top: 10px;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 10px;
    margin-left: 5px;
    font-weight: 400;
}

/* Features */
.feature-list {
    list-style: none;
    padding: 0 20px;
    text-align: left;
    width: 100%;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 8px 0;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin: 0;
}

.feature-list li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Button & Disclaimer */
.btn-primary-social {
    background: var(--primary);
    color: #000;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-social:hover {
    box-shadow: 0 0 20px rgba(0, 160, 176, 0.4);
    transform: translateY(-2px);
    background: white;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Responsive Pricing */
/* --- REFINEMENTS: Ribbon & Slider --- */

/* Ribbon Styles */
.ribbon {
    position: absolute;
    top: 25px;
    left: -40px;
    width: 150px;
    background: #ff5e00;
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 5px 0;
    font-size: 0.75rem;
    transform: rotate(-45deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Responsive Pricing & Mobile Adjustments */
@media (max-width: 900px) {

    /* 1. Reduce Bubble Size & Spacing */
    .hero-social {
        padding: 40px 0 20px 0;
        min-height: auto;
    }

    .social-bubbles {
        width: 200px;
        height: 200px;
    }

    .bubble-yellow {
        width: 70px;
        height: 70px;
    }

    .bubble-teal {
        width: 40px;
        height: 40px;
    }

    .hero-content-social {
        gap: 20px;
    }

    .hero-text-social h1 {
        font-size: 2.2rem;
    }

    /* 2. Mobile Slider (Horizontal Scroll) */
    .pricing-grid {
        display: flex;
        /* Flex instead of grid */
        overflow-x: auto;
        /* Enable horizontal scrolling */
        gap: 20px;
        padding-bottom: 30px;
        /* Space for scrollbar/shadow */
        scroll-snap-type: x mandatory;
        /* Snap effect */
        width: 100%;
        /* Full width container */
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
        grid-template-columns: none;
        /* Reset grid cols */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .pricing-card {
        min-width: 85vw;
        /* Each card takes 85% of viewport width */
        scroll-snap-align: center;
        /* Snap to center */
        margin-bottom: 0;
    }

    .pricing-section {
        padding-top: 20px;
        overflow: hidden;
        /* Prevent horizontal overflow on parent */
        position: relative;
        /* For arrows */
    }

    /* Slider Arrows */
    .slider-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 20;
        backdrop-filter: blur(5px);
        font-size: 1.2rem;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }
}

/* Hide arrows on desktop */
@media (min-width: 901px) {
    .slider-arrow {
        display: none;
    }
}