.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid var(--color-primary-full);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}
/* Hero Section - Full Bleed Behind Header */



@keyframes particles {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(-20px) translateY(-10px) rotate(120deg); }
    66% { transform: translateX(10px) translateY(-20px) rotate(240deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-standard-l);
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-manrope);
    font-size: var(--font-size-title-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-narrow-l);
    line-height: var(--line-height-tight);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title .highlight {
    background: linear-gradient(45deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: var(--font-size-content);
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--spacing-narrow-l);
    max-width: 600px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.portal {
    margin-bottom: var(--spacing-standard-l);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.portal-buttons {
    display: flex;
    gap: var(--spacing-narrow-l);
    justify-content: center;
    margin-bottom: var(--spacing-narrow-l);
    flex-wrap: wrap;
}

.portal-button {
    padding: var(--spacing-narrow-s) var(--spacing-narrow-l);
    border: none;
    border-radius: 50px;
    font-family: var(--font-manrope);
    font-size: var(--font-size-content);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
    background: var(--color-primary-gradient);
    color: var(--color-white);
    box-shadow: var(--shadow-card);
}

.portal-button:hover {
    background: var(--color-white);
    color: var(--color-primary-full);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 157, 213, 0.3), 0 0 32px rgba(37, 157, 213, 0.2);
}

.social-icons {
    display: flex;
    gap: var(--spacing-narrow-m);
    justify-content: center;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.2));
}

.social-icon img {
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.social-icon .hover-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
}

.social-icon:hover .default-icon {
    opacity: 0;
}

.social-icon:hover .hover-icon {
    opacity: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-standard-m);
    margin-top: var(--spacing-standard-l);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: var(--spacing-narrow-s) var(--spacing-narrow-l);
    background: var(--color-white);
    border-radius: var(--radius-standard);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    min-width: 180px;
    max-width: 200px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), 0 8px 25px rgba(0,0,0,0.15);
}

.stat.highlight {
    background: var(--color-primary-gradient);
    color: var(--color-white);
    min-width: 220px;
    max-width: 240px;
}

@media (max-width: 640px) {
    .stat {
        min-width: 0 !important;
    }

    .stat.highlight {
        min-width: 0 !important;
    }

    /* Nuclear option: prevent ALL overflow */
    * {
        min-width: 0 !important;
    }

    header, .header, .container2 {
        max-width: 100vw !important;
    }
}

.stat-number {
    display: block;
    font-family: var(--font-manrope);
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-narrow-s);
    color: var(--color-primary-full);
}

.stat.highlight .stat-number {
    color: var(--color-white);
}

.stat-label {
    font-size: var(--font-size-content);
    font-weight: var(--font-weight-regular);
    opacity: 0.8;
    color: var(--color-gray);
}

.stat.highlight .stat-label {
    color: rgba(255,255,255,0.9);
}

/* Quarterly Spotlight Section */
.quarterly-spotlight {
    background: var(--color-white);
    padding: var(--spacing-standard-m) 0;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.spotlight-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-standard-l);
    box-sizing: border-box;
    width: 100%;
}

.spotlight-header {
    display: flex;
    gap: var(--spacing-narrow-m);
    margin-bottom: var(--spacing-narrow-l);
    justify-content: center;
    flex-wrap: wrap;
}

.spotlight-tag {
    background: var(--color-secondary-gradient);
    border: 1px solid var(--color-secondary-full);
    border-radius: var(--radius-standard);
    padding: var(--spacing-narrow-s) var(--spacing-narrow-m);
    font-family: var(--font-inter);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-secondary);
    color: var(--color-white);
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.25);
    display: inline-block;
}

.spotlight-tag.leadership {
    background: var(--color-primary-gradient);
    border-color: var(--color-primary-full);
}

.spotlight-description {
    font-family: var(--font-manrope);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-title-xl);
    color: var(--color-primary-full);
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-standard-m);
    text-align: center;
    width: 100%;
    max-width: none;
    padding: 0 var(--spacing-standard-l);
}

.spotlight-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-narrow-l);
    margin-bottom: var(--spacing-narrow-l);
}

