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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
}

#hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

#hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  	color: white !important;
}

#hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

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

.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: #f5f5f5;
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.container {
    max-width: 1400px;
    margin: -40px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1a1a1a, #4a4a4a, #1a1a1a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #1a1a1a;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin: 30px 0;
    line-height: 1;
}

.price-suffix {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 10px;
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features li::before {
    content: '✓';
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.features li:last-child {
    border-bottom: none;
}

.info-container {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin: 20px 0;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-container.dark {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-left: 4px solid #4a4a4a;
}

.info-container-title {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-container-title.light {
    color: white;
}

.info-container-title.with-icon {
    color: #1976d2;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.info-icon {
    width: 24px;
    height: 24px;
    background: #2196f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.info-container-content {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.info-container-content.light {
    color: #e8e8e8;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 12px;
}

.info-row:not(:last-child) {
    border-bottom: 2px solid #e8e8e8;
}

.info-label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-value {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-box-content {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.badge-free {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.youth-pricing {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.youth-pricing h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.youth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.youth-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.youth-item:hover {
    border-color: #1a1a1a;
    transform: translateY(-4px);
}

.youth-item strong {
    display: block;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.youth-item span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.notice {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 6px solid #1a1a1a;
}

.notice-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.notice-text {
    color: #666;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

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

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

    .btn {
        width: 100%;
    }
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight {
    color: #1a1a1a;
    font-weight: 600;
}