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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #000;
    overflow-x: hidden;
    padding-top: 100px;
}

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

header {
    background: #000;
    color: #fff;
    padding: 100px 20px 120px;
    text-align: center;
    position: relative;
}

.gradient-text {
    background: linear-gradient(90deg, #00F5FF, #0080FF, #FF00FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 4.5em;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.5em;
    margin-bottom: 50px;
    color: #999;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display:inline-block;
    background: linear-gradient(90deg, #00F5FF, #0080FF);
    color: #000;
    padding: 20px 60px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.5s;
}

.hero-button:hover {
    transform:  scale(1.1);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    background-color: #000;
    padding: 120px 20px;
    position: relative;
}

.benefits h2 {
    grid-column: 1 / -1;
}

.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 80px;
    color: #fff;
    font-weight: 800;
}

.benefit-card {
    background: linear-gradient(145deg, #111, #1a1a1a);
    border:  1px solid #222;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #00F5FF, #0080FF, #FF00FF);
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: 0.5s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: #111;
    cursor: pointer;
}

.benefit-number {
    font-size: 5em;
    font-weight: 900;
    background: linear-gradient(90deg, #00F5FF, #0080FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    margin-bottom: 20px;
}

.benefit-card:hover .benefit-number {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset; 
    color: #fff;
}

.benefit-card:hover .benefit-p {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset; 
    color: #fff;
}

.benefit-number h3 {
    color: #888;
    line-height: 1.8;
    font-size: 1.1em;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    background-color: #111;
    padding:  120px 20px;
    text-align: center;
}

.features h2 {
    width: 100%;
    margin-bottom: 50px;
}

.pill {
    color: #fff;
    background-color: #000;
    border: 2px solid #222;
    border-radius: 50px;
    font-weight: 600;
    padding: 15px 30px;
    transition: 0.5s;
    cursor: pointer;
}

.pill:hover {
    border-color: #00F5FF;
    color: #00F5FF;
    transform: scale(1.1);
}

.cta-section {
    background: linear-gradient(145deg, #111, #1a1a1a);
    border: 2px solid #222;
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 120px auto;
}

.cta-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #888;
}

footer {
    background-color: #000;
    color: #666;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #222;
    border: none;
}