.spotlight-card {
    background: linear-gradient(135deg, #259dd5 0%, #66bae2 100%);
    border-radius: var(--radius-standard);
    padding: var(--spacing-narrow-l);
    box-shadow: var(--shadow-card);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
}

.spotlight-card.featured-research {
    background: linear-gradient(135deg, #f3792a 0%, #eba97c 100%);
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 15% 25%, rgba(255,255,255,0.08) 2px, transparent 2px),
            radial-gradient(circle at 85% 75%, rgba(255,255,255,0.08) 2px, transparent 2px),
            radial-gradient(circle at 35% 85%, rgba(255,255,255,0.06) 3px, transparent 3px),
            radial-gradient(circle at 75% 15%, rgba(255,255,255,0.06) 3px, transparent 3px);
    background-size: 40px 40px, 50px 50px, 60px 60px, 55px 55px;
    animation: cardFloat 15s infinite linear;
}

.spotlight-card::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background:
            radial-gradient(circle at 30% 30%, rgba(255,255,255,0.04) 80px, transparent 80px),
            radial-gradient(circle at 70% 70%, rgba(255,255,255,0.03) 120px, transparent 120px);
    animation: cardRotate 25s infinite linear;
}

@keyframes cardFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-30px) translateY(-30px); }
}

@keyframes cardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-tag {
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-small);
    padding: var(--spacing-narrow-xs) var(--spacing-narrow-s);
    font-size: var(--font-size-secondary);
    font-weight: var(--font-weight-semibold);
    display: inline-block;
    margin-bottom: var(--spacing-narrow-m);
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font-manrope);
    font-size: var(--font-size-title-large);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-narrow-m);
    line-height: var(--line-height-tight);
    position: relative;
    z-index: 2;
}

.card-content {
    font-size: var(--font-size-content);
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-narrow-l);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.card-button {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: var(--spacing-narrow-s) var(--spacing-narrow-m);
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-secondary);
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.card-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.card-note {
    font-size: var(--font-size-secondary);
    opacity: 0.7;
    margin-top: var(--spacing-narrow-s);
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-manrope);
    font-size: var(--font-size-title-large);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-narrow-l);
    color: var(--color-primary-full);
}

.leadership-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-narrow-l);
}

.leadership-card {
    background: var(--color-white);
    border-radius: var(--radius-standard);
    padding: var(--spacing-narrow-l);
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.leadership-card:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
}

.leadership-card .card-title {
    color: var(--color-primary-full);
    margin-bottom: var(--spacing-narrow-m);
}

.leadership-card .card-content {
    color: var(--color-black);
    margin-bottom: var(--spacing-narrow-l);
}

.leadership-card .card-button {
    background: var(--color-primary-gradient);
    border: none;
    border-radius: 50px;
    color: var(--color-white);
    padding: var(--spacing-narrow-s) var(--spacing-narrow-l);
    font-family: var(--font-manrope);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-content);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

/* Hero Stats styles end */

/* Achievement Section Styles */
.achievements-section {
    padding: var(--spacing-standard-m) 0;
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.achievements-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-standard-l);
    width: 100%;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-standard-m);
    margin-bottom: var(--spacing-standard-m);
}

