/* ========================================
   SR Music Group - Style Sheet
   Version: 7.0.0
   Last Updated: 2025-01-23
======================================== */

/* ========================================
   CSS Variables
======================================== */
:root {
    /* Dashboard-matching colors */
    --color-primary: #0B4C8C;
    --color-primary-dark: #083a6d;
    --color-primary-light: rgba(11, 76, 140, 0.1);
    --color-secondary: #FFD700;
    --color-secondary-dark: #FFC700;
    
    --color-white: #FFFFFF;
    --color-black: #1a202c;
    --color-gray-dark: #374151;
    --color-gray-medium: #64748b;
    --color-gray-light: #f8f9fb;
    --color-border: #e2e8f0;
    
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(11, 76, 140, 0.1);
    --shadow-lg: 0 8px 24px rgba(11, 76, 140, 0.15);
}

/* ========================================
   Global Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: #1a202c;
    background-color: #f5f7fa;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   Utility Classes
======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

.section {
    padding: var(--spacing-md) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--spacing-lg) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1a202c;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: 1fr;
}


@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
}

/* Card Component */
.card {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 10px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(11, 76, 140, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-color: #0B4C8C;
}

/* Button Component */
.btn {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: var(--color-white);
    border-color: #0B4C8C;
    box-shadow: 0 2px 8px rgba(11, 76, 140, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #083a6d 0%, #062d54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 76, 140, 0.3);
    border-color: #083a6d;
}


.btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        padding: 0.75rem 1.75rem;
    }
}

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: var(--transition);
    position: relative;
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

.navbar::after {
    display: none;
}

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

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    height: 100%;
}

.logo-img {
    height: 55px;
    width: 55px;
    object-fit: cover;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    white-space: nowrap;
}

.sr-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (min-width: 768px) {
    .logo-img {
        height: 65px;
        width: 65px;
    }
    
    .logo-text {
        font-size: 1.625rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 48px;
        width: 48px;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
}

.nav-menu {
    display: none;
    gap: var(--spacing-md);
    align-items: center;
    list-style: none;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex !important;
        align-items: center;
        margin-left: var(--spacing-xl);
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    margin-left: var(--spacing-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}


@media (max-width: 767px) {
    .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .nav-link.nav-btn {
        margin-left: 0;
        margin-top: var(--spacing-sm);
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10001 !important;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none !important;
    }
    
    .nav-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* Ensure mobile toggle is always visible on small screens */
@media (max-width: 767px) {
    .mobile-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.mobile-toggle.active .hamburger:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
        flex-direction: column;
        padding: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
        align-items: stretch;
        z-index: 10000 !important;
        display: flex !important;
        visibility: hidden;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex !important;
        align-items: stretch;
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
        z-index: 10000 !important;
    }
    
    .nav-menu.active li {
        pointer-events: auto !important;
    }
    
    .nav-menu.active .nav-link {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .nav-link {
        padding: var(--spacing-sm) 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.9);
        display: block !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        min-height: 44px;
        display: flex !important;
        align-items: center;
        touch-action: manipulation;
        cursor: pointer;
        pointer-events: auto !important;
        position: relative;
        z-index: 10001 !important;
        text-decoration: none;
        width: 100%;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:active {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .nav-menu li {
        pointer-events: auto !important;
        position: relative;
        z-index: 10001 !important;
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 767px) {
        .mobile-toggle {
            cursor: pointer;
            -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
            z-index: 10001 !important;
        }
        
        .nav-menu {
            -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
            z-index: 10000 !important;
        }
        
        .nav-menu.active {
            -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
            z-index: 10000 !important;
        }
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding-top: calc(var(--spacing-lg) + 65px);
    padding-bottom: var(--spacing-lg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 76, 140, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(11, 76, 140, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero {
        padding-top: calc(var(--spacing-xl) + 65px);
        padding-bottom: var(--spacing-xl);
        min-height: 80vh;
    }
    
    .hero::before {
        width: 500px;
        height: 500px;
        top: -200px;
        right: -200px;
    }
    
    .hero::after {
        width: 400px;
        height: 400px;
        bottom: -150px;
        left: -150px;
    }
}

/* Animated Background Elements */
.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


/* Ensure content is above animated background */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--spacing-md);
    align-items: center;
}

/* Mobile: Image on top */
.hero-text {
    order: 2;
}


/* Desktop: Image on right (original layout) */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--spacing-xl);
    }
    
    .hero-text {
        order: 1;
    }
    
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #1a202c;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 90%;
    font-weight: 400;
}


@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 85%;
        margin-bottom: 2.5rem;
        line-height: 1.75;
    }
}

.hero-platforms {
    display: none;
}


.platform-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    background-color: var(--color-white);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.platform-icon:hover {
    background: #f8f9fb;
    border-color: #0B4C8C;
    box-shadow: 0 4px 12px rgba(11, 76, 140, 0.15);
    transform: translateY(-2px);
}

.platform-icon i {
    font-size: 1.25rem;
}

.platform-icon span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* YouTube - Red */
.platform-youtube {
    color: #FF0000;
}

.platform-youtube i,
.platform-youtube span {
    color: #FF0000;
}

.platform-youtube:hover {
    background-color: #FF0000;
    color: var(--color-white);
    border-color: #FF0000;
}

.platform-youtube:hover i,
.platform-youtube:hover span {
    color: var(--color-white);
}

/* Facebook - Blue */
.platform-facebook {
    color: #1877F2;
}

.platform-facebook i,
.platform-facebook span {
    color: #1877F2;
}

.platform-facebook:hover {
    background-color: #1877F2;
    color: var(--color-white);
    border-color: #1877F2;
}

.platform-facebook:hover i,
.platform-facebook:hover span {
    color: var(--color-white);
}

/* Instagram - Gradient Colors */
.platform-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: #E1306C;
}

.platform-instagram i,
.platform-instagram span {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--color-white);
    border-color: #E1306C;
}

.platform-instagram:hover i,
.platform-instagram:hover span {
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--color-white);
}




/* ========================================
   Section Separator
======================================== */

/* ========================================
   Announcement Banner
======================================== */
.announcement-banner {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    padding: var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.announcement-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

.announcement-banner::after {
    display: none;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.banner-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 1.375rem;
        font-weight: 700;
    }
}

.banner-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    margin: 0;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .banner-subtitle {
        font-size: 1rem;
    }
}

.banner-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    justify-content: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .banner-logo-wrapper {
        justify-content: flex-start;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

.banner-message {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .banner-message {
        margin-top: 0.75rem;
    }
}

.banner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .banner-logo {
        height: 50px;
    }
}

.banner-brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.banner-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .banner-brand-name {
        font-size: 1.75rem;
    }
}

.banner-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .banner-tagline {
        font-size: 0.875rem;
    }
}

