:root {
    --primary: #2d2f76;
    --accent: #e4c0cc;
    --bg-light: #f8f9fb;
    --text: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
}

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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

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

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

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

.btn-nav {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
}

/* ══════════════════════════════════════════
   HERO SLIDER
   ══════════════════════════════════════════ */

.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Each slide occupies the full space, stacked via position absolute */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(60px);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.exit-left {
    opacity: 0;
    transform: translateX(-60px);
    z-index: 1;
}

/* Full-bleed gradient background per slide */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Two-column layout inside each slide */
.slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 140px 0 80px;
    position: relative;
    z-index: 1;
}

/* Left: Text */
.slide-text {
    max-width: 560px;
}

.slide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}

.slide-text h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
}

/* h2 slider başlıkları h1 ile aynı boyutta görünsün (SEO için h2 yapıldı) */
.hero-slider .slide-text h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
    line-height: 1.1 !important;
    margin-bottom: 22px !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.slide-text h1 span,
.hero-slider .slide-text h2 span {
    color: var(--accent) !important;
}


.slide-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Right: Visual */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-img-wrap {
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.hero-slide.active .slide-img-wrap {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    transition-delay: 0.3s;
}

.slide-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Slide 3 - Feature icon grid visual */
.slide-visual-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.fi-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    transition: 0.3s;
    cursor: default;
}

.fi-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.fi-card i {
    font-size: 2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.fi-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    display: block;
}

/* Arrow buttons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.slider-arrow:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 24px;
}

.slider-next {
    right: 24px;
}

/* Dot navigation */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 8px;
}

/* Progress bar on active dot */
.slider-dot.active::after {
    content: '';
}

/* ── Hero Buttons ── */
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
    .slide-inner {
        grid-template-columns: 1fr;
        padding: 130px 20px 80px;
        gap: 40px;
        text-align: center;
        width: 100%;
        overflow-x: hidden;
    }

    .slide-text {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .slide-visual {
        display: none;
    }
}

/* ══════════════════════════════════════════
   NEDEN LUVİD SECTION
   ══════════════════════════════════════════ */

.why-luvid {
    padding: 110px 0 80px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.why-luvid::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.08;
    border-radius: 50%;
    pointer-events: none;
}

/* Header */
.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #5c5fa3);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.why-header h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--primary);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.why-header h2 span {
    color: var(--accent);
    -webkit-text-stroke: 1px #c77daa;
}

.why-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: white;
    border-radius: 24px;
    padding: 40px 60px;
    margin-bottom: 60px;
    box-shadow: 0 8px 40px rgba(45, 47, 118, 0.07);
    border: 1px solid rgba(45, 47, 118, 0.06);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num sup {
    font-size: 1.4rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e8eaed;
    flex-shrink: 0;
}

/* Feature Cards Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.why-card {
    background: white;
    border-radius: 28px;
    padding: 40px 36px;
    border: 1px solid rgba(45, 47, 118, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45, 47, 118, 0.12);
}

.why-card-featured {
    background: var(--primary);
    color: white;
    border-color: transparent;
}

.why-card-featured h3 {
    color: white;
}

.why-card-featured p {
    color: rgba(255, 255, 255, 0.75);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-card h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
}

.why-card p {
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.why-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    background: rgba(45, 47, 118, 0.08);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Comparison Table */
.compare-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 0.85rem;
    font-weight: 500;
}

.compare-row>span {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}

.compare-row.header>span {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.compare-row .old {
    color: rgba(255, 255, 255, 0.5);
}

.compare-row .new {
    color: #7fffd4;
}

.compare-row .bad i {
    color: #ff6b6b;
}

.compare-row .good i {
    color: #7fffd4;
}

/* Mini Features Strip */
.mini-features {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.mini-feat {
    background: white;
    border: 1px solid rgba(45, 47, 118, 0.08);
    border-radius: 18px;
    padding: 22px 10px;
    text-align: center;
    transition: 0.3s;
    cursor: default;
}

.mini-feat:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 47, 118, 0.1);
}

.mini-feat i {
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

.mini-feat span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .mini-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-row {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .mini-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

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

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

/* Pricing */
.pricing {
    background: white;
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.price-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    transition: 0.4s;
}

.price-card.featured {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 40px rgba(45, 47, 118, 0.2);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-card .amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.price-card .amount span {
    font-size: 1rem;
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

.price-card.featured li::before {
    color: var(--accent);
}

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
    }

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

/* ══════════════════════════════════════════
   LIVE THEME PREVIEW & PHONE MOCKUP
   ══════════════════════════════════════════ */

.live-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.live-preview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(100px);
    opacity: 0.1;
    border-radius: 50%;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.preview-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.preview-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
}

.theme-btn {
    background: white;
    border: 2px solid #eaecf0;
    padding: 20px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.theme-btn i {
    font-size: 1.4rem;
    color: var(--accent);
    transition: 0.3s;
}

.theme-btn:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.theme-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.theme-btn.active i {
    color: var(--accent);
}

.theme-more-text {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    opacity: 0.8;
}

.mockup-container {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border: 14px solid #1a1a1a;
    border-radius: 45px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: 0.5s ease;
}



.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-mockup .speaker {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #333;
    border-radius: 4px;
    z-index: 11;
}

.phone-mockup iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
}

/* ══════════════════════════════════════════
   MOBİL TEMA ŞERİDİ
   ══════════════════════════════════════════ */

/* Varsayılan: desktop'ta tamamen gizli */
.mobile-theme-strip,
.mobile-preview-cta {
    display: none;
}

@media (max-width: 768px) {

    /* Desktop tema grid'ini gizle */
    .preview-content .theme-grid,
    .preview-content > div[style*="margin-top"],
    .preview-content > p,
    .preview-content > h2 {
        display: none;
    }

    /* Telefon + şerit + CTA dikey blok */
    .mockup-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* Telefon boyutunu mobilden sığdır */
    .phone-mockup {
        width: calc(100vw - 80px);
        max-width: 280px;
        height: auto;
        aspect-ratio: 9 / 17;
        max-height: none;
    }

    /* Tema şeridi — telefon'un altında */
    .mobile-theme-strip {
        display: block;
        width: calc(100vw - 40px);
        max-width: 380px;
        margin-top: 20px;
    }

    .mobile-strip-label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-light);
        margin: 0 0 10px 4px;
    }

    .mobile-strip-scroll {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        /* scrollbar gizle */
        scrollbar-width: none;
    }
    .mobile-strip-scroll::-webkit-scrollbar {
        display: none;
    }

    .mobile-chip {
        flex-shrink: 0;
        scroll-snap-align: start;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 9px 16px;
        border-radius: 50px;
        border: 2px solid #e0e3ef;
        background: #fff;
        color: var(--primary);
        font-size: 0.82rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.25s ease;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .mobile-chip i {
        font-size: 0.85rem;
        color: var(--accent);
        transition: color 0.25s;
    }

    .mobile-chip.active {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
        box-shadow: 0 4px 16px rgba(45,47,118,0.25);
    }

    .mobile-chip.active i {
        color: var(--accent);
    }

    /* Mobil CTA butonu */
    .mobile-preview-cta {
        display: flex;
        justify-content: center;
        margin-top: 24px;
        width: 100%;
    }

    .mobile-preview-cta .btn-primary {
        width: calc(100vw - 60px);
        max-width: 340px;
        text-align: center;
        justify-content: center;
    }
}