@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --secondary: #ec4899;
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(30, 41, 59, 0.6);
    --glass-hover: rgba(30, 41, 59, 0.9);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-bg: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    --gradient-text: linear-gradient(135deg, #818cf8 0%, #f472b6 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: auto;
    overscroll-behavior-y: none;
}

body {
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    line-height: 1.4;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: none;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: white;
    letter-spacing: -1px;
}

.section-title-left {
    text-align: left;
    margin-left: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Header/Nav */
header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 0.75rem 1.4rem;
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 3rem;
    position: relative;
    background:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
}

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

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.screenshot-placeholder {
    display: block;
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.hero-screenshot {
    margin-top: 2rem !important;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.placeholder-img {
    width: 100%;
    object-fit: contain;
    display: block;
}

.screenshot-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.hero-screenshot:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 40px 80px -15px rgba(99, 102, 241, 0.2);
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Features Grid */
.features {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.section-padding {
    padding: 4rem 0;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--glass-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Wizard Section */
.wizard-section {
    padding: 4rem 0;
    background: var(--dark-lighter);
    position: relative;
}

.wizard-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.wizard-text {
    flex: 1;
}

.wizard-image {
    flex: 1.5;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    padding: 1rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.step-item:hover,
.step-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--glass-border);
}

.step-item.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.step-icon {
    width: 42px;
    height: 42px;
    background: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-right: 1rem;
    flex-shrink: 0;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.step-icon svg {
    width: 20px;
    height: 20px;
}

.step-item.active .step-icon {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.step-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: white;
}

.step-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* Analytics Section */
.analytics-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    background: var(--dark);
}

.analytics-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row-reverse;
}

.analytics-text {
    flex: 1;
}

.analytics-image {
    flex: 1.2;
}

/* Wizard Screenshot styling */
.wizard-screenshot-container {
    width: 100%;
    display: grid;
    position: relative;
    align-items: start;
    gap: 0;
}

/* ==============================
   FAQ SECTION
   ============================== */
.faq-section {
    padding: 7.2rem 0;
    background: var(--dark);
    position: relative;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-tab:hover {
    border-color: rgba(99, 102, 241, 0.3);
    color: white;
}

.faq-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.faq-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-panel.active {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    animation: fadeInFaq 0.3s ease;
}

@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.4rem;
    background: var(--glass);
    border: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s;
    gap: 1rem;
}

.faq-question:hover {
    background: var(--glass-hover);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
    font-weight: 300;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-answer p {
    padding: 1rem 1.4rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(30, 27, 75, 0.8) 100%);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

footer {
    position: relative;
    z-index: 100;
    background: #0b1222;
    padding: 2rem 0;
    text-align: center;
}

.wizard-img {
    display: none;
}

.wizard-img.active {
    display: block;
    animation: fadeInStep 0.5s ease forwards;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-img .placeholder-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    cursor: default;
}

/* Analytics - Checklist */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

/* ==============================
   PRICING SECTION
   ============================== */
.pricing-section {
    padding: 5rem 0;
    background: var(--dark-lighter);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Base */
.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: var(--glass-hover);
}

/* Popular Card */
.pricing-card-popular {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 40px -10px rgba(99, 102, 241, 0.3);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card-popular:hover {
    transform: scale(1.04) translateY(-8px);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 0 60px -10px rgba(99, 102, 241, 0.4);
}

.popular-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Premium Card */
.pricing-card-premium {
    border-color: rgba(236, 72, 153, 0.2);
}

.pricing-card-premium:hover {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 0 40px -10px rgba(236, 72, 153, 0.2);
}

/* Header */
.pricing-header {
    padding: 1.8rem 2rem 0;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 0.6rem;
}

.pricing-badge-gold {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.pricing-badge-premium {
    color: var(--secondary);
    background: rgba(236, 72, 153, 0.1);
}

.pricing-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
}

.pricing-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.3rem;
}

.pricing-once {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #34d399;
    background: rgba(16, 185, 129, 0.1);
    padding: 3px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.pricing-period {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Body / Features List */
.pricing-body {
    padding: 1.2rem 2rem;
    flex: 1;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.pf-val {
    color: white;
    font-weight: 700;
    min-width: auto;
}

.pf-val-accent {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pf-included {
    color: var(--text) !important;
}

.pf-included svg {
    width: 18px;
    height: 18px;
    color: #34d399;
    flex-shrink: 0;
}

.pf-highlight svg {
    color: var(--secondary);
}

.pf-highlight {
    color: var(--secondary) !important;
    font-weight: 500;
}

.pf-disabled {
    opacity: 0.4;
}

.pf-disabled svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pf-provider {
    padding-bottom: 0.5rem !important;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.pf-note {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    opacity: 0.6;
    font-style: italic;
    border-bottom: none !important;
    padding-top: 0.3rem !important;
}

.pf-note-good {
    color: #34d399 !important;
    opacity: 0.8;
}

.pf-credit-info {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    border-bottom: none !important;
    padding: 0.5rem 0 0.2rem !important;
    line-height: 1.4;
}

.pf-credit-info strong {
    color: white;
    font-weight: 700;
}

/* Footer / CTA */
.pricing-footer {
    padding: 0 2rem 1.8rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.85rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-pricing-gold {
    display: block;
    width: 100%;
    padding: 0.85rem;
    text-align: center;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.3);
}

.btn-pricing-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(99, 102, 241, 0.5);
}

.btn-pricing-premium {
    display: block;
    width: 100%;
    padding: 0.85rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary), #a855f7);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(236, 72, 153, 0.3);
}

.btn-pricing-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(236, 72, 153, 0.5);
}

/* Amazon SES Highlight */
.ses-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 153, 0, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.25);
    border-radius: 10px;
}

.ses-highlight-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.ses-highlight-icon svg {
    width: 32px;
    height: 32px;
}

.ses-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ses-highlight-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #ff9900;
}

.ses-highlight-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Tüm paketlerde ortak */
.pricing-common {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.pricing-common-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.pricing-common-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 2rem;
}

.pricing-common-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text);
}