.achievement-card {
    background: linear-gradient(145deg, #1A1F35 0%, #252B48 100%);
    border-radius: 24px; /* Increased radius */
    padding: var(--spacing-standard-m);
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow:
            0 10px 30px rgba(26, 31, 53, 0.2),
            0 0 0 1px rgba(255, 200, 87, 0.1); /* Subtle gold border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(255, 200, 87, 0.2);
}

.achievement-card.primary {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    box-shadow:
            0 10px 30px rgba(15, 23, 42, 0.25),
            0 0 0 1px rgba(255, 255, 255, 0.1); /* Subtle white border */
}

.achievement-card.primary:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Decorative Backgrounds */
.achievement-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.achievement-bg.gold-glow {
    background:
            radial-gradient(circle at 100% 0%, rgba(255, 200, 87, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 0% 100%, rgba(255, 159, 67, 0.1) 0%, transparent 60%);
}

.achievement-bg.blue-glow {
    background:
            radial-gradient(ellipse 600px 400px at 10% 90%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse 500px 300px at 90% 10%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
}

/* Pattern Overlays */
.pattern-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFC857' fill-opacity='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/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.achievement-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.achievement-badge {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-narrow-l);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.achievement-badge.gold {
    background: linear-gradient(135deg, rgba(255, 200, 87, 0.1), rgba(255, 159, 67, 0.1));
    border-color: rgba(255, 200, 87, 0.3);
    color: #FFC857;
}

.achievement-badge.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(96, 165, 250, 0.3);
    color: #60A5FA;
}

.achievement-rank {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: var(--spacing-narrow-m);
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.achievement-rank.gold-text {
    background: linear-gradient(180deg, #FFC857 0%, #FF9F43 60%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-rank.blue-text {
    background: linear-gradient(135deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-title {
    font-family: 'Fraunces', serif; /* Match the elegant serif style */
    font-size: 28px;
    font-weight: 600;
    margin-bottom: var(--spacing-narrow-m);
    color: #fff;
    line-height: 1.2;
}

.achievement-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto var(--spacing-standard-s) auto;
}

.scholar-button-container {
    text-align: center;
    margin-top: var(--spacing-narrow-m);
}

.scholar-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    color: #1A1F35;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-manrope);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}

.scholar-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

.metrics-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-standard-s);
    width: 100%;
    margin-top: var(--spacing-narrow-m);
    padding-top: var(--spacing-narrow-m);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.metric-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-family: var(--font-inter);
    font-weight: 500;
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievements-container {
        padding: 0 var(--spacing-narrow-m);
    }

    .achievement-rank {
        font-size: 56px;
    }

    .metrics-grid {
        gap: var(--spacing-narrow-m);
    }
}

/* Try TEIQue Interactive Section */
.try-teique-section {
    background: var(--color-white);
    padding: var(--spacing-standard-m) 0;
    position: relative;
    z-index: 2;
}

.try-teique-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-standard-l);
}

.try-teique-content {
    display: flex;
    gap: var(--spacing-standard-l);
    align-items: center;
}

.try-teique-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-standard-l);
}

.try-teique-title {
    font-family: var(--font-manrope);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: #0093d8;
}

.try-teique-title .highlight {
    color: var(--color-secondary-full);
}

.try-teique-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-standard-m);
}

.step-item {
    display: flex;
    gap: var(--spacing-narrow-m);
    align-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
}

.step-item.active {
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-manrope);
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
}

.step-item:not(.active) .step-number {
    background: var(--color-white);
    color: #0093d8;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1), 0px 0px 24px 0px rgba(0,0,0,0.16);
}

.step-item.active .step-number {
    background: var(--color-primary-gradient);
    color: var(--color-white);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-title {
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: #0093d8;
    margin: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.step-item.active .step-title {
    min-height: auto;
    align-items: flex-start;
}

.step-description {
    font-family: var(--font-manrope);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: var(--color-black);
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    margin-top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item.active .step-description {
    max-height: 200px;
    opacity: 1;
    margin-top: var(--spacing-narrow-m);
}

.step-item:hover:not(.active) .step-number {
    transform: scale(1.05);
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15), 0px 0px 28px 0px rgba(0,0,0,0.2);
}

.try-now-button {
    background: var(--color-primary-gradient);
    border: none;
    border-radius: 53px;
    padding: 8px var(--spacing-standard-m);
    font-family: var(--font-manrope);
    font-size: var(--font-size-content);
    font-weight: var(--font-weight-semibold);
    line-height: 0.9993;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.try-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 157, 213, 0.3), 0 0 32px rgba(37, 157, 213, 0.2);
}

.try-teique-right {
    flex: 1.1;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-image.active {
    opacity: 1;
    transform: scale(1);
}

.step-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Case Studies Section */
.case-studies-section {
    background: var(--color-white);
    padding: var(--spacing-standard-m) 0;
    position: relative;
    z-index: 2;
}

.case-studies-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-wide-l);
    box-sizing: border-box;
    width: 100%;
}

.case-studies-title {
    font-family: var(--font-manrope);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: #0093d8;
    margin-bottom: var(--spacing-narrow-l);
}

