/* ===================================================
   💥 SUPERNEXA ULTRA-UNIQUE UI - V2
   BRAND NEW Hero: Circular Orbit Design
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    /* PRIMARY: Coral Burst */
    --coral-900: #C84B31;
    --coral-700: #E85A4F;
    --coral-500: #FF6B6B;
    --coral-300: #FF9999;
    --coral-100: #FFD6D6;

    /* SECONDARY: Electric Lime */
    --lime-900: #2C8C7F;
    --lime-700: #36A396;
    --lime-500: #4ECDC4;
    --lime-300: #7EE0D9;
    --lime-100: #C7F5F2;

    /* ACCENT: Deep Turquoise */
    --turquoise-900: #1A7D94;
    --turquoise-700: #2A9DB4;
    --turquoise-500: #45B7D1;
    --turquoise-300: #6DCDE4;
    --turquoise-100: #B8E9F5;

    /* HIGHLIGHT: Soft Salmon */
    --salmon-900: #D64555;
    --salmon-700: #E66876;
    --salmon-500: #FF8C94;
    --salmon-300: #FFA8B0;
    --salmon-100: #FFD9DD;

    /* BRIGHT: Tangerine */
    --tangerine-900: #D68A2E;
    --tangerine-700: #EDA03A;
    --tangerine-500: #FFB347;
    --tangerine-300: #FFC876;
    --tangerine-100: #FFEACC;

    /* SOFT: Lavender */
    --lavender-900: #7E57C2;
    --lavender-700: #9574CD;
    --lavender-500: #B39DDB;
    --lavender-300: #C8BBE8;
    --lavender-100: #EDE7F6;

    /* Warm Neutrals */
    --cream-50: #FBF8F3;
    --cream-100: #F5EFE3;
    --sand-300: #D4C4A8;
    --sand-500: #A88762;
    --brown-700: #6B4528;
    --brown-900: #3D2618;

    /* Gradients */
    --gradient-coral-lime: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    --gradient-tropical: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFB347 100%);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream-50);
    color: var(--brown-900);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* =================================================
   REVOLUTIONARY ORBIT HERO
   ================================================= */
.hero-unique {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--lime-100) 100%);
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Animated Orbs */
.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--coral-300) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--lime-300) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: 7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--tangerine-300) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    33% {
        transform: translate(60px, -60px) scale(1.15);
        opacity: 0.4;
    }

    66% {
        transform: translate(-50px, 50px) scale(0.85);
        opacity: 0.25;
    }
}

/* Floating Colorful Circles for Hero */
.hero-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatCircle 20s ease-in-out infinite;
}

/* Large Circles */
.hero-circles .circle-1 {
    width: 280px;
    height: 280px;
    background: var(--coral-500);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-circles .circle-2 {
    width: 240px;
    height: 240px;
    background: var(--lime-500);
    bottom: 15%;
    right: 8%;
    animation-delay: 3s;
}

/* Medium Circles */
.hero-circles .circle-3 {
    width: 180px;
    height: 180px;
    background: var(--turquoise-500);
    top: 40%;
    left: 8%;
    animation-delay: 6s;
}

.hero-circles .circle-4 {
    width: 200px;
    height: 200px;
    background: var(--salmon-500);
    top: 20%;
    right: 12%;
    animation-delay: 9s;
}

.hero-circles .circle-5 {
    width: 160px;
    height: 160px;
    background: var(--tangerine-500);
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
    opacity: 0.6;
}

.hero-circles .circle-6 {
    width: 150px;
    height: 150px;
    background: var(--lavender-500);
    top: 60%;
    right: 5%;
    animation-delay: 7s;
    opacity: 0.55;
}

/* Small Circles */
.hero-circles .circle-7 {
    width: 120px;
    height: 120px;
    background: var(--coral-300);
    top: 5%;
    right: 25%;
    animation-delay: 2s;
    opacity: 0.65;
}

.hero-circles .circle-8 {
    width: 100px;
    height: 100px;
    background: var(--lime-300);
    bottom: 10%;
    left: 30%;
    animation-delay: 5s;
    opacity: 0.7;
}

.hero-circles .circle-9 {
    width: 90px;
    height: 90px;
    background: var(--turquoise-300);
    top: 70%;
    left: 3%;
    animation-delay: 8s;
    opacity: 0.6;
}

.hero-circles .circle-10 {
    width: 110px;
    height: 110px;
    background: var(--salmon-300);
    bottom: 5%;
    right: 30%;
    animation-delay: 11s;
    opacity: 0.65;
}

/* Mini Circles */
.hero-circles .circle-11 {
    width: 80px;
    height: 80px;
    background: var(--tangerine-300);
    top: 30%;
    right: 3%;
    animation-delay: 1s;
    opacity: 0.7;
}

.hero-circles .circle-12 {
    width: 70px;
    height: 70px;
    background: var(--lavender-300);
    bottom: 40%;
    left: 2%;
    animation-delay: 10s;
    opacity: 0.6;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -40px);
    }

    50% {
        transform: translate(-25px, 35px);
    }

    75% {
        transform: translate(40px, 25px);
    }
}