.btn-banner {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: #ffffff;
    border: 1px solid #0B4C8C;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(11, 76, 140, 0.2);
    padding: 0.625rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-banner:hover {
    background: linear-gradient(135deg, #083a6d 0%, #062d54 100%);
    border-color: #083a6d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 76, 140, 0.3);
}

.btn-banner i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-banner:hover i {
    transform: translateX(4px);
}

/* ========================================
   Boost Revenue Section
======================================== */

/* ========================================
   Services Section
======================================== */

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: #1a202c;
}

.card-text {
    color: #64748b;
    line-height: 1.6;
}


/* ========================================
   Rights Management Section
======================================== */

/* ========================================
   Benefits Section
======================================== */
.benefits {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-top: 1px solid #e2e8f0;
}

.benefit-card {
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    color: #1a202c;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(11, 76, 140, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(11, 76, 140, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: white;
    border-radius: 50%;
    border: 1px solid rgba(11, 76, 140, 0.2);
    box-shadow: 0 4px 12px rgba(11, 76, 140, 0.15);
}

.benefit-icon i {
    font-size: 1.75rem;
}

.benefit-card .card-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Mission Section
======================================== */
.mission {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-top: 1px solid #e2e8f0;
}

.mission-content {
    display: grid;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 768px) {
    .mission-content {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--spacing-lg);
    }
}

.mission-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.mission-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}


/* ========================================
   Creators Announcement Banner
======================================== */
.creators-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: var(--spacing-md) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.creators-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.creators-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.creators-banner .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .creators-banner .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.creators-banner .banner-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .creators-banner .banner-title {
        font-size: 1.75rem;
    }
}

.creators-banner .banner-subtitle {
    font-size: 1rem;
    color: var(--color-white);
    opacity: 0.9;
    margin: 0;
}

@media (min-width: 768px) {
    .creators-banner .banner-subtitle {
        font-size: 1.125rem;
    }
}

.creators-banner .btn-banner {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.creators-banner .btn-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
    color: white;
}

.creators-banner .btn-banner i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.creators-banner .btn-banner:hover i {
    transform: translateX(4px);
}


/* ========================================
   Team Section
======================================== */
/* Team grid: 3 cards centered */

.team-card {
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    color: #1a202c;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.team-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(11, 76, 140, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: rgba(11, 76, 140, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.team-card > * {
    position: relative;
    z-index: 2;
}

.team-image {
    margin-bottom: var(--spacing-sm);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}


.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1a202c;
}

.team-name a {
    color: #1a202c;
    text-decoration: none;
    transition: var(--transition);
}

.team-name a:hover {
    color: #0B4C8C;
    text-decoration: underline;
}

.team-name a.javed-link {
    color: #1a202c;
}

.team-name a.javed-link:hover {
    color: #0B4C8C;
    text-decoration: underline;
}


.team-image a {
    display: block;
    transition: var(--transition);
}