.case-studies-description {
    font-family: var(--font-manrope);
    font-size: var(--font-size-title-large);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
    color: var(--color-black);
    margin-bottom: var(--spacing-narrow-l);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-narrow-l);
    margin-bottom: var(--spacing-narrow-l);
}

.case-study-card {
    height: 321px;
    border-radius: var(--radius-standard);
    border: 4px solid var(--color-white);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15), 0px 8px 30px rgba(0,0,0,0.2);
}



.case-card-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-narrow-l);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 30%, rgba(255,255,255,0.95) 70%, rgba(255,255,255,1) 100%);
    backdrop-filter: blur(0px);
    position: relative;
}

.case-card-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 0;
}

.case-card-overlay > * {
    position: relative;
    z-index: 1;
}

.case-card-title {
    font-family: var(--font-manrope);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-normal);
    color: #0093d8;
    margin: 0 0 var(--spacing-narrow-m) 0;
}

.case-card-description {
    font-family: var(--font-inter);
    font-size: var(--font-size-content);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    color: var(--color-black);
    margin: 0 0 var(--spacing-narrow-m) 0;
}

.case-card-button {
    background: var(--color-primary-gradient);
    border: none;
    border-radius: 53px;
    padding: var(--spacing-narrow-s) var(--spacing-standard-m);
    font-family: var(--font-manrope);
    font-size: var(--font-size-content);
    font-weight: var(--font-weight-semibold);
    line-height: 0.9993;
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.case-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 157, 213, 0.3), 0 0 16px rgba(37, 157, 213, 0.2);
}

.case-studies-footer {
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-narrow-s);
}

.view-more-button {
    background: var(--color-primary-gradient);
    border: none;
    border-radius: 53px;
    padding: var(--spacing-narrow-m) var(--spacing-standard-m);
    font-family: var(--font-manrope);
    font-size: var(--font-size-content);
    font-weight: var(--font-weight-semibold);
    line-height: 0.9993;
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 157, 213, 0.3), 0 0 32px rgba(37, 157, 213, 0.2);
}

/* Used By Section */
.used-by {
    padding: var(--spacing-standard-m) 0;
    background: var(--color-white);
    position: relative;
    margin-top: 0;
    z-index: 2;
}


.used-by-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-standard-l);
    text-align: center;
    position: relative;
    z-index: 1;
}

.used-by h2 {
    font-family: var(--font-manrope);
    font-size: var(--font-size-title-large);
    color: var(--color-primary-full);
    margin-bottom: var(--spacing-narrow-l);
}

.logos-container {
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-narrow-m);
    margin-bottom: var(--spacing-narrow-l);
    width: 100%;
    max-width: 100%;
}

.logos-track {
    display: flex;
    gap: var(--spacing-standard-l);
    padding: var(--spacing-narrow-l) 0;
    animation: scroll 20s infinite linear;
    will-change: transform;
}

.logo-item {
    min-width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-narrow-s);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}



