﻿/* ==========================================
   LANDING PAGE - Premium Dark Hosting Theme
   ========================================== */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0 20px;
    height: 70px;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 24px;
    color: #818cf8;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: white;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(99,102,241,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139,92,246,0.14) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(59,130,246,0.12) 0%, transparent 50%);
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* h1'deki gradient efektinin strong/span'a sıçramasını engelle */
.hero-stats strong,
.hero-stats span {
    -webkit-text-fill-color: unset;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.hero-content p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 820px;
    margin: 0 auto;
}

.hero-stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: border-color .25s, transform .25s;
}

.hero-stat:hover {
    border-color: rgba(129,140,248,.5);
    transform: translateY(-4px);
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(99,102,241,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 16px;
    color: #818cf8;
}

.hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -.5px;
}

.hero-stat span {
    font-size: 12px;
    color: #94a3b8;
    -webkit-text-fill-color: #94a3b8;
    font-weight: 500;
    display: block;
}

/* Sections */
.section {
    padding: 88px 20px;
    background: #111827;
}

.section-dark {
    background: #0b0f1a;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 12px;
    letter-spacing: -.3px;
}

.section-header p {
    font-size: 16px;
    color: #94a3b8;
}

.section-header.light h2 { color: #fff; }
.section-header.light p  { color: #94a3b8; }

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

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: #1e293b;
    border-radius: 16px;
    padding: 28px 22px;
    border: 1.5px solid #334155;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(99,102,241,0.12);
    border-color: #6366f1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
}

.feature-card:nth-child(1) .feature-icon { background: rgba(99,102,241,0.15); color: #818cf8; }
.feature-card:nth-child(2) .feature-icon { background: rgba(34,197,94,0.12);   color: #4ade80; }
.feature-card:nth-child(3) .feature-icon { background: rgba(245,158,11,0.12);  color: #fbbf24; }
.feature-card:nth-child(4) .feature-icon { background: rgba(59,130,246,0.12);  color: #60a5fa; }
.feature-card:nth-child(5) .feature-icon { background: rgba(236,72,153,0.12);  color: #f472b6; }
.feature-card:nth-child(6) .feature-icon { background: rgba(139,92,246,0.12);  color: #a78bfa; }

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.65;
}

/* Pricing */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 44px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 5px;
    width: fit-content;
    margin-inline: auto;
}

.pricing-tab {
    padding: 11px 30px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.22s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-tab:hover { color: #fff; }

.pricing-tab.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 18px rgba(99,102,241,.4);
}

.pricing-tab.active.reseller-tab {
    background: linear-gradient(135deg, #d97706, #ea580c);
    box-shadow: 0 4px 18px rgba(245,158,11,.4);
}

.pricing-content { display: none; }
.pricing-content.active { display: block; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: #1e293b;
    border-radius: 18px;
    padding: 28px 24px 32px;
    border: 1.5px solid #334155;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 16px 48px rgba(99,102,241,0.14);
}

.price-card.featured {
    border-color: #6366f1;
    background: #1a1f35;
    box-shadow: 0 0 0 1px rgba(99,102,241,.3), 0 16px 48px rgba(99,102,241,.18);
}

.price-card.reseller-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 16px 48px rgba(245,158,11,0.12);
}

.price-card.reseller-card.featured {
    border-color: #f59e0b;
    background: #1a1f35;
    box-shadow: 0 0 0 1px rgba(245,158,11,.3), 0 16px 48px rgba(245,158,11,.15);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 6px 22px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(99,102,241,.45);
    white-space: nowrap;
}

.reseller-card .price-badge {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 4px 14px rgba(245,158,11,.45);
}

.price-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 8px;
}

.price-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 6px;
}

.price-desc {
    font-size: 13px;
    color: #64748b;
}

.price-amount {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(0,0,0,.3);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #818cf8;
    vertical-align: top;
    line-height: 1.5;
}

.reseller-card .price-currency { color: #fbbf24; }

.price-value {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li:last-child { border-bottom: none; }

.price-features li i {
    color: #818cf8;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.reseller-card .price-features li i { color: #fbbf24; }

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: #1e293b;
    border-radius: 13px;
    border: 1px solid #334155;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}

.faq-item:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 15px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(99,102,241,0.05);
}

.faq-question i {
    transition: transform 0.3s;
    color: #64748b;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #070a13;
    padding: 64px 20px 0;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .03em;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: #475569;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 968px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 36px; }
}

@media (max-width: 600px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0f172a;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    .navbar-links.open { display: flex; }
    .navbar-toggle { display: block; }
    .features-grid  { grid-template-columns: 1fr; }
    .pricing-grid   { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 28px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-btns  { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
}
