/**
 * Premium Homepage Styles
 * Unique, creative, professional design
 */

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0052CC 0%, #0B84FF 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FFB800 0%, #FFD700 100%);
    top: 30%;
    right: 20%;
    animation-delay: 9s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #6f42c1 0%, #9d7ce8 100%);
    bottom: 40%;
    right: 5%;
    animation-delay: 12s;
}

.shape-6 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e83e8c 0%, #ff6b9d 100%);
    top: 70%;
    left: 25%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg) scale(1.05);
    }
}

/* Hero Section Premium */
.hero-section-premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    z-index: 1;
    padding: 140px 0 100px;
    overflow: visible;
}

.hero-premium-wrapper {
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(5, 82, 204, 0.2);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: slideInDown 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0052CC 0%, #0B84FF 100%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #002966;
    letter-spacing: 0.5px;
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title */
.hero-title-premium {
    position: relative;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #002966;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.title-gradient {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #0052CC 0%, #0B84FF 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: gradientReveal 2s ease-out 0.5s forwards;
}

@keyframes gradientReveal {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description */
.hero-description-premium {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Actions */
.hero-actions-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #0052CC 0%, #0B84FF 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(5, 82, 204, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(5, 82, 204, 0.5);
    color: white;
}

.btn-hero-primary .btn-icon {
    display: flex;
    align-items: center;
    z-index: 2;
}

.btn-hero-primary .btn-text {
    z-index: 2;
    position: relative;
}

.btn-hero-primary .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%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: white;
    color: #0052CC;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 16px;
    border: 2px solid #0052CC;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-hero-secondary:hover {
    background: #0052CC;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5, 82, 204, 0.3);
}

/* Hero Stats */
.hero-stats-premium {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(5, 82, 204, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease-out 0.8s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-icon-small {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #0052CC 0%, #0B84FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(5, 82, 204, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0052CC 0%, #0B84FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #e0e0e0, transparent);
}

/* Hero Visual */
.hero-visual-premium {
    position: relative;
    height: 600px;
    animation: fadeInRight 1s ease-out 0.3s both;
    overflow: hidden;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(5, 82, 204, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}


.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 82, 204, 0.05) 0%, rgba(11, 132, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(5, 82, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.visual-card:hover .card-glow {
    opacity: 1;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(5, 82, 204, 0.25);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0052CC 0%, #0B84FF 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(5, 82, 204, 0.3);
    transition: all 0.4s;
}

.visual-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(5, 82, 204, 0.4);
}

.visual-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #002966;
    margin-bottom: 12px;
}

.visual-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    top: 150px;
    right: 0;
    width: 280px;
    animation: cardFloat2 8s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    animation: cardFloat3 7s ease-in-out infinite;
}


@keyframes cardFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(2deg);
    }
}

@keyframes cardFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(-2deg);
    }
}

@keyframes cardFloat3 {
    0%, 100% {
        transform: translate(-50%, 0) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -15px) rotate(1deg);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.4;
    animation: floatElement 15s infinite ease-in-out;
}

.elem-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.elem-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 5s;
}

.elem-3 {
    top: 50%;
    left: 5%;
    animation-delay: 10s;
}

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

/* Shortener Card Premium */
.shortener-section-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.shortener-card-premium {
    background: white;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 82, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.shortener-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0052CC 0%, #0B84FF 50%, #FF6B35 100%);
}

/* Ad Sections Premium */
.ad-section-premium,
.ad-video-section-premium,
.ad-bottom-section-premium {
    padding: 40px 0;
}

.ad-banner-premium,
.ad-video-premium {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(5, 82, 204, 0.1);
    margin-bottom: 30px;
}

.ad-label-premium {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ad-content-premium,
.ad-video-content {
    position: relative;
}

/* Stats Section Premium */
.stats-section-premium {
    position: relative;
}

.stats-boxed-card {
    background: white;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 82, 204, 0.1);
}

/* Capabilities Section Premium */
.capabilities-section-premium {
    position: relative;
}

.capabilities-boxed-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 82, 204, 0.1);
}

/* Features Section Premium */
.features-section-premium {
    position: relative;
}

.features-boxed-card {
    background: white;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 82, 204, 0.1);
}

/* Integrations Section Premium */
.integrations-section-premium {
    position: relative;
}

.integrations-boxed-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 82, 204, 0.1);
}

/* About Section Premium */
.about-section-premium {
    position: relative;
}

.about-boxed-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(5, 82, 204, 0.1);
}

/* CTA Section Premium */
.cta-section-premium {
    position: relative;
}

