:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --secondary: #0f3460;
    --accent: #e94560;
    --gold: #f4d03f;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #6c757d;
    --text-dark: #1a1a2e;
    --text-light: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #d63d56;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.placeholder-image {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    min-height: 300px;
}

.placeholder-image.mentor {
    min-height: 400px;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .placeholder-image.mentor {
        width: 250px;
        height: 250px;
    }
}

.placeholder-image span {
    padding: 20px;
    text-align: center;
}

.navbar {
    background: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    width: auto;
    height: 56px;
    min-width: 56px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(24, 217, 221, 0.3);
}

.logo-icon {
    background: var(--accent);
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 8px;
}

.logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-links .nav-cta {
    background: var(--accent);
    padding: 10px 24px;
    border-radius: 8px;
}

.nav-links .nav-cta:hover {
    background: #d63d56;
    color: var(--white);
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 1rem;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-chart {
    position: relative;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-line {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    height: 200px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 208, 63, 0.1) 100%);
    border-radius: 8px;
    border: 2px solid rgba(244, 208, 63, 0.3);
}

.chart-candle {
    position: absolute;
    width: 12px;
    background: var(--gold);
    border-radius: 2px;
}

.chart-candle::before,
.chart-candle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--gold);
}

.candle-1 {
    bottom: 80px;
    left: 50px;
    height: 60px;
}

.candle-1::before {
    top: -15px;
    height: 20px;
}

.candle-1::after {
    bottom: -15px;
    height: 25px;
}

.candle-2 {
    bottom: 100px;
    left: 90px;
    height: 45px;
}

.candle-2::before {
    top: -10px;
    height: 15px;
}

.candle-2::after {
    bottom: -20px;
    height: 30px;
}

.candle-3 {
    bottom: 60px;
    left: 130px;
    height: 80px;
    background: var(--accent);
}

.candle-3::before {
    top: -20px;
    height: 25px;
    background: var(--accent);
}

.candle-3::after {
    bottom: -10px;
    height: 15px;
    background: var(--accent);
}

.candle-4 {
    bottom: 90px;
    left: 170px;
    height: 55px;
}

.candle-4::before {
    top: -12px;
    height: 18px;
}

.candle-4::after {
    bottom: -18px;
    height: 28px;
}

.candle-5 {
    bottom: 70px;
    left: 210px;
    height: 70px;
}

.candle-5::before {
    top: -18px;
    height: 22px;
}

.candle-5::after {
    bottom: -12px;
    height: 20px;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-chart {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

.features {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

.featured-courses {
    padding: 100px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.course-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.course-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.course-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.course-card.featured .course-badge {
    background: var(--accent);
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.course-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-features {
    margin-bottom: 1.5rem;
}

.course-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray);
    font-size: 0.9rem;
}

.course-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 968px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card.featured {
        transform: none;
    }

    .course-card.featured:hover {
        transform: translateY(-5px);
    }
}

.testimonials {
    padding: 100px 0;
    background: var(--primary);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info h4 {
    color: var(--white);
    font-size: 1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--accent);
}

.cta-section .btn-primary:hover {
    background: var(--gold);
    color: var(--primary);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-image {
    width: auto;
    height: 64px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(24, 217, 221, 0.25);
}

.footer-logo .logo-icon {
    font-size: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact span {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }
}

.about-story {
    padding: 100px 0;
}

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

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.story-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
}

.mission-values {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--white);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.value-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.mentor-section {
    padding: 100px 0;
}

.mentor-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    background: var(--gray-light);
    padding: 50px;
    border-radius: 24px;
}

.mentor-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.mentor-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mentor-info p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mentor-stats {
    display: flex;
    gap: 40px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mentor-stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.mentor-stat .label {
    color: var(--gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mentor-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .mentor-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.courses-section {
    padding: 80px 0;
}

.courses-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.course-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.course-detail-card.featured-course {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.03) 0%, transparent 100%);
}

.course-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.course-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-light);
    line-height: 1;
}

.course-title-area {
    flex: 1;
}

