/* Genel */
body {
    margin: 0;
    background: #0f172a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* =====================
      HERO
===================== */

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    background: linear-gradient(45deg, #38bdf8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 15px;
    font-size: 20px;
    color: #cbd5e1;
}

.hero-buttons {
    margin-top: 30px;
}

.btn {
    padding: 12px 26px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin: 8px;
    transition: 0.3s;
}

.primary {
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    color: #fff;
}

.secondary {
    background: #1e293b;
    border: 1px solid #38bdf8;
    color: #38bdf8;
}

.glow {
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    color: #fff;
    box-shadow: 0 0 18px rgba(236,72,153,0.6);
}

/* HERO arkaplan */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/img/bg.webp') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

/* =====================
      ÖZELLİKLER
===================== */

.features {
    padding: 80px 20px;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feature-item {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
}

.feature-item i {
    font-size: 45px;
    color: #38bdf8;
    margin-bottom: 15px;
}

/* =====================
      PAKETLER
===================== */

.pricing {
    padding: 80px 20px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.price-card {
    background: #1e293b;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #334155;
    position: relative;
}

.price-card.popular {
    border: 2px solid #ec4899;
    box-shadow: 0 0 25px rgba(236,72,153,0.4);
}

.price-card .tag {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ec4899;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.price {
    font-size: 40px;
    margin: 20px 0;
}

ul {
    list-style: none;
    padding: 0;
}

footer {
    text-align: center;
    padding: 30px;
    background: #0f172a;
    color: #94a3b8;
    margin-top: 50px;
}