.cta-card-boxed {
    background: white;
    border-radius: 32px;
    padding: 80px 60px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(5, 82, 204, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-visual-premium {
        height: 500px;
    }
    
    .card-1, .card-2, .card-3 {
        width: 240px;
    }
}

@media (max-width: 992px) {
    .hero-visual-premium {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        margin-top: 50px !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 25px !important;
        padding: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .floating-element {
        display: none !important;
    }
    
    .hero-visual-premium .floating-element {
        display: none !important;
    }
    
    .hero-visual-premium .visual-card,
    .hero-visual-premium .visual-card.card-1,
    .hero-visual-premium .visual-card.card-2,
    .hero-visual-premium .visual-card.card-3 {
        position: relative !important;
        margin: 0 0 25px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
        z-index: auto !important;
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        align-self: stretch !important;
        overflow: visible !important;
        clear: both !important;
        float: none !important;
    }
    
    .hero-visual-premium .visual-card.card-1 {
        order: 1 !important;
    }
    
    .hero-visual-premium .visual-card.card-2 {
        order: 2 !important;
    }
    
    .hero-visual-premium .visual-card.card-3 {
        order: 3 !important;
        margin-bottom: 0 !important;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
    }
    
    .hero-visual-premium .visual-card::before {
        display: none !important;
    }
    
    .hero-visual-premium .card-glow {
        display: none !important;
    }
    
    .hero-visual-premium .visual-card:hover {
        transform: none !important;
    }
    
    .hero-visual-premium .visual-card:hover .card-icon {
        transform: none !important;
    }
    
    .hero-visual-premium .visual-card .card-content {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
    }
    
    .hero-stats-premium {
        justify-content: space-around;
        padding: 20px 15px !important;
        gap: 15px !important;
    }
    
    .stat-item {
        min-width: auto !important;
        flex: 0 1 auto !important;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section-premium {
        padding: 100px 0 60px !important;
        overflow: visible !important;
    }
    
    .hero-section-premium .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }
    
    .hero-section-premium .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-section-premium .row.g-5 {
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
    }
    
    .hero-section-premium .col-xxl-10,
    .hero-section-premium .col-xl-11,
    .hero-section-premium .col-lg-6,
    .hero-section-premium .col-xl-5,
    .hero-section-premium .col-xl-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .hero-premium-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .hero-content-premium {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 30px !important;
    }
    
    .title-line-1,
    .title-gradient {
        font-size: 2.5rem !important;
    }
    
    .hero-description-premium {
        font-size: 1.1rem !important;
        max-width: 100% !important;
    }
    
    .hero-actions-premium {
        flex-direction: column;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-premium {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 25px 20px !important;
        margin-top: 30px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .stat-item {
        width: 100% !important;
        flex: none !important;
        min-width: auto !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(5, 82, 204, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    .shortener-card-premium {
        padding: 40px 20px !important;
    }
    
    .features-boxed-card,
    .stats-boxed-card,
    .capabilities-boxed-card,
    .integrations-boxed-card,
    .about-boxed-card,
    .cta-card-boxed {
        padding: 40px 20px !important;
        border-radius: 20px !important;
    }
    
    .hero-visual-premium {
        height: auto !important;
        min-height: auto !important;
        margin-top: 30px !important;
        padding: 0 !important;
        width: 100% !important;
        position: relative !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .visual-card {
        position: relative !important;
        margin: 0 0 25px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
        clear: both !important;
        float: none !important;
        padding: 25px 20px !important;
        box-sizing: border-box !important;
        z-index: auto !important;
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        align-self: stretch !important;
        overflow: visible !important;
    }
    
    .card-1 {
        position: relative !important;
        margin: 0 0 25px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
        z-index: auto !important;
        order: 1 !important;
    }
    
    .card-2 {
        position: relative !important;
        margin: 0 0 25px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
        z-index: auto !important;
        order: 2 !important;
    }
    
    .card-3 {
        position: relative !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
        z-index: auto !important;
        order: 3 !important;
    }
    
    .visual-card::before {
        display: none !important;
    }
    
    .card-glow {
        display: none !important;
    }
    
    .visual-card:hover {
        transform: none !important;
    }
    
    .visual-card:hover .card-icon {
        transform: none !important;
    }
    
    .visual-card .card-content {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
    }
    
    .visual-card h4 {
        font-size: 1.3rem !important;
    }
    
    .visual-card p {
        font-size: 0.95rem !important;
    }
    
    .card-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.75rem !important;
    }
    
    .feature-card {
        margin-bottom: 2rem !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
        background: #f8f9fa !important;
        border: 1px solid #e9ecef !important;
        position: relative !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .row.g-4 > [class*="col-"] {
        margin-bottom: 1.5rem !important;
    }
    
    .features-boxed-card .row.g-4 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .features-boxed-card .row.g-4 > [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .stats-section-boxed {
        padding: 40px 0 !important;
    }
    
    .stats-boxed-card {
        padding: 30px 20px !important;
    }
    
    .stat-card-boxed {
        padding: 20px 15px !important;
    }
    
    .stat-icon-boxed {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .stat-number-boxed {
        font-size: 2rem !important;
    }
    
    .capability-card {
        padding: 24px 20px !important;
    }
    
    .capability-card > div[style*="width: 64px"] {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 16px !important;
    }
    
    .feature-card {
        padding: 20px 15px !important;
    }
    
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 16px !important;
    }
    
    .feature-card h4 {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }
    
    .feature-card p {
        font-size: 0.9rem !important;
    }
    
    .shortener-section-premium {
        padding: 40px 0 !important;
    }
    
    .shortener-card-premium {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 576px) {
    .hero-section-premium {
        padding: 80px 0 40px !important;
    }
    
    .hero-section-premium .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
        max-width: 100% !important;
    }
    
    .hero-section-premium .col-xxl-10,
    .hero-section-premium .col-xl-11,
    .hero-section-premium .col-lg-6,
    .hero-section-premium .col-xl-5,
    .hero-section-premium .col-xl-7 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .title-line-1,
    .title-gradient {
        font-size: 2rem !important;
    }
    
    .hero-description-premium {
        font-size: 1rem !important;
    }
    
    .hero-stats-premium {
        padding: 20px 15px !important;
        gap: 15px !important;
        margin-top: 25px !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
    
    .hero-visual-premium {
        gap: 20px !important;
        margin-top: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        overflow: visible !important;
        height: auto !important;
        min-height: auto !important;
    }
    
    .hero-visual-premium > *:not(.visual-card) {
        display: none !important;
    }
    
    .hero-visual-premium .visual-card,
    .hero-visual-premium .visual-card.card-1,
    .hero-visual-premium .visual-card.card-2,
    .hero-visual-premium .visual-card.card-3 {
        padding: 20px 15px !important;
        margin: 0 0 20px 0 !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
        z-index: auto !important;
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        align-self: stretch !important;
        overflow: visible !important;
        clear: both !important;
        float: none !important;
    }
    
    .hero-visual-premium .visual-card.card-1 {
        order: 1 !important;
    }
    
    .hero-visual-premium .visual-card.card-2 {
        order: 2 !important;
    }
    
    .hero-visual-premium .visual-card.card-3 {
        order: 3 !important;
        margin-bottom: 0 !important;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none !important;
        animation-name: none !important;
    }
    
    .hero-visual-premium .visual-card::before {
        display: none !important;
    }
    
    .hero-visual-premium .card-glow {
        display: none !important;
    }
    
    .hero-visual-premium .visual-card:hover {
        transform: none !important;
    }
    
    .hero-visual-premium .visual-card:hover .card-icon {
        transform: none !important;
    }
    
    .hero-visual-premium .visual-card .card-content {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
    }
    
    .card-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .visual-card h4 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .visual-card p {
        font-size: 0.9rem !important;
    }
    
    .stats-section-boxed {
        padding: 30px 0 !important;
    }
    
    .stats-boxed-card {
        padding: 20px 15px !important;
    }
    
    .stat-card-boxed {
        padding: 15px 10px !important;
    }
    
    .stat-icon-boxed {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }
    
    .stat-number-boxed {
        font-size: 1.75rem !important;
        margin: 12px 0 !important;
    }
    
    .stat-card-boxed p {
        font-size: 0.8rem !important;
    }
    
    .capabilities-section-premium {
        padding: 50px 0 !important;
    }
    
    .capability-card {
        padding: 20px 15px !important;
    }
    
    .capability-card > div[style*="width: 64px"] {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
    }
    
    .capability-card h4 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .capability-card p {
        font-size: 0.85rem !important;
    }
    
    .features-section-premium {
        padding: 50px 0 !important;
    }
    
    .features-boxed-card {
        padding: 30px 15px !important;
    }
    
    .feature-card {
        margin-bottom: 1.5rem !important;
        padding: 1.25rem !important;
    }
    
    .feature-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.25rem !important;
        margin-bottom: 12px !important;
    }
    
    .feature-card h4 {
        font-size: 1rem !important;
        margin-bottom: 10px !important;
    }
    
    .feature-card p {
        font-size: 0.85rem !important;
    }
    
    .shortener-section-premium {
        padding: 30px 0 !important;
    }
    
    .stat-icon-small {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
        margin-bottom: 8px !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem !important;
    }
    
    .shortener-card-premium {
        padding: 30px 15px !important;
        margin-bottom: 20px !important;
    }
}