.course-title-area .course-level {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.course-detail-card.featured-course .course-level {
    background: var(--accent);
}

.course-title-area h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.course-offer {
    display: inline-block;
    margin-top: 0.65rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(22, 163, 74, 0.18);
    color: #16a34a;
}

.course-tagline {
    color: var(--gray);
}

.course-price-large {
    text-align: right;
}

.course-price-large .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.course-price-large .price-original {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.course-price-large .duration {
    color: var(--gray);
    font-size: 0.9rem;
}

.course-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.course-description h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.course-description > p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-curriculum {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.course-curriculum li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

.course-curriculum li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.course-includes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.course-includes {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-includes ul {
    margin-bottom: 1.5rem;
}

.course-includes .btn {
    margin-top: auto;
    align-self: flex-start;
    min-width: 160px;
}

.course-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--gray);
}

.course-includes svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .course-header {
        flex-direction: column;
        text-align: center;
    }

    .course-number {
        font-size: 2rem;
    }

    .course-price-large {
        text-align: center;
    }

    .course-body {
        grid-template-columns: 1fr;
    }

    .course-curriculum {
        grid-template-columns: 1fr;
    }

    .course-includes .btn {
        align-self: stretch;
        width: 100%;
    }
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.method-icon.whatsapp {
    background: #25D366;
}

.method-icon.whatsapp svg {
    fill: var(--white);
    stroke: none;
}

.method-details h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.method-details p {
    color: var(--text-dark);
    font-weight: 600;
}

.method-note {
    font-size: 0.8rem;
    color: var(--gray);
}

.social-connect h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.contact-form-wrapper {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message svg {
    width: 80px;
    height: 80px;
    stroke: #25D366;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--gray);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern redesign overrides */
:root {
    --bg: #f6f8fc;
    --surface: rgba(255, 255, 255, 0.8);
    --surface-strong: #ffffff;
    --ink: #101828;
    --muted: #475467;
    --brand: #18d9dd;
    --brand-2: #0fb1ba;
    --accent: #ef1717;
    --gold: #18d9dd;
    --line: rgba(16, 24, 40, 0.12);
    --card-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 90% -10%, rgba(24, 217, 221, 0.2), transparent 35%),
        radial-gradient(circle at 5% 15%, rgba(239, 23, 23, 0.11), transparent 30%),
        var(--bg);
}

h1,
h2,
h3,
h4,
.logo-text,
.section-title,
.page-hero h1 {
    font-family: "Sora", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
}

.navbar {
    background: rgba(8, 18, 36, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.45rem 0;
    box-shadow: 0 6px 24px rgba(2, 6, 20, 0.22);
}

.nav-container {
    max-width: 1220px;
    padding: 0.25rem 1rem;
}

.logo-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 20px rgba(24, 217, 221, 0.35);
}

@media (max-width: 640px) {
    .logo-image {
        width: auto;
        height: 46px;
        min-width: 46px;
    }
}

.nav-links {
    gap: 0.35rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.52rem 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
}

.nav-links a.active {
    color: #9ef6f7;
    background: rgba(24, 217, 221, 0.1);
}

.nav-links a:not(.nav-trial):not(.nav-cta):hover {
    color: #d5ffff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
    padding: 0.56rem 1rem;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #04232e;
    box-shadow: 0 8px 16px rgba(24, 217, 221, 0.22);
}

.nav-links .nav-trial {
    padding: 0.52rem 0.9rem;
    border: 1px solid rgba(24, 217, 221, 0.45);
    color: #b6feff;
    background: rgba(24, 217, 221, 0.07);
}

.nav-links .nav-trial:hover {
    color: #04131c;
    background: #18d9dd;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(152, 237, 239, 0.26);
    background: rgba(8, 25, 46, 0.5);
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: #d9ffff;
}

.hero {
    padding: 92px 0 110px;
    background:
        linear-gradient(135deg, #051421 0%, #07293a 55%, #291828 100%);
}

.hero::before {
    opacity: 0.8;
}

.hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.hero-subtitle {
    max-width: 58ch;
}

.hero-buttons .btn {
    border-radius: 999px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #c61010);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c51010, #a20c0c);
}

.hero-chart {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(24, 217, 221, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.stat-number {
    color: #80f3f4;
}

.features,
.featured-courses,
.about-story,
.mentor-section,
.courses-section,
.contact-section,
.faq-section {
    background: transparent;
}

.feature-card,
.course-card,
.testimonial-card,
.value-card,
.course-detail-card,
.faq-item,
.contact-form-wrapper,
.contact-method,
.mentor-card {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
}

.feature-card:hover,
.course-card:hover,
.value-card:hover,
.faq-item:hover,
.contact-method:hover {
    transform: translateY(-8px);
}

.section-title {
    color: var(--ink);
}

.section-subtitle,
.feature-card p,
.course-card p,
.story-text p,
.value-card p,
.faq-item p,
.contact-info > p,
.method-note,
.mentor-info p,
.course-tagline {
    color: var(--muted);
}

.feature-icon,
.value-icon,
.method-icon,
.social-icon {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.featured-courses .course-card.featured,
.course-detail-card.featured-course {
    border-color: rgba(24, 217, 221, 0.42);
    background:
        linear-gradient(180deg, rgba(24, 217, 221, 0.1), rgba(24, 217, 221, 0.01)),
        var(--surface-strong);
}

.course-badge,
.course-title-area .course-level {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.course-price,
.course-price-large .price,
.mentor-stat .number {
    color: var(--brand);
}

.testimonials {
    background: linear-gradient(135deg, #0b1329, #0f1f44);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
}

.cta-section {
    background: linear-gradient(135deg, #ef1717 0%, #18d9dd 100%);
}

.page-hero {
    background: linear-gradient(135deg, #0a1a2a 0%, #0d3d49 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    right: -80px;
    top: -130px;
    background: radial-gradient(circle, rgba(24, 217, 221, 0.45), transparent 60%);
}

.contact-form-wrapper,
.mentor-card,
.course-detail-card {
    border-radius: 24px;
}

.form-group input,
.form-group textarea {
    border: 1px solid rgba(16, 24, 40, 0.16);
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 4px rgba(24, 217, 221, 0.2);
}

.footer {
    background: #071126;
}

.footer-links a:hover,
.social-links a:hover {
    color: #8df7f8;
}

.social-links a {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card,
.course-card,
.testimonial-card,
.value-card,
.faq-item,
.course-detail-card,
.contact-method,
.mentor-card {
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.3s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navbar {
        backdrop-filter: blur(10px);
        padding: 0.4rem 0;
    }

    .nav-container {
        padding: 0.3rem 0.75rem;
    }

    .nav-links {
        right: 0.75rem;
        left: 0.75rem;
        top: calc(100% + 0.5rem);
        border-radius: 12px;
        border: 1px solid rgba(152, 237, 239, 0.2);
        background: rgba(7, 19, 37, 0.98);
        padding: 0.55rem;
        gap: 0.45rem;
        box-shadow: 0 12px 30px rgba(2, 6, 20, 0.35);
    }

    .nav-links a,
    .nav-links .nav-trial,
    .nav-links .nav-cta {
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }

    .hero {
        padding-top: 78px;
    }

    .contact-method:hover,
    .feature-card:hover,
    .course-card:hover {
        transform: translateY(-4px);
    }
}

/* Hero refresh */
.hero-content-modern {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 24px;
    text-align: center;
}

.hero-copy {
    max-width: 640px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 1px solid rgba(24, 217, 221, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #b7f7f8;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef1717;
    box-shadow: 0 0 0 5px rgba(239, 23, 23, 0.22);
}

.hero-copy .hero-subtitle {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-modern .hero-buttons,
.hero-content-modern .hero-stats {
    justify-content: center;
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(24, 217, 221, 0.34);
    box-shadow: 0 35px 80px rgba(3, 8, 20, 0.45);
    background: rgba(255, 255, 255, 0.04);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-placeholder-frame {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(24, 217, 221, 0.08), rgba(24, 217, 221, 0.02)),
        rgba(255, 255, 255, 0.04);
}

.hero-placeholder-content {
    text-align: center;
    padding: 28px;
    border-radius: 16px;
    border: 1px dashed rgba(24, 217, 221, 0.45);
    background: rgba(9, 25, 42, 0.45);
}

.hero-placeholder-content span {
    display: block;
    color: #d9ffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-placeholder-content p {
    color: rgba(217, 255, 255, 0.78);
    font-size: 0.95rem;
}

.journey-section {
    padding: 90px 0;
}

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

.journey-step {
    border: 1px solid rgba(24, 217, 221, 0.22);
    border-radius: 14px;
    background: rgba(8, 22, 40, 0.58);
    padding: 22px 18px;
}

.journey-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(24, 217, 221, 0.4);
    color: #9ef6f7;
    font-weight: 700;
    margin-bottom: 12px;
}

.journey-step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #eafcff;
}

.journey-step p {
    color: rgba(234, 252, 255, 0.82);
    line-height: 1.65;
    margin: 0;
}

.journey-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.journey-cta .btn-secondary {
    color: #0d5f6f;
    border: 1px solid rgba(13, 95, 111, 0.4);
    background: rgba(255, 255, 255, 0.88);
}

.journey-cta .btn-secondary:hover {
    color: #ffffff;
    background: #0d5f6f;
    border-color: #0d5f6f;
}

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

@media (max-width: 640px) {
    .journey-grid {
        grid-template-columns: 1fr;
    }

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

    .journey-cta .btn {
        width: 100%;
    }
}

.home-contact-map {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), rgba(24, 217, 221, 0.06));
}

.home-contact-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 28px;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 22px;
    align-items: stretch;
}

.home-contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.home-contact-card {
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
    padding: 18px;
}

.home-contact-card h3 {
    color: #0d5f6f;
    font-size: 1rem;
    margin-bottom: 7px;
}

.home-contact-card p {
    color: #1f2937;
    margin: 0;
    line-height: 1.6;
    word-break: break-word;
}

.home-contact-card a {
    color: #085fbe;
    text-decoration: none;
    font-weight: 600;
}

.home-contact-card a:hover {
    text-decoration: underline;
}

.home-contact-card-full {
    grid-column: 1 / -1;
}

.home-map-wrap {
    border: 1px solid rgba(16, 24, 40, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
    min-height: 360px;
}

.home-map-title {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
    font-weight: 700;
    color: #0e1a2b;
    background: rgba(248, 250, 252, 0.9);
}

.home-map-wrap iframe {
    width: 100%;
    height: 308px;
    border: 0;
}

@media (max-width: 968px) {
    .home-contact-grid {
        grid-template-columns: 1fr;
    }

    .home-map-wrap,
    .home-map-wrap iframe {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .home-contact-cards {
        grid-template-columns: 1fr;
    }
}

.trial-modal .modal-content {
    background: linear-gradient(180deg, #09172d 0%, #0d213f 100%);
    border: 1px solid rgba(24, 217, 221, 0.35);
    color: #e9fbff;
    border-radius: 14px;
}

.trial-modal .modal-header,
.trial-modal .modal-footer {
    border-color: rgba(24, 217, 221, 0.2);
}

.trial-modal .modal-title {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-weight: 700;
}

.trial-note {
    color: rgba(233, 251, 255, 0.82);
}

.trial-modal .form-label {
    color: #b9feff;
    font-weight: 600;
}

.trial-modal .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(24, 217, 221, 0.35);
    color: #f6feff;
}

.trial-modal .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(24, 217, 221, 0.7);
    box-shadow: 0 0 0 0.2rem rgba(24, 217, 221, 0.2);
    color: #f6feff;
}

.admin-section {
    padding: 56px 0 90px;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(24, 217, 221, 0.2);
    border-radius: 14px;
    background: rgba(8, 22, 40, 0.65);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #eafcff;
    font-size: 0.92rem;
    vertical-align: top;
}

.admin-table th {
    position: sticky;
    top: 0;
    background: rgba(6, 15, 29, 0.95);
    color: #9ef6f7;
    font-weight: 700;
}

.admin-message {
    max-width: 340px;
    white-space: pre-wrap;
    word-break: break-word;
}

.admin-source {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-source.is-trial {
    background: rgba(239, 23, 23, 0.2);
    color: #ff9e9e;
}

.admin-source.is-contact {
    background: rgba(24, 217, 221, 0.18);
    color: #9ef6f7;
}

.admin-empty {
    padding: 24px;
    border: 1px solid rgba(24, 217, 221, 0.2);
    border-radius: 12px;
    background: rgba(8, 22, 40, 0.5);
    color: #d8fdff;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #d8fdff;
}

.admin-auth-section {
    padding: 56px 0 90px;
}

.admin-auth-card {
    max-width: 520px;
    margin: 0 auto;
    padding: 28px;
    border: 1px solid rgba(24, 217, 221, 0.25);
    border-radius: 14px;
    background: rgba(8, 22, 40, 0.65);
    color: #eafcff;
}

.admin-auth-card h2 {
    margin-bottom: 6px;
    font-size: 1.55rem;
}

.admin-auth-card p {
    margin-bottom: 18px;
    color: #b5f9fb;
}

.admin-auth-form {
    display: grid;
    gap: 14px;
}

.admin-auth-group label {
    display: block;
    margin-bottom: 6px;
    color: #b9feff;
    font-weight: 600;
}

.admin-auth-group input {
    width: 100%;
    border: 1px solid rgba(24, 217, 221, 0.35);
    border-radius: 10px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #f6feff;
}

.admin-auth-group input:focus {
    outline: none;
    border-color: rgba(24, 217, 221, 0.75);
    box-shadow: 0 0 0 4px rgba(24, 217, 221, 0.18);
}

.admin-auth-error {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(239, 23, 23, 0.4);
    background: rgba(239, 23, 23, 0.14);
    color: #ffb3b3;
}

.admin-body {
    min-height: 100vh;
    background: linear-gradient(180deg, #071226 0%, #0a1d37 100%);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(24, 217, 221, 0.18);
    background: rgba(4, 12, 24, 0.9);
    backdrop-filter: blur(10px);
}

.admin-topbar-inner,
.admin-page-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-topbar-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e9fbff;
    text-decoration: none;
    font-weight: 700;
}

.admin-brand-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.admin-site-link {
    color: #9ef6f7;
    text-decoration: none;
    border: 1px solid rgba(24, 217, 221, 0.35);
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 600;
}

.admin-page-hero {
    padding: 36px 0 18px;
    color: #eafcff;
}

.admin-page-hero h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.admin-page-hero p {
    color: #b3f7f8;
}

.admin-footer {
    padding: 22px 20px 28px;
    text-align: center;
    color: rgba(234, 252, 255, 0.72);
}

/* Navbar fix after Bootstrap include */
.navbar {
    padding: 0.3rem 0;
}

.navbar .nav-container {
    max-width: 1200px;
    padding: 0.35rem 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.navbar .logo-image {
    height: 46px;
    min-width: 46px;
    border-radius: 8px;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    gap: 0.4rem;
    background: transparent;
}

.navbar .nav-links li {
    display: flex;
}

.navbar .nav-links a {
    text-decoration: none;
    line-height: 1;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
}

.navbar .nav-links a.active:not(.nav-trial) {
    background: transparent;
}

.navbar .nav-links .nav-trial {
    border-radius: 10px;
    padding: 0.56rem 0.95rem;
}

@media (max-width: 768px) {
    .navbar .logo-image {
        height: 40px;
        min-width: 40px;
    }

    .navbar .nav-links {
        left: 0.75rem;
        right: 0.75rem;
        top: calc(100% + 0.45rem);
    }
}

/* Isolated navbar styles (avoid Bootstrap .navbar conflict) */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 18, 36, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(2, 6, 20, 0.22);
    padding: 0.35rem 0;
}

.site-navbar .nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-navbar .logo-image {
    height: 62px;
    min-width: 62px;
    width: auto;
}

.site-navbar .nav-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    border: 0;
}

.site-navbar .nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.58rem 0.9rem;
    border-radius: 9px;
    font-weight: 600;
    line-height: 1;
}

.site-navbar .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e0feff;
}

.site-navbar .nav-links a.active {
    color: #9ef6f7;
    background: rgba(24, 217, 221, 0.12);
}

.site-navbar .nav-links .nav-trial {
    border: 1px solid rgba(24, 217, 221, 0.5);
    background: rgba(24, 217, 221, 0.1);
}

.site-navbar .nav-links .nav-trial:hover {
    background: #18d9dd;
    color: #04131c;
}

.site-navbar .mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .site-navbar {
        padding: 0.25rem 0;
    }

    .site-navbar .logo-image {
        height: 52px;
        min-width: 52px;
    }

    .site-navbar .mobile-menu-btn {
        display: flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 1px solid rgba(152, 237, 239, 0.26);
        background: rgba(8, 25, 46, 0.5);
        padding: 5px;
    }

    .site-navbar .mobile-menu-btn span {
        width: 18px;
        height: 2px;
        background: #d9ffff;
        border-radius: 2px;
    }

    .site-navbar .nav-links {
        position: absolute;
        top: calc(100% + 0.45rem);
        left: 0.75rem;
        right: 0.75rem;
        display: none;
        flex-direction: column;
        padding: 0.55rem;
        border-radius: 12px;
        border: 1px solid rgba(152, 237, 239, 0.2);
        background: rgba(7, 19, 37, 0.98);
        box-shadow: 0 12px 30px rgba(2, 6, 20, 0.35);
    }

    .site-navbar .nav-links.active {
        display: flex;
    }

    .site-navbar .nav-links a,
    .site-navbar .nav-links .nav-trial {
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }
}

.market-card {
    position: relative;
    min-height: 380px;
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(24, 217, 221, 0.3);
    box-shadow: 0 35px 80px rgba(3, 8, 20, 0.4);
    overflow: hidden;
}

.market-top,
.market-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.market-top p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.market-top span {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #d9ffff;
    background: rgba(24, 217, 221, 0.3);
    border: 1px solid rgba(24, 217, 221, 0.35);
}

.market-grid {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 88px;
    background-image:
        linear-gradient(rgba(24, 217, 221, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 217, 221, 0.12) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2));
}

.candles-row {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 112px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 14px;
}

.stick {
    position: relative;
    width: 12px;
    height: 54px;
    border-radius: 4px;
}

.stick::before,
.stick::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.stick::before {
    top: -12px;
    height: 12px;
}

.stick::after {
    bottom: -14px;
    height: 14px;
}

.stick.green,
.stick.green::before,
.stick.green::after {
    background: #28d59f;
}

.stick.red,
.stick.red::before,
.stick.red::after {
    background: #ff5c7d;
}

.stick.tall {
    height: 74px;
}

.stick.short {
    height: 38px;
}

.market-bottom {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(24, 217, 221, 0.25);
}

.market-bottom label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 3px;
}

.market-bottom strong {
    font-size: 1rem;
    color: #eaf5ff;
}

.floating-chip {
    position: absolute;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(24, 217, 221, 0.4);
    color: #d9ffff;
    font-size: 0.84rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.chip-one {
    top: -12px;
    right: -14px;
}

.chip-two {
    left: -10px;
    bottom: 88px;
}

@media (max-width: 968px) {
    .hero-content-modern {
        gap: 30px;
    }

    .hero-copy {
        margin: 0 auto;
    }

    .hero-visual {
        width: min(100%, 580px);
        margin: 0 auto;
    }

    .floating-chip {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-placeholder-frame {
        min-height: 280px;
    }

    .market-card {
        min-height: 320px;
        padding: 18px;
    }

    .candles-row {
        gap: 10px;
        bottom: 96px;
    }

    .market-bottom {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .market-bottom strong {
        font-size: 0.92rem;
    }
}