/* Centered Content */
.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto 100px;
    animation: fadeInUp 1s ease;
}

.hero-text h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--brown-900);
    letter-spacing: -2px;
}

.hero-text h1 span {
    display: block;
    background: var(--gradient-coral-lime);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.75;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text p {
    font-size: 22px;
    color: var(--brown-700);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral-100), var(--lime-100));
    color: var(--coral-700);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 2px solid var(--coral-300);
    animation: fadeInUp 0.8s ease;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--brown-700);
}

.hero-highlight-item i {
    color: var(--lime-500);
    font-size: 20px;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.trust-item strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-coral-lime);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.trust-item span {
    font-size: 14px;
    color: var(--brown-700);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-coral {
    padding: 22px 50px;
    background: var(--gradient-coral-lime);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-coral:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 70px rgba(255, 107, 107, 0.5);
}

.btn-outline {
    padding: 22px 50px;
    background: transparent;
    color: var(--coral-700);
    border: 3px solid var(--coral-500);
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--coral-500);
    color: white;
    transform: translateY(-4px);
}

/* ORBIT SYSTEM */
.card-stack {
    position: relative;
    width: 750px;
    height: 750px;
    margin: 0 auto;
    animation: fadeInScale 1.5s ease 0.3s backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Central Circular Hub */
.stack-card-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: white;
    border-radius: 50%;
    padding: 70px 40px;
    box-shadow:
        0 40px 100px rgba(255, 107, 107, 0.2),
        0 0 0 25px rgba(255, 107, 107, 0.05),
        0 0 0 50px rgba(78, 205, 196, 0.03);
    border: 5px solid var(--coral-500);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 40px 100px rgba(255, 107, 107, 0.2),
            0 0 0 25px rgba(255, 107, 107, 0.05),
            0 0 0 50px rgba(78, 205, 196, 0.03);
    }

    50% {
        box-shadow:
            0 45px 110px rgba(255, 107, 107, 0.25),
            0 0 0 30px rgba(255, 107, 107, 0.08),
            0 0 0 60px rgba(78, 205, 196, 0.06);
    }
}

/* Orbit Rings */
.stack-card-2,
.stack-card-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 3px dashed;
    border-color: rgba(255, 107, 107, 0.2);
    animation: rotate 30s linear infinite;
}

.stack-card-2 {
    width: 550px;
    height: 550px;
    animation-duration: 25s;
}

.stack-card-3 {
    width: 720px;
    height: 720px;
    border-color: rgba(78, 205, 196, 0.2);
    animation-duration: 40s;
    animation-direction: reverse;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating Stat Badges - On Orbits */
.card-stat {
    position: absolute;
    background: white;
    border-radius: 24px;
    padding: 24px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--lime-500);
    animation: floatBadge 5s ease-in-out infinite;
    z-index: 5;
}

.card-stat:nth-child(2) {
    top: 8%;
    left: 12%;
    animation-delay: 0s;
}

.card-stat:nth-child(3) {
    top: 12%;
    right: 8%;
    animation-delay: 2s;
    border-color: var(--coral-500);
}

.card-stat:nth-child(4) {
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
    border-color: var(--tangerine-500);
}

@keyframes floatBadge {

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

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

.card-stat-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-coral-lime);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    display: block;
}

