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

:root {
    --primary: #25D366; /* WhatsApp yeşili */
    --primary-alt: #ff4b2b;
    --primary-dark: #128C7E;
    --bg: #050816;
    --bg-alt: #0c1020;
    --text: #f5f5f5;
    --muted: #a0a4b8;
    --card-bg: #101426;
    --border-radius: 10px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
    --max-width: 1140px;
    --transition: 0.25s ease;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at top, #12162f 0, #050816 60%, #02030a 100%);
    color: var(--text);
    line-height: 1.6;
}

/* Layout helpers */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* Top bar */

.top-bar {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
}

.lang-switcher a {
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 18px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
}

.lang-switcher a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    border-color: rgba(255, 255, 255, 0.7);
}

/* Header / Nav */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(5, 8, 22, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.logo a,
.logo-footer {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.logo span,
.logo-footer span {
    color: var(--primary-alt);
}

.nav a {
    margin-left: 20px;
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--text);
}

.nav-blog {
    font-weight: 500;
}

.btn-nav {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--primary-alt);
    color: #fff !important;
}

/* Hero */

.hero {
    position: relative;
    padding: 80px 0 70px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
      radial-gradient(circle at 10% 20%, rgba(37, 211, 102, 0.25), transparent 60%),
      radial-gradient(circle at 80% 0%, rgba(51, 94, 255, 0.25), transparent 55%);
    opacity: 0.85;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.65), transparent 65%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: flex-start;
}

.hero-text h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-text p {
    max-width: 600px;
    color: var(--muted);
    margin-bottom: 20px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.small-btn {
    padding: 7px 16px;
    font-size: 12px;
}

.hero-keywords small {
    font-size: 12px;
    color: var(--muted);
}

/* Platform icon boxes */

.platform-icons {
    margin-top: 18px;
}

.platform-title {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.platform-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 10px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.platform-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #000;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.platform-text {
    display:flex;
    flex-direction:column;
}

.platform-name {
    font-size: 13px;
}

.platform-desc {
    font-size: 11px;
    color: var(--muted);
}

.platform-note {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--muted);
}

/* Hero side box */

.hero-box {
    background: rgba(8, 12, 30, 0.95);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 0;
}

.trust-badges {
    list-style: none;
}

.trust-badges li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badges li:last-child {
    border-bottom: none;
}

.hero-highlight {
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    font-size: 13px;
    color: var(--muted);
}

/* Contact icons row */

.contact-icons-row {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.icon-pill img {
    width: 16px;
    height: 16px;
}

.icon-pill:hover {
    color: var(--text);
    border-color: rgba(255,255,255,0.6);
}

/* Sections */

.section {
    padding: 70px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.section-intro {
    max-width: 640px;
    color: var(--muted);
    margin-bottom: 26px;
}

.section-title-center {
    text-align: center;
}

.section-intro-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* PREMIUM IPTV STRIP (icon boxes) */

.premium-strip {
    background: linear-gradient(120deg, rgba(2,6,23,1), rgba(15,23,42,1));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.premium-card {
    margin-top: 18px;
    background: rgba(0,0,0,0.55);
    border-radius: 16px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-soft);
}

.premium-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.premium-card p {
    font-size: 13px;
    color: var(--muted);
}

.premium-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.5);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
}

/* WHY section (icon boxes) */

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

.why-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: var(--shadow-soft);
}

.why-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 13px;
    color: var(--muted);
}

.why-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 8px;
}

.why-icon {
    font-size: 18px;
}

/* IPTV INFO GRID */

.info-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.info-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 13px;
    color: var(--muted);
}

.info-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.4);
    margin-bottom: 8px;
}

.info-icon {
    font-size: 16px;
    font-weight: 700;
}

.info-cta-row {
    margin-top: 18px;
}

/* BENEFIT GRID */

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

.benefit-card {
    background: #0b0f22;
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft);
}

.benefit-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--muted);
}

.benefit-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 8px;
}

/* COUNTRY GRID */

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

.country-card {
    background: #050816;
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
}

.country-header {
    display:flex;
    align-items:center;
    gap: 8px;
    margin-bottom: 6px;
}

.country-flag {
    font-size: 20px;
}

.country-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.country-channels {
    list-style: none;
    font-size: 12.5px;
    color: var(--muted);
}

.country-channels li {
    margin-bottom: 3px;
}

/* Pricing */

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

.pricing-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 22px 20px;
    text-align: left;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.pricing-card-featured {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card .badge {
    position: absolute;
    top: 14px;
    right: 16px;
    background: var(--primary-alt);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
}

.pricing-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.price {
    font-size: 26px;
    font-weight: 700;
}

.price-sub {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}

.pricing-card ul {
    list-style: none;
    margin: 10px 0 18px;
}

.pricing-card ul li {
    font-size: 13px;
    color: var(--muted);
}

.currency-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
}

/* SUPPORT ADVANCED */

.support-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.support-adv-card {
    background: #0b0f22;
    border-radius: 14px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-soft);
}

.support-adv-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.support-adv-card p {
    font-size: 13px;
    color: var(--muted);
}

.support-adv-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.4);
    margin-bottom: 8px;
    font-size: 18px;
}

.support-contact-row {
    margin-top: 20px;
}

/* Contact form */

.contact-form {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 22px 20px;
    max-width: 640px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #050816;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.3);
}

/* CONTACT TOP ROW */

.contact-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-chip {
    display:flex;
    align-items:center;
    gap:8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 190px;
}

.chip-icon {
    font-size: 18px;
}

.chip-text {
    display:flex;
    flex-direction:column;
    font-size: 12px;
}

.chip-text strong {
    font-size: 13px;
}

/* Footer */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 26px 0;
    background: #050816;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.footer-left p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.footer-right h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-right a {
    display: block;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 4px;
    transition: var(--transition);
}

.footer-right a:hover {
    color: var(--text);
}

/* WhatsApp floating button */

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    z-index: 99;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.wa-icon {
    font-weight: 800;
    font-size: 20px;
}

/* Responsive */

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-box {
        order: -1;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none; /* İstersen mobile menü ekleyebilirsin */
    }
    .header-inner {
        justify-content: space-between;
    }
    .hero {
        padding-top: 60px;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 28px;
    }
    .contact-form .form-row {
        flex-direction: column;
    }
    .pricing-card-featured {
        transform: none;
    }
    .contact-top-row {
        flex-direction: column;
    }
}