/* Modern eduSYMS Homepage Styles - Enhanced Color Harmony */
:root {
    /* === EDUSYMS OFFICIAL BRAND COLOR PALETTE === */
    --sushi: #90c23b;              /* Primary brand - brightest green */
    --fern-frond: #516c22;         /* Natural green accent */
    --wasabi: #688b2b;             /* Mid-tone green */
    --palm-leaf: #2b3a12;          /* Deep forest base - darkest */
    --sushi-2: #86b338;            /* Sushi variant 2 */
    --sushi-3: #769e31;            /* Sushi variant 3 */
    
    /* Legacy aliases for compatibility */
    --primary-green: var(--sushi);
    --dark-green: var(--wasabi);
    --bright-green: var(--sushi);
    --forest-green: var(--fern-frond);
    --lime-accent: var(--sushi);
    
    /* Neutrals - Refined Grays */
    --pure-white: #ffffff;
    --cloud-white: #f9fafb;
    --soft-gray: #f3f4f6;
    --charcoal: #1f2937;
    --slate-grey: #6b7280;
    --dark-slate: #374151;
    
    /* Gradients - Official Brand Colors Only */
    --gradient-primary: linear-gradient(135deg, var(--sushi) 0%, var(--wasabi) 100%);
    --gradient-accent: linear-gradient(135deg, var(--sushi-2) 0%, var(--fern-frond) 100%);
    --gradient-vibrant: linear-gradient(135deg, var(--sushi) 0%, var(--sushi-3) 100%);
    --gradient-bg: linear-gradient(180deg, #f9fafb 0%, #ffffff 40%, rgba(144, 194, 59, 0.03) 100%);
    --gradient-orb-1: radial-gradient(circle, rgba(144, 194, 59, 0.4), rgba(104, 139, 43, 0.2), transparent);
    --gradient-orb-2: radial-gradient(circle, rgba(104, 139, 43, 0.35), rgba(81, 108, 34, 0.15), transparent);
    
    /* Shadows - Brand Color Based */
    --shadow-soft: 0 10px 30px rgba(144, 194, 59, 0.08);
    --shadow-hover: 0 20px 60px rgba(144, 194, 59, 0.15);
    --shadow-brand: 0 8px 24px rgba(144, 194, 59, 0.2);
    --shadow-deep: 0 8px 24px rgba(104, 139, 43, 0.2);
}

* {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   FUTURISTIC HERO SECTION - NEXT GEN DESIGN
   ============================================ */

.edusyms-hero-next {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, rgba(144, 194, 59, 0.03) 100%);
    overflow: hidden;
    padding: 4rem 0 3rem;
}

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

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-orb-1);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-orb-2);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(38, 179, 168, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 179, 168, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

/* Trust Badge Bar */
.hero-trust-badge {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

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

.trust-badge-content {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1.5px solid rgba(144, 194, 59, 0.15);
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(144, 194, 59, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.trust-badge-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(144, 194, 59, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(144, 194, 59, 0.25);
}

.trust-indicator {
    font-size: 1.2rem;
}

.trust-text {
    color: #2c3e50;
    letter-spacing: 0.01em;
}

.trust-separator {
    color: var(--primary-green);
    opacity: 0.5;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Hero Grid Layout */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Main Column */
.hero-col-main {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-headline {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-headline-gradient {
    color: #90c23b;
    display: inline-block;
    position: relative;
    font-weight: 700;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.75vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    color: var(--slate-grey);
    margin-bottom: 2rem;
    max-width: 580px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 12px;
    background: #90c23b;
    color: #ffffff;
    border: none;
    font-size: 0.975rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(144, 194, 59, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fern-frond);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-btn-primary:hover {
    background: #688b2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(144, 194, 59, 0.4);
}

.hero-btn-primary:hover::before {
    opacity: 1;
}

.hero-btn-primary .btn-text,
.hero-btn-primary .btn-icon {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-btn-primary .btn-icon {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: transparent;
    color: #516c22;
    font-size: 0.975rem;
    font-weight: 600;
    border: 2px solid #516c22;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.hero-btn-secondary:hover {
    background: #516c22;
    color: #ffffff;
    border-color: #516c22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 108, 34, 0.3);
}

.btn-icon-left {
    transition: transform 0.3s ease;
}

.hero-btn-secondary:hover .btn-icon-left {
    transform: scale(1.1);
}

/* Inline Stats Counter */
.hero-stats-inline {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0 0;
    animation: fadeIn 1.2s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    position: relative;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-unit {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--slate-grey);
    margin-top: 2.6rem;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(38, 179, 168, 0.2);
}

/* Video Column */
.hero-col-video {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

.hero-video-card {
    position: relative;
}

.video-thumbnail-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.video-thumbnail-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.video-thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover .video-play-trigger {
    background: rgba(0, 0, 0, 0.25);
}

.video-play-btn-new {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.video-play-btn-new:hover {
    transform: scale(1.15);
}

.video-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid var(--teal-accent);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.video-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-grey);
}

.caption-icon {
    color: var(--teal-accent);
}

/* Floating Feature Pills */
.hero-feature-pills {
    position: absolute;
    top: 0;
    right: -2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    background: white;
    border: 1px solid rgba(38, 179, 168, 0.2);
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(38, 179, 168, 0.1);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
    animation: slideInRight 0.6s ease-out both;
}

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

.pill-1 { 
    animation-delay: 0.6s;
    border-color: rgba(144, 194, 59, 0.3);
    box-shadow: 0 4px 16px rgba(144, 194, 59, 0.12);
}

.pill-2 { 
    animation-delay: 0.8s;
    border-color: rgba(104, 139, 43, 0.3);
    box-shadow: 0 4px 16px rgba(104, 139, 43, 0.12);
}

.pill-3 { 
    animation-delay: 1s;
    border-color: rgba(217, 70, 166, 0.3);
    box-shadow: 0 4px 16px rgba(217, 70, 166, 0.12);
}

.pill-icon {
    font-size: 1.125rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    z-index: 10000;
    width: 90%;
    max-width: 1200px;
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-wrapper iframe,
.video-modal-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-grid-layout {
        gap: 4rem;
    }
    
    .hero-feature-pills {
        right: 0;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        padding: 0 2.5rem;
    }
    
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-col-main {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 4.5vw, 3.25rem);
    }
    
    .hero-subheadline {
        max-width: 700px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats-inline {
        justify-content: center;
    }
    
    .hero-feature-pills {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .edusyms-hero-next {
        padding: 3rem 0 2.5rem;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .trust-badge-content {
        gap: 0.75rem;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.8125rem;
        max-width: fit-content;
        margin: 0 auto;
    }
    
    .trust-separator {
        display: inline;
        margin: 0 0.125rem;
    }
    
    .hero-headline {
        font-size: 1.85rem;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 2rem;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
        padding-top: 1.25rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .hero-feature-pills {
        gap: 0.5rem;
    }
    
    .feature-pill {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
}

.sims-hero {
    background: var(--gradient-bg);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Hero Grid Layout */
.sims-hero .container {
    max-width: 100%;
    padding: 0 4rem;
}

.sims-hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8rem;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.sims-hero-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.sims-hero-media {
    position: relative;
    z-index: 2;
}

/* Video Container Styles */
.sims-video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sims-video-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.sims-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: var(--charcoal);
}

.sims-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Play Button Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-play-button {
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
}

.video-play-button:hover {
    transform: scale(1.1);
}

.video-play-button svg {

/* Custom Video Controls */
.video-custom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 11;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sims-video-container:hover .video-custom-controls {
    opacity: 1;
}

.video-control-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #2d3e50;
}

.video-control-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    color: var(--sushi);
}

.video-control-btn:active {
    transform: scale(0.95);
}

    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Stats Section */
.sims-stats-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(to bottom, var(--gradient-bg) 0%, #ffffff 100%);
}

.stats-section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    color: #2d3e50;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.sims-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(144, 194, 59, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(104, 139, 43, 0.04) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2390c23b' stroke-width='1' opacity='0.03'%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: heroFloat 25s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.03; }
    50% { transform: translateY(-10px) rotate(0.5deg); opacity: 0.06; }
}

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

.sims-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.sims-hero-badge {
    display: inline-block;
    background: #f8fafb;
    color: #6b7c93;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e3e8ef;
    font-family: 'Poppins', sans-serif;
}

.sims-hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: #2d3e50;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
}

.sims-gradient {
    color: #ff6b35;
    background: none;
    font-weight: 700;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    position: relative;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

.sims-hero-subtitle {
    font-size: 1.1rem;
    color: #6b7c93;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.sims-hero-description {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 3rem;
    max-width: 100%;
    line-height: 1.7;
    font-weight: 500;
    opacity: 0.85;
}

.sims-hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-sims-primary {
    background: var(--sushi);
    color: var(--pure-white);
    padding: 0.875rem 2.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(144, 194, 59, 0.25);
    border: 2px solid var(--sushi);
    font-family: 'Poppins', sans-serif;
}

.btn-sims-primary i {
    font-size: 1.1rem;
}

.btn-sims-primary:hover {
    background: var(--wasabi);
    border-color: var(--wasabi);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(144, 194, 59, 0.35);
}

.btn-sims-secondary {
    background: transparent;
    color: var(--fern-frond);
    border: 2px solid var(--fern-frond);
    padding: 0.875rem 2.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.btn-sims-secondary i {
    font-size: 1.1rem;
}

.btn-sims-secondary:hover {
    background: #ff6b35;
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

/* Modern Stats Section */
.sims-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.sims-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    border: 2px solid rgba(144, 194, 59, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sims-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.sims-stat:hover::before {
    transform: scaleX(1);
}

.sims-stat:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-hover);
}

.sims-stat-number {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.sims-stat:hover .sims-stat-number {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sims-stat-label {
    color: #6b7c93;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

/* Featured Vendors/Institutions Section */
.sims-featured-vendors {
    padding: 6rem 4rem; /* Added horizontal padding for full-width layout */
    background: linear-gradient(135deg, rgba(144, 194, 59, 0.05) 0%, rgba(255, 255, 255, 1) 50%, rgba(144, 194, 59, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.sims-featured-vendors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(147, 195, 59, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2393c33b' stroke-width='1' opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: floatPattern 30s ease-in-out infinite;
    pointer-events: none;
}

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

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #90c23b, #739930);
    color: var(--pure-white);
    padding: 0.875rem 2.5rem;
    border-radius: 2.5rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(144, 194, 59, 0.35);
    animation: badgePulse 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 24px rgba(144, 194, 59, 0.35);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 32px rgba(144, 194, 59, 0.5);
    }
}

.featured-vendors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem; /* Increased gap for better spacing */
    margin: 3.5rem 0;
    position: relative;
    z-index: 1;
    max-width: 1400px; /* Maximum width for very large screens */
    margin-left: auto;
    margin-right: auto;
}

.featured-vendor-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.featured-vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(144, 194, 59, 0.1) 0%, rgba(115, 153, 48, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.featured-vendor-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(144, 194, 59, 0.25);
    border-color: #90c23b;
}

.featured-vendor-card:hover::before {
    opacity: 1;
}

.vendor-image-wrapper {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, rgba(144, 194, 59, 0.15) 0%, rgba(115, 153, 48, 0.08) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.vendor-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.featured-vendor-card:hover .vendor-logo {
    transform: scale(1.1);
}

.featured-badge-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #90c23b, #739930);
    color: var(--pure-white);
    padding: 0.6rem 1.2rem;
    border-radius: 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 18px rgba(144, 194, 59, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.featured-badge-overlay i {
    font-size: 0.9rem;
    color: var(--pure-white);
    animation: starPulse 2s ease-in-out infinite;
}

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

.vendor-info {
    padding: 2rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vendor-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--charcoal);
    margin: 0 0 0.875rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-vendor-card:hover .vendor-name {
    color: #90c23b;
}

.vendor-description {
    color: var(--slate-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}

.vendor-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.vendor-location {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--slate-grey);
    font-size: 0.9rem;
    font-weight: 500;
}

.vendor-location i {
    color: #90c23b;
    font-size: 1rem;
}

.vendor-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 2px solid rgba(144, 194, 59, 0.15);
    transition: all 0.3s ease;
    margin-top: auto;
}

.vendor-link-text {
    font-weight: 800;
    color: #90c23b;
    font-size: 1rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.vendor-link-text i {
    font-size: 1.1rem;
}

.vendor-action i.fa-arrow-right {
    color: #90c23b;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.featured-vendor-card:hover .vendor-action {
    border-top-color: rgba(144, 194, 59, 0.3);
}

.featured-vendor-card:hover .vendor-action i.fa-arrow-right {
    transform: translateX(8px);
}

.featured-cta {
    text-align: center;
    margin-top: 4rem;
}

.featured-cta .btn-sims-secondary {
    padding: 1.1rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, #90c23b, #739930);
    color: var(--pure-white);
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(144, 194, 59, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.featured-cta .btn-sims-secondary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.featured-cta .btn-sims-secondary:hover {
    background: linear-gradient(135deg, #739930, #90c23b);
    box-shadow: 0 12px 32px rgba(144, 194, 59, 0.45);
    transform: translateY(-3px);
}

.featured-cta .btn-sims-secondary:hover i {
    transform: translateX(5px);
}

/* Modern Features Section */
.sims-features {
    padding: 5rem 4rem; /* Added horizontal padding for full-width layout */
    background: linear-gradient(180deg, rgba(147, 195, 59, 0.02) 0%, rgba(255, 255, 255, 1) 50%, rgba(147, 195, 59, 0.02) 100%);
    position: relative;
}

.sims-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2393c33b' stroke-width='1' opacity='0.02'%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.sims-section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.sims-section-title {
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.sims-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.sims-section-subtitle {
    font-size: 1.4rem;
    color: var(--slate-grey);
    line-height: 1.7;
    font-weight: 500;
}

.sims-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem; /* Increased gap for better spacing */
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1400px; /* Maximum width for very large screens */
    margin-left: auto;
    margin-right: auto;
}

.sims-feature-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(147, 195, 59, 0.08);
    min-height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sims-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.sims-feature-card:hover::before {
    transform: scaleX(1);
}

.sims-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-green);
}

.sims-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    color: var(--pure-white);
    box-shadow: 0 8px 20px rgba(147, 195, 59, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.sims-feature-icon i {
    font-size: 32px;
    color: #93c33b;
}

.sims-feature-card:hover .sims-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(147, 195, 59, 0.4);
}

.sims-feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sims-feature-description {
    color: var(--slate-grey);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    flex-grow: 0;
}

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

.sims-feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4;
}

.sims-feature-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 1px;
}

/* Institution Types Section */
.sims-institutions {
    padding: 6rem 4rem; /* Added horizontal padding for full-width layout */
    background: var(--pure-white);
}

.sims-institutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem; /* Increased gap for better card spacing */
    margin-top: var(--spacing-2xl);
    max-width: 1400px; /* Maximum width for very large screens */
    margin-left: auto;
    margin-right: auto;
}

.sims-institution-card {
    background: linear-gradient(135deg, var(--cloud-white), var(--pure-white));
    padding: var(--spacing-xl);
    border-radius: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sims-institution-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(147, 195, 59, 0.15);
}

.sims-institution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 8px 20px rgba(147, 195, 59, 0.3);
    transition: all 0.4s ease;
}

.sims-institution-icon i {
    font-size: 32px;
    color: #93c33b;
}

.sims-institution-card:hover .sims-institution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(147, 195, 59, 0.4);
}

.sims-institution-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

/* Why Choose Section */
.sims-advantages {
    padding: 6rem 0; /* Increased from var(--spacing-3xl) for better section separation */
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--pure-white);
}

.sims-advantages .sims-section-title,
.sims-advantages .sims-section-subtitle {
    color: var(--pure-white);
}

.sims-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-2xl);
    padding: 0 1rem;
}

.sims-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.sims-advantage-check {
    width: 30px;
    height: 30px;
    background: var(--pure-white);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.sims-advantage-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
}

.sims-advantage-content p {
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.sims-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #90c23b 0%, #739930 100%);
    position: relative;
    overflow: hidden;
}

.sims-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

.cta-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.sims-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sims-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: var(--spacing-md);
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(52, 70, 22, 0.3);
}

.sims-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
}

.sims-cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.sims-cta-actions .btn-sims-primary {
    background: var(--pure-white);
    color: #344616;
    border-color: var(--pure-white);
    font-size: 1.05rem;
    padding: 1.125rem 2.75rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.sims-cta-actions .btn-sims-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.sims-cta-actions .btn-sims-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
    font-size: 1.05rem;
    padding: 1.125rem 2.75rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.sims-cta-actions .btn-sims-secondary:hover {
    background: var(--pure-white);
    color: #344616;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.sims-cta-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sims-cta-note strong {
    color: var(--pure-white);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive Design - Large Desktops (1440px and above) */
@media (min-width: 1440px) {
    .sims-feature-card {
        min-height: 340px;
    }
}

/* Responsive Design - Standard Desktops (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    .sims-feature-card {
        padding: 1.75rem;
        min-height: 320px;
    }
    
    .sims-feature-title {
        font-size: 1.15rem;
    }
    
    .sims-feature-description {
        font-size: 0.9rem;
    }
}

/* Responsive Design - Laptop (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .sims-feature-card {
        padding: 1.75rem;
        min-height: 340px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .sims-hero .container {
        padding: 0 2.5rem;
    }

    .sims-hero-grid {
        gap: 4rem;
        grid-template-columns: 1fr 1fr;
    }

    .sims-hero-content {
        padding-right: 0;
        padding-right: 1rem;
    }

    .sims-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .sims-hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Tablet: Show 2 columns for better use of space (769px - 1024px) */
    .sims-features-grid,
    .sims-institutions-grid,
    .featured-vendors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Responsive Design - Enhanced Mobile Hero */
@media (max-width: 768px) {
    .sims-hero {
        padding: 4rem 0 3rem;
    }

    .sims-hero .container {
        padding: 0 1.5rem;
    }

    .sims-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sims-hero-content {
        padding-right: 0;
        padding-left: 0;
    }
        gap: 2.5rem;
    }

    .sims-hero-media {
        order: -1; /* Put video first on mobile */
    }
    
    .sims-hero-content {
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
    }

    .sims-hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        max-width: 85%;
        margin-left: auto;
        margin-right: auto;
        font-weight: 500;
    }

    .sims-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.25;
        padding: 0 1rem;
        text-align: center;
        font-weight: 600;
    }

    .sims-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
        line-height: 1.5;
        text-align: center;
        font-weight: 400;
    }

    .sims-hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .sims-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .btn-sims-primary,
    .btn-sims-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .btn-sims-hero-cta {
        padding: 1.5rem 1.5rem;
        gap: 1rem;
    }

    .btn-sims-hero-cta .cta-icon {
        font-size: 1.5rem;
    }

    .btn-sims-hero-cta .cta-primary {
        font-size: 1.1rem;
    }

    .btn-sims-hero-cta .cta-secondary {
        font-size: 0.85rem;
    }
    
    .sims-stats-section {
        padding: 3rem 0;
    }
    
    .stats-section-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .sims-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
    
    .sims-stat {
        padding: 1.5rem 1rem;
        min-width: 0;
        border-radius: 1rem;
    }

    .sims-stat-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.5rem;
    }

    .sims-stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .sims-features,
    .sims-institutions,
    .sims-advantages,
    .sims-cta {
        padding: 4rem 1.5rem;
    }
    
    .sims-featured-vendors {
        padding: 4rem 1.5rem;
    }
    
    .sims-institutions-grid {
        gap: 1.5rem;
    }
    
    .sims-features-grid,
    .featured-vendors-grid {
        gap: 1.5rem;
    }
    
    /* Mobile and Tablet: Stack cards in single column (will be overridden by tablet 2-col) */
    .sims-features-grid,
    .sims-institutions-grid,
    .featured-vendors-grid {
        grid-template-columns: 1fr;
    }
    
    .vendor-image-wrapper {
        height: 200px;
    }
    
    .vendor-info {
        padding: 1.5rem;
    }
    
    .vendor-name {
        font-size: 1.15rem;
    }
    
    .vendor-description {
        font-size: 0.9rem;
    }
    
    .featured-cta .btn-sims-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .featured-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .featured-cta .btn-sims-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .sims-feature-card {
        padding: 1.75rem;
        min-height: auto;
    }
    
    .sims-feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .sims-feature-icon i {
        font-size: 28px;
    }
    
    .sims-feature-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .sims-feature-description {
        font-size: 0.95rem;
        margin-bottom: 1.125rem;
        line-height: 1.65;
    }
    
    .sims-feature-list li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .sims-advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .sims-section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding: 0 1rem;
        margin-bottom: 1.25rem;
    }

    .sims-section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.6;
    }
    
    .sims-section-header {
        margin-bottom: 2.5rem;
    }

    .sims-cta-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .sims-cta-actions .btn-sims-primary,
    .sims-cta-actions .btn-sims-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .sims-cta-note {
        font-size: 0.95rem;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .sims-hero {
        padding: 4rem 0 3rem;
    }
    
    .sims-hero-content {
        padding: 0;
    }

    .sims-hero-badge {
        padding: 0.6rem 1.25rem;
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
        max-width: 95%;
    }

    .sims-hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        margin-bottom: 1.25rem;
        padding: 0 0.75rem;
    }

    .sims-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0 0.75rem;
    }

    .sims-hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }

    .sims-hero-actions {
        padding: 0 0.75rem;
        gap: 0.875rem;
    }

    .btn-sims-primary,
    .btn-sims-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .sims-stats {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-top: 2rem;
        padding: 0 0.75rem;
    }

    .sims-stat {
        padding: 1.25rem 1rem;
    }

    .sims-stat-number {
        font-size: 1.75rem;
    }

    .sims-stat-label {
        font-size: 0.7rem;
    }
    
    .sims-features,
    .sims-institutions,
    .sims-advantages,
    .sims-cta {
        padding: 3rem 1rem;
    }
    
    .sims-institutions-grid {
        gap: 1rem;
    }
    
    .sims-features-grid,
    .featured-vendors-grid {
        gap: 1rem;
    }
    
    /* Mobile: Ensure single column layout */
    .sims-features-grid,
    .sims-institutions-grid,
    .featured-vendors-grid {
        grid-template-columns: 1fr;
    }
    
    .sims-feature-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .sims-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .sims-feature-icon i {
        font-size: 26px;
    }
    
    .sims-feature-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .sims-feature-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .sims-feature-list li {
        font-size: 0.85rem;
        padding: 0.45rem 0;
    }
    
    .sims-featured-vendors {
        padding: 3rem 1rem;
    }
    
    .featured-vendors-grid {
        gap: 1rem;
    }
    
    .vendor-image-wrapper {
        height: 160px;
    }
    
    .featured-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .vendor-name {
        font-size: 1.1rem;
    }
    
    .vendor-info {
        padding: 1.25rem;
    }
    
    .sims-feature-card,
    .sims-institution-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .sims-institution-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .sims-institution-icon i {
        font-size: 26px;
    }
    
    .sims-institution-title {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .sims-stats {
        gap: 0.875rem;
    }
    
    .sims-stat {
        padding: 1.25rem 0.75rem;
        min-width: 0;
    }

    .sims-section-title {
        font-size: clamp(1.4rem, 6vw, 1.85rem);
        padding: 0 0.75rem;
        margin-bottom: 1rem;
    }

    .sims-section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.75rem;
        line-height: 1.55;
    }
    
    .sims-section-header {
        margin-bottom: 2rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Desktop: Ensure 4 columns above 1024px - Must be LAST to override all responsive rules */
@media (min-width: 1025px) {
    .sims-features-grid,
    .sims-institutions-grid,
    .featured-vendors-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