.team-image a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.team-role {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.team-bio {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: linear-gradient(to bottom right, #ffffff, #f8f9fb);
    border-top: 1px solid #e2e8f0;
}

.contact-content {
    display: grid;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

.contact-form-wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: var(--spacing-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
    color: #64748b;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #ffffff;
    color: #1a202c;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.form-select option {
    background-color: #ffffff;
    color: #1a202c;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #0B4C8C;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(11, 76, 140, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a202c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.form-select option {
    padding: 0.5rem;
}

.form-textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: #ffffff;
    border-radius: 6px;
}

.contact-icon i {
    font-size: 1.25rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: #1a202c;
}

.contact-info-item p {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(135deg, #0B4C8C 0%, #083a6d 100%);
    color: #ffffff;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    z-index: 1;
}

.footer::after {
    display: none;
}

.footer-content {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .footer-logo-img {
        height: 60px;
        width: 60px;
    }
    
    .footer-logo-text {
        font-size: 1.5rem;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--spacing-sm) 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.developer-credit {
    color: var(--color-white) !important;
    font-size: 0.875rem;
}

.developer-credit .fa-heart {
    color: #FFD700; /* Yellow color to match the link */
    margin: 0 0.25rem;
    font-size: 0.75rem;
}

.developer-credit a {
    color: #FFD700 !important; /* Yellow color */
    text-decoration: none;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: white !important; /* White on hover */
    text-decoration: underline;
}

/* ========================================
   Animations
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transitions for all interactive elements */
button,
a,
.card {
    transition: var(--transition);
}

/* ========================================
   Accessibility
======================================== */
*:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .navbar,
    .mobile-toggle,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ========================================
   Mobile Responsive Styles - Index Page
======================================== */

/* Base Mobile Styles */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0 !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: calc(65px + 1rem) !important;
        padding-bottom: 2rem !important;
        min-height: auto !important;
    }
    
    .hero-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-platforms {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: stretch !important;
    }
    
    .platform-icon {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8125rem !important;
    }
    
    
    
    /* Announcement Banner Mobile */
    .announcement-banner {
        padding: 1.5rem 0 !important;
    }
    
    .banner-content {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    .banner-logo-wrapper {
        justify-content: center !important;
        margin-bottom: 0.75rem !important;
    }
    
    .banner-logo {
        width: 48px !important;
        height: 48px !important;
    }
    
    .banner-title {
        font-size: 1.125rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .banner-subtitle {
        font-size: 0.8125rem !important;
    }
    
    .btn-banner {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.875rem !important;
        justify-content: center !important;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 0.625rem 1rem !important;
        font-size: 0.875rem !important;
        min-height: 44px !important;
    }
    
    .btn-primary,
    .btn-banner {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .section-subtitle {
        font-size: 0.875rem !important;
        line-height: 1.6 !important;
    }
    
    /* Cards Mobile */
    .card,
    .benefit-card,
    .team-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.75rem !important;
        font-size: 16px !important;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 1.5rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.25rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.8125rem !important;
    }
    
    .btn {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.8125rem !important;
    }
    
    .section-title {
        font-size: 1.25rem !important;
    }
    
    .card {
        padding: 0.875rem !important;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .section {
        padding: 1rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.125rem !important;
    }
    
    .btn {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
}

/* Override Inline Styles for Mobile */
@media (max-width: 767px) {
    /* Force mobile-friendly styles on all inline-styled elements */
    [style*="font-size: 2.5rem"],
    [style*="font-size:2.5rem"] {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    [style*="font-size: 2rem"],
    [style*="font-size:2rem"] {
        font-size: 1.25rem !important;
    }
    
    [style*="font-size: 1.5rem"],
    [style*="font-size:1.5rem"] {
        font-size: 1.125rem !important;
    }
    
    [style*="font-size: 1.125rem"],
    [style*="font-size:1.125rem"] {
        font-size: 0.9375rem !important;
    }
    
    [style*="padding: 4rem"],
    [style*="padding:4rem"] {
        padding: 2rem 0 !important;
    }
    
    [style*="padding: 3rem"],
    [style*="padding:3rem"] {
        padding: 1.5rem !important;
    }
    
    [style*="padding: 2.5rem"],
    [style*="padding:2.5rem"] {
        padding: 1.25rem !important;
    }
    
    [style*="padding: 2rem"],
    [style*="padding:2rem"] {
        padding: 1rem !important;
    }
    
    [style*="margin-bottom: 3rem"],
    [style*="margin-bottom:3rem"] {
        margin-bottom: 1.5rem !important;
    }
    
    [style*="margin-bottom: 1.5rem"],
    [style*="margin-bottom:1.5rem"] {
        margin-bottom: 1rem !important;
    }
    
    [style*="gap: 4rem"],
    [style*="gap:4rem"],
    [style*="gap: 2rem"],
    [style*="gap:2rem"] {
        gap: 1.5rem !important;
    }
    
    [style*="grid-template-columns: repeat(2"],
    [style*="grid-template-columns:repeat(2"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="width: 56px"],
    [style*="width:56px"],
    [style*="width: 80px"],
    [style*="width:80px"] {
        width: 48px !important;
    }
    
    [style*="height: 56px"],
    [style*="height:56px"],
    [style*="height: 80px"],
    [style*="height:80px"] {
        height: 48px !important;
    }
    
    [style*="font-size: 28px"],
    [style*="font-size:28px"],
    [style*="font-size: 40px"],
    [style*="font-size:40px"] {
        font-size: 24px !important;
    }
    
    [style*="font-size: 32px"],
    [style*="font-size:32px"] {
        font-size: 20px !important;
    }
    
    [style*="font-size: 20px"],
    [style*="font-size:20px"] {
        font-size: 16px !important;
    }
    
    [style*="font-size: 24px"],
    [style*="font-size:24px"] {
        font-size: 18px !important;
    }
    
    /* Make all flex containers stack on mobile */
    [style*="display: flex"][style*="flex-direction: row"],
    [style*="display:flex"][style*="flex-direction:row"] {
        flex-direction: column !important;
    }
    
    [style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Compact spacing */
    [style*="gap: 2rem"],
    [style*="gap:2rem"] {
        gap: 1rem !important;
    }
    
    [style*="gap: 1.5rem"],
    [style*="gap:1.5rem"] {
        gap: 0.75rem !important;
    }
    
    /* Benefits Section Mobile */
    .benefits {
        padding: 2rem 0 !important;
    }
    
    .benefits .grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .benefit-card {
        padding: 1.25rem !important;
    }
    
    .benefit-icon {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.5rem !important;
    }
    
    /* Team Section Mobile */
    .team {
        padding: 2rem 0 !important;
    }
    
    .team .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .team-card {
        padding: 1.25rem !important;
    }
    
    /* Mission Section Mobile */
    .mission {
        padding: 2rem 0 !important;
    }
    
    .mission-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 2rem 0 !important;
    }
    
    .contact-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .contact-form {
        width: 100% !important;
        padding: 1.25rem !important;
    }
    
    /* Creators Banner Mobile */
    .creators-banner {
        padding: 2rem 0 !important;
    }
    
    .creators-banner .banner-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    /* General Grid Mobile */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    
    .grid-3 {
        grid-template-columns: 1fr !important;
    }
    
}

@media (max-width: 480px) {
    [style*="font-size: 1.5rem"],
    [style*="font-size:1.5rem"] {
        font-size: 1.125rem !important;
    }
    
    [style*="padding: 1.5rem"],
    [style*="padding:1.5rem"] {
        padding: 1rem !important;
    }
    
    [style*="padding: 1.25rem"],
    [style*="padding:1.25rem"] {
        padding: 0.875rem !important;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 767px) {
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Ensure all images are responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6, p, span, a, div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Make all full-width containers respect viewport */
    [style*="width: 100%"] {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Compact all sections */
    section {
        overflow-x: hidden !important;
    }
}

/* =========================================================
   2026 FRONTEND REDESIGN — YOUTUBE CREATOR THEME
   Kept in this existing stylesheet intentionally.
========================================================= */
:root {
    --color-primary: #ff0033;
    --color-primary-dark: #cc0029;
    --color-primary-light: rgba(255, 0, 51, 0.09);
    --color-secondary: #0f0f0f;
    --color-secondary-dark: #000000;
    --color-black: #0f0f0f;
    --color-gray-dark: #272727;
    --color-gray-medium: #606060;
    --color-gray-light: #f7f7f7;
    --color-border: #e5e5e5;
    --color-success: #16a34a;
    --max-width: 1240px;
    --shadow-sm: 0 1px 2px rgba(15, 15, 15, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 15, 15, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 15, 15, 0.14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

html {
    scroll-padding-top: 88px;
}

body {
    color: var(--color-black);
    background: #ffffff;
}

.container {
    width: min(100% - 40px, var(--max-width));
    max-width: var(--max-width);
    padding: 0;
}

.section {
    padding: 96px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-title {
    margin: 0 0 14px;
    color: #0f0f0f;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-transform: none;
}

.section-subtitle {
    color: #606060;
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Navigation */
.navbar,
.navbar.scrolled {
    position: fixed !important;
    inset: 0 0 auto 0;
    z-index: 1000;
    min-height: 72px;
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(15, 15, 15, 0.08);
    box-shadow: none !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-wrapper {
    min-height: 72px;
    padding: 0 !important;
}

.logo a,
.footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255, 0, 51, 0.18);
}

.logo-text {
    color: #0f0f0f !important;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.nav-menu {
    align-items: center;
    gap: 4px !important;
}

.nav-link {
    position: relative;
    padding: 10px 14px !important;
    border-radius: 999px;
    color: #3f3f3f !important;
    font-size: 0.88rem;
    font-weight: 650;
}

.nav-link:hover,
.nav-link.active {
    color: #0f0f0f !important;
    background: #f2f2f2;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 4px;
    left: 16px;
    height: 2px;
    border-radius: 2px;
    background: #ff0033;
}

.nav-btn {
    margin-left: 8px;
    padding: 11px 18px !important;
    color: #ffffff !important;
    background: #0f0f0f !important;
}

.nav-btn:hover {
    color: #ffffff !important;
    background: #ff0033 !important;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    min-height: auto !important;
    padding: 132px 0 72px !important;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 0, 51, 0.12), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fff8f9 100%) !important;
}

.hero::before {
    content: "";
    position: absolute;
    top: 92px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 80px solid rgba(255, 0, 51, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr) !important;
    gap: clamp(48px, 7vw, 96px) !important;
    align-items: center;
}

.hero-text {
    max-width: 680px;
}

.hero-title {
    max-width: 720px;
    margin-bottom: 20px !important;
    color: #0f0f0f !important;
    font-size: clamp(2.75rem, 5.5vw, 5.4rem) !important;
    font-weight: 850 !important;
    line-height: 0.98 !important;
    letter-spacing: -0.065em !important;
    text-transform: none !important;
}

.hero-title::before {
    content: "CREATOR RIGHTS • CONTENT ID • REVENUE";
    display: block;
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 0, 51, 0.18);
    border-radius: 999px;
    color: #cc0029;
    background: rgba(255, 0, 51, 0.07);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
}

.hero-text h2.hero-subtitle {
    margin-bottom: 14px !important;
    color: #ff0033 !important;
    font-size: clamp(1.05rem, 2vw, 1.35rem) !important;
    font-weight: 750 !important;
    line-height: 1.35;
}

.hero-text p.hero-subtitle {
    max-width: 640px;
    margin-bottom: 28px;
    color: #606060 !important;
    font-size: 1.02rem;
    line-height: 1.8;
}


.hero-platforms {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.platform-icon {
    min-width: auto;
    padding: 10px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    color: #272727;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.platform-icon i {
    font-size: 1rem;
}

.platform-youtube i {
    color: #ff0000;
}

.btn-primary {
    min-height: 46px;
    padding: 12px 20px !important;
    border: 1px solid #ff0033 !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: #ff0033 !important;
    box-shadow: 0 12px 28px rgba(255, 0, 51, 0.2);
}

.btn-primary:hover {
    border-color: #cc0029 !important;
    background: #cc0029 !important;
    box-shadow: 0 16px 34px rgba(255, 0, 51, 0.28);
    transform: translateY(-2px);
}


#particleCanvas {
    opacity: 0.35;
}

/* Trust / distribution strip */
.announcement-banner {
    padding: 18px 0 !important;
    background: #0f0f0f !important;
    border: 0 !important;
}

.announcement-banner .banner-content {
    min-height: 86px;
    padding: 0 !important;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
}

.announcement-banner .banner-logo {
    width: 48px;
    height: 48px;
    padding: 5px;
    border-radius: 12px;
    background: #ffffff;
}

.announcement-banner .banner-brand-name,
.announcement-banner .banner-title {
    color: #ffffff !important;
}

.announcement-banner .banner-tagline,
.announcement-banner .banner-subtitle {
    color: #bdbdbd !important;
}

.btn-banner {
    padding: 11px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: #ff0033 !important;
}

/* Inline-heavy legacy sections, visually normalized */
.platform-info-section {
    width: 100% !important;
    padding: 96px 0 !important;
    border: 0 !important;
    background: #ffffff !important;
}


.platform-info-section > div > div > div {
    width: min(100% - 40px, var(--max-width));
    max-width: var(--max-width) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}


.platform-info-section [style*="color: #0B4C8C"] {
    color: #ff0033 !important;
}

.platform-info-section h2 {
    color: #0f0f0f !important;
    font-size: clamp(2rem, 4vw, 3.25rem) !important;
    font-weight: 820 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em;
}

.platform-info-section p {
    color: #606060 !important;
}


/* Platform workflow */
.platform-info-section {
    padding-bottom: 0 !important;
    background: #f7f7f7 !important;
}

.platform-info-section > div > div:first-child {
    max-width: 760px !important;
    margin: 0 auto 48px !important;
}

.platform-info-section > div > div:nth-child(2),
.platform-info-section > div > div:nth-child(3),
.platform-info-section > div > div:nth-child(4) {
    padding: 72px 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.platform-info-section > div > div:nth-child(2) > div > div {
    gap: 48px !important;
}

.platform-info-section > div > div:nth-child(2) > div > div > div:last-child,
.platform-info-section > div > div:nth-child(3) > div > div:nth-child(2) > div {
    border: 1px solid #e5e5e5 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: var(--shadow-sm) !important;
}

.platform-info-section [style*="background: rgba(11, 76, 140"],
.platform-info-section [style*="linear-gradient(135deg, #0B4C8C"] {
    border-color: rgba(255, 0, 51, 0.16) !important;
    background: rgba(255, 0, 51, 0.08) !important;
}

.platform-info-section > div > div:nth-child(4) > div > div {
    border-color: rgba(255, 0, 51, 0.16) !important;
    background: #fff4f6 !important;
}

.platform-info-section a {
    color: #cc0029 !important;
}

/* Benefits */
.benefits {
    background: #0f0f0f !important;
}

.benefits .section-title,
.benefits .card-title {
    color: #ffffff !important;
}

.benefits .section-title::after {
    background: #ff0033 !important;
}

.benefits .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card {
    min-height: 250px;
    padding: 28px !important;
    border: 1px solid #303030 !important;
    border-radius: 20px !important;
    background: #1c1c1c !important;
    box-shadow: none !important;
}

.benefit-card:hover {
    border-color: rgba(255, 0, 51, 0.65) !important;
    background: #242424 !important;
    transform: translateY(-5px) !important;
}

.benefit-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 0 28px !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    background: #ff0033 !important;
}

.benefit-card .card-text {
    color: #bdbdbd !important;
}

/* Mission */
.mission {
    padding: 96px 0 !important;
    background: #ffffff !important;
}

.mission-content {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr) !important;
    gap: 72px !important;
    align-items: center;
}

.mission-text {
    padding: 0 !important;
}

.mission .section-title {
    color: #0f0f0f !important;
}

.mission-description {
    color: #606060 !important;
    font-size: 1rem !important;
    line-height: 1.85 !important;
}

.mission-image {
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    background: #f7f7f7;
}

.mission-img {
    width: 100%;
    border-radius: 16px !important;
    object-fit: cover;
}

/* Creator CTA */
.creators-banner {
    padding: 32px 0 !important;
    background: #ff0033 !important;
}

.creators-banner .banner-content {
    padding: 34px 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.12) !important;
    box-shadow: none !important;
}

.creators-banner .banner-title,
.creators-banner .banner-subtitle {
    color: #ffffff !important;
}

.creators-banner .btn-banner {
    border-color: #ffffff !important;
    color: #0f0f0f !important;
    background: #ffffff !important;
}

/* Team */
.team {
    background: #f7f7f7 !important;
}


.team-card {
    padding: 0 !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    overflow: hidden;
}

.team-card:hover {
    border-color: rgba(255, 0, 51, 0.35) !important;
    box-shadow: var(--shadow-md) !important;
    transform: translateY(-5px) !important;
}

.team-image {
    width: 100% !important;
    height: 280px !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.team-photo {
    width: 100%;
    height: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover;
}

.team-info {
    padding: 24px;
    text-align: left !important;
}

.team-name {
    color: #0f0f0f !important;
    font-size: 1.15rem !important;
}

.team-role,
.javed-link,
.javed-blue {
    color: #ff0033 !important;
}

.team-bio {
    color: #606060 !important;
}

/* Contact */
.contact {
    padding: 96px 0 !important;
    background: #ffffff !important;
}

.contact-content {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr) !important;
    gap: 20px !important;
}

.contact-form-wrapper,
.contact-info {
    border: 1px solid #e5e5e5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.contact-form-wrapper {
    padding: 34px !important;
}

.contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form .form-group:nth-last-of-type(1),
.contact-form .form-group:has(textarea) {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea,
.form-select {
    min-height: 50px;
    padding: 13px 15px !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 12px !important;
    color: #0f0f0f !important;
    background: #f9f9f9 !important;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #ff0033 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(255, 0, 51, 0.09) !important;
}

.contact-form .btn-block {
    grid-column: 1 / -1;
    width: fit-content !important;
    min-width: 180px;
    justify-self: start;
}

.contact-info {
    padding: 20px !important;
    background: #0f0f0f !important;
}

.contact-info-item {
    padding: 18px !important;
    border: 1px solid #303030 !important;
    border-radius: 14px !important;
    background: #1c1c1c !important;
}

.contact-info-item h4,
.contact-info-item p {
    color: #ffffff !important;
}

.contact-icon {
    color: #ffffff !important;
    background: #ff0033 !important;
}

/* Footer */
.footer {
    padding-top: 72px !important;
    color: #bdbdbd !important;
    background: #0f0f0f !important;
}

.footer-content {
    grid-template-columns: 1.6fr repeat(3, 1fr) !important;
    gap: 48px !important;
}

.footer-logo-img {
    border-radius: 12px;
}

.footer-logo-text,
.footer-title {
    color: #ffffff !important;
}

.footer-links a,
.footer-description {
    color: #9f9f9f !important;
}

.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}

.social-link {
    border: 1px solid #343434 !important;
    color: #ffffff !important;
    background: #242424 !important;
}

.social-link:hover {
    border-color: #ff0033 !important;
    background: #ff0033 !important;
}

.footer-bottom {
    border-color: #303030 !important;
}

.developer-credit i,
.developer-credit a,
.footer-bottom-links a:hover {
    color: #ff0033 !important;
}

/* Responsive redesign */
@media (max-width: 1080px) {
    .hero-content,
    .mission-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 767px) {
    .container,
    .platform-info-section > div > div > div {
        width: min(100% - 28px, var(--max-width));
    }

    .section,
    .platform-info-section,
    .mission,
    .contact {
        padding: 68px 0 !important;
    }

    .navbar,
    .navbar.scrolled {
        min-height: 64px;
    }

    .nav-wrapper {
        min-height: 64px;
    }

    .nav-menu {
        top: 64px !important;
        right: 12px !important;
        left: 12px !important;
        width: auto !important;
        height: auto !important;
        max-height: calc(100vh - 78px);
        padding: 12px !important;
        border: 1px solid #e5e5e5 !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        box-shadow: var(--shadow-lg) !important;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 12px 14px !important;
        border-radius: 10px;
    }

    .nav-btn {
        margin: 6px 0 0 !important;
        text-align: center;
    }

    .mobile-toggle {
        width: 42px !important;
        height: 42px !important;
        padding: 10px !important;
        border-radius: 50% !important;
        background: #f2f2f2 !important;
    }

    .hero {
        padding: 106px 0 64px !important;
    }

    .hero-content,
    .mission-content,
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .hero-title {
        font-size: clamp(2.5rem, 13vw, 4rem) !important;
    }


    .announcement-banner .banner-content,
    .creators-banner .banner-content {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    .benefits .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .platform-info-section > div > div:nth-child(3) > div > div:nth-child(2) {
        grid-template-columns: 1fr !important;
    }

    .team-image {
        height: 320px !important;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .form-group,
    .contact-form .btn-block {
        grid-column: 1;
    }

    .contact-form-wrapper {
        padding: 22px !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 36px 24px !important;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.92rem;
    }

    .hero-platforms {
        align-items: stretch;
    }

    .platform-icon {
        flex: 1 1 calc(50% - 5px);
        justify-content: center;
    }


    .platform-info-section h2,
    .section-title {
        font-size: 2rem !important;
    }

    .team-image {
        height: 280px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #particleCanvas {
        display: none;
    }

    .hero::before {
        display: none;
    }
}

/* =========================================================
   RMX-INSPIRED STRUCTURE — SR MUSIC VISUAL LANGUAGE
========================================================= */

/* Icons must remain visible even when older reveal rules are active. */
.fas,
.far,
.fab,
.material-icons,
.benefit-icon,
.contact-icon,
.sr-service-icon,
.sr-feature-icon,
.sr-floating-icon,
.sr-content-id-icon {
    visibility: visible !important;
    opacity: 1 !important;
}

.material-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Material Icons" !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}

.mobile-toggle .hamburger {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #0f0f0f !important;
}

.mobile-toggle.active .hamburger:nth-child(2) {
    opacity: 0 !important;
}

.fade-in-up {
    opacity: 1;
}

.fade-in-up:not(.visible) {
    transform: none;
}

.sr-text-accent {
    color: #ff0033;
}

.sr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 0, 51, 0.18);
    border-radius: 999px;
    color: #b90025;
    background: rgba(255, 0, 51, 0.07);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sr-eyebrow-centered {
    margin-right: auto;
    margin-left: auto;
}

.sr-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff0033;
    box-shadow: 0 0 0 5px rgba(255, 0, 51, 0.1);
}

/* Hero */
.sr-hero {
    isolation: isolate;
}

.hero-title::before {
    content: none !important;
}

.sr-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(15, 15, 15, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 15, 15, 0.026) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 76%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 76%);
    pointer-events: none;
}

.sr-hero .container {
    position: relative;
    z-index: 2;
}

.sr-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sr-hero-copy .hero-title {
    margin-bottom: 22px !important;
}

.sr-hero-lead {
    max-width: 600px !important;
    margin-bottom: 0 !important;
}

.sr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.sr-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
}

.sr-btn-ghost {
    padding: 12px 20px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    color: #0f0f0f;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 750;
}

.sr-btn-ghost:hover {
    border-color: #0f0f0f;
    background: #f2f2f2;
    transform: translateY(-2px);
}


/* Trust strip */
.sr-trust-strip {
    padding: 24px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #f7f7f7;
}

.sr-trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.sr-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 200px;
    min-width: 0;
}

.sr-trust-item > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    color: #ff0033;
    background: rgba(255, 0, 51, 0.08);
}

.sr-trust-item span {
    display: flex;
    flex-direction: column;
}

.sr-trust-item strong {
    color: #0f0f0f;
    font-size: 0.86rem;
    line-height: 1.25;
}

.sr-trust-item small {
    margin-top: 3px;
    color: #606060;
    font-size: 0.7rem;
    line-height: 1.35;
}

.sr-trust-divider {
    width: 1px;
    height: 40px;
    flex-shrink: 0;
    background: #dddddd;
}

/* Rights split */
.sr-rights {
    background: #ffffff;
}

.sr-rights-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 7vw, 90px);
    align-items: center;
}

