/* ABOUT PAGE STYLES */

.about-page {
    min-height: 100vh;
    background: #f8f9fa;
}

/* Slider Section (About Page) */
.about-page .slider-section {
    margin: 0;
    padding: 0;
}

.about-page .slider-section .container {
    max-width: 100%;  
    margin: 0;
}

.about-page .slider-wrapper {
    position: relative;
    width: 100%;
}

.about-page .slider-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.about-page .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.about-page .slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.about-page .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-page .slider-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(99.59deg, #042D51 3.67%, rgba(115, 115, 115, 0) 131.9%);
    z-index: 2;
}

.about-page .slider-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    z-index: 3;
}

.about-page .slider-text-content {
    text-align: left;
    padding: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-page .slider-text-content h2 {
    width: 65%;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-page .slider-text-content p {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.about-page .slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
    pointer-events: none;
    width: auto;
}

.about-page .slider-controls button {
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.about-page .slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.about-page .slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.about-page .slider-nav-btn:active {
    transform: scale(0.95);
}

.about-page .slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-page .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.about-page .slider-dot.active {
    background: white;
    border-color: white;
    width: 16px;
    height: 16px;
}

.about-page .slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}



/* Platform Submenu */
.platform-submenu {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
    padding: 24px 0;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
    background: linear-gradient(to right, rgba(0, 94, 180, 0.02), rgba(0, 94, 180, 0.05));
    border-radius: 12px;
    padding: 24px 20px;
    margin-top: 30px;
}

.platform-submenu-item {
    padding: 12px 24px;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.platform-submenu-item:hover {
    background: rgba(0, 94, 180, 0.08);
    color: #005EB4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 94, 180, 0.15);
}

.platform-submenu-item.active {
    background: linear-gradient(135deg, #005EB4 0%, #003d7a 100%);
    color: white;
    border-color: #005EB4;
    box-shadow: 0 4px 16px rgba(0, 94, 180, 0.3);
    transform: translateY(-2px);
}

.platform-submenu-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: #005EB4;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .platform-submenu {
        gap: 10px;
        padding: 16px 12px;
    }
    .platform-submenu-item {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Platform Content */
.platform-content {
    padding: 0 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.platform-section {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.platform-section:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.platform-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #005EB4;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 16px;
}

.platform-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005EB4 0%, #003d7a 100%);
    border-radius: 2px;
}

.platform-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

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

.platform-list li {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    transition: all 0.2s ease;
}

.platform-list li:hover {
    color: #005EB4;
    padding-left: 40px;
}

.platform-list li:before {
    content: "•";
    color: #005EB4;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.platform-divider {
    text-align: center;
    font-size: 28px;
    color: #005EB4;
    margin: 50px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.bento-grid-container {
    margin: 60px 0;
    padding: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bento-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.platform-feature-card {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;

    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.platform-feature-card .platform-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.platform-feature-card:hover .platform-card-overlay {
    opacity: 0.9;
}

.platform-feature-card .platform-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bento-card-large {
    grid-column: span 8;
    min-height: 500px;
}

.bento-card-right-column {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bento-card-small {
    grid-column: span 4;
    min-height: 350px;
}

.bento-card-medium {
    grid-column: span 6;
    min-height: 400px;
}

.bento-card-full {
    grid-column: span 12;
    min-height: 300px;
}

.bento-card-title {
    font-size: 36px;
    font-weight: 700;
    color: #005EB4;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 16px;
}

.bento-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005EB4 0%, #003d7a 100%);
    border-radius: 2px;
}

.bento-card-text {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 20px 0;
}

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

.bento-card-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.bento-card-list li:before {
    content: "•";
    color: #005EB4;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.platform-cards-section {
    margin: 60px 0;
    padding: 0;
}

.platform-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.platform-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.platform-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.platform-feature-card .platform-card-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    flex: 1;
}

.platform-card-description {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.platform-detail-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #005EB4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 94, 180, 0.3);
    white-space: nowrap;
}

.platform-detail-btn:hover {
    background: #003d7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 94, 180, 0.4);
}

.platform-card-title {
    /* position: absolute; */
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

.platform-card:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .platform-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bento-card-large {
        grid-column: span 6;
    }
    .bento-card-right-column {
        grid-column: span 6;
    }
    .bento-card-medium {
        grid-column: span 6;
    }
    .bento-card-small {
        grid-column: span 6;
    }
    .bento-card-full {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .platform-content {
        padding: 40px 0;
    }
    .platform-section {
        padding: 24px;
        margin-bottom: 40px;
    }
    .platform-section-title {
        font-size: 28px;
    }
    .platform-section-text,
    .platform-list li {
        font-size: 16px;
    }
    .bento-grid-container {
        margin: 40px 0;
    }
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .bento-card-large,
    .bento-card-right-column,
    .bento-card-medium,
    .bento-card-small,
    .bento-card-full {
        grid-column: span 1;
    }
    .bento-card {
        padding: 24px;
        min-height: auto;
    }
    .bento-card-title {
        font-size: 28px;
    }
    .bento-card-text {
        font-size: 16px;
    }
    .bento-card-list li {
        font-size: 14px;
    }
    .platform-cards-section {
        margin: 40px 0;
    }
    .platform-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .platform-card {
        height: 250px;
    }
    .platform-card-title {
        font-size: 1.25rem;
    }
    .platform-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .platform-feature-card .platform-card-title {
        font-size: 1.5rem;
    }
    .platform-card-description {
        font-size: 0.9rem;
    }
    .platform-detail-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Platform Sub Pages (The Forum, Businesspro, Datapro, Innovation) */
.the-forum-page,
.businesspro-page,
.datapro-page,
.innovation-page,
.platform-page {
    min-height: 100vh;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.platform-detail-content {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.platform-detail-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.platform-sidebar {
    width: 25%;
    flex-shrink: 0;
}

.platform-sidebar-nav {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.platform-nav-item {
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.platform-nav-item:hover {
    background: #f8fafc;
    color: #005EB4;
}

.platform-nav-item.active {
    background: #f0f9ff;
    color: #005EB4;
    border-left-color: #005EB4;
    font-weight: 600;
}

.platform-main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.platform-intro-section {
    margin-bottom: 30px;
}

.platform-intro-card {
    background: linear-gradient(135deg, #005EB4 0%, #003d7a 100%);
    border-radius: 24px;
    padding: 50px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 94, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.platform-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.platform-intro-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.platform-intro-title {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.platform-intro-text {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
    max-width: 800px;
}

.platform-stats-row {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.platform-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.platform-stat-text {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.platform-feature-section {
    margin-bottom: 20px;
}

.platform-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.platform-feature-row-reverse {
    direction: rtl;
}

.platform-feature-row-reverse > * {
    direction: ltr;
}

.platform-feature-text {
    flex: 1;
}

.platform-feature-heading {
    font-size: 32px;
    font-weight: 700;
    color: #005EB4;
    margin: 0 0 32px 0;
    position: relative;
    padding-bottom: 16px;
}

.platform-feature-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005EB4 0%, #00a8ff 100%);
    border-radius: 2px;
}

.platform-check-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.platform-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.platform-check-icon {
    width: 24px;
    height: 24px;
    color: #005EB4;
    flex-shrink: 0;
    margin-top: 2px;
}

.platform-check-text {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
}

.platform-feature-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #005EB4;
    margin: 0 0 16px 0;
}

.platform-feature-description {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.platform-conclusion-section {
    margin-top: 40px;
}

.platform-conclusion-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 2px solid #bae6fd;
}

.platform-conclusion-text {
    font-size: 22px;
    line-height: 1.8;
    color: #005EB4;
    font-weight: 600;
    margin: 0;
}

.platform-datapro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.platform-datapro-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.platform-datapro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 94, 180, 0.12);
    border-color: rgba(0, 94, 180, 0.2);
}

.platform-datapro-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid #bae6fd;
}

.platform-datapro-icon {
    width: 40px;
    height: 40px;
    color: #005EB4;
}

.platform-datapro-title {
    font-size: 24px;
    font-weight: 700;
    color: #005EB4;
    margin: 0 0 16px 0;
}

.platform-datapro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.platform-innovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.platform-innovation-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.platform-innovation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 94, 180, 0.12);
    border-color: rgba(0, 94, 180, 0.2);
}

.platform-innovation-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 2px solid #bae6fd;
}

.platform-innovation-icon {
    width: 40px;
    height: 40px;
    color: #005EB4;
}

.platform-innovation-title {
    font-size: 24px;
    font-weight: 700;
    color: #005EB4;
    margin: 0 0 16px 0;
}

.platform-innovation-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.platform-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon-box {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0f2fe;
    box-shadow: 0 8px 32px rgba(0, 94, 180, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 94, 180, 0.15);
}

.platform-svg-icon {
    width: 140px;
    height: 140px;
    color: #005EB4;
}

.platform-strategy-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.platform-strategy-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.platform-strategy-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #005EB4 0%, #00a8ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 94, 180, 0.2);
    flex-shrink: 0;
}

.platform-strategy-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.platform-strategy-title {
    font-size: 32px;
    font-weight: 700;
    color: #005EB4;
    margin: 0;
    line-height: 1.2;
}

.platform-hero-card {
    background: linear-gradient(135deg, #005EB4 0%, #003d7a 100%);
    border-radius: 32px;
    padding: 0;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 30px 80px rgba(0, 94, 180, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* PLATFORM (frontend/platform) – modern football themed top visual */
.platform-page .platform-top-visual {
    margin-top: -60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.platform-page .platform-top-visual-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 512 / 341;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    background: #ffffff;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-page .platform-top-visual-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.platform-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.platform-hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.platform-hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding: 40px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.platform-page .platform-hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 64px 56px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .platform-page .platform-hero-content {
        padding: 48px 32px;
    }
}

.platform-hero-left {
    position: relative;
    z-index: 2;
}

.platform-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
}

.platform-page .platform-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

.platform-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.platform-hero-text {
    font-size: 18px;
    line-height: 1.9;
    margin: 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.platform-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.platform-hero-media {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-hero-image {
    width: 100%;
    height: auto;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
}

.platform-hero-image:hover {
    transform: translateY(-2px);
    transition: transform 0.25s ease;
}

.platform-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-stat-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.platform-stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.platform-features-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Old platform-feature-card styles removed - using .platform-modern version below */

@media (max-width: 992px) {
    .platform-hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 44px 28px;
    }

    .platform-hero-title {
        font-size: 36px;
    }

    .platform-page .platform-top-visual {
        margin-top: -55px;
    }

    .platform-page .platform-top-visual-media {
        padding: 18px;
    }

    .platform-page .platform-feature-row {
        padding: 34px 22px;
        gap: 28px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .platform-hero-content {
        padding: 36px 18px;
    }

    .platform-hero-title {
        font-size: 30px;
    }

    .platform-hero-text {
        font-size: 16px;
    }

    .platform-page .platform-top-visual {
        margin-top: -48px;
    }

    .platform-page .platform-top-visual-media {
        padding: 14px;
    }
}

.platform-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.platform-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.platform-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 94, 180, 0.15);
    border-color: rgba(0, 94, 180, 0.2);
}

.platform-feature-card.platform-feature-card-large {
    grid-column: span 2;
}

.platform-feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.platform-feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #005EB4 0%, #00a8ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 94, 180, 0.25);
    flex-shrink: 0;
}

.platform-feature-icon {
    font-size: 32px;
}

.platform-feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #005EB4;
    margin: 0;
}

.platform-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.platform-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    transition: all 0.2s ease;
}

.platform-feature-list li:hover {
    color: #005EB4;
    transform: translateX(4px);
}

.platform-feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #005EB4 0%, #00a8ff 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 94, 180, 0.3);
}

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .platform-detail-layout {
        flex-direction: column;
        gap: 30px;
    }
    .platform-sidebar {
        width: 100%;
    }
    .platform-sidebar-nav {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        padding: 16px;
    }
    .platform-nav-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    .platform-nav-item.active {
        border-left: none;
        border-bottom-color: #005EB4;
    }
    .platform-main-content {
        width: 100%;
    }
    .platform-feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    .platform-feature-row-reverse {
        direction: ltr;
    }
    .platform-icon-box {
        width: 200px;
        height: 200px;
    }
    .platform-svg-icon {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .platform-detail-content {
        padding: 40px 0;
    }
    .platform-intro-section {
        margin-bottom: 50px;
    }
    .platform-intro-card {
        padding: 30px 24px;
        border-radius: 20px;
    }
    .platform-intro-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    .platform-intro-title {
        font-size: 28px;
    }
    .platform-intro-text {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .platform-stats-row {
        flex-direction: column;
        gap: 16px;
    }
    .platform-stat-box {
        padding: 20px;
    }
    .platform-stat-number {
        font-size: 28px;
    }
    .platform-feature-section {
        margin-bottom: 60px;
    }
    .platform-feature-row {
        padding: 30px 24px;
        border-radius: 20px;
    }
    .platform-feature-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .platform-check-list {
        gap: 16px;
    }
    .platform-check-text {
        font-size: 15px;
    }
    .platform-icon-box {
        width: 160px;
        height: 160px;
    }
    .platform-svg-icon {
        width: 80px;
        height: 80px;
    }
    .platform-strategy-card {
        padding: 30px 24px;
        border-radius: 20px;
    }
    .platform-strategy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    .platform-strategy-icon-box {
        width: 64px;
        height: 64px;
    }
    .platform-strategy-icon {
        width: 32px;
        height: 32px;
    }
    .platform-strategy-title {
        font-size: 24px;
    }
    .platform-datapro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .platform-innovation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .platform-datapro-card,
    .platform-innovation-card {
        padding: 30px 24px;
    }
    .platform-datapro-icon-box,
    .platform-innovation-icon-box {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    .platform-datapro-icon,
    .platform-innovation-icon {
        width: 32px;
        height: 32px;
    }
    .platform-datapro-title,
    .platform-innovation-title {
        font-size: 20px;
    }
    .platform-datapro-text,
    .platform-innovation-text {
        font-size: 15px;
    }
    .platform-conclusion-card {
        padding: 30px 24px;
    }
    .platform-conclusion-text {
        font-size: 18px;
    }
}

.page-hero {
    background: linear-gradient(135deg, #005EB4 0%, #003d7a 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* MODERN SAAS-STYLE PLATFORM PAGE REDESIGN */
.platform-page {
    background: #ffffff;
    min-height: 100vh;
}

.platform-page .page-hero {
    background: linear-gradient(180deg, #0a1929 0%, #0f172a 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.platform-page .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 94, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.platform-page .page-hero .container {
    position: relative;
    z-index: 1;
}

.platform-page .page-title {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
    color: #ffffff;
    line-height: 1.1;
}

.platform-page .page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
}

.platform-page .platform-detail-content {
    background: #ffffff;
    padding: 80px 0;
}

.platform-page .platform-hero-card {
    background: linear-gradient(135deg, #005EB4 0%, #003d7a 100%);
    border-radius: 24px;
    padding: 0;
    margin-bottom: 80px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 94, 180, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.platform-page .platform-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.platform-page .platform-hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

/* FOOTBALL PRO PAGE - Uses same styles as Platform page, only emoji icon support added */
.platform-page .platform-check-icon-emoji {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    margin-right: 16px;
    display: inline-block;
    width: 24px;
    text-align: center;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: no-preference) {
    .platform-page * {
        scroll-behavior: smooth;
    }
}

.platform-page .platform-conclusion-title {
    font-size: 32px;
    font-weight: 800;
    color: #005EB4;
    margin: 0 0 24px 0;
    text-align: center;
}

.platform-page .platform-conclusion-quote {
    margin-top: 30px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #005EB4;
    line-height: 1.6;
    font-style: italic;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .platform-page .platform-conclusion-title {
        font-size: 24px;
    }

    .platform-page .platform-conclusion-quote {
        font-size: 18px;
    }
}

.platform-page .platform-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.platform-page .platform-hero-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.platform-page .platform-feature-section {
    margin-bottom: 64px;
    animation: fadeInUp 0.6s ease-out both;
}

.platform-page .platform-feature-section:nth-child(1) { animation-delay: 0.1s; }
.platform-page .platform-feature-section:nth-child(2) { animation-delay: 0.2s; }
.platform-page .platform-feature-section:nth-child(3) { animation-delay: 0.3s; }
.platform-page .platform-feature-section:nth-child(4) { animation-delay: 0.4s; }

.platform-page .platform-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 64px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-page .platform-feature-row:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.platform-page .platform-feature-row::before {
    display: none;
}

.platform-page .platform-feature-row > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .platform-page .platform-feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .platform-page .platform-feature-row {
        padding: 32px 24px;
        gap: 32px;
    }
}

.platform-page .platform-feature-heading {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 24px 0;
    position: relative;
    padding-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.platform-page .platform-feature-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #005EB4 0%, #00a8ff 100%);
    border-radius: 2px;
}

.platform-page .platform-feature-description {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.75;
    color: #475569;
    margin: 0 0 32px 0;
    font-weight: 400;
}

.platform-page .platform-check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platform-page .platform-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s ease;
}

.platform-page .platform-check-item:hover {
    transform: translateX(4px);
}

.platform-page .platform-check-icon {
    width: 22px;
    height: 22px;
    color: #005EB4;
    flex-shrink: 0;
    margin-top: 2px;
}

.platform-page .platform-check-text {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.7;
    color: #334155;
    font-weight: 400;
}

.platform-page .platform-check-text strong {
    font-weight: 600;
    color: #0f172a;
}

.platform-page .platform-conclusion-section {
    margin-top: 80px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.platform-page .platform-conclusion-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
    padding: 64px 56px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.platform-page .platform-conclusion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 94, 180, 0.15) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
}

.platform-page .platform-conclusion-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
}

.platform-page .platform-conclusion-text strong {
    font-weight: 700;
    color: #ffffff;
}

@media (max-width: 768px) {
    .platform-page .platform-conclusion-card {
        padding: 48px 32px;
    }
    
    .platform-page .platform-conclusion-section {
        margin-top: 64px;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin: 16px 0 0 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.forum-content,
.businesspro-content,
.datapro-content,
.innovation-content {
    padding: 60px 0;
}

.forum-section,
.business-section,
.datapro-card,
.innovation-card {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.forum-section:hover,
.business-section:hover,
.datapro-card:hover,
.innovation-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.section-title,
.card-title {
    font-size: 36px;
    font-weight: 700;
    color: #005EB4;
    margin: 0 0 16px 0;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after,
.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #005EB4 0%, #003d7a 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.section-text,
.card-text {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.forum-divider,
.content-divider {
    text-align: center;
    font-size: 28px;
    color: #005EB4;
    margin: 50px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.intro-section {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 94, 180, 0.05) 0%, rgba(0, 61, 122, 0.08) 100%);
    border-radius: 16px;
    border-left: 4px solid #005EB4;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #1e293b;
    margin: 0;
    font-weight: 500;
}

.datapro-grid,
.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.datapro-card,
.innovation-card {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    .page-title {
        font-size: 36px;
    }
    .page-subtitle {
        font-size: 16px;
    }
    .forum-content,
    .businesspro-content,
    .datapro-content,
    .innovation-content {
        padding: 40px 0;
    }
    .forum-section,
    .business-section,
    .datapro-card,
    .innovation-card {
        padding: 24px;
        margin-bottom: 40px;
    }
    .section-title,
    .card-title {
        font-size: 28px;
    }
    .section-subtitle {
        font-size: 20px;
    }
    .section-text,
    .card-text,
    .intro-text {
        font-size: 16px;
    }
    .datapro-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Who We Are Section */
.about-page .who-we-are-wrapper {
    background-color: #0a4a8e !important;
    color: #ffffff !important;
    position: relative;
    overflow: visible;
    width: 100%;
}

.about-page .who-we-are-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0px;
    display: flex;
    gap: 60px;
}

.about-page .who-we-are-left-column {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-page .who-we-are-title {
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 36px;
    text-wrap-mode: nowrap;
}

.who-we-are-question-mark-svg {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are-question-mark-svg svg {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.who-we-are-question-mark-svg path,
.who-we-are-question-mark-svg circle {
    fill: #ffffff;
}

.who-we-are-right-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.about-page .who-we-are-description {
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
    color: #ffffff !important;
    margin: 0;
    max-width: 800px;
}

.about-page .who-we-are-silhouette {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1000px;
    height: 300px;
    z-index: 0;
    margin: 0;
    padding: 0;
    background-color: #0957A3;
    mask-image: url('/assets/images/logo.png');
    -webkit-mask-image: url('/assets/images/logo.png');
    mask-size: 100%;
    -webkit-mask-size: 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    opacity: 0.50;
    pointer-events: none;
}

/* Combined Section (What We Offer, Clubs, Sponsors) */
.combined-section {
    background-color: #C7EAFB;
    padding: 80px 0;
}

.combined-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* What We Offer Section */
.what-we-offer-container {
    padding: 0 0px;
    background-color: transparent;
    margin-bottom: 60px;
}

.what-we-offer-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    margin-top: 0;
}

.what-we-offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.what-we-offer-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.what-we-offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.what-we-offer-card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

.what-we-offer-card:hover {
    transform: scale(1.05);
}

/* Clubs Section (in Combined Section) */
.combined-section .clubs-section {
    margin: 0;
    padding: 0;
    background: transparent;
}

.combined-section .clubs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.combined-section .clubs-container {
    width: 100%;
    margin: 40px 0;
}

.combined-section .clubs-title {
    font-size: 1.5rem;
    color: #0d3b66;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.combined-section .clubs-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pinch-zoom;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
}

.combined-section .clubs-grid::-webkit-scrollbar {
    display: none;
}

.combined-section .clubs-grid:active {
    cursor: grabbing;
}

.combined-section .clubs-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    flex: 1 1 0;
    min-width: 140px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.combined-section .clubs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.combined-section .clubs-logo {
    width: 100px;
    height: 90px;
    object-fit: contain;
}

/* Sponsors Section (in Combined Section) */
.combined-section .sponsors-section {
    margin: 0;
    padding: 0;
    background: transparent;
}

.combined-section .sponsors-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.combined-section .sponsors-container {
    width: 100%;
    margin: 40px 0;
}

.combined-section .sponsors-title {
    font-size: 1.5rem;
    color: #0d3b66;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.combined-section .sponsors-bar {
    background-color: #f1f3f5;
    border-radius: 9999px;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.combined-section .sponsors-spacer {
    display: none;
}

.combined-section .sponsors-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    flex: 1;
    min-width: 0;
}

.combined-section .sponsors-logo {
    max-height: 30px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5) contrast(0.9);
    opacity: 1.6;
    transition: all 0.3s ease-in-out;
}

.combined-section .sponsors-link:hover .sponsors-logo {
    filter: grayscale(100%) brightness(0) contrast(0.9);
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-page .who-we-are-content-container {
        flex-direction: column;
        padding: 40px 10px;
        gap: 40px;
        text-align: center;
    }

    .about-page .who-we-are-left-column {
        flex: 1;
        order: 1;
    }

    .about-page .who-we-are-right-column {
        flex: 1;
        order: 2;
    }

    .about-page .who-we-are-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about-page .who-we-are-question-mark-svg svg {
        max-width: 120px;
    }

    .about-page .who-we-are-description {
        font-size: 1rem;
    }

    .about-page .who-we-are-silhouette {
        mask-size: contain;
        -webkit-mask-size: contain;
        opacity: 0.1;
    }

    .what-we-offer-container {
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .what-we-offer-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .combined-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .about-page .slider-container {
        height: 400px !important;
    }

    .about-page .slider-content {
        padding: 0;
    }

    .about-page .slider-text-content {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .about-page .slider-text-content h2 {
        width: 100% !important;
        font-size: 24px !important;
    }

    .about-page .slider-controls {
        bottom: 20px;
        gap: 10px;
    }

    .about-page .slider-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .about-page .slider-dot {
        width: 10px;
        height: 10px;
    }

    .about-page .slider-dot.active {
        width: 14px;
        height: 14px;
    }

    .combined-section {
        padding: 40px 0;
    }

    .combined-section .container {
        padding: 0 10px;
    }

    .combined-section .clubs-section,
    .combined-section .sponsors-section {
        padding: 0 16px;
    }

    .combined-section .clubs-section .container,
    .combined-section .sponsors-section .container {
        padding: 0;
    }

    .combined-section .clubs-container {
        margin: 20px 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .combined-section .clubs-grid {
        gap: 12px;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .combined-section .clubs-card {
        padding: 12px;
        min-width: 120px;
        width: 120px;
        flex: 0 0 120px;
        box-sizing: border-box;
    }

    .combined-section .clubs-title {
        font-size: 1.2rem;
        padding: 0;
        margin-bottom: 16px;
    }

    .combined-section .clubs-logo {
        width: 80px;
        height: 70px;
    }

    .combined-section .sponsors-container {
        margin: 20px 0;
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .combined-section .sponsors-bar {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 15px 20px;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pinch-zoom;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        cursor: grab;
        user-select: none;
    }

    .combined-section .sponsors-bar::-webkit-scrollbar {
        display: none;
    }

    .combined-section .sponsors-bar:active {
        cursor: grabbing;
    }

    .combined-section .sponsors-spacer {
        display: block;
        flex-shrink: 0;
        width: 15px;
    }

    .combined-section .sponsors-link {
        flex: 0 0 auto;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .combined-section .sponsors-logo {
        max-height: 25px;
        width: auto;
        height: auto;
        display: block;
    }

    .combined-section .sponsors-title {
        font-size: 1.2rem;
        padding: 0;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .about-page .who-we-are-content-container {
        padding: 30px 10px;
        gap: 30px;
    }

    .about-page .who-we-are-title {
        font-size: 1.75rem;
    }

    .about-page .who-we-are-question-mark-svg svg {
        max-width: 100px;
    }

    .about-page .who-we-are-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .what-we-offer-container {
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .what-we-offer-cards-grid {
        grid-template-columns: 1fr;
    }

    .what-we-offer-card {
        height: 250px;
    }

    .what-we-offer-section-title {
        font-size: 1.5rem;
    }

    .what-we-offer-card-title {
        font-size: 1.2rem;
    }

    .about-page .slider-container {
        height: 350px !important;
    }

    .about-page .slider-text-content {
        padding: 0 12px;
    }

    .about-page .slider-text-content h2 {
        font-size: 20px !important;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .about-page .slider-controls {
        bottom: 15px;
        gap: 8px;
    }

    .about-page .slider-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .about-page .slider-dot {
        width: 8px;
        height: 8px;
    }

    .about-page .slider-dot.active {
        width: 12px;
        height: 12px;
    }

}

/* ============================================
   MODERN PLATFORM PAGE - COMPLETE REDESIGN
   Stripe/Linear/Vercel-inspired SaaS Design
   ============================================ */

.platform-modern {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Section - Scoped to .platform-modern */
.platform-modern .platform-hero {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 10vw, 120px);
    position: relative;
    overflow: hidden;
}

.platform-modern .platform-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.platform-modern .platform-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.platform-modern .platform-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.platform-modern .platform-hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.platform-modern .platform-hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.platform-modern .platform-hero-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 48px 0;
    max-width: 580px;
}

.platform-modern .platform-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-modern .platform-cta-primary,
.platform-modern .platform-cta-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
}

.platform-modern .platform-cta-primary {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.platform-modern .platform-cta-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

.platform-modern .platform-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-modern .platform-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.platform-modern .platform-hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.platform-modern .platform-visual-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

/* Dashboard Preview Visual - Scoped to .platform-modern */
.platform-modern .platform-dashboard-preview {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.platform-modern .platform-dashboard-header {
    display: flex;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-modern .platform-dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.platform-modern .platform-dashboard-dot:nth-child(1) { background: rgba(239, 68, 68, 0.6); }
.platform-modern .platform-dashboard-dot:nth-child(2) { background: rgba(251, 191, 36, 0.6); }
.platform-modern .platform-dashboard-dot:nth-child(3) { background: rgba(34, 197, 94, 0.6); }

.platform-modern .platform-dashboard-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platform-modern .platform-dashboard-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 120px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.platform-modern .platform-chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #6366f1 0%, #22c55e 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: chartGrow 1.2s ease-out backwards;
    transition: transform 0.3s ease;
}

.platform-modern .platform-chart-bar:hover {
    transform: scaleY(1.1);
}

.platform-modern .platform-chart-bar:nth-child(1) { animation-delay: 0.1s; }
.platform-modern .platform-chart-bar:nth-child(2) { animation-delay: 0.2s; }
.platform-modern .platform-chart-bar:nth-child(3) { animation-delay: 0.3s; }
.platform-modern .platform-chart-bar:nth-child(4) { animation-delay: 0.4s; }
.platform-modern .platform-chart-bar:nth-child(5) { animation-delay: 0.5s; }
.platform-modern .platform-chart-bar:nth-child(6) { animation-delay: 0.6s; }

@keyframes chartGrow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.platform-modern .platform-dashboard-stats {
    display: flex;
    gap: 16px;
}

.platform-modern .platform-stat-mini {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-modern .platform-stat-mini-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.platform-modern .platform-stat-mini-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-modern .platform-visual-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    border-radius: 24px;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Features Section - Scoped to .platform-modern */
.platform-modern .platform-features {
    padding: clamp(100px, 15vw, 180px) 0;
    background: #ffffff;
}

.platform-modern .platform-features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

.platform-modern .platform-features-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease-out;
}

.platform-modern .platform-section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 20px 0;
}

.platform-modern .platform-section-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.75;
    color: #64748b;
    margin: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.platform-modern .platform-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.platform-modern .platform-feature-card {
    padding: 48px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.platform-modern .platform-feature-card:nth-child(1) { animation-delay: 0.1s; }
.platform-modern .platform-feature-card:nth-child(2) { animation-delay: 0.2s; }
.platform-modern .platform-feature-card:nth-child(3) { animation-delay: 0.3s; }

.platform-modern .platform-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #22c55e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-modern .platform-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

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

.platform-modern .platform-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

.platform-modern .platform-feature-icon svg {
    width: 24px;
    height: 24px;
}

.platform-modern .platform-feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.platform-modern .platform-feature-text {
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
    margin: 0;
    max-width: 100%;
}

/* Old general platform-* styles removed - using .platform-modern scoped versions above */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Scoped to .platform-modern */
@media (max-width: 1024px) {
    .platform-modern .platform-hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .platform-modern .platform-hero-visual {
        order: -1;
        max-width: 400px;
    }
    
    .platform-modern .platform-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .platform-modern .platform-hero {
        padding: 80px 0 60px;
    }
    
    .platform-modern .platform-hero-container {
        gap: 48px;
    }
    
    .platform-modern .platform-hero-cta {
        flex-direction: column;
    }
    
    .platform-modern .platform-cta-primary,
    .platform-modern .platform-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .platform-modern .platform-features-grid,
    .platform-modern .platform-audience-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-modern .platform-features-header,
    .platform-modern .platform-audience-header {
        margin-bottom: 48px;
    }
    
    .platform-modern .platform-feature-card {
        padding: 32px;
    }
    
    .platform-modern .platform-cta-content {
        padding: 64px 32px;
    }
    
    .platform-modern .platform-value-item {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   MODERN TECH STARTUP PLATFORM PAGE
   Bold, Innovative, Asymmetric Design
   ============================================ */

.platform-startup {
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Section - Bold & Minimal */
.startup-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 80px);
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        #0a0a0a;
}

.startup-hero-wrapper {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(60px, 10vw, 120px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.startup-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.startup-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 32px;
}

.startup-hero-title {
    font-size: clamp(48px, 9vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0 0 32px 0;
}

.startup-title-accent {
    background: linear-gradient(135deg, #6366f1 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.startup-hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 48px 0;
    max-width: 600px;
}

.startup-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.startup-btn-primary,
.startup-btn-ghost {
    padding: 18px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
}

.startup-btn-primary {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.startup-btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.startup-btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.startup-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.startup-hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.startup-visual-orb {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.startup-visual-grid {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.02);
}

.startup-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Stats Bar */
.startup-stats {
    padding: 60px clamp(24px, 5vw, 80px);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.startup-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.startup-stat {
    text-align: center;
}

.startup-stat-value {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.startup-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.startup-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* Value Prop Section */
.startup-value-prop {
    padding: clamp(100px, 15vw, 200px) clamp(24px, 5vw, 80px);
    background: #0a0a0a;
}

.startup-value-container {
    max-width: 1400px;
    margin: 0 auto;
}

.startup-value-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(60px, 10vw, 120px);
    align-items: start;
}

.startup-value-main {
    position: sticky;
    top: 120px;
}

.startup-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.startup-section-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 32px 0;
}

.startup-section-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.startup-value-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.startup-feature-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.startup-feature-item:nth-child(1) { animation-delay: 0.1s; }
.startup-feature-item:nth-child(2) { animation-delay: 0.2s; }
.startup-feature-item:nth-child(3) { animation-delay: 0.3s; }

.startup-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(8px);
}

.startup-feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    color: #a5b4fc;
}

.startup-feature-icon svg {
    width: 28px;
    height: 28px;
}

.startup-feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.startup-feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Asymmetric Grid Section */
.startup-grid-section {
    padding: clamp(100px, 15vw, 200px) clamp(24px, 5vw, 80px);
    background: rgba(255, 255, 255, 0.02);
}

.startup-grid-container {
    max-width: 1400px;
    margin: 0 auto;
}

.startup-grid-header {
    margin-bottom: 64px;
    animation: fadeInUp 0.6s ease-out;
}

.startup-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.startup-grid-item {
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.startup-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #22c55e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.startup-grid-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.startup-grid-item:hover::before {
    transform: scaleX(1);
}

.startup-grid-large {
    grid-column: span 2;
    grid-row: span 2;
}

.startup-grid-wide {
    grid-column: span 2;
}

.startup-grid-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.startup-grid-content p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Audience Section */
.startup-audience {
    padding: clamp(100px, 15vw, 200px) clamp(24px, 5vw, 80px);
    background: #0a0a0a;
}

.startup-audience-container {
    max-width: 1400px;
    margin: 0 auto;
}

.startup-audience-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease-out;
}

.startup-audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.startup-audience-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.startup-audience-card:nth-child(1) { animation-delay: 0.1s; }
.startup-audience-card:nth-child(2) { animation-delay: 0.2s; }
.startup-audience-card:nth-child(3) { animation-delay: 0.3s; }
.startup-audience-card:nth-child(4) { animation-delay: 0.4s; }

.startup-audience-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
}

.startup-card-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
    line-height: 1;
}

.startup-audience-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.startup-audience-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Ecosystem Section */
.startup-ecosystem {
    padding: clamp(100px, 15vw, 200px) clamp(24px, 5vw, 80px);
    background: 
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%),
        #0a0a0a;
    position: relative;
    overflow: hidden;
}

.startup-ecosystem-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.startup-ecosystem-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 32px 0;
}

.startup-ecosystem-text {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Final CTA */
.startup-final-cta {
    padding: clamp(100px, 15vw, 200px) clamp(24px, 5vw, 80px);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.startup-final-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.startup-final-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 32px 0;
    letter-spacing: -0.03em;
}

.startup-final-text {
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 48px 0;
}

.startup-btn-large {
    display: inline-block;
    padding: 20px 48px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.startup-btn-large:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .startup-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .startup-hero-visual {
        order: -1;
        max-width: 400px;
    }
    
    .startup-value-grid {
        grid-template-columns: 1fr;
    }
    
    .startup-value-main {
        position: static;
    }
    
    .startup-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .startup-grid-large,
    .startup-grid-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .startup-stats-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .startup-stat-divider {
        width: 60px;
        height: 1px;
    }
}

@media (max-width: 768px) {
    .startup-hero {
        min-height: auto;
        padding: 80px 24px 60px;
    }
    
    .startup-hero-actions {
        flex-direction: column;
    }
    
    .startup-btn-primary,
    .startup-btn-ghost {
        width: 100%;
        text-align: center;
    }
    
    .startup-audience-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PLATFORM PAGE - COMPLETE REBUILD
   Modern, Premium, Clean Design
   ============================================ */

.platform-new {
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.platform-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.platform-hero-new {
    background: linear-gradient(0deg, #000000 0%, #225eb4 100%);
    padding: clamp(100px, 15vh, 180px) 0 clamp(80px, 12vh, 140px);
    position: relative;
    overflow: hidden;
}

.platform-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.platform-hero-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(60px, 10vw, 120px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.platform-hero-main {
    animation: fadeInUp 0.8s ease-out;
}

.platform-hero-badge-new {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.platform-hero-headline {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0 0 28px 0;
}

.platform-hero-lead {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 48px 0;
    max-width: 600px;
}

.platform-hero-actions-new {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-btn-primary-new,
.platform-btn-secondary-new {
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.platform-btn-primary-new {
    background: #6366f1;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.platform-btn-primary-new:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.platform-btn-secondary-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Preview */
.platform-hero-preview {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.platform-preview-window {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.platform-window-header {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-window-controls {
    display: flex;
    gap: 8px;
}

.platform-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.platform-window-dot-red { background: rgba(239, 68, 68, 0.7); }
.platform-window-dot-yellow { background: rgba(251, 191, 36, 0.7); }
.platform-window-dot-green { background: rgba(34, 197, 94, 0.7); }

.platform-window-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.platform-chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    height: 140px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
}

.platform-chart-bar-new {
    flex: 1;
    height: var(--height);
    background: linear-gradient(180deg, #6366f1 0%, #22c55e 100%);
    border-radius: 6px 6px 0 0;
    min-height: 24px;
    animation: chartGrowNew 1.4s ease-out backwards;
    transition: transform 0.3s ease;
}

.platform-chart-bar-new:hover {
    transform: scaleY(1.15);
}

.platform-chart-bar-new:nth-child(1) { animation-delay: 0.1s; }
.platform-chart-bar-new:nth-child(2) { animation-delay: 0.2s; }
.platform-chart-bar-new:nth-child(3) { animation-delay: 0.3s; }
.platform-chart-bar-new:nth-child(4) { animation-delay: 0.4s; }
.platform-chart-bar-new:nth-child(5) { animation-delay: 0.5s; }
.platform-chart-bar-new:nth-child(6) { animation-delay: 0.6s; }

@keyframes chartGrowNew {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.platform-stats-row {
    display: flex;
    gap: 16px;
}

.platform-stat-box {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-stat-label-new {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.platform-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-preview-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, transparent 70%);
    border-radius: 24px;
    filter: blur(50px);
    animation: pulseNew 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulseNew {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.platform-features-new {
    padding: clamp(40px, 14vh, 200px) 0;
    background: linear-gradient(
        293deg, #225eb4 0%, #000000 100%);
}

.platform-section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.6s ease-out;
}

.platform-section-heading {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 24px 0;
}

.platform-section-lead {
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.75;
    color: #64748b;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.platform-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.platform-feature-box {
    padding: 48px;
    background: rgb(255 255 255);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.platform-feature-box:nth-child(1) { animation-delay: 0.1s; }
.platform-feature-box:nth-child(2) { animation-delay: 0.2s; }
.platform-feature-box:nth-child(3) { animation-delay: 0.3s; }

.platform-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #22c55e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.platform-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.platform-feature-box:hover::before {
    transform: scaleX(1);
}

.platform-feature-icon-new {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.12);
    border-radius: 16px;
}

.platform-feature-icon-new svg {
    width: 28px;
    height: 28px;
}

.platform-feature-heading {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.platform-feature-desc {
    font-size: 17px;
    line-height: 1.75;
    color: #64748b;
    margin: 0;
}

/* ============================================
   VALUE SECTION
   ============================================ */

.platform-value-new {
    padding: clamp(70px, 5vh, 200px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.platform-value-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.platform-value-list-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.platform-value-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 36px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(99, 102, 241, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02);
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.platform-value-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #22c55e, #6366f1);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-value-row::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-value-row:nth-child(1) { animation-delay: 0.1s; }
.platform-value-row:nth-child(2) { animation-delay: 0.2s; }
.platform-value-row:nth-child(3) { animation-delay: 0.3s; }
.platform-value-row:nth-child(4) { animation-delay: 0.4s; }

.platform-value-row:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 32px rgba(99, 102, 241, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.platform-value-row:hover::before {
    transform: scaleX(1);
}

.platform-value-row:hover::after {
    opacity: 1;
}

.platform-value-check-new {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.platform-value-row:hover .platform-value-check-new {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.12) 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.platform-value-check-new svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.platform-value-row:hover .platform-value-check-new svg {
    transform: scale(1.1);
}

.platform-value-text-new {
    font-size: clamp(17px, 1.8vw, 19px);
    line-height: 1.75;
    color: #475569;
    margin: 0;
    letter-spacing: -0.01em;
}

.platform-value-text-new strong {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.05em;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */

.platform-audience-new {
    padding: clamp(70px, 3vh, 179px) 0;
    background: #ffffff;
}

.platform-audience-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-audience-box {
    padding: 36px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out both;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
}

.platform-audience-box::before {
    display: none;
}

.platform-audience-box:nth-child(1) { animation-delay: 0.1s; }
.platform-audience-box:nth-child(2) { animation-delay: 0.2s; }
.platform-audience-box:nth-child(3) { animation-delay: 0.3s; }
.platform-audience-box:nth-child(4) { animation-delay: 0.4s; }

.platform-audience-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.platform-audience-heading {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.platform-audience-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* ============================================
   ECOSYSTEM SECTION
   ============================================ */

.platform-ecosystem-new {
    padding: clamp(120px, 13vh, 200px) 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.platform-ecosystem-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.platform-ecosystem-content-new {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out;
}

.platform-section-heading-white {
    color: #ffffff;
}

.platform-ecosystem-lead {
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 32px 0 0 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.platform-cta-new {
    padding: clamp(120px, 18vh, 200px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.platform-cta-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.platform-cta-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.platform-cta-box {
    text-align: center;
    padding: clamp(64px, 10vw, 96px) clamp(48px, 8vw, 80px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: fadeInUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 1;
}

.platform-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #22c55e, #6366f1);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.platform-cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.platform-cta-heading {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #334155 50%, #0f172a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.platform-cta-lead {
    font-size: clamp(19px, 2.4vw, 24px);
    line-height: 1.75;
    color: #475569;
    margin: 0 0 48px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.platform-btn-cta-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #6366f1 100%);
    background-size: 200% 100%;
    color: #ffffff;
    border-radius: 16px;
    font-size: clamp(17px, 1.8vw, 19px);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.4),
        0 4px 12px rgba(99, 102, 241, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.platform-btn-cta-new:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(99, 102, 241, 0.5),
        0 8px 20px rgba(99, 102, 241, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.platform-btn-cta-new:hover::before {
    left: 100%;
}

.platform-btn-cta-new:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 
        0 8px 24px rgba(99, 102, 241, 0.4),
        0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .platform-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .platform-hero-preview {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .platform-features-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }
    
    .platform-value-list-new {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .platform-hero-new {
        padding: 80px 0 60px;
    }
    
    .platform-hero-wrapper {
        gap: 48px;
    }
    
    .platform-hero-actions-new {
        flex-direction: column;
    }
    
    .platform-btn-primary-new,
    .platform-btn-secondary-new {
        width: 100%;
    }
    
    .platform-features-list {
        grid-template-columns: 1fr;
    }
    
    .platform-audience-grid-new {
        grid-template-columns: 1fr;
    }
    
    .platform-section-header {
        margin-bottom: 56px;
    }
    
    .platform-feature-box,
    .platform-audience-box {
        padding: 32px;
    }
    
    .platform-cta-box {
        padding: clamp(48px, 8vw, 64px) clamp(32px, 6vw, 48px);
        border-radius: 24px;
    }
    
    .platform-value-list-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-value-row {
        flex-direction: column;
        gap: 20px;
        padding: 32px 28px;
        border-radius: 16px;
    }
    
    .platform-value-check-new {
        width: 48px;
        height: 48px;
    }
    
    .platform-value-check-new svg {
        width: 20px;
        height: 20px;
    }
    
    .platform-value-text-new {
        font-size: 16px;
    }
    
    .platform-btn-cta-new {
        padding: 18px 40px;
        width: 100%;
        max-width: 300px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ============================================
   PLATFORM VISUAL SECTION
   ============================================ */

.platform-visual-section {
    padding: clamp(80px, 9vh, 120px) 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.platform-visual-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.platform-visual-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0 auto;
}

.platform-visual-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .platform-visual-section {
        padding: 60px 0;
    }
    
    .platform-visual-image {
        border-radius: 16px;
    }
}

