* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

:root {
    --bg: #0f1724;
    --card: #111827;
    --muted: #94a3b8;
    --accent: #7c3aed;
    --glass: rgba(255, 255, 255, 0.04);
}

body {
    background: var(--bg);
    color: #e5e7eb;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.hero {
    background: linear-gradient(135deg, #0b1220, #0f172a);
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    color: #cbd5e1;
    max-width: 700px;
    margin: auto;
}

.hero-actions {
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-secondary {
    border: 1px solid #3b82f6;
    color: #3b82f6;
}

.features {
    background: #020617;
}

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

.card {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
}

.free-tool {
    text-align: center;
    background: #020617;
}

.why ul {
    list-style: none;
    margin-top: 20px;
}

.why li {
    margin-bottom: 10px;
}

.newsletter {
    background: #0f172a;
    text-align: center;
    padding: 50px 0;
}
.newsletter .container{
    width: 80%;
    max-width: 520px;
    border-radius: 8px;
    background: var(--glass);
    border: 1px solid  #06b6d4;
    display: flex;
    flex-direction: column;
    text-align: start;
    
}
.container h2{
    font-size: 1.5rem;
    margin-top: -10px;
}
.newsletter form {
    margin: 10px 0;
}

input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: inherit;
    font-size: 14px;
    width: 100%;
}

button {
    padding: 12px 16px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(90deg, var(--accent), #06b6d4);
    color: #f2f2f2;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

footer {
    text-align: center;
    padding: 30px 10px;
    background: #020617;
    color: #94a3b8;
}