.sr-section-lead-left {
    max-width: 550px;
    margin: 0;
}

.sr-rights-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0;
}

.sr-rights-stats > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #f7f7f7;
}

.sr-rights-stats strong {
    color: #ff0033;
    font-size: 1.4rem;
    font-weight: 850;
}

.sr-rights-stats span {
    color: #606060;
    font-size: 0.76rem;
    font-weight: 650;
}

.sr-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.sr-rights-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sr-feature-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 220px;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    background: #f9f9f9;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sr-feature-card:hover {
    border-color: rgba(255, 0, 51, 0.32);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.sr-feature-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 0, 51, 0.16);
    border-radius: 13px;
    color: #ff0033;
    background: rgba(255, 0, 51, 0.08);
    font-size: 1.05rem;
}

.sr-feature-card h3 {
    margin: 0 0 8px;
    color: #0f0f0f;
    font-size: 1.05rem;
}

.sr-feature-card p {
    margin: 0;
    color: #606060;
    font-size: 0.82rem;
    line-height: 1.65;
}

/* Numbered service cards */
.sr-services {
    background: #f7f7f7;
}

.sr-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sr-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 320px;
    padding: 26px;
    border: 1px solid #e2e2e2;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sr-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 51, 0.09), transparent 58%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sr-service-card:hover {
    border-color: rgba(255, 0, 51, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.sr-service-card:hover::before {
    opacity: 1;
}

.sr-service-card-featured {
    border-color: rgba(255, 0, 51, 0.26);
    background: linear-gradient(160deg, rgba(255, 0, 51, 0.07), #ffffff 58%);
}

.sr-service-card-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.sr-service-num {
    color: #9a9a9a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.sr-service-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 0, 51, 0.17);
    border-radius: 13px;
    color: #ff0033;
    background: rgba(255, 0, 51, 0.08);
    font-size: 1.2rem;
}

.sr-service-card-featured .sr-service-icon {
    color: #ffffff;
    background: #ff0033;
}

.sr-service-card h3 {
    position: relative;
    margin: 0;
    color: #0f0f0f;
    font-size: 1.12rem;
    font-weight: 800;
}

.sr-service-card p {
    position: relative;
    flex-grow: 1;
    margin: 0;
    color: #606060;
    font-size: 0.82rem;
    line-height: 1.7;
}

.sr-service-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.sr-service-tags span {
    padding: 5px 8px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    color: #606060;
    background: #f7f7f7;
    font-size: 0.62rem;
    font-weight: 700;
}

.sr-service-card > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 13px;
    border-top: 1px dashed #dddddd;
    color: #cc0029;
    font-size: 0.78rem;
    font-weight: 800;
}

.sr-service-card > a i {
    transition: transform 0.2s ease;
}

.sr-service-card:hover > a i {
    transform: translateX(4px);
}

.sr-content-id-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    margin-top: 20px;
    padding: 30px 34px;
    border-radius: 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.13), transparent 22%),
        linear-gradient(135deg, #ff0033, #b90025);
    box-shadow: 0 20px 48px rgba(185, 0, 37, 0.22);
}

