:root {
    --primary: #4f46e5;
    --accent: #06cdd4;
    --accent-dark: #087a97;
    --background: #111827;
    --surface: #1f2937;
    --text: #f3f4f6;
    --text-light: #d1d5db;
    --card-bg: #262f3d;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}
body {
    font-family: system-ui, sans-serif;
    background: var(--background);
    color: var(--text);
}
.container {
    width: min(95%, 100rem);
    margin-inline: auto;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    color: var(--text);
    text-align: center;
    padding: clamp(2rem, 10vw, 4rem) 0;
}
.hero h1 {
    font-size: clamp(4rem, 5vw, 3rem);
    font-weight: 800;
    color:#ffff7d;
}


.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 1rem;
    padding-block: 4rem;
}

.feature-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon,
.plan-price {
    font-size: 2rem;
}

.feature-icon {
    color: var(--accent);
}

.plan-price {
    font-weight: 700;
    color: var(--accent);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding-block: 0.3rem;
    color: var(--text-light);
}

h2 {
    color: var(--accent);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.btn, .hero .btn{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    background: rgb(12, 213, 25);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: #128C7E;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.hero .btn:hover {
    transform: translateY(-2px);
    background: #128C7E;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.footer {
    background: var(--surface);
    color: var(--text-light);
    padding-block: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

@media print {
    .btn {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
    }
}
