/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-hover: #0052cc;
    --primary-light: #3399ff;
    --secondary-color: #1a1a1a;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --border-color: #2a2a2a;
    --border-hover: #3a3a3a;
    --success-color: #00ff88;
    --error-color: #ff4444;
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #3399ff 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.05) 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 102, 255, 0.2);
    --shadow-lg: 0 20px 60px rgba(0, 102, 255, 0.3);
    --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--text-primary);
}

.contact-link:hover::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--shadow-glow);
}

.logo-plus {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-test {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login {
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-color);
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, 0.1);
    transition: left 0.3s ease;
}

.btn-login:hover::before {
    left: 0;
}

.btn-login:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-test {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-test:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-test:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    overflow: hidden;
    width: 100%;
}

.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200%;
    background-image: url('../images/hero-bg.webp');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: repeat-y;
    opacity: 0.4;
    z-index: -2;
    animation: heroBgScroll 80s linear infinite;
    will-change: transform;
}

@keyframes heroBgScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: -1;
}

.hero-inner {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    width: 100%;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-form {
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

.hero-image-wrapper {
    margin: 40px 0 30px;
    width: 100%;
    max-width: 100vw;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 3;
    padding: 0;
    overflow: hidden;
}

.iptv-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.iptv-image:hover {
    transform: scale(1.01);
}

.form-group {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.form-group input {
    flex: 1;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hero-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 6px;
    max-width: 400px;
    margin: 20px auto 0;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 3;
}

.tab-link {
    flex: 1;
    padding: 14px 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.tab-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-link:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Platforms Section */
.platforms {
    padding: 100px 0;
    background: var(--bg-card);
    position: relative;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b3b3b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.platform-item:hover {
    transform: scale(1.1);
}

.platform-logo-img {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.platform-item:hover .platform-logo-img {
    opacity: 1;
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(15, 25, 45, 0.98) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: -1;
}

.pricing-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.pricing .section-title {
    margin-bottom: 20px;
}

.pricing .section-description {
    margin-bottom: 40px;
}

/* Toggle Containers */
.region-toggle-container {
    margin-bottom: 40px;
}

.region-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 6px;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.region-tab {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.region-tab.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    transform: translateY(-1px);
}

.region-tab:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.region-tab .flag {
    font-size: 16px;
}

/* User toggle small circular style */
.user-toggle {
    display: flex;
    justify-content: center;
    gap: 4px !important;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 4px !important;
    max-width: 120px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-tab {
    flex: 1;
    padding: 8px 12px !important;
    background: transparent;
    border: none;
    border-radius: 20px !important;
    color: var(--text-secondary);
    font-size: 12px !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    position: relative;
    overflow: hidden;
    min-width: 48px;
    height: 36px;
}

.user-tab .user-count {
    font-size: 14px;
    font-weight: 700;
    min-width: 16px;
    text-align: center;
}

.user-tab span:not(.user-count) {
    font-size: 10px !important;
    display: block; /* Show "KiÅŸilik" text but smaller */
}

.user-tab.active .user-count {
    color: white;
}


.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(20, 25, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 102, 255, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.12) 0%, rgba(20, 25, 35, 0.9) 100%);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00d4aa 100%);
    color: #000;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
    flex-shrink: 0;
}

.card-header {
    margin-bottom: 20px;
    text-align: center;
    padding: 20px 16px 16px;
    position: relative;
}

.card-logo {
    text-align: center;
    margin-bottom: 8px;
}


.logo-sub {
    display: block;
    font-size: 24px;
    color: #00d4aa;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 6px;
    text-transform: uppercase;
}

.card-flags {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.card-flags .flag {
    font-size: 16px;
}


.card-user-btn.active .user-label {
    opacity: 1;
}


.card-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 13px;
    text-align: center;
}

.card-pricing {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discount-badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.15);
    color: #00d4aa;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.price-period {
    font-size: 13px;
    color: var(--text-secondary);
}

.card-features {
    list-style: none;
    margin-bottom: 24px;
}

.card-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    transition: color 0.3s ease;
}

.card-features li:hover {
    color: var(--text-primary);
}

.check-icon {
    color: #00d4aa;
    font-weight: bold;
    font-size: 14px;
    min-width: 16px;
}

.btn-card {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-card.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.btn-card.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.pricing-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    font-style: normal;
    margin-top: 30px;
}

/* Devices Section */
.devices {
    padding: 120px 0;
    background: var(--bg-card);
    position: relative;
}

.devices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.device-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
}

.device-image {
    width: 100%;
    height: 220px;
    background: var(--bg-dark);
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.device-image svg {
    max-width: 100%;
    max-height: 100%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.device-card:hover .device-image svg {
    opacity: 1;
    transform: scale(1.05);
}

.device-card:hover .device-image {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.device-image.phone-tablet {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 102, 255, 0.1) 100%);
}

.device-image.android-tv {
    background: linear-gradient(135deg, rgba(0, 168, 225, 0.25) 0%, rgba(0, 168, 225, 0.1) 100%);
}

.device-image.pc-mac {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0%, rgba(255, 107, 0, 0.1) 100%);
}

.device-image.app-store {
    background: var(--bg-dark);
    flex-direction: column;
    gap: 15px;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.app-badge {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.app-badge svg {
    width: 100%;
    height: auto;
    max-width: 140px;
}

.app-store-logo {
    width: 100%;
    height: auto;
    max-width: 180px;
    min-width: 150px;
    display: block;
    object-fit: contain;
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.device-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.device-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    position: relative;
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-weight: 800;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.star {
    color: #ffd700;
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--bg-card);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: right;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    fill: white;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    background: var(--bg-dark);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        gap: 25px;
    }
    
    .platform-logo-img {
        height: 26px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input,
    .btn-primary {
        width: 100%;
    }

    .header-top {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .contact-link {
        order: 1;
    }

    .header-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-tabs {
        padding: 5px;
    }
    
    .pricing-tab {
        padding: 10px 18px;
    }
    
    .tab-discount {
        font-size: 9px;
    }
    
    .tab-duration {
        font-size: 13px;
    }
    
    .platforms-grid {
        gap: 20px;
    }
    
    .platform-logo-img {
        height: 22px;
    }

    .devices-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        height: 30px;
    }

    .footer-spotlight {
        display: none; /* Mobil cihazlarda devre dÄ±ÅŸÄ± */
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }

    .hero-image {
        margin: 30px auto 25px;
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .pricing-tabs {
        flex-direction: column;
        border-radius: 16px;
    }

    .pricing-tab {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .region-toggle {
        flex-direction: column;
        border-radius: 12px;
    }

    .region-tab {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 16px;
    }


    .pricing-card {
        padding: 28px 20px;
    }

    .logo-sub {
        font-size: 20px !important;
        letter-spacing: 1px !important;
    }

    .section-title {
        font-size: 26px;
    }
    
    .platforms-grid {
        gap: 15px;
    }
    
    .platform-logo-img {
        height: 18px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card,
.testimonial-card,
.device-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