.sr-content-id-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 1.45rem;
}

.sr-content-id-cta small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.sr-content-id-cta h3 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.35;
}

.sr-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    border: 1px solid #ffffff;
    border-radius: 999px;
    color: #0f0f0f;
    background: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

/* Workflow cleanup */
.sr-platform-workflow {
    padding: 96px 0 0 !important;
    background: #ffffff !important;
}

.sr-workflow-header {
    padding: 0 20px;
}

.sr-platform-workflow > div > div:nth-child(2) {
    border: 0 !important;
    background: #f7f7f7 !important;
}

.sr-platform-workflow > div > div:nth-child(2)::before {
    content: none;
}

.sr-platform-workflow > div > div:nth-child(3) {
    background: #ffffff !important;
}

.sr-platform-workflow > div > div:nth-child(4) {
    background: #f7f7f7 !important;
}

.sr-platform-workflow .material-icons,
.sr-platform-workflow .fa-user-shield {
    color: #ff0033 !important;
}

.sr-platform-workflow [style*="background: linear-gradient(135deg, #0B4C8C"] {
    background: rgba(255, 0, 51, 0.09) !important;
}

.sr-platform-workflow [style*="background: linear-gradient(135deg, #0B4C8C"] i {
    color: #ff0033 !important;
    font-size: 1.5rem;
}

