/* =============================================
   QR Kartvizit — Landing Page Stilleri
   Gunduz/Gece modu, modern tasarim
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---- LIGHT TEMA (Varsayilan) ---- */
:root {
    --bg-primary: #fafbfc;
    --bg-secondary: #f1f3f5;
    --bg-card: #ffffff;
    --bg-glass: rgba(0, 0, 0, 0.015);

    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --accent-primary: #334155;
    --accent-secondary: #475569;
    --accent-glow: rgba(51, 65, 85, 0.12);
    --accent-warm: #b45309;

    --gradient-main: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 80%, #475569 100%);
    --gradient-card: linear-gradient(145deg, rgba(51, 65, 85, 0.03), rgba(71, 85, 105, 0.015));

    --border-color: rgba(0, 0, 0, 0.07);
    --border-accent: rgba(51, 65, 85, 0.2);

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(51, 65, 85, 0.06);

    --navbar-bg: rgba(250, 251, 252, 0.92);
    --mobile-menu-bg: rgba(250, 251, 252, 0.97);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ---- DARK TEMA ---- */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: rgba(30, 41, 59, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);

    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --gradient-hero: linear-gradient(135deg, #020617 0%, #0f172a 40%, #1e293b 80%, #334155 100%);

    --border-color: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(148, 163, 184, 0.2);

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);

    --navbar-bg: rgba(15, 23, 42, 0.92);
    --mobile-menu-bg: rgba(15, 23, 42, 0.97);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled .navbar-inner {
    border-bottom-color: var(--border-color);
    padding: 12px 0;
}

/* Hero icinde navbar beyaz */
body.hero-area .navbar:not(.scrolled) {
    background: transparent;
}

body.hero-area .navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

body.hero-area .navbar:not(.scrolled) .nav-links a:hover,
body.hero-area .navbar:not(.scrolled) .nav-links a.active {
    color: #fff;
}

body.hero-area .navbar:not(.scrolled) .nav-logo span {
    -webkit-text-fill-color: #fff;
    background: none;
}

body.hero-area .navbar:not(.scrolled) .hamburger span {
    background: #fff;
}

body.hero-area .navbar:not(.scrolled) .theme-toggle {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

body.hero-area .navbar:not(.scrolled) .btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.nav-logo .logo-icon {
    width: 34px;
    height: 34px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(51, 65, 85, 0.3);
}

.nav-logo span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: var(--accent-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ---- Tema Toggle ---- */
.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.theme-toggle:hover {
    border-color: var(--border-accent);
}

.theme-toggle .icon-sun {
    display: inline;
}

.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: inline;
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Butonlar ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 15px rgba(51, 65, 85, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 65, 85, 0.4);
}

.btn-orange {
    background: linear-gradient(135deg, #ff8c42, #f56e28);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.btn-white {
    background: #fff;
    color: #1a1a2e;
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: var(--radius-md);
}

.btn-xl {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   HERO SECTION — Gradient BG, dolu tasarim
   ============================================= */
.hero-area {
    position: relative;
}

.hero {
    background: var(--gradient-hero);
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 207, 187, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    color: #fff;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: #fff;
}

.hero-description {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Hero Trust Badges */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.hero-badge-item .badge-icon {
    font-size: 16px;
}

/* Hero Checklist */
.hero-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-checklist li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(68, 207, 187, 0.2);
    color: #44cfbb;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Hero Visual (Sag taraf) */
.hero-visual {
    flex: 0 0 420px;
    position: relative;
}

.hero-card-mockup {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.mockup-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff8c42, #f56e28);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    font-weight: 800;
    font-family: var(--font-display);
}

.mockup-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

.mockup-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.mockup-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 16px;
    transition: var(--transition);
}

.mockup-link:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}

.mockup-link-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.mockup-link-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.mockup-link-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1px;
}

/* Floating Badge */
.hero-float-badge {
    position: absolute;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* =============================================
   STATS BAR — Hero altindaki rakamlar
   ============================================= */
.stats-bar {
    background: var(--bg-secondary);
    padding: 48px 24px;
    border-bottom: 1px solid var(--border-color);
}

.stats-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-item-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: rgba(51, 65, 85, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-item-value {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item-value.purple {
    color: #1e293b;
}

.stat-item-value.rose {
    color: #b45309;
}

.stat-item-value.teal {
    color: #334155;
}

.stat-item-value.blue {
    color: #475569;
}

.stat-item-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   SECTIONS — Ozellikler, Adimlar, Fiyat, CTA
   ============================================= */
.section {
    padding: 80px 24px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(51, 65, 85, 0.08);
    border: 1px solid rgba(51, 65, 85, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(51, 65, 85, 0.08);
    border: 1px solid rgba(51, 65, 85, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

/* Steps */
.steps-section {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), #44cfbb);
    opacity: 0.15;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 4px 20px rgba(51, 65, 85, 0.3);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 780px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.pricing-popular {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 4px 14px;
    background: var(--gradient-main);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-price .period {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '✓';
    color: #44cfbb;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 60px 24px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 40px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    color: #fff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 28px;
    position: relative;
}

.cta-box .gradient-text {
    -webkit-text-fill-color: #44cfbb;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 24px 20px;
    background: var(--bg-secondary);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* Flash */
.flash-message {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    animation: slideInRight 0.4s ease-out;
    box-shadow: var(--shadow-md);
    max-width: 380px;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.flash-warning {
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #ca8a04;
}

.flash-info {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #2563eb;
}

[data-theme="dark"] .flash-success {
    color: #4ade80;
}

[data-theme="dark"] .flash-error {
    color: #f87171;
}

[data-theme="dark"] .flash-warning {
    color: #fbbf24;
}

[data-theme="dark"] .flash-info {
    color: #60a5fa;
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
    margin-left: auto;
}

/* Animasyonlar */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive 1024 ---- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual {
        flex: 0 0 340px;
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ---- Responsive 768 ---- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
        padding: 12px 28px;
        color: var(--text-primary) !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        padding: 100px 20px 48px;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(26px, 7vw, 36px);
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 14px;
        margin: 0 auto 24px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-checklist {
        align-items: center;
    }

    .hero-visual {
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-float-badge {
        display: none;
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item-value {
        font-size: 24px;
    }

    .section {
        padding: 48px 20px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: clamp(22px, 6vw, 30px);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }

    .feature-card {
        padding: 14px 10px;
        text-align: center;
    }

    .feature-icon {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .feature-card h3 {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .feature-card p {
        font-size: 9px;
        line-height: 1.3;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
        max-width: 100%;
    }

    .pricing-card {
        display: flex;
        flex-direction: column;
        padding: 16px 10px !important;
        border-radius: 16px;
    }

    .pricing-card.featured {
        margin-top: 0;
    }

    .pricing-popular {
        font-size: 9px;
        padding: 3px 8px;
        top: -10px;
        right: 8px;
    }

    .pricing-name {
        font-size: 13px !important;
        margin-bottom: 4px;
    }

    .pricing-desc {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .pricing-price {
        margin-bottom: 8px;
    }

    .pricing-price .amount {
        font-size: 22px !important;
    }

    .pricing-price .currency {
        font-size: 12px;
    }

    .pricing-price .period {
        font-size: 9px;
    }

    .pricing-features {
        margin-bottom: 10px;
    }

    .pricing-features li {
        font-size: 10px !important;
        padding: 3px 0;
        padding-left: 16px;
        gap: 4px;
    }

    .pricing-features li::before {
        font-size: 10px;
    }

    .pricing-card .btn {
        padding: 8px 10px;
        font-size: 11px;
        margin-top: auto;
    }

    .cta-box {
        padding: 32px 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}