* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #15bcf3;
    --primary-blue: #15bcf3;
    --dark-blue: #1a1f3a;
    --dark-grey: #2c2c2c;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --text-grey: #4a4a4a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-grey);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header .home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: opacity 0.3s;
}

.header .home-button:hover {
    opacity: 0.7;
}

.header .home-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.diamond-icon {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
}

.live-badge {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-grey);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--dark-grey);
    font-weight: 600;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.btn-compare {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-compare:hover {
    background-color: #15bcf3;
}

/* Main Content */
.main-content {
    padding: 80px 0;
}

.product-detail-section {
    padding: 100px 0;
    border-top: 1px solid #e0e0e0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.text-content {
    max-width: 100%;
}

.subtitle {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-grey);
    line-height: 1.2;
    margin-bottom: 30px;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--primary-blue);
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.underline {
    text-decoration: underline;
    text-decoration-color: var(--primary-blue);
    text-underline-offset: 3px;
}

/* Speaker Graphic */
.speaker-graphic {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3a5a 100%);
    border-radius: 12px;
    padding: 0;
    color: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.event-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.speakers-section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.speaker-card {
    flex: 1;
    text-align: center;
}

.speaker-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.speaker-initials {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.speaker-name {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.event-title-section {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3a5a 100%);
}

.event-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.event-logo .diamond-icon {
    color: var(--white);
}

.event-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.event-theme {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.human-text {
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn-cta {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-primary:hover {
    background-color: var(--dark-grey);
    border-color: var(--dark-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover {
    background-color: var(--light-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.arrow {
    font-size: 18px;
}

/* Banner */
.banner {
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.banner-text {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
}

.banner-text strong {
    color: var(--dark-grey);
    font-weight: 600;
}

.banner-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-tickets {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-tickets:hover {
    background-color: #15bcf3;
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-grey);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--dark-grey);
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-title {
        font-size: 36px;
    }

    .event-theme {
        font-size: 32px;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .speaker-graphic {
        padding: 30px 20px;
    }

    .speakers-section {
        flex-direction: column;
        gap: 15px;
    }

    .speaker-card {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .speaker-image {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .cta-section {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-right {
        width: 100%;
        justify-content: space-between;
    }

    .btn-compare {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .main-title {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .event-theme {
        font-size: 24px;
    }
}

/* Top Header Navigation */
.top-header {
    background-color: var(--black);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 101;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-nav .logo-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: auto;
}

.home-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: opacity 0.3s;
}

.home-button:hover {
    opacity: 0.7;
}

.home-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.logo-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.top-nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-nav-menu .nav-link {
    color: var(--white);
    font-size: 14px;
}

.top-nav-menu .nav-link:hover {
    color: var(--primary-blue);
}

.search-icon {
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.search-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.7) 0%, rgba(42, 58, 90, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-date {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-blue);
    margin: 0 auto 30px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--white);
    color: var(--dark-grey);
    border: 2px solid var(--white);
}

.btn-hero-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--dark-grey);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3a5a 100%);
    padding: 60px 0;
    background-color: var(--primary-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

/* Video Section */
.video-section {
    padding: 56px 0 48px;
    background-color: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 50px;
}

.video-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-player-container {
    position: relative;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background-color: var(--black);
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a3a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button-large {
    width: 80px;
    height: 80px;
    background-color: rgba(21, 188, 243, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: transform 0.3s;
}

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

.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    pointer-events: none;
}

.video-title-overlay {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.video-speaker-overlay {
    text-align: center;
}

.speaker-name-large {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.speaker-title-large {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
}

.video-description {
    padding: 20px 0;
}

.video-desc-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.video-desc-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 15px;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 32px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* Products Overview */
.products-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    text-decoration: none;
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.product-desc {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* Ideal For Section */
.ideal-for-section {
    background: radial-gradient(circle at top, #f3f7fc 0%, #ffffff 55%, #f7f9fc 100%);
    padding: 64px 0;
}

.features-section-main {
    background: radial-gradient(circle at top, #f3f7fc 0%, #ffffff 55%, #f7f9fc 100%);
    padding: 64px 0;
}

.ideal-for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ideal-for-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(7, 31, 68, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ideal-for-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.ideal-for-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
}

.ideal-for-icon i,
.ideal-for-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
}

.ideal-for-icon svg {
    stroke-width: 1.5;
}

.ideal-for-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 15px;
    line-height: 1.3;
}

.ideal-for-desc {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* Feature Tags */
.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(21, 188, 243, 0.2);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-grey);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: default;
    line-height: 1.4 !important;
    min-width: fit-content;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(21, 188, 243, 0.15);
    border-color: rgba(21, 188, 243, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

/* Target both the i element and the SVG that Lucide creates */
.feature-tag i[data-lucide],
.feature-tag svg[data-lucide],
.feature-tag .lucide {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    flex-shrink: 0;
    stroke: var(--primary-blue) !important;
    stroke-width: 2 !important;
    color: var(--primary-blue) !important;
}

.feature-text {
    white-space: nowrap;
    line-height: 1.4;
    display: block;
}

@media (max-width: 768px) {
    .features-tags {
        gap: 8px;
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .feature-tag {
        padding: 12px 22px;
        font-size: 15px;
        gap: 10px;
        line-height: 1.4;
    }
    
    .feature-tag i[data-lucide],
    .feature-tag svg[data-lucide],
    .feature-tag .lucide {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
    }
}
/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(7, 31, 68, 0.10);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--light-grey);
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--dark-grey);
    border-bottom: 2px solid #e0e0e0;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-grey);
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.product-icon-small {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
}

.product-icon-small i,
.product-icon-small svg {
    width: 24px;
    height: 24px;
}

.product-icon-small svg {
    stroke-width: 2;
}

.feature-label {
    font-weight: 600;
    color: var(--dark-grey);
}

.checkmark {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 20px;
}

.pricing-row {
    background-color: var(--light-grey);
}

.pricing-cell {
    text-align: center;
}

.price-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.price-original {
    font-size: 16px;
    color: var(--text-grey);
    text-decoration: line-through;
    margin-bottom: 15px;
}

.btn-buy {
    display: inline-block;
    background-color: #15bcf3;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.btn-buy:hover {
    background-color: #15bcf3;
}

.link-more {
    display: block;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
}

.link-more:hover {
    text-decoration: underline;
}

/* Product Pages */
.product-page-header {
    margin-bottom: 50px;
}

.product-subtitle {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-grey);
    line-height: 1.2;
}

.product-number {
    color: var(--primary-blue);
    position: relative;
}

.product-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-blue);
}

.product-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-text-content {
    max-width: 100%;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.product-bullets {
    margin: 30px 0;
}

.product-bullets ul {
    list-style: none;
    padding-left: 0;
}

.product-bullets li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-grey);
}

.product-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.product-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.product-image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-grey);
    font-size: 18px;
}

.product-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Installation Section */
.installation-section {
    background-color: var(--light-grey);
    padding: 60px 0;
    margin: 60px 0;
}

.installation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.installation-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.installation-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.installation-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.installation-video {
    position: relative;
}

.test-player {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.player-header {
    background-color: var(--dark-blue);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-badge-small {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
}

.player-title {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.video-placeholder-test {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a3a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.player-stats {
    padding: 15px 20px;
    background-color: var(--light-grey);
    font-size: 14px;
    color: var(--text-grey);
    text-align: center;
}

.video-player-container-inline {
    width: 100%;
}

.video-wrapper-inline {
    position: relative;
    padding-bottom: 56.25%;
    background-color: var(--black);
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder-inline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f3a 0%, #2a3a5a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Speakers Section Main */
.speakers-section-main {
    padding: 80px 0;
    background-color: #e6f7ff;
}

.speakers-section-main .section-subtitle {
    text-align: center;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.speaker-item {
    text-align: center;
    transition: transform 0.3s;
}

.speaker-item:hover {
    transform: translateY(-5px);
}

.speaker-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    margin-bottom: 15px;
    aspect-ratio: 1;
    object-fit: cover;
    background: transparent;
}

.speaker-item:hover .speaker-img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.speaker-item .speaker-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 8px;
    line-height: 1.3;
}

.speaker-item .speaker-title {
    font-size: 13px;
    color: var(--text-grey);
    line-height: 1.5;
    margin: 0;
}

/* Trusted Section */
.trusted-section {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 24px;
    padding: 28px 32px;
    border-radius: 16px;
    background: linear-gradient(120deg, #0e1b33 0%, #1c3360 50%, #2f4f7f 100%);
    box-shadow: 0 18px 45px rgba(7, 31, 68, 0.65);
}

.trusted-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px;
    align-items: center;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.25s ease;
    overflow: hidden;
    height: 80px;
}

.trusted-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.trusted-logo:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 900px) {
    .trusted-section {
        padding: 20px 18px;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Update btn-compare to be a link */
a.btn-compare {
    text-decoration: none;
    display: inline-block;
}

/* Update btn-buy to be a link */
a.btn-buy {
    text-decoration: none;
    display: inline-block;
}

/* Responsive Updates */
@media (max-width: 968px) {
    .hero-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-content-grid {
        grid-template-columns: 1fr;
    }

    .products-overview {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .ideal-for-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-content-grid {
        grid-template-columns: 1fr;
    }

    .installation-content {
        grid-template-columns: 1fr;
    }

    .top-nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: 500px;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

