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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
}

/* ========== TRENDY TOP BAR ========== */
.trendy-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.topbar-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-trendy {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-2px) rotate(5deg); }
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* ========== DIAGONAL HERO SECTION ========== */
.diagonal-hero {
    min-height: 100vh;
    position: relative;
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%),
        radial-gradient(circle at 20% 80%, rgba(240, 147, 251, 0.3) 0%, transparent 50%);
    padding: 100px 0 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    color: white;
}

.badge-trendy {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title-trendy {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: highlightGlow 3s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    width: 160px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: cardFloat 6s ease-in-out infinite alternate;
    color: #333;
}

.float-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.float-card.card-2 {
    top: 45%;
    right: 20%;
    animation-delay: 2s;
    transform: rotate(8deg);
}

.float-card.card-3 {
    bottom: 15%;
    left: 30%;
    animation-delay: 4s;
    transform: rotate(-3deg);
}

@keyframes cardFloat {
    0% { transform: translateY(0px) rotate(var(--rotation, 0deg)); }
    100% { transform: translateY(-15px) rotate(calc(var(--rotation, 0deg) + 2deg)); }
}

.card-header {
    font-size: 1.1rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.card-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 5px;
}

.card-status {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.trendy-cta-btn {
    padding: 18px 40px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trendy-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(251, 191, 36, 0.5);
}

.btn-sparkle {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.trendy-cta-btn:hover .btn-sparkle {
    left: 100%;
}

/* ========== MASONRY GRID SECTION ========== */
.masonry-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trendy" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23trendy)"/></svg>');
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-trendy {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Large Feature Card */
.large-card {
    grid-column: span 2;
    grid-row: span 2;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: cardHover 8s ease-in-out infinite;
}

@keyframes cardHover {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.card-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.card-content {
    padding: 40px;
}

.card-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.large-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.large-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #10b981, #059669);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
}

/* Medium Cards */
.medium-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    animation: mediumFloat 10s ease-in-out infinite alternate;
}

.medium-card:nth-child(even) {
    animation-delay: 2s;
}

@keyframes mediumFloat {
    0% { transform: translateY(0px) rotateY(0deg); }
    100% { transform: translateY(-8px) rotateY(2deg); }
}

.medium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.medium-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.medium-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.medium-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Wide Card */
.wide-card {
    grid-column: span 2;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: wideFloat 12s ease-in-out infinite alternate;
}

@keyframes wideFloat {
    0% { transform: translateX(0px); }
    100% { transform: translateX(5px); }
}

.wide-card-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.wide-card-left {
    flex: 1;
}

.wide-card-left .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wide-card-left h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.wide-card-left p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.wide-card-right {
    width: 150px;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    0% { height: 0; }
    100% { height: var(--height, 50%); }
}

/* Small Cards */
.small-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: smallPulse 8s ease-in-out infinite alternate;
}

.small-card:nth-child(odd) {
    animation-delay: 1s;
}

@keyframes smallPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.small-card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.small-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.small-card-value {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tall Card */
.tall-card {
    grid-row: span 2;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    animation: tallSway 15s ease-in-out infinite alternate;
}

@keyframes tallSway {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(1deg); }
}

.tall-card-header {
    margin-bottom: 25px;
}

.tall-card-header .card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #06b6d4, #0891b2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tall-card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
}

.tall-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.processing-visual {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid #667eea;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 3s ease-in-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
    border-color: #764ba2;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
    border-color: #f093fb;
}

@keyframes pulseExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
}

.tall-card-body p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tall-card-footer {
    margin-top: 20px;
    text-align: center;
}

.performance-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========== FLOATING ACTION SECTION ========== */
.floating-action-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
    overflow: hidden;
}

.action-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.action-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.action-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 40px;
}

.floating-action-btn {
    padding: 20px 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(102, 126, 234, 0.5);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: rippleEffect 3s ease-in-out infinite;
}

@keyframes rippleEffect {
    0% { width: 0; height: 0; opacity: 1; }
    50% { width: 100px; height: 100px; opacity: 0.5; }
    100% { width: 200px; height: 200px; opacity: 0; }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: elementFloat 20s ease-in-out infinite;
}

.float-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.float-element.element-3 {
    bottom: 20%;
    left: 60%;
    animation-delay: 10s;
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.2; }
    75% { transform: translateY(-40px) rotate(270deg); opacity: 0.4; }
}

/* ========== STICKY BOTTOM BAR ========== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.bottom-info {
    display: flex;
    flex-direction: column;
}

.bottom-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
}

.bottom-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

.bottom-cta-btn {
    padding: 12px 24px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-cta-btn:hover {
    transform: scale(1.05);
}

/* ========== MOBILE RESPONSIVE - TRENDY STYLE ========== */
@media (max-width: 768px) {
    body {
        background: 
            linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%),
            linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
        background-size: 400% 400%, 100% 100%;
        animation: trendyMobileGradient 25s ease-in-out infinite;
    }

    @keyframes trendyMobileGradient {
        0% { background-position: 0% 50%, 0% 0%; }
        25% { background-position: 100% 50%, 0% 0%; }
        50% { background-position: 100% 100%, 0% 0%; }
        75% { background-position: 0% 100%, 0% 0%; }
        100% { background-position: 0% 50%, 0% 0%; }
    }

    /* Mobile Top Bar */
    .trendy-topbar {
        height: 60px;
        padding: 0;
    }

    .topbar-content {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .status-pill {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Mobile Hero - Single Column */
    .diagonal-hero {
        padding: 80px 0 60px;
        min-height: 100vh;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }

    .hero-title-trendy {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .float-card {
        width: 120px;
        height: 90px;
        padding: 15px;
    }

    .float-card.card-1 {
        top: 10%;
        left: 5%;
    }

    .float-card.card-2 {
        top: 40%;
        right: 10%;
    }

    .float-card.card-3 {
        bottom: 10%;
        left: 25%;
    }

    .card-header {
        font-size: 1rem;
    }

    .card-value {
        font-size: 1.2rem;
    }

    .trendy-cta-btn {
        width: 90%;
        max-width: 300px;
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    /* Mobile Masonry - Single Column */
    .masonry-section {
        padding: 60px 0;
    }

    .section-intro {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .section-title-trendy {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .large-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .wide-card {
        grid-column: span 1;
    }

    .wide-card-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .mini-chart {
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .card-content {
        padding: 25px;
    }

    .card-icon-large {
        font-size: 2.5rem;
    }

    .large-card h3 {
        font-size: 1.5rem;
    }

    .card-stats {
        gap: 20px;
        justify-content: center;
    }

    .medium-card,
    .small-card,
    .tall-card {
        padding: 20px;
    }

    /* Mobile Floating Action */
    .floating-action-section {
        padding: 60px 0 120px 0;
    }

    .action-container {
        padding: 0 20px;
    }

    .action-text h3 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .action-text p {
        font-size: 1rem;
    }

    .floating-action-btn {
        width: 90%;
        max-width: 300px;
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    /* Show Sticky Bottom Bar on Mobile */
    .sticky-bottom-bar {
        display: block;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title-trendy {
        font-size: 2rem;
    }

    .section-title-trendy {
        font-size: 1.8rem;
    }

    .action-text h3 {
        font-size: 1.6rem;
    }

    .float-card {
        width: 100px;
        height: 75px;
        padding: 12px;
    }

    .card-header {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .card-value {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .card-status {
        font-size: 0.65rem;
    }

    .trendy-cta-btn,
    .floating-action-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .masonry-grid {
        padding: 0 15px;
    }

    .card-content {
        padding: 20px;
    }
} 