/* Tablet Styles */
@media (max-width: 1024px) {
    .spotlight-container,
    .used-by-container,
    .case-studies-container {
        padding: 0 var(--spacing-narrow-l);
    }

    .hero-container {
        padding: 0 var(--spacing-narrow-l);
    }

    .spotlight-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-narrow-m);
    }

    .leadership-offers {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-narrow-m);
    }

    .case-card-title {
        font-size: 18px;
    }

    .case-card-description {
        font-size: 15px;
    }

    .case-card-button {
        font-size: 15px;
        padding: 12px 20px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {

    section, .hero, .quarterly-spotlight, .used-by {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .spotlight-cards {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .spotlight-card {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .video-card {
        flex-direction: column !important;
        width: 100% !important;
        gap: var(--spacing-narrow-m) !important;
        box-sizing: border-box !important;
    }

    .video-card .video-preview {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
        flex-shrink: 0 !important;
        min-height: 200px !important;
    }

    .video-card > div {
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .play-button {
        flex-shrink: 0 !important;
    }

    /* Defensive: prevent any child from causing overflow */
    .spotlight-container *,
    .try-teique-container *,
    .quarterly-spotlight *,
    header *,
    .hero * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Force viewport constraint on ALL elements */
    header, .container2, section, .hero-container,
    .spotlight-container, .try-teique-container, .used-by-container {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }


    .hero {
        min-height: 90vh;
        padding: calc(64px + 48px) var(--spacing-narrow-m) var(--spacing-standard-m) var(--spacing-narrow-m);
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .hero::before {
        top: -80px;
    }

    .hero::after {
        top: -80px;
    }

    .hero-container {
        padding: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: var(--spacing-narrow-m);
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: var(--spacing-narrow-m);
    }

    .portal {
        margin-bottom: var(--spacing-narrow-l);
    }

    .portal-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-narrow-m);
    }

    .portal-button {
        width: 100%;
        min-width: auto;
        padding: 12px var(--spacing-narrow-l);
    }

    .social-icons {
        gap: var(--spacing-narrow-m);
        margin-bottom: var(--spacing-narrow-l);
    }

    .hero-stats {
        gap: 8px;
        margin-top: var(--spacing-narrow-l);
        justify-content: space-between;
        padding: 0;
        width: 100%;
    }

    .stat {
        min-width: calc(50% - 4px);
        max-width: calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
        padding: var(--spacing-narrow-s);
        box-sizing: border-box;
    }

    .stat.highlight {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .stat-number {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 11px;
    }



    .quarterly-spotlight,
    .used-by,
    .case-studies-section {
        padding: var(--spacing-standard-m) 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .spotlight-container,
    .used-by-container,
    .case-studies-container {
        padding: 0 var(--spacing-narrow-m);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-narrow-m);
    }

    .case-study-card {
        height: 280px;
    }

    .case-studies-title {
        font-size: 20px;
    }

    .case-studies-description {
        font-size: 16px;
    }

    .case-studies-footer {
        justify-content: center;
    }

    .spotlight-description {
        font-size: 20px;
        padding: 0;
        margin-bottom: var(--spacing-narrow-l);
    }

    .spotlight-header {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .spotlight-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-narrow-m);
        width: 100%;
        max-width: 100%;
    }

    .spotlight-card,
    .video-card {
        padding: var(--spacing-narrow-m);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .video-card {
        flex-direction: column !important;
        width: 100% !important;
    }

    .video-preview {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        flex-shrink: 1 !important;
    }

    .video-content {
        height: auto;
        width: 100%;
    }

    .video-card > div {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .leadership-offers {
        grid-template-columns: 1fr;
        gap: var(--spacing-narrow-m);
        width: 100%;
        max-width: 100%;
    }

    .leadership-card {
        padding: var(--spacing-narrow-m);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }


    .used-by-title {
        font-size: 18px;
    }

    .logos-track {
        gap: var(--spacing-narrow-m);
    }

    .logo-item {
        min-width: 80px;
        font-size: 11px;
        padding: 8px;
    }

    .logo-item img {
        max-height: 32px;
    }


}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .spotlight-description {
        font-size: 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .stat {
        min-width: 100%;
        max-width: 100%;
    }


    .video-preview {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 160px;
    }
}

/* Extra Small Mobile Devices (iPhone SE, older devices) */
@media (max-width: 360px) {

    .hero {
        min-height: 90vh;
        padding: calc(56px + 48px) 12px 16px 12px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .hero::before,
    .hero::after {
        top: -80px;
    }

    .hero-title {
        font-size: 19px;
        line-height: 1.25;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 1.4;
    }

    .portal-button {
        font-size: 13px;
        padding: 10px 12px;
        white-space: normal;
        min-height: 40px;
        line-height: 1.3;
    }

    .social-icons {
        gap: 6px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .social-icon img {
        width: 100%;
        height: 100%;
    }

    .hero-stats {
        gap: 6px;
    }

    .stat {
        padding: 8px 6px;
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        box-sizing: border-box;
    }

    .stat-number {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 9px;
        line-height: 1.2;
    }

    .spotlight-container,
    .used-by-container,
    .case-studies-container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .quarterly-spotlight,
    .used-by,
    .case-studies-section {
        padding: 20px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .case-studies-title {
        font-size: 18px;
    }

    .case-studies-description {
        font-size: 14px;
        line-height: 1.3;
    }

    .case-study-card {
        height: 260px;
    }

    .case-card-overlay {
        padding: 12px;
    }

    .case-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .case-card-description {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .case-card-button {
        padding: 10px 12px;
        font-size: 14px;
    }

    .view-more-button {
        padding: 10px 12px;
        font-size: 14px;
    }

    .spotlight-description {
        font-size: 17px;
        line-height: 1.3;
    }


    .spotlight-card,
    .video-card,
    .leadership-card {
        padding: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .video-preview {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 180px;
    }

    .video-card > div:last-child {
        height: auto !important;
    }

    .leadership-card h3 {
        font-size: 16px;
    }

    .leadership-card p {
        font-size: 13px;
    }


    .logo-item {
        min-width: 70px;
        padding: 6px;
        font-size: 10px;
    }

    .logo-item img {
        max-height: 28px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .logos-track {
        animation: none;
    }

    .hero::before,
    .hero::after,
    .spotlight-card::before,
    .spotlight-card::after,
    .used-by::before,
    .used-by::after {
        animation: none;
    }

    * {
        transition: none !important;
    }
}

/* Focus styles for accessibility */


/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .portal-button,
    .mobile-nav .nav-item {
        min-height: 44px;
    }

}
 :root {
     --text : #000;
     --blue-text : #259DD5;
     --orange-text : #E28545;
     --box-shadoow : 0px 0px 24px 0px rgba(0,0,0,.15);
     --box-shadoow1: 0px 0px 16px 0px rgba(0,0,0,.15);
     --box-shadoow_inset : 0px 0px 16px 0px rgba(0,0,0,.15) inset;
     --bdr : 15px;
     --w : #FFF;
     --gray-text : #9B9B9B;
     --blue-gradient : linear-gradient(0deg, #259DD5 0%, #66BAE2 100%);
     --gray-gradient : linear-gradient(0deg, rgba(155, 155, 155, 0.59) 0%, rgba(227, 227, 227, 0.59) 100%);
 }
header { padding: 15px 20px; position: fixed;top: 0; z-index: 10000; box-sizing: border-box; width: 100%; max-width: 100vw; }
.header { background: rgba(255, 255, 255, 0.95);backdrop-filter: blur(10px);padding: 12px 24px 12px 16px; border-radius: var(--bdr); box-shadow: var(--box-shadoow); display: flex; align-items: center; justify-content: space-between; box-sizing: border-box; }
.logo2 { flex: 0 0 auto; }
.logo2 img { width: 56px; height: auto}
.logo2 a { display: block}
nav { flex: 1 1 auto; display: flex; justify-content: center; color: var(--blue-text); }
nav ul { display: flex; justify-content: space-evenly; width: 100%; max-width: 600px; list-style: none; margin: 0; padding: 0;}
nav ul li { margin: 0; padding: 0; }
nav ul a{ color: var(--blue-text);text-decoration: none}
nav ul a:hover { color: var(--orange-text); }
.h_right { color: var(--orange-text); flex: 0 0 auto; }
.container2 { max-width: 1288px; width: 100%; padding: 0; margin: 0 auto; box-sizing: border-box; max-width: 100%; }
.h_right a{ color:  var(--orange-text);text-decoration: none}

.mobile_toggle { cursor: pointer; display: none; flex: 0 0 auto; z-index: 18;
    width: 32px; height: 32px; position: relative; overflow: hidden; border: 3px solid transparent; }
.mobile_toggle span { height: 2px; width: 22px; background: var(--blue-text); margin: auto;
    display: block; position: absolute; border-radius: 0; transition: .3s; left: 0; right: 0;  }
.mobile_toggle.active span { background: var(--w); margin-top: -3px; }
.mobile_toggle span:first-child { top: 6px; }
.mobile_toggle span:last-child { bottom: 6px; }
.mobile_toggle span:nth-child(2) { top: 0; bottom: 0; margin: auto; }
/*.mobile_toggle.active { background: var(--blue-text); border-color: var(--z); }*/
.mobile_toggle.active span { background: var(--blue-text); }
.mobile_toggle.active span:first-child { top: calc(50% + 2px); transform: rotate(45deg); }
.mobile_toggle.active span:last-child { bottom: calc(50% - 2px); transform: rotate(-45deg);}
.mobile_toggle.active span:nth-child(2) { left: 100%; opacity: 0; }
@media(max-width: 641px) {
    header { padding: 8px 12px; max-width: 100vw; width: 100%; box-sizing: border-box; }
    .container2 { padding: 0; width: 100%; max-width: 100%; box-sizing: border-box; }
    .mobile_toggle { display: block; flex: 0 0 auto; }
    .header {
        padding: 8px 12px 8px 8px;
        flex-wrap: wrap;
        box-shadow: 0px 0px 16px 0px rgba(0,0,0,.12);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
        padding: 16px 0 8px 0;
        border-top: 1px solid rgba(37, 157, 213, 0.15);
        margin-top: 8px;
    }
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    nav ul li {
        text-align: left;
        padding: 0;
    }
    nav ul li a {
        display: block;
        padding: 12px 8px;
        border-bottom: 1px solid rgba(37, 157, 213, 0.1);
        transition: all 0.2s ease;
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    nav ul li a:hover {
        background: rgba(243, 121, 42, 0.05);
        padding-left: 16px;
    }
    header.active nav { display: block; }
    .logo2 img { width: 32px; }
    .logo2 { margin-left: 6px; }
    .h_right {
        order: 2;
    }
}

@media(max-width: 360px) {
    header { padding: 6px 8px; max-width: 100vw; width: 100%; box-sizing: border-box; }
    .container2 { padding: 0; width: 100%; max-width: 100%; box-sizing: border-box; }
    .header {
        padding: 6px 8px 6px 6px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .logo2 img { width: 28px; }
    .logo2 { margin-left: 4px; }
    .h_right {
        font-size: 14px;
    }
    .mobile_toggle {
        width: 28px;
        height: 28px;
    }
    .mobile_toggle span {
        width: 20px;
        height: 2px;
    }
    .mobile_toggle span:first-child { top: 5px; }
    .mobile_toggle span:last-child { bottom: 5px; }
    nav {
        padding: 12px 0 6px 0;
    }
    nav ul li a {
        padding: 10px 6px;
        font-size: 14px;
    }
}


/* Highlight Section */
.highlight-section {
    padding: 40px 96px;
}

.highlight-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.tags {
    display: flex;
    gap: 8px;
}

.tag {
    padding: 8px 16px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    border: 1px solid;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

.tag-spotlight {
    background: #eba97c;
    border-color: #f3792a;
}

.tag-belief {
    background: #75c188;
    border-color: #3aa756;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    color: #0093d8;
}

.highlight-title {
    color: #3aa756;
}

.highlight-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.highlight-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.highlight-card {
    flex: 1;
    background: linear-gradient(to bottom, #75c188, #3aa756);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), 0px 0px 24px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card-horizontal {
    flex-direction: row;
    align-items: center;
}

.card-badge {
    background: #eba97c;
    border: 1px solid #f3792a;
    padding: 8px 16px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    width: fit-content;
}

.card-badge-offer {
    background: #f1cf77;
    border-color: #ebbb3d;
}

.card-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: white;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: white;
}

.btn-card {
    background: linear-gradient(to top, #ededed, #ffffff 69.609%);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #3aa756;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
}

.btn-card:hover {
    opacity: 0.9;
}

.card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: white;
    text-align: center;
}

.newsletter-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 24px;
    border-radius: 16px;
    margin-top: 24px;
}

.newsletter-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    color: #3aa756;
    text-align: center;
}

.newsletter-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #1e1e1e;
    text-align: center;
}

.btn-newsletter {
    background: linear-gradient(to bottom, #75c188, #3aa756);
    border: none;
    padding: 10px 36px;
    border-radius: 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    cursor: pointer;
}

.btn-newsletter:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .highlight-section {
        padding: 40px 24px;
    }

    .highlight-cards {
        flex-direction: column;
    }

    .highlight-card {
        width: 100%;
    }

    .card-horizontal {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .highlight-section {
        padding: 32px 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .highlight-title {
        font-size: 22px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 14px;
    }

    .btn-card, .btn-newsletter {
        padding: 8px 24px;
        font-size: 14px;
    }
}