/* Bento benefits adapted from RMX */
.sr-bento-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-flow: dense;
}

.sr-bento-grid .benefit-card:first-child,
.sr-bento-grid .benefit-card:last-child {
    grid-column: span 2;
}

.sr-bento-grid .benefit-card:first-child {
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 0, 51, 0.2), transparent 35%),
        #1c1c1c !important;
}

.benefits .section-subtitle {
    color: #9f9f9f !important;
}

.benefits .sr-eyebrow {
    color: #ff8aa1;
    border-color: rgba(255, 0, 51, 0.3);
    background: rgba(255, 0, 51, 0.1);
}

/* Form layout was declared but not activated previously. */
.contact-form {
    display: grid;
}

/* Responsive component transitions */
@media (max-width: 1080px) {
    .sr-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sr-trust-grid {
        flex-wrap: wrap;
    }

    .sr-trust-divider {
        display: none;
    }

    .sr-bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 767px) {

    .sr-trust-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sr-rights-layout {
        grid-template-columns: 1fr;
    }

    .sr-service-grid {
        grid-template-columns: 1fr;
    }

    .sr-service-card {
        min-height: 0;
    }

    .sr-content-id-cta {
        grid-template-columns: auto 1fr;
        padding: 24px;
    }

    .sr-content-id-cta .sr-btn-light {
        grid-column: 1 / -1;
        width: 100%;
    }

    .sr-bento-grid {
        grid-template-columns: 1fr !important;
    }

    .sr-bento-grid .benefit-card:first-child,
    .sr-bento-grid .benefit-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .sr-hero-actions {
        width: 100%;
    }

    .sr-hero-actions .btn {
        width: 100%;
    }


    .sr-trust-grid,
    .sr-rights-cards {
        grid-template-columns: 1fr;
    }

    .sr-content-id-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sr-content-id-icon {
        margin: 0 auto;
    }
}

/* =========================================================
   TEAM — EDITORIAL PHOTO LAYOUT
========================================================= */
.team .section-header {
    max-width: 720px;
}

.sr-team-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-rows: repeat(2, minmax(220px, auto));
    gap: 18px;
    max-width: 1120px;
    margin: 0 auto;
}

.team .sr-team-card {
    position: relative;
    min-width: 0;
    padding: 0 !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    overflow: hidden;
    isolation: isolate;
}

.team .sr-team-card::before,
.team .sr-team-card::after {
    content: none !important;
}

.team .sr-team-card:hover {
    border-color: rgba(255, 0, 51, 0.35) !important;
    box-shadow: 0 22px 55px rgba(15, 15, 15, 0.11) !important;
    transform: translateY(-4px) !important;
}

.sr-team-index {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 38px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 15, 15, 0.58);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team .sr-team-photo-frame {
    position: relative;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 0 !important;
    background: #e9e9e9;
    overflow: hidden;
}

.team .sr-team-photo-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.42));
    pointer-events: none;
}

.team .sr-team-photo-frame a {
    width: 100%;
    height: 100%;
}

.team .sr-team-photo-frame a:hover {
    opacity: 1;
    transform: none;
}

.team .sr-team-photo-frame .team-photo {
    width: 100%;
    height: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.3s ease;
}

.team .sr-team-card:hover .team-photo {
    transform: scale(1.035);
}

