* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:  'Inter', sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* buttons & utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background: none;
    margin: 5px;
}


.btn-primary {
    background: linear-gradient(105deg, #24be66 0%, #3c09b3 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(25, 29, 72, 0.25);
    border: 2px solid #24be66;
}

/*btn-primary:hover {
    background: linear-gradient(105deg, #000 0%, #000 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(25, 29, 72, 0.25);
    align-items: center;
}*/

.btn-sec {
    background: linear-gradient(105deg, #24be66 0%, #3c09b3 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(25, 29, 72, 0.25);
    border: 2px solid #24be66;
    animation: blink-smooth 1.5s ease-in-out infinite;
}

.btn-sec:hover {
    background: linear-gradient(105deg, darkblue 0%, #24be66 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -8px rgba(25, 29, 72, 0.25);
    align-items: center;
}

.btn-outline {
    border: 2px solid #24be66;
    background: transparent;
    color: white;
    font-weight: 700;
    align-items: center;
    animation: blink-smooth 1.5s ease-in-out infinite;
}

.btn-outline:hover {
    background: #24be66;
    color: white;
    transform: translateY(-2px);
}

@keyframes blink-smooth {
  0%, 100% {
    background-color: #09971c;
    box-shadow: 0 0 50px #190297;
  }
  50% {
    background-color: #ccee0a;
    box-shadow: 0 0 40px #eede04;
  }
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
}

/* section spacing */
section {
    padding: 70px 0;
}

.section-bg-light {
    background-color: rgba(25, 29, 72, 0.1);
}

.section-bg-white {
    background: white;
}

.badge {
    background: #24be66;
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 1.3rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

h2 {
    color: #24be66;
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

h3 {
    color: #24be66;
    font-size: 1.3rem;
    font-weight: 800;
}

h4 {
    color: #24be66;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

li {
    color: #000;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

p {
    color: #000;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}


.gradient-text {
    background: linear-gradient(135deg, #24be66, #3c0bc2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero {
    padding: 60px 0 40px 0;
    background: linear-gradient(145deg, #fff 0%, #fff 100%);
    text-align: center;
}

.card {
    background: white;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    border: 1px solid rgba(225, 29, 72, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 40px -18px rgba(25, 29, 72, 0.2);
}

.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(5, 1fr); }

.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-list li::before {
    content: "✅";
    font-size: 1.2rem;
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 800;
    color: #c29a21;
}

.countdown {
    background: #111827;
    color: white;
    border-radius: 60px;
    padding: 12px 20px;
    font-weight: 700;
    display: inline-flex;
    gap: 16px;
    margin-top: 15px;
}


.testimonial {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 12px 25px -8px rgba(0,0,0,0.05);
    border-left: 6px solid #24be66;
}

footer {
    background: #0F172A;
    color: #CBD5E1;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 800px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    h2 { font-size: 1.8rem; }
    .hero .container { flex-direction: column; text-align: center; }
    .btn-large { width: 100%; text-align: center; }
    .countdown { flex-wrap: wrap; justify-content: center; }
}