.card-stat-label {
    font-size: 14px;
    color: var(--brown-700);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Center Content */
.stack-card-1 .card-stat {
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 12px 0;
    animation: none;
    text-align: center;
    margin: 8px 0;
}

.stack-card-1 .card-stat-value {
    font-size: 52px;
}

/* Features Section (keeping existing) */
.features-wavy {
    padding: 120px 20px;
    background: white;
    position: relative;
}

.features-wavy::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M 0 60 Q 300 0 600 60 T 1200 60 L 1200 120 L 0 120 Z' fill='white'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 60px;
    color: var(--brown-900);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 20px;
    color: var(--sand-500);
}

.features-zigzag {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-bubble {
    background: var(--cream-50);
    border-radius: 40px;
    padding: 50px;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-bubble::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.feature-bubble:nth-child(1)::after {
    background: var(--coral-500);
}

.feature-bubble:nth-child(2)::after {
    background: var(--lime-500);
}

.feature-bubble:nth-child(3)::after {
    background: var(--turquoise-500);
}

.feature-bubble:nth-child(4)::after {
    background: var(--salmon-500);
}

.feature-bubble:nth-child(5)::after {
    background: var(--tangerine-500);
}

.feature-bubble:nth-child(6)::after {
    background: var(--lavender-500);
}

.feature-bubble:hover {
    transform: translateY(-15px) rotate(2deg);
    border-color: var(--coral-500);
}

.feature-bubble:hover::after {
    bottom: -20%;
    right: -20%;
    transform: scale(1.5);
}

.feature-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 45px;
}

.feature-bubble:nth-child(1) .feature-icon-wrap {
    background: linear-gradient(135deg, var(--coral-300), var(--coral-500));
    color: white;
}

.feature-bubble:nth-child(2) .feature-icon-wrap {
    background: linear-gradient(135deg, var(--lime-300), var(--lime-500));
    color: white;
}

.feature-bubble:nth-child(3) .feature-icon-wrap {
    background: linear-gradient(135deg, var(--turquoise-300), var(--turquoise-500));
    color: white;
}

.feature-bubble:nth-child(4) .feature-icon-wrap {
    background: linear-gradient(135deg, var(--salmon-300), var(--salmon-500));
    color: white;
}

.feature-bubble:nth-child(5) .feature-icon-wrap {
    background: linear-gradient(135deg, var(--tangerine-300), var(--tangerine-500));
    color: white;
}

.feature-bubble:nth-child(6) .feature-icon-wrap {
    background: linear-gradient(135deg, var(--lavender-300), var(--lavender-500));
    color: white;
}

.feature-bubble h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--brown-900);
}

.feature-bubble p {
    font-size: 16px;
    color: var(--brown-700);
    line-height: 1.7;
}

/* Pricing Section (keeping existing) */
.pricing-tilted {
    padding: 120px 20px;
    background: var(--gradient-tropical);
}