.sr-team-card-featured {
    grid-row: 1 / span 2;
    display: grid;
    grid-template-rows: minmax(410px, 1fr) auto;
}

.sr-team-card-featured .sr-team-photo-frame {
    min-height: 410px;
}

.sr-team-card-featured .team-info {
    padding: 28px 30px 30px !important;
}

.sr-team-card-compact {
    display: grid;
    grid-template-columns: minmax(170px, 42%) minmax(0, 1fr);
    align-items: stretch;
}

.sr-team-card-compact .sr-team-photo-frame {
    min-height: 220px;
}

.sr-team-card-compact .team-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px !important;
}

.team .sr-team-card .team-info {
    position: relative;
    z-index: 2;
    text-align: left !important;
}

.sr-team-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-bottom: 14px;
    color: #b90025;
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sr-team-label i {
    color: #ff0033;
    font-size: 0.68rem;
}

.team .sr-team-card .team-name {
    margin: 0 0 4px !important;
    color: #0f0f0f !important;
    font-size: clamp(1.15rem, 2vw, 1.45rem) !important;
    font-weight: 850 !important;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.team .sr-team-card .team-name a {
    color: inherit !important;
}

.team .sr-team-card .team-name a:hover {
    color: #ff0033 !important;
    text-decoration: none;
}

.team .sr-team-card .team-role {
    margin: 0 0 13px !important;
    color: #ff0033 !important;
    font-size: 0.78rem !important;
    font-weight: 750;
}

.team .sr-team-card .team-bio {
    margin: 0;
    color: #606060 !important;
    font-size: 0.8rem !important;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .sr-team-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 720px;
    }

    .sr-team-card-featured {
        grid-row: auto;
        grid-template-columns: minmax(220px, 44%) minmax(0, 1fr);
        grid-template-rows: none;
    }

    .sr-team-card-featured .sr-team-photo-frame {
        min-height: 280px;
    }

    .sr-team-card-featured .team-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .sr-team-card-featured,
    .sr-team-card-compact {
        grid-template-columns: minmax(118px, 40%) minmax(0, 1fr);
        grid-template-rows: none;
        min-height: 205px;
    }

    .sr-team-card-featured .sr-team-photo-frame,
    .sr-team-card-compact .sr-team-photo-frame {
        min-height: 205px;
        aspect-ratio: auto;
    }

    .sr-team-card-featured .team-info,
    .sr-team-card-compact .team-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 18px !important;
    }

    .sr-team-label {
        margin-bottom: 9px;
        font-size: 0.54rem;
    }

    .team .sr-team-card .team-name {
        font-size: 1.08rem !important;
    }

    .team .sr-team-card .team-role {
        margin-bottom: 8px !important;
    }

    .team .sr-team-card .team-bio {
        font-size: 0.7rem !important;
        line-height: 1.5;
    }
}

@media (max-width: 380px) {
    .sr-team-card-featured,
    .sr-team-card-compact {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .sr-team-card-featured .team-info,
    .sr-team-card-compact .team-info {
        padding: 14px !important;
    }

    .team .sr-team-card .team-bio {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        overflow: hidden;
    }
}

/* Hero statistics panel — replaces the former hero photograph */
.sr-hero-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr) !important;
    align-items: center !important;
    gap: clamp(44px, 6vw, 84px) !important;
}

.sr-hero-layout .sr-hero-copy {
    order: 1 !important;
    grid-column: 1;
}

.sr-hero-stat-cards {
    order: 2 !important;
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: stretch;
}

.sr-hero-stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 210px;
    padding: 24px;
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 32px rgba(15, 15, 15, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sr-hero-stat-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 0, 51, 0.055);
}

.sr-hero-stat-card:hover {
    border-color: rgba(255, 0, 51, 0.32);
    box-shadow: 0 20px 46px rgba(15, 15, 15, 0.11);
    transform: translateY(-4px);
}

.sr-hero-stat-card-featured {
    color: #ffffff;
    border-color: #ff0033;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(145deg, #ff0033, #b90025);
    box-shadow: 0 18px 42px rgba(185, 0, 37, 0.2);
}

.sr-hero-stat-card-featured::before {
    background: rgba(255, 255, 255, 0.09);
}

.sr-hero-stat-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 0, 51, 0.16);
    border-radius: 12px;
    color: #ff0033;
    background: rgba(255, 0, 51, 0.08);
}

.sr-hero-stat-card-featured .sr-hero-stat-icon {
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.sr-hero-stat-card > strong {
    position: relative;
    z-index: 1;
    margin-bottom: 9px;
    color: #0f0f0f;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.045em;
}

.sr-hero-stat-card > strong sup {
    color: #ff0033;
    font-size: 0.52em;
}

.sr-hero-stat-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 7px;
    color: #0f0f0f;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
}

.sr-hero-stat-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #606060;
    font-size: 0.7rem;
    line-height: 1.5;
}

.sr-hero-stat-card-featured > strong,
.sr-hero-stat-card-featured > strong sup,
.sr-hero-stat-card-featured h2,
.sr-hero-stat-card-featured p {
    color: #ffffff;
}

.sr-hero-stat-card-featured p {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 767px) {
    .sr-hero-layout {
        grid-template-columns: 1fr !important;
    }

    .sr-hero-layout .sr-hero-copy,
    .sr-hero-stat-cards {
        grid-column: 1;
    }

    .sr-hero-stat-cards {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .sr-hero-stat-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sr-hero-stat-card {
        min-height: 170px;
        padding: 18px;
    }

    .sr-hero-stat-icon {
        top: 16px;
        left: 16px;
        width: 36px;
        height: 36px;
    }

    .sr-hero-stat-card > strong {
        font-size: 1.45rem;
    }

    .sr-hero-stat-card h2 {
        font-size: 0.78rem;
    }

    .sr-hero-stat-card p {
        font-size: 0.62rem;
    }
}

/* Keep hero controls compact and aligned in mobile view. */
@media (max-width: 767px) {
    .sr-hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .sr-hero-actions .btn {
        width: 100%;
        min-width: 0;
        padding: 10px 8px !important;
        gap: 6px;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .hero-platforms {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px !important;
        width: 100%;
    }

    .hero-platforms .platform-icon {
        min-width: 0;
        padding: 8px 6px !important;
        justify-content: center;
        gap: 5px;
        white-space: nowrap;
    }
}

/* RMX India distribution feature */
.sr-rmx-india {
    padding: 24px 0 64px;
    background: #f7f7f7;
}

.sr-rmx-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 18%, rgba(237, 28, 36, 0.2), transparent 30%),
        linear-gradient(135deg, #070707 0%, #141414 58%, #090909 100%);
    box-shadow: 0 30px 70px rgba(15, 15, 15, 0.18);
    overflow: hidden;
}

.sr-rmx-ad-label {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 189, 0, 0.32);
    border-radius: 999px;
    color: #ffbd00;
    background: rgba(5, 5, 5, 0.82);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.sr-rmx-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    height: 4px;
    background: linear-gradient(90deg, #ed1c24 0 42%, #ffbd00 42% 100%);
}

.sr-rmx-card::after {
    content: "RMX";
    position: absolute;
    right: -18px;
    bottom: -52px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(9rem, 20vw, 18rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.09em;
}

.sr-rmx-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
}

.sr-rmx-brand-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sr-rmx-logo-frame {
    display: grid;
    place-items: center;
    min-height: 100px;
    padding: 18px;
    border: 1px solid rgba(255, 189, 0, 0.2);
    border-radius: 18px;
    background: #050505;
    box-shadow: inset 0 0 40px rgba(255, 189, 0, 0.04);
}

.sr-rmx-logo {
    display: block;
    width: 100%;
    max-width: 390px;
    height: auto;
    object-fit: contain;
}

.sr-rmx-domain {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    color: #ffbd00;
    font-size: 0.82rem;
    font-weight: 750;
}

.sr-rmx-domain:hover {
    color: #ffffff;
}

.sr-rmx-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 42px clamp(34px, 5vw, 64px);
}

