/* Case Study Specific Styles */

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background: #E91E63;
    color: white;
    border-color: #E91E63;
}

.filter-tab.active {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: white;
    border-color: #E91E63;
}

/* Case Studies Grid */
.case-studies-grid-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.case-study-card.featured {
    border: 3px solid #E91E63;
    position: relative;
}

.case-study-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-study-image {
    position: relative;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder.nightclub-bg {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.venue-name {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.case-study-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-study-content {
    padding: 3rem;
}

.case-study-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.case-study-content h2 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-study-content h2 a:hover {
    color: #E91E63;
}

.case-study-excerpt {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.case-study-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-item i {
    font-size: 2rem;
    color: #E91E63;
}

.highlight-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.highlight-item span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.case-study-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

.tag i {
    color: #E91E63;
}

/* Coming Soon Section */
.coming-soon-grid {
    margin-top: 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.coming-soon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coming-soon-card {
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    border: 2px dashed #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    border-color: #E91E63;
    transform: translateY(-5px);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.coming-soon-icon i {
    font-size: 2.5rem;
    color: #E91E63;
}

.coming-soon-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.coming-soon-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.coming-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
}

/* Benefits Overview */
.benefits-overview {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Share Story Section */
.share-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.share-content {
    max-width: 700px;
    margin: 0 auto;
}

.share-content i {
    font-size: 4rem;
    color: #E91E63;
    margin-bottom: 2rem;
}

.share-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.share-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* Hero Section */
.case-study-hero {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    padding: 8rem 0 6rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L50 50L0 100" stroke="rgba(255,255,255,0.1)" fill="none"/><path d="M50 0L100 50L50 100" stroke="rgba(255,255,255,0.1)" fill="none"/></svg>');
    opacity: 0.3;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.7rem;
}

.breadcrumb span {
    color: white;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.case-study-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 900px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Client Overview */
.client-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.client-details {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.detail-item i {
    font-size: 1.5rem;
    color: #E91E63;
    margin-top: 0.2rem;
    min-width: 24px;
}

.detail-item strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.detail-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.detail-item a {
    color: #E91E63;
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.overview-image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Case Study Sections */
.case-study-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E91E63;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Challenge Section */
.challenge-section {
    background: white;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.challenge-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #E91E63;
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.challenge-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.challenge-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Solution Section */
.solution-section {
    background: #f8f9fa;
}

.solution-features {
    display: grid;
    gap: 3rem;
}

.solution-feature {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.solution-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.solution-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.solution-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.solution-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #444;
}

.solution-benefit i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Results Section */
.results-section {
    background: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #E91E63;
}

.result-card.primary-result {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    color: white;
    border: none;
}

.result-card.primary-result .result-icon {
    background: rgba(255, 255, 255, 0.2);
}

.result-card.primary-result h3,
.result-card.primary-result p {
    color: white;
}

.result-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.result-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.result-breakdown {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item:last-child {
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.breakdown-label,
.breakdown-value {
    font-size: 1.05rem;
}

.breakdown-item.highlight {
    font-size: 1.2rem;
}

.result-stat {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.result-card.primary-result .result-stat {
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #E91E63;
    margin-bottom: 0.5rem;
}

.result-card.primary-result .stat-number {
    color: white;
}

.stat-description {
    display: block;
    font-size: 1rem;
    color: #666;
}

.result-card.primary-result .stat-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Quote Section */
.quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quote-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 3rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

blockquote {
    margin: 0;
    padding: 0;
}

blockquote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 2rem;
}

.quote-attribution {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.quote-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.quote-author span {
    display: block;
    font-size: 0.95rem;
    color: #666;
}

/* Takeaways Section */
.takeaways-section {
    background: white;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.takeaway-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid #E91E63;
}

.takeaway-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.takeaway-card h3 i {
    color: #4CAF50;
    font-size: 1.4rem;
}

.takeaway-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Technologies Section */
.technologies-section {
    background: #f8f9fa;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #E91E63;
}

.tech-card i {
    font-size: 2.5rem;
    color: #E91E63;
    margin-bottom: 1rem;
}

.tech-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Case Study CTA */
.case-study-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.case-study-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.case-study-cta > .container > p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.05rem;
}

.cta-benefit i {
    color: #4CAF50;
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

/* More Case Studies */
.more-case-studies {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.more-case-studies h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.coming-soon {
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon i {
    font-size: 3rem;
    color: #E91E63;
    margin-bottom: 1.5rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid,
    .solution-feature {
        grid-template-columns: 1fr;
    }
    
    .overview-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .case-study-hero {
        padding: 6rem 0 4rem;
    }
    
    .case-study-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .challenges-grid,
    .takeaways-grid,
    .technologies-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card.primary-result {
        grid-column: 1;
    }
    
    .quote-card {
        padding: 2rem;
    }
    
    blockquote p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}