.pricing-grid-tilt {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.price-card-tilt {
    background: white;
    border-radius: 40px;
    padding: 50px 40px;
    transform: rotate(-2deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.price-card-tilt:nth-child(2) {
    transform: rotate(2deg) scale(1.05);
}

.price-card-tilt:hover {
    transform: rotate(0deg) translateY(-20px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.plan-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-coral-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.plan-benefit {
    font-size: 24px;
    font-weight: 800;
    color: var(--brown-900);
    margin-bottom: 12px;
    text-align: center;
}

.price-card-tilt p {
    text-align: center;
    color: var(--brown-700);
    line-height: 1.6;
}

/* =================================================
   LEGAL SECTIONS - Privacy & Terms
   ================================================= */
.legal-section {
    padding: 100px 20px;
    background: white;
}

.legal-section.terms-section {
    background: var(--cream-50);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header i {
    font-size: 60px;
    background: var(--gradient-coral-lime);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
}

.legal-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--brown-900);
}

.legal-content {
    display: grid;
    gap: 30px;
}

.legal-item {
    background: var(--cream-50);
    padding: 35px 40px;
    border-radius: 25px;
    border-left: 5px solid var(--coral-500);
    transition: all 0.3s ease;
}

.terms-section .legal-item {
    background: white;
    border-left-color: var(--lime-500);
}

.legal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.legal-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brown-900);
    margin-bottom: 15px;
}

.legal-item p {
    font-size: 16px;
    color: var(--brown-700);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 64px;
    }

    .card-stack {
        width: 600px;
        height: 600px;
    }

    .stack-card-1 {
        width: 300px;
        height: 300px;
    }

    .stack-card-2 {
        width: 450px;
        height: 450px;
    }

    .stack-card-3 {
        width: 580px;
        height: 580px;
    }

    .features-zigzag,
    .pricing-grid-tilt {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .hero-highlights {
        gap: 15px;
    }

    .hero-highlight-item {
        font-size: 14px;
    }

    .hero-trust {
        gap: 30px;
    }

    .trust-item strong {
        font-size: 26px;
    }

    .card-stack {
        width: 450px;
        height: 450px;
    }

    .stack-card-1 {
        width: 250px;
        height: 250px;
        padding: 50px 30px;
    }

    .stack-card-2 {
        width: 350px;
        height: 350px;
    }

    .stack-card-3 {
        width: 430px;
        height: 430px;
    }

    .card-stat {
        padding: 18px 25px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-coral,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .features-zigzag,
    .pricing-grid-tilt {
        grid-template-columns: 1fr;
    }

    /* Mobile responsive hero circles for tablets */
    .hero-circles .circle-1 {
        width: 180px;
        height: 180px;
        top: 8%;
        left: 3%;
        opacity: 0.45;
    }

    .hero-circles .circle-2 {
        width: 160px;
        height: 160px;
        bottom: 12%;
        right: 5%;
        opacity: 0.45;
    }

    .hero-circles .circle-3 {
        width: 120px;
        height: 120px;
        top: 35%;
        left: 2%;
        opacity: 0.4;
    }

    .hero-circles .circle-4 {
        width: 140px;
        height: 140px;
        top: 18%;
        right: 8%;
        opacity: 0.4;
    }

    .hero-circles .circle-5 {
        width: 100px;
        height: 100px;
        bottom: 22%;
        left: 10%;
        opacity: 0.45;
    }

    .hero-circles .circle-6 {
        width: 90px;
        height: 90px;
        top: 55%;
        right: 3%;
        opacity: 0.4;
    }

    .hero-circles .circle-7 {
        width: 70px;
        height: 70px;
        top: 3%;
        right: 20%;
        opacity: 0.5;
    }

    .hero-circles .circle-8 {
        width: 60px;
        height: 60px;
        bottom: 8%;
        left: 25%;
        opacity: 0.5;
    }

    /* Hide the smallest circles on tablets */
    .hero-circles .circle-9,
    .hero-circles .circle-10,
    .hero-circles .circle-11,
    .hero-circles .circle-12 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .card-stack {
        width: 280px;
        height: 280px;
    }

    .stack-card-1 {
        width: 240px;
        height: 240px;
        padding: 25px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    /* Compact content inside circle for mobile */
    .stack-card-1 .card-stat {
        display: block !important;
        padding: 5px 0;
        margin: 2px 0;
        text-align: center;
    }

    .stack-card-1 .card-stat-value {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .stack-card-1 .card-stat-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    /* Hide orbit rings on small mobile */
    .stack-card-2,
    .stack-card-3 {
        display: none;
    }

    /* Hide only floating badges outside center, NOT the center content */
    .card-stack>.card-stat,
    .stack-card-2 .card-stat,
    .stack-card-3 .card-stat {
        display: none !important;
    }

    /* Mobile adjustments for hero circles */
    .hero-circles .circle-1 {
        width: 120px;
        height: 120px;
        top: 5%;
        left: 2%;
        opacity: 0.4;
    }

    .hero-circles .circle-2 {
        width: 100px;
        height: 100px;
        bottom: 10%;
        right: 3%;
        opacity: 0.4;
    }

    .hero-circles .circle-3 {
        width: 80px;
        height: 80px;
        top: 30%;
        left: 0%;
        opacity: 0.35;
    }

    .hero-circles .circle-4 {
        width: 90px;
        height: 90px;
        top: 15%;
        right: 5%;
        opacity: 0.35;
    }

    .hero-circles .circle-5 {
        width: 70px;
        height: 70px;
        bottom: 20%;
        left: 8%;
        opacity: 0.4;
    }

    .hero-circles .circle-6 {
        width: 60px;
        height: 60px;
        top: 50%;
        right: 2%;
        opacity: 0.35;
    }

    /* Hide smaller circles on very small screens to reduce visual noise */
    .hero-circles .circle-7,
    .hero-circles .circle-8,
    .hero-circles .circle-9,
    .hero-circles .circle-10,
    .hero-circles .circle-11,
    .hero-circles .circle-12 {
        display: none;
    }
}