.sr-rmx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sr-rmx-eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ed1c24;
    box-shadow: 0 0 0 5px rgba(237, 28, 36, 0.14);
}

.sr-rmx-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 860;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.sr-rmx-copy h2 em {
    color: #ffbd00;
    font-style: normal;
}

.sr-rmx-copy > p {
    max-width: 610px;
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.98rem;
    line-height: 1.75;
}

.sr-rmx-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sr-rmx-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 999px;
    color: #ffffff;
    background: #ed1c24;
    font-size: 0.84rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(237, 28, 36, 0.25);
}

.sr-rmx-primary-link:hover {
    color: #0f0f0f;
    background: #ffbd00;
    transform: translateY(-2px);
}

.sr-rmx-actions > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    font-weight: 650;
}

.sr-rmx-actions > span i {
    color: #ffbd00;
}

@media (max-width: 900px) {
    .sr-rmx-card {
        grid-template-columns: 1fr;
    }

    .sr-rmx-brand {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 30px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sr-rmx-logo-frame {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .sr-rmx-india {
        padding: 18px 0 52px;
    }

    .sr-rmx-card {
        border-radius: 20px;
    }

    .sr-rmx-brand {
        display: flex;
        align-items: flex-start;
        padding: 42px 20px 22px;
    }

    .sr-rmx-logo-frame {
        min-height: 110px;
        padding: 18px;
    }

    .sr-rmx-copy {
        padding: 30px 20px 34px;
    }

    .sr-rmx-copy h2 {
        font-size: clamp(2.1rem, 12vw, 3.2rem);
    }

    .sr-rmx-actions,
    .sr-rmx-primary-link {
        width: 100%;
    }

    .sr-rmx-primary-link {
        justify-content: center;
    }
}

/* Creator contact experience */
.contact.sr-contact {
    padding: 76px 0 !important;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 0, 51, 0.06), transparent 26%),
        #f5f5f5 !important;
}

.sr-contact-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    max-width: 1160px;
    margin: 0 auto;
    border: 1px solid #dedede;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(15, 15, 15, 0.1);
    overflow: hidden;
}

.sr-contact-panel {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    padding: clamp(32px, 4vw, 48px);
    color: #ffffff;
    background:
        radial-gradient(circle at 0 0, rgba(255, 0, 51, 0.24), transparent 34%),
        linear-gradient(145deg, #0a0a0a, #171717);
    overflow: hidden;
}

.sr-contact-panel::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -110px;
    z-index: -1;
    width: 260px;
    height: 260px;
    border: 55px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.sr-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sr-contact-eyebrow > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff0033;
    box-shadow: 0 0 0 5px rgba(255, 0, 51, 0.14);
}

.sr-contact-panel h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 3.8vw, 3.65rem);
    font-weight: 860;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.sr-contact-panel h2 em {
    color: #ff0033;
    font-style: normal;
}

.sr-contact-lead {
    max-width: 500px;
    margin: 18px 0 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.75;
}

.sr-contact-panel .sr-contact-info {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.sr-contact-panel .contact-info-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    margin: 0;
    padding: 10px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 13px !important;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.045) !important;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.sr-contact-panel a.contact-info-item:hover {
    border-color: rgba(255, 0, 51, 0.48) !important;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateX(4px);
}

.sr-contact-panel .contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: #ffffff !important;
    background: #ff0033 !important;
}

.sr-contact-panel .contact-info-item > span:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.sr-contact-panel .contact-info-item small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sr-contact-panel .contact-info-item strong {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.sr-contact-arrow {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.72rem;
}

.sr-contact-hours {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    padding-top: 20px;
}

.sr-contact-status {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.sr-contact-hours > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sr-contact-hours strong {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.67rem;
}

.sr-contact-hours small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.61rem;
}

.sr-contact-form-panel.contact-form-wrapper {
    padding: clamp(32px, 4vw, 48px) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
}

.sr-contact-form-head {
    margin-bottom: 22px;
}

.sr-contact-form-head > span {
    display: block;
    margin-bottom: 9px;
    color: #ff0033;
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sr-contact-form-head h3 {
    margin: 0 0 8px;
    color: #0f0f0f;
    font-size: clamp(1.6rem, 2.7vw, 2.2rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.sr-contact-form-head p {
    margin: 0;
    color: #777777;
    font-size: 0.8rem;
}

.sr-contact .contact-form {
    gap: 13px 15px;
    padding: 0 !important;
    background: transparent !important;
}

.sr-contact .form-group {
    margin: 0 !important;
}

.sr-contact .form-group label {
    margin-bottom: 7px;
    color: #303030;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.sr-contact .form-input,
.sr-contact .form-textarea,
.sr-contact .form-select {
    min-height: 46px;
    padding: 11px 13px !important;
    border-color: #dedede !important;
    background: #f7f7f7 !important;
}

.sr-contact .form-textarea {
    min-height: 86px;
    resize: vertical;
}

.sr-contact .contact-form .btn-block {
    width: 100% !important;
    min-height: 48px;
    justify-content: center;
    justify-self: stretch;
    border-radius: 13px !important;
}

@media (max-width: 900px) {
    .sr-contact-shell {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .sr-contact-panel h2 br {
        display: none;
    }

    .sr-contact-hours {
        margin-top: 28px;
    }
}

@media (max-width: 600px) {
    .contact.sr-contact {
        padding: 52px 0 !important;
    }

    .sr-contact-shell {
        border-radius: 20px;
    }

    .sr-contact-panel,
    .sr-contact-form-panel.contact-form-wrapper {
        padding: 28px 20px !important;
    }

    .sr-contact-panel h2 {
        font-size: clamp(2.05rem, 10vw, 2.8rem);
    }

    .sr-contact .contact-form {
        grid-template-columns: 1fr;
    }

    .sr-contact .contact-form .form-group,
    .sr-contact .contact-form .btn-block {
        grid-column: 1;
    }
}