.pricing-common-item svg {
    width: 14px;
    height: 14px;
    color: #34d399;
    flex-shrink: 0;
}

/* ==============================
   MODAL
   ============================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--dark-lighter);
    margin: auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 480px;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.open .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--text-muted);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    transition: 0.2s;
}

.close-modal:hover {
    color: white;
}

.modal h2 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
}

/* Checkbox / KVKK */
.form-check {
    margin-bottom: 1rem !important;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}

.check-label input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--glass-border);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.check-label input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.check-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.check-label a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.2s;
}

.check-label a:hover {
    color: #818cf8;
}

/* Privacy Modal */
.modal-content-privacy {
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
}

.privacy-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.privacy-text h4 {
    color: white;
    font-size: 0.95rem;
    margin: 1.2rem 0 0.4rem;
}

.privacy-text p {
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.privacy-text strong {
    color: var(--text);
}

/* ==============================
   IMAGE LIGHTBOX
   ============================== */
.img-expandable {
    cursor: zoom-in;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-overlay img {
    max-width: 95%;
    max-height: 95vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .pricing-card-popular:hover {
        transform: translateY(-8px);
    }

    .pricing-common-list {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    /* Hero: görsel önce, yazı sonra */
    .hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-screenshot {
        order: -1;
        margin-top: 0 !important;
        margin-bottom: 1.5rem;
    }

    .analytics-text {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    /* Features */
    .features {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.8rem;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Wizard: görsel üstte */
    .wizard-section {
        padding: 3rem 0;
    }

    .wizard-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .wizard-image {
        order: -1;
        width: 100%;
    }

    /* Analytics: görsel üstte */
    .analytics-section {
        padding: 3rem 0;
    }

    .analytics-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .analytics-container .wizard-image {
        order: -1;
    }

    /* Mobile Nav */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .nav-container {
        flex-direction: row;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .step-item {
        padding: 0.8rem;
    }

    .step-content h4 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .check-list {
        gap: 0.8rem;
    }

    .check-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .pricing-header {
        padding: 1.5rem 1.2rem 0;
    }

    .pricing-body {
        padding: 1rem 1.2rem;
    }

    .pricing-footer {
        padding: 0 1.2rem 1.5rem;
    }

    .pricing-price {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo svg {
        width: 26px;
        height: 26px;
    }
}