/* ========================================
   INDOSILAT Landing Page Styles
   Bold Athletic Aesthetic - Maroon/Crimson + Gold
   Dark Theme with Indonesian Batik Patterns
   ======================================== */

/* Color Variables */
:root {
    --primary-maroon: #8B1538;
    --primary-crimson: #A91D3A;
    --primary-dark: #5C0E24;
    --gold-primary: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --dark-bg: #0D0D0D;
    --dark-secondary: #1A1A1A;
    --dark-tertiary: #252525;
    --text-light: #FFFFFF;
    --text-muted: #B0B0B0;
}

/* Override any parent container restrictions */
.main-container:has(.landing-page-wrapper) {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    background: var(--dark-bg);
}

.landing-page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--dark-bg);
}

.hero-landing,
.pain-section,
.solution-section,
.features-section,
.benefits-section,
.cta-section {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    height: auto !important;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
}

/* Ensure content block has no restrictions */
body .hero-landing,
body .pain-section,
body .solution-section,
body .features-section,
body .benefits-section,
body .cta-section {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Fix for row and columns */
.pain-section .row,
.solution-section .row,
.features-section .row,
.benefits-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100%;
}

.pain-section [class*="col-"],
.solution-section [class*="col-"],
.features-section [class*="col-"],
.benefits-section [class*="col-"] {
    display: flex !important;
    flex-direction: column;
}

/* Hero Section */
.hero-landing {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.08'%3E%3Cpath d='M0 50h100M50 0v100'/%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3Cpath d='M25 25l50 50M75 25l-50 50'/%3E%3Cpath d='M50 20l15 30-15 30-15-30z'/%3E%3C/g%3E%3C/svg%3E");
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-landing::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139, 21, 56, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.hero-title-main {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title-main span {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle-main {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-crimson) 0%, var(--primary-maroon) 100%);
    border: none;
    padding: 1.1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.5);
    color: white;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-outline-custom {
    border: 2px solid var(--gold-primary);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.stats-box {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(212, 175, 55, 0.2);
    animation: heroImageFloat 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 
                0 0 0 2px rgba(212, 175, 55, 0.4);
}

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

/* Hero Image Glow Effect */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(139, 21, 56, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* Section Common */
.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Force all rows to show all items */
.pain-section .row.g-4,
.solution-section .row.g-4,
.features-section .row.g-4,
.benefits-section .row.g-4 {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.pain-section .row.g-4 > [class*="col-"],
.solution-section .row.g-4 > [class*="col-"],
.features-section .row.g-4 > [class*="col-"],
.benefits-section .row.g-4 > [class*="col-"] {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Pain Points Section */
.pain-section {
    background: var(--dark-secondary);
    padding: 6rem 0;
    position: relative;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.05'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3Ccircle cx='30' cy='30' r='15'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.pain-section .row {
    display: flex;
    flex-wrap: wrap;
}

.pain-card {
    background: var(--dark-tertiary);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-crimson), var(--primary-maroon));
    transition: height 0.4s ease;
}

.pain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.pain-card:hover::before {
    height: 100%;
}

.pain-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-crimson) 0%, var(--primary-maroon) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
    transition: all 0.4s ease;
}

.pain-card:hover .pain-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(139, 21, 56, 0.5);
}

.pain-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.pain-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.pain-desc {
    color: #94a3b8;
    /* color: var(--text-muted); */
    line-height: 1.7;
    font-size: 0.95rem;
    
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-maroon) 50%, var(--primary-crimson) 100%);
    padding: 6rem 0;
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.5' opacity='0.1'%3E%3Cpath d='M0 40h80M40 0v80'/%3E%3Ccircle cx='40' cy='40' r='25'/%3E%3Cpath d='M20 20l40 40M60 20l-40 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.solution-section .row {
    display: flex;
    flex-wrap: wrap;
}

.solution-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.solution-card:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--gold-primary);
}

.solution-card:hover::after {
    transform: scaleX(1);
}

.solution-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    transform: rotateY(180deg);
}

.solution-icon svg {
    width: 30px;
    height: 30px;
    color: var(--dark-bg);
}

.solution-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.solution-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    background: var(--dark-bg);
    padding: 6rem 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.05'%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3Ccircle cx='50' cy='50' r='35'/%3E%3Cpath d='M25 25l50 50M75 25l-50 50'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.features-section .row > [class*="col-"] {
    display: flex;
    margin-bottom: 1.5rem;
}

.feature-main-card {
    background: var(--dark-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-main-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.feature-content {
    padding: 2.5rem;
}

.feature-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: var(--text-light);
    padding-left: 0.5rem;
}

.feature-list li svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.feature-icon-box {
    background: var(--dark-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    min-height: 300px;
}

.feature-icon-box svg {
    width: 120px;
    height: 120px;
    color: var(--primary-crimson);
}

/* Benefits Section */
.benefits-section {
    background: var(--dark-secondary);
    padding: 6rem 0;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.05'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.benefits-section .row {
    display: flex;
    flex-wrap: wrap;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-crimson), var(--primary-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.4);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), transparent, var(--gold-primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.benefit-desc {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-maroon) 50%, var(--primary-crimson) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='0.5' opacity='0.15'%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Cpath d='M25 25l50 50M75 25l-50 50'/%3E%3Cpath d='M50 15l20 35-20 35-20-35z'/%3E%3C/g%3E%3C/svg%3E");
    animation: patternFloat 15s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--dark-bg);
    padding: 1.2rem 3rem;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
    color: var(--dark-bg);
}

/* Responsive */
@media (max-width: 992px) {
    .features-section .row > .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-title-main {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
        padding: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1rem;
    }
    
    .stats-box {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 1 1 40%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-number {
        font-size: 3rem;
    }
    
    .pain-section .col-md-6,
    .pain-section .col-lg-4,
    .solution-section .col-md-6,
    .solution-section .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .benefits-section .col-md-6,
    .benefits-section .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title-main {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .stats-box {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .benefits-section .col-md-6,
    .benefits-section .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scroll & Global Animations */
html {
    scroll-behavior: smooth;
}

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

.pain-card,
.solution-card,
.feature-main-card,
.benefit-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.row > *:nth-child(1) { animation-delay: 0.1s; }
.row > *:nth-child(2) { animation-delay: 0.2s; }
.row > *:nth-child(3) { animation-delay: 0.3s; }
.row > *:nth-child(4) { animation-delay: 0.4s; }
.row > *:nth-child(5) { animation-delay: 0.5s; }
.row > *:nth-child(6) { animation-delay: 0.6s; }
