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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.nav-brand .logo {
    width: 190px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: -15px 0;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}


.footer-logo {
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo-img {
    width: 250px;
    height: 148px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -60px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* Responsive design for logos */
@media (max-width: 768px) {
    .nav-brand .logo,
    .footer-logo-img {
        width: 130px;
        height: 60px; /* 130:60 nisbatini saqlaydi */
        margin: -12px 0;
    }
    
    .footer-logo p {
        font-size: 12px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo,
    .footer-logo-img {
        width: 110px;
        height: 52px;
        margin: -8px 0;
    }
}


.btn-primary {
    background: linear-gradient(135deg, #1A2B6C, #2563EB);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 43, 108, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB, #1A2B6C);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 43, 108, 0.4);
}

.btn-plan-footer {
    background: linear-gradient(135deg, #FCD34D, #F59E0B, #EA580C);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-plan-footer:hover {
    background: linear-gradient(135deg, #F59E0B, #EA580C, #DC2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}


.btn-outline {
    background: transparent;
    color: #1A2B6C;
    border: 2px solid #1A2B6C;
}

.btn-outline:hover {
    background: #1A2B6C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 43, 108, 0.3);
}

.btn-large {
    padding: 15px 32px;
    font-size: 16px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
}

/* Hero Register Now Buttons - Yellow+Orange Gradient */
.hero-left-buttons .btn {
    background: linear-gradient(135deg, #FCD34D, #F59E0B, #EA580C);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    font-weight: 600;
}

.hero-left-buttons .btn:hover {
    background: linear-gradient(135deg, #F59E0B, #EA580C, #DC2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.badge {
    background:#1A2B6C;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 1); 
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
}

.nav-brand h2 {
    color: #1e3a8a;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin-left: 60px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #1A2B6C, #3B82F6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #1A2B6C;
    transform: translateY(-1px);
}

.nav-link:hover::after {
    width: 100%;
}

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

.language-selector {
    position: relative;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 43, 108, 0.1);
    border: 1px solid rgba(26, 43, 108, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #1A2B6C;
}

.dropdown-toggle:hover {
    background: rgba(26, 43, 108, 0.15);
    border-color: #1A2B6C;
    transform: translateY(-1px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(26, 43, 108, 0.05);
    color: #1A2B6C;
    padding-left: 20px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.8) rotate(10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(26, 43, 108, 0.3);
    }
    50% {
        box-shadow: 0 0 60px rgba(26, 43, 108, 0.6);
    }
}

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

.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards, float 3s ease-in-out 1.5s infinite;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A2B6C 0%, #0f1729 50%, #000000 100%);
    padding: 30px 0 0 0;
    margin-top: 70px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
}


.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 680px;
}

.hero-left {
    position: relative;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-left-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 48px;
    animation: fadeInUp 1s ease-out 1.4s forwards;
    opacity: 0;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-community-btn {
    position: absolute;
    bottom: -70px;
    right: -730px;
    padding: 15px 24px;
    font-size: 14px;
    z-index: 10;
    background: linear-gradient(135deg, #0088cc, #00aaff) !important;
    color: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-community-btn:hover {
    background: linear-gradient(135deg, #006699, #0088cc) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 10px 30px rgba(26, 43, 108, 0.3));
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(
        circle at 30% 70%,
        rgba(59, 130, 246, 0.1) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 30%,
        rgba(37, 99, 235, 0.1) 0%,
        transparent 50%
    );
    border-radius: 50%;
    animation: rotateParticles 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes rotateParticles {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.hero-main-image {
    max-width: 600px;
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 50px rgba(26, 43, 108, 0.4),
        inset 0 0 50px rgba(255, 255, 255, 0.1),
        0 0 100px rgba(59, 130, 246, 0.3);
    animation: floatAnimation 6s ease-in-out infinite;
}


.hero-main-image:hover {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) brightness(1.1);
    box-shadow:
        0 0 80px rgba(26, 43, 108, 0.6),
        inset 0 0 50px rgba(255, 255, 255, 0.2),
        0 0 150px rgba(59, 130, 246, 0.5),
        0 0 200px rgba(37, 99, 235, 0.3);
    animation-play-state: paused;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(
        circle,
        rgba(26, 43, 108, 0.4) 0%,
        rgba(59, 130, 246, 0.3) 30%,
        rgba(37, 99, 235, 0.2) 50%,
        transparent 80%
    );
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite;
    z-index: 1;
    filter: blur(20px);
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.05) rotate(90deg);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    }
    75% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.05) rotate(270deg);
    }
}

/* Hero Image Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes shimmerEffect {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate__fadeInRight {
    animation: fadeInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

/* Hero Trust Elements */
.trust-elements {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

.trust-mini-card,
.rating-mini-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    transition: none;
    text-align: center;
    position: relative;
    overflow: visible;
}

.trust-mini-card:hover,
.rating-mini-card:hover {
    transform: none;
    box-shadow: none;
    border: none;
}


.trust-avatars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

.trust-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    transition: transform 0.3s ease;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-avatars img:hover {
    transform: scale(1.1);
    z-index: 2;
    position: relative;
}

.avatar-count {
    background: linear-gradient(135deg, #1A2B6C, #2563EB);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    margin-left: -8px;
    border: 2px solid white;
}

.trust-text {
    font-size: 6px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.rating-number {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-right: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.rating-text {
    font-size: 6px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Why Pretest Section */
.why-pretest {
    padding: 80px 0;
    background: white;
}

/* Scroll Animations for Why Pretest */
.why-pretest .pretest-content h3,
.why-pretest .pretest-content p,
.why-pretest .additional-content h3,
.why-pretest .additional-content p,
.why-pretest .show-more-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.why-pretest .pretest-content h3.animate,
.why-pretest .pretest-content p.animate,
.why-pretest .additional-content h3.animate,
.why-pretest .additional-content p.animate,
.why-pretest .show-more-container.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-pretest .pretest-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.why-pretest .pretest-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1A2B6C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-pretest .pretest-content .section-description {
    font-size: 22px;
    color: #64748b;
    margin-bottom: 50px;
    line-height: 1.6;
}

.why-pretest .pretest-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1A2B6C;
    line-height: 1.3;
}

.why-pretest .pretest-content h3:first-child {
    margin-top: 0;
}

.why-pretest .pretest-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.why-pretest .pretest-content p strong {
    color: #1e293b;
    font-weight: 600;
}

.show-more-container,
.show-less-container {
    text-align: center;
    margin: 32px 0;
}

.show-more-btn {
    background: transparent;
    color: #1A2B6C;
    border: 2px solid #1A2B6C;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #1A2B6C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 43, 108, 0.3);
}

.additional-content.hidden {
    display: none;
}

.why-pretest .additional-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1A2B6C;
    line-height: 1.3;
}

.why-pretest .additional-content h3:first-child {
    margin-top: 0;
}

.why-pretest .additional-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
}

.why-pretest .additional-content p strong {
    color: #1A2B6C;
    font-weight: 600;
}

.why-pretest .conclusion {
    font-weight: 600;
    color: #1e293b;
    font-size: 17px;
    margin-top: 32px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 43, 108, 0.1) 0%, rgba(26, 43, 108, 0.05) 100%);
    border-left: 4px solid #1A2B6C;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .why-pretest .pretest-content {
        padding: 0 20px;
    }

    .why-pretest .pretest-content h2 {
        font-size: 36px;
    }

    .why-pretest .pretest-content h3,
    .why-pretest .additional-content h3 {
        font-size: 24px;
    }

    .why-pretest .pretest-content p,
    .why-pretest .additional-content p {
        font-size: 18px;
    }

    .why-pretest .pretest-content .section-description {
        font-size: 20px;
    }
}

/* Tariff Plans Section */
.plans-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2B6C 0%, #0f1729 50%, #1A2B6C 100%);
    position: relative;
    overflow: hidden;
}

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

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.plans-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.plan-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 480px;
    cursor: pointer;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Card Top Bars */
.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A2B6C, #3b82f6);
}

.premium-card {
    border: 2px solid rgba(26, 43, 108, 0.3);
    transform: scale(1.05);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A2B6C, #3b82f6);
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.07);
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171, #ef4444, #dc2626);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.recommended-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    color: white;
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(26, 43, 108, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    padding: 32px 24px 20px;
    text-align: center;
    position: relative;
}

/* .premium-card .plan-header {
    padding-top: 44px;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.standard-card .plan-name {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card .plan-name {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-card .plan-name {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: -0.01em;
}

.plan-price .currency {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.7;
}

.standard-card .plan-price {
    color: #1A2B6C;
}

.premium-card .plan-price {
    color: #1A2B6C;
}

.vip-card .plan-price {
    color: #dc2626;
}

.plan-subtitle {
    font-size: 0.5rem;
    opacity: 0.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.plan-content {
    padding: 0 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-features {
    list-style: none;
    margin-bottom: 12px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: #334155;
}

.feature-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-top: 1px;
    font-size: 9px;
    font-weight: bold;
    flex-shrink: 0;
}

.standard-card .feature-icon {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    color: white;
}

.premium-card .feature-icon {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    color: white;
}

.vip-card .feature-icon {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.feature-text {
    flex: 1;
}

.feature-highlight {
    display: block;
    margin-top: 4px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

.premium-card .feature-highlight {
    background: rgba(26, 43, 108, 0.1);
    color: #1A2B6C;
    border: 1px solid rgba(26, 43, 108, 0.2);
}

.vip-card .feature-highlight {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.plan-extra {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 8px;
    font-size: 11px;
}

.extra-title {
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}

.extra-list {
    list-style: none;
}

.extra-list li {
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}

.extra-list li::before {
    content: '→';
    margin-right: 6px;
    font-weight: bold;
}

.premium-extra {
    border: 1px solid rgba(26, 43, 108, 0.2);
}

.premium-extra .extra-title {
    color: #1A2B6C;
}

.premium-extra .extra-list li::before {
    color: #1A2B6C;
}

.vip-extra {
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.vip-extra .extra-title {
    color: #dc2626;
}

.vip-extra .extra-list li::before {
    color: #dc2626;
}

.plan-button {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.standard-card .plan-button {
    background: linear-gradient(135deg, #FCD34D, #F59E0B, #EA580C);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.standard-card .plan-button:hover {
    background: linear-gradient(135deg, #F59E0B, #EA580C, #DC2626);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.premium-card .plan-button {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    color: white;
    box-shadow: 0 6px 16px rgba(26, 43, 108, 0.3);
}

.premium-card .plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26, 43, 108, 0.4);
}

.vip-card .plan-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.vip-card .plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(220, 38, 38, 0.4);
}

.plans-register-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.plans-register-section .btn {
    background: linear-gradient(135deg, #1A2B6C, #2563EB);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(26, 43, 108, 0.3);
}

.plans-register-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 43, 108, 0.4);
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .premium-card {
        transform: none;
    }

    .premium-card:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .plan-card {
        height: auto;
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .plans-section {
        padding: 60px 0;
    }

    .plans-header h2 {
        font-size: 2rem;
    }

    .plan-card {
        min-height: 380px;
    }

    .plan-header {
        padding: 24px 20px 16px;
    }

    .premium-card .plan-header {
        padding-top: 36px;
    }

    .plan-content {
        padding: 0 20px 20px;
    }
} */

/* Enhanced Plan Descriptions */
.plan-subtitle {
    font-size: 0.9rem;
    color: rgba(51, 65, 85, 0.8);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.plan-content {
    padding: 0 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(241, 245, 249, 0.9);
    transform: translateX(2px);
}

.standard .feature-item {
    border-left-color: #1A2B6C;
}

.premium .feature-item {
    border-left-color: #1A2B6C;
}

.vip .feature-item {
    border-left-color: #dc2626;
}

.feature-item.premium {
    background: linear-gradient(135deg, rgba(26, 43, 108, 0.08), rgba(59, 130, 246, 0.05));
    border-left-color: #1A2B6C;
}

.feature-item.vip {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(239, 68, 68, 0.05));
    border-left-color: #dc2626;
}

.feature-icon {
    font-size: 1.1rem;
    margin-right: 8px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: linear-gradient(135deg, #1A2B6C, #3b82f6);
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-note {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
    margin-top: 2px;
}

.feature-highlight {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 4px;
    display: inline-block;
}

.feature-item.premium .feature-highlight {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    color: white;
}

.feature-item.vip .feature-highlight {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.results-section {
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    border-left: 4px solid #22c55e;
}

.results-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: #15803d;
    margin: 0;
    text-align: center;
}

.best-for-section {
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-top: auto;
}

.best-for-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #d97706;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.best-for-text {
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Premium and VIP specific styling */
.plan-card.premium .plan-subtitle {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.plan-card.vip .plan-subtitle {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Enhanced card heights for new content */
.plan-card {
    height: auto;
    min-height: 600px;
}

@media (max-width: 768px) {
    .plan-content {
        padding: 0 16px 20px;
        gap: 16px;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .best-for-section {
        padding: 12px;
    }

    .plan-card {
        min-height: 550px;
    }
}

/* Video Gallery Section */
.video-gallery-container {
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.video-gallery {
    display: flex;
    gap: 24px;
    padding: 20px 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-gallery::-webkit-scrollbar {
    display: none;
}

.video-card {
    position: relative;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 0 0 384px;
    height: 600px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    background: linear-gradient(45deg, #1A2B6C, #0f1729);
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
    border-radius: 18px;
    cursor: pointer;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 1);
}

.video-card:hover .play-button {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.video-card.playing .video-overlay {
    opacity: 0 !important;
}

.video-card.playing {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Scroll Navigation Buttons */
.video-gallery-container::before,
.video-gallery-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.video-gallery-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.video-gallery-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1A2B6C, #2563EB);
    border: 2px solid rgba(126, 162, 212, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 20px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-button:hover {
    background:linear-gradient(135deg, #0d1742, #082e7f);
    border-color: #7EA2D4;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 43, 108, 0.2);
}

.scroll-button.left {
    left: 20px;
}

.scroll-button.right {
    right: 20px;
}

/* Hide all video controls */
.video-card video::-webkit-media-controls {
    display: none !important;
}

.video-card video::-webkit-media-controls-panel {
    display: none !important;
}

.video-card video::-webkit-media-controls-play-button {
    display: none !important;
}

.video-card video::-webkit-media-controls-timeline {
    display: none !important;
}

.video-card video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.video-card video::-webkit-media-controls-volume-control-container {
    display: none !important;
}

.video-card video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

.video-card video::-webkit-media-controls-mute-button {
    display: none !important;
}

/* For Firefox */
.video-card video::-moz-media-controls {
    display: none !important;
}

/* For other browsers */
.video-card video {
    outline: none;
}

.video-card video::-webkit-media-controls-enclosure {
    display: none !important;
}

@media (max-width: 768px) {
    .video-gallery {
        padding: 20px 20px;
        gap: 20px;
    }

    .video-card {
        flex: 0 0 384px;
        height: 280px;
    }

    .play-button {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .scroll-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .scroll-button.left {
        left: 10px;
    }

    .scroll-button.right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .video-gallery {
        gap: 16px;
        padding: 20px 15px;
    }

    .video-card {
        flex: 0 0 340px;
        height: 240px;
        border-radius: 16px;
    }

    .video-card video,
    .video-overlay {
        border-radius: 14px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .scroll-button {
        display: none;
    }

    .video-gallery-container::before,
    .video-gallery-container::after {
        width: 20px;
    }
}

/* How it works Section (Legacy - can be removed) */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1px;
    color: #1e293b;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(135deg, white 0%, rgba(26, 43, 108, 0.15) 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* IELTS Guru Section */
.ielts-guru {
    padding: 80px 0;
 background: linear-gradient(135deg, #000000 0%, #0D1124 20%, #1e293b 60%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.guru-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-icon svg {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.icon-1 {
    top: 5%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: 5%;
    animation-delay: -1s;
}

.icon-3 {
    bottom: 8%;
    left: 25%;
    animation-delay: -2s;
}

.icon-4 {
    bottom: 25%;
    right: 8%;
    animation-delay: -3s;
}

.icon-5 {
    top: 30%;
    right: 20%;
    animation-delay: -4s;
}

.icon-6 {
    top: 75%;
    left: 8%;
    animation-delay: -5s;
}
.icon-7 {
    top: 70%;
    right: 23%;
    animation-delay: -6s;
}
.icon-8 {
    bottom: 45%;
    left: 20%;
    animation-delay: -7s;
}

.guru-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.guru-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.guru-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}


.testimonials {
    padding: 80px 0;
    background: white;
}

/* Examiner Feedback Videos Section */
.examiner-video-section {
    margin: 60px 0;
}

.examiner-video-gallery-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.examiner-video-gallery {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.examiner-video-gallery::-webkit-scrollbar {
    display: none;
}

.video-card.featured {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 43, 108, 0.1);
    min-width: 1000px;
    flex: 0 0 1020px;
}

.video-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(26, 43, 108, 0.2);
    border-color: rgba(26, 43, 108, 0.2);
}

.video-card.featured .video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.video-card.featured video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fix poster/thumbnail image quality */
.video-card.featured video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Ensure poster image is sharp and well-positioned */
.video-card.featured video[poster] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.video-card.featured .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1 !important;
    border-radius: 16px;
}

.video-card.featured .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1A2B6C;
    transition: all 0.3s ease;
    padding-left: 4px;
}

.video-card.featured:hover .play-button {
    background: white;
    transform: scale(1.1);
}

.video-card.featured:hover .video-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.video-card.featured.playing .video-overlay {
    opacity: 0 !important;
    pointer-events: none;
}

.video-info {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #1A2B6C 0%, #0f1729 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.video-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    pointer-events: none;
}

.video-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.video-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

/* Responsive design for examiner video */
@media (max-width: 768px) {
    .examiner-video-container {
        padding: 0 15px;
    }

    .video-card.featured {
        min-width: 650px;
        flex: 0 0 690px;
    }

    .video-card.featured .video-wrapper {
        height: 250px;
    }

    .video-card.featured .play-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .video-info {
        padding: 25px 20px;
    }

    .video-info h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .video-info p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .video-card.featured {
        min-width: 350px;
        flex: 0 0 350px;
    }
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 120px;
    overflow: hidden;
    min-height: 450px;
    background: linear-gradient(135deg, white 0%, rgba(26, 43, 108, 0.08) 100%);
    border-radius: 24px;
    border: 1px solid rgba(26, 43, 108, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
}

.testimonial-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateY(50px) rotateX(15deg) scale(0.9);
    filter: blur(3px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0px);
}

.testimonial-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 43, 108, 0.2);
    border: 2px solid rgba(26, 43, 108, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.testimonial-content blockquote {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1e293b;
    font-style: italic;
    background: rgba(255, 255, 255, 0.7);
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #1A2B6C;
    backdrop-filter: blur(10px);
}

.testimonial-author strong {
    color: #1A2B6C;
    font-size: 18px;
}

.testimonial-author p {
    color: #64748b;
    margin-top: 4px;
    font-size: 16px;
}

.testimonial-navigation {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 43, 108, 0.1);
}

.testimonial-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 16px;
    height: 16px;
    background: #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dot:hover {
    background: #cbd5e1;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.dot.active {
    background: linear-gradient(135deg, #1A2B6C, #3B82F6);
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(26, 43, 108, 0.15), 0 6px 20px rgba(26, 43, 108, 0.3);
    border-color: #fff;
}

/* Student Testimonials Infinite Scroll Carousel */
.student-carousel-container {
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.student-carousel {
    display: flex;
    animation: infiniteScroll 120s linear infinite;
    gap: 24px;
    width: max-content;
}

.student-card {
    background: linear-gradient(135deg, white 0%, rgba(26, 43, 108, 0.15) 100%);
    border-radius: 20px;
    padding: 24px;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.student-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.student-avatar {
    text-align: center;
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A2B6C, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(26, 43, 108, 0.3);
}

.student-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    text-align: center;
}

.student-score {
    background: linear-gradient(135deg, #000000, #1A2B6C);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    text-align: center;
    width: 100%;
}

.student-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.student-carousel:hover {
    animation-play-state: paused;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, white 0%, rgba(26, 43, 108, 0.15) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.faq-toggle {
    font-size: 24px;
    color: #64748b;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #1A2B6C;
}

.faq-answer {
    display: none;
    padding: 0 32px 24px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    padding-top: 12px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item p {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.contact-item a {
    color: #1A2B6C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3B82F6;
    text-decoration: underline;
}

.contact-map {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-map {
        height: 300px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .contact-map {
        height: 250px;
        border-radius: 8px;
    }
}

/* Footer */
.footer {
    background:linear-gradient(135deg, #1A2B6C 0%, #0f1729 50%, #000000 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
}

.footer-copyright {
    opacity: 0.6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }
    
    .testimonials-slider {
        min-height: 600px;
        margin-bottom: 150px;
        padding: 24px;
        border-radius: 20px;
    }
    
    .testimonial-navigation {
        bottom: -100px;
    }
    
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-image img {
        height: 300px;
    }
    
    .testimonial-content blockquote {
        font-size: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .faq-answer {
        padding: 0 16px 24px;
    }
    
    .faq-item.active .faq-answer {
        display: block;
    }
    
    .faq-question {
        padding: 20px 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .navbar .container {
        padding: 12px 16px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .dropdown-toggle {
        padding: 6px 10px;
        font-size: 11px;
        gap: 6px;
    }
    
    .dropdown-toggle img,
    .dropdown-toggle svg {
        width: 16px;
        height: 12px;
    }
    
    .dropdown-toggle svg:last-child {
        width: 10px;
        height: 6px;
    }
    
    .hero {
        padding: 60px 0 40px;
        min-height: 50vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-right {
        order: -1;
    }

    .hero-community-btn {
        bottom: -150px;
        right: -730px;
        padding: 8px 12px;
        font-size: 12px;
        background: linear-gradient(135deg, #0088cc, #00aaff) !important;
    }

    .hero-image-container {
        width: 80vh;
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        width: 80vw;
        height: 45vh;
        max-width: 300px;
    }

    .hero-community-btn {
        bottom: -150px;
        right: -730px;
        padding: 6px 10px;
        font-size: 11px;
        background: linear-gradient(135deg, #0088cc, #00aaff) !important;
    }

    /* .image-glow {
        width: 400px;
        height: 400px;
    } */

    .trust-elements {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .trust-mini-card,
    .rating-mini-card {
        justify-content: center;
        padding: 0;
        gap: 0px;
    }

    .trust-avatars img {
        width: 24px;
        height: 24px;
        margin-left: -6px;
    }

    .avatar-count {
        width: 24px;
        height: 24px;
        font-size: 8px;
        margin-left: -6px;
    }

    .trust-text {
        font-size: 5px;
    }

    .rating-number {
        font-size: 14px;
        margin-right: 3px;
    }

    .rating-text {
        font-size: 5px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }


    .avatars img {
        width: 20px;
        height: 20px;
    }

    .avatars span {
        width: 20px;
        height: 20px;
        font-size: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .guru-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .guru-content p {
        font-size: 14px;
        margin-bottom: 24px;
        padding: 0 20px;
    }
    
    .guru-content {
        padding: 40px 20px;
    }
    
    .student-card {
        width: 280px;
        padding: 20px;
    }
    
    .student-carousel {
        animation-duration: 90s;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-logo {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-img {
        margin: -40px auto 20px auto;
    }
    
    .floating-icon svg {
        width: 30px;
        height: 30px;
    }

    .floating-icon {
        opacity: 0.7;
    }
    
    .arrow-line {
        left: -200px;
        top: 200px;
    }
    
    .arrow-line img {
        max-width: 120px;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-left > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-left h1 {
    animation-delay: 0.2s;
}

.hero-left p {
    animation-delay: 0.4s;
}

.hero-left .btn {
    animation-delay: 0.6s;
}

.floating-image {
    animation: float 6s ease-in-out infinite;
}

.floating-image:nth-child(2) {
    animation-delay: -1s;
}

.floating-image:nth-child(3) {
    animation-delay: -2s;
}

.floating-image:nth-child(4) {
    animation-delay: -3s;
}

.floating-image:nth-child(5) {
    animation-delay: -4s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Stagger delay for multiple elements */
.scroll-animate-stagger:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate-stagger:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate-stagger:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate-stagger:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate-stagger:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate-stagger:nth-child(6) { transition-delay: 0.6s; }

/* Submission Overlay Styles */
.submission-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.submission-content {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.submission-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1A2B6C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.submission-content h3 {
    color: #1A2B6C;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.submission-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.submission-content .error-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== NEW CLEAN PLANS SECTION ===== */
.plans-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A2B6C 0%, #0f1729 50%, #1A2B6C 100%);
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.plans-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.plans-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

.plans-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 50px;
}

/* Single plan card enhancement */
.plans-grid .plan-card {
    max-width: 650px;
    width: 100%;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(26, 43, 108, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.plan-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Card Top Bars */
.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A2B6C, #3b82f6);
}

.plan-card.popular {
    border: 2px solid rgba(26, 43, 108, 0.3);
    transform: scale(1.05);
}

.plan-card.popular::before {
    background: linear-gradient(90deg, #1A2B6C, #3b82f6);
}

.plan-card.popular:hover {
    transform: translateY(-12px) scale(1.07);
}

.plan-card.vip::before {
    background: linear-gradient(90deg, #dc2626, #ef4444, #f87171, #ef4444, #dc2626);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    color: white;
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(26, 43, 108, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.plan-card.popular .plan-header {
    padding-top: 16px;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-card.popular .plan-header h3 {
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-card.vip .plan-header h3 {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: -0.01em;
    color:#1A2B6C;
}

.plan-card.popular .plan-price {
    color: #1A2B6C;
}

.plan-card.vip .plan-price {
    color: #dc2626;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.7;
}

.plan-header p {
    color:#1A2B6C;
    font-size: 14px;
    font-weight: 500;
}

.plan-features {
    flex: 1;
    margin-bottom: 24px;
}

.feature {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    position: relative;
}

.feature:not(:last-child) {
    border-bottom: 1px solid rgba(241, 245, 249, 0.7);
}

.feature::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 12px;
    margin-top: 1px;
    flex-shrink: 0;
}

.feature.premium::before {
    content: '★';
    background: linear-gradient(135deg, #1A2B6C, #3b82f6);
}

.feature.vip::before {
    content: '★';
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.feature.premium {
    color: #1A2B6C;
    font-weight: 500;
}

.feature.vip {
    color: #dc2626;
    font-weight: 500;
}

.feature span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 400;
}

.plan-extras {
    background: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.plan-extras.vip {
    background: #fef2f2;
}

.extras-title {
    font-weight: 700;
    font-size: 12px;
    color: #1A2B6C;
    margin-bottom: 8px;
    text-align: center;
}

.plan-extras.vip .extras-title {
    color: #dc2626;
}

.extras-list div {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 4px;
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #e2e8f0;
    color: #475569;
}

.plan-card.popular .plan-btn {
    background: #1A2B6C;
    color: white;
}

.plan-card.vip .plan-btn {
    background: #dc2626;
    color: white;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.plans-footer {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card {
        min-height: auto;
    }
}