/* Variables */
:root {
    --primary: #00A3FF;
    --primary-light: #E3F2FD;
    --primary-dark: #007ACC;
    
    --accent-navy: #0F172A;
    --accent-gray: #334155;
    --text-main: #1E293B;
    --text-light: #64748B;
    
    --bg-white: #FFFFFF;
    --bg-offwhite: #F8FAFC;
    
    --border-color: #E2E8F0;
    
    --font-main: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(0, 163, 255, 0.3);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Initial Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    font-size: 15px;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 163, 255, 0.4);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-navy);
    border: 1px solid var(--border-color);
}

.btn-outline:hover:not(:disabled) {
    background-color: var(--bg-offwhite);
    border-color: var(--text-light);
}

.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #F1F5F9;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
    color: var(--accent-navy);
}

.logo-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 20px;
}

.spark-icon {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 14px;
    color: #F59E0B; /* subtle gold/sparkle */
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent-navy);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 20, 10, 0.78) 0%, rgba(15, 35, 20, 0.65) 40%, rgba(5, 15, 30, 0.80) 100%),
        url('hero-bg.png') center center / cover no-repeat;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.35;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.6) 0%, rgba(0, 163, 255, 0.2) 100%);
}

.orb-2 {
    bottom: -150px;
    right: -50px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.4) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(34, 197, 94, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: #86efac;
    margin-bottom: 24px;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 6px #4ade80; opacity: 1; }
    50% { box-shadow: 0 0 14px #4ade80, 0 0 24px rgba(74, 222, 128, 0.4); opacity: 0.8; }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(200, 230, 210, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap; /* Yan yana durması için zorla */
}

/* Hero dark bg button overrides */
.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.12);
    color: rgba(220, 250, 230, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(74, 222, 128, 0.5);
    color: #86efac;
}

.hero .btn-outline {
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(220, 250, 230, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero .btn-outline:hover:not(:disabled) {
    background-color: rgba(74, 222, 128, 0.15);
    border-color: rgba(74, 222, 128, 0.5);
    color: #86efac;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Phones Carousel Wrapper */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.phones-wrapper {
    position: relative;
    width: 320px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    color: var(--accent-navy);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 20;
}

.carousel-nav:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

/* Phone Mockup Global Settings */
.phone-mockup {
    width: 260px;
    min-height: 520px;
    background: #1E293B; /* Body color of the feature phone */
    border: 8px solid var(--accent-navy);
    border-radius: 20px;
    position: absolute !important;
    display: flex;
    flex-direction: column;
    padding: 15px 12px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    transform: none; /* override hover rotate */
}

/* Active & Inactive States */
.phone-mockup.active-phone {
    transform: translateX(0) scale(1) !important;
    z-index: 10;
    opacity: 1;
    box-shadow: var(--shadow-lg), 0 30px 60px rgba(0,0,0,0.2) !important;
    cursor: default;
}

.phone-mockup.inactive-phone {
    z-index: 5;
    opacity: 0.6;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.phone-mockup.inactive-phone:hover {
    opacity: 0.8;
}

/* Special position for inactive phones based on type to swap sides */
.smart-phone.inactive-phone {
    transform: translateX(120px) scale(0.65) !important;
}

.feature-phone.inactive-phone {
    transform: translateX(-120px) scale(0.70) !important;
}

.phone-speaker {
    width: 40px;
    height: 4px;
    background: #0F172A;
    border-radius: 4px;
    margin: 0 auto 15px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}

.phone-screen {
    height: 220px;
    background: #DCF8C6; /* Retro off-white / greenish screen feel */
    border: 12px solid #000;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: var(--primary);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.chat-avatar {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    font-weight: 700;
    color: white;
    font-size: 13px;
}

.chat-body {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    min-height: 0; /* Critical for flex scrolling */
}

/* Custom Scrollbar for Chat */
.chat-body::-webkit-scrollbar {
    width: 4px;
}

.chat-body::-webkit-scrollbar-track {
    background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.smart-phone .chat-body::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
}

.message {
    max-width: 90%;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.3;
    position: relative;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message {
    background: #0F172A;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.ai-message {
    background: rgba(255,255,255,0.8);
    color: #000;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation-delay: 0.8s;
    opacity: 0;
}

/* Keypad Styles */
.phone-keypad {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 15px;
    padding: 0 5px;
}

.key-row {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.key {
    flex: 1;
    background: #334155;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.1), 0 3px 0 #0F172A;
    cursor: default;
    height: 38px;
    transition: all 0.1s;
    user-select: none;
    touch-action: manipulation; /* Prevent double-tap zoom */
}

.key:active {
    transform: translateY(2px);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.1), 0 1px 0 #0F172A;
}

.key .sub {
    font-size: 8px;
    font-weight: 400;
    color: #94A3B8;
    text-transform: uppercase;
    margin-top: -2px;
    letter-spacing: 1px;
}

.nav-keys {
    margin-bottom: 4px;
    align-items: center;
}

.key-action {
    background: #475569;
    height: 20px;
    border-radius: 12px 12px 4px 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 0 #0F172A;
    font-size: 12px;
    color: #94A3B8;
}

.key-nav {
    flex: 1.5;
    background: #475569;
    border-radius: 12px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 3px 0 #0F172A;
}

/* Retro Chat Input for Feature Phone */
.feature-chat-input-area {
    background: #000;
    color: #DCF8C6; /* Match screen bg but as text color on black */
    padding: 4px 8px;
    font-family: monospace;
    font-size: 11px;
    display: flex;
    gap: 5px;
    border-top: 1px solid rgba(220, 248, 198, 0.2);
}

.feature-input-label {
    font-weight: bold;
    color: #DCF8C6;
}

.feature-input-text {
    flex: 1;
    white-space: normal; /* Allow wrapping */
    word-break: break-all;
    max-height: 40px; /* Max 2-3 lines for retro screen */
    overflow-y: auto;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.key-pressed {
    transform: translateY(2px) !important;
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.1), 0 1px 0 #0F172A !important;
    background: #475569 !important;
}

.key-nav i {
    font-size: 14px;
    color: #CBD5E1;
}

/* Smart Phone Keyboard & Screen Overrides */
.smart-phone .phone-screen {
    background: #f0f2f5; /* Modern light grey bg */
}

.smart-phone .chat-body {
    background: #e5ddd5; /* Classic WhatsApp chat bg pattern or similar color */
    padding-bottom: 5px;
}

.smart-phone .user-message {
    background: #dcf8c6; /* WhatsApp light green */
    color: #000;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.smart-phone .ai-message {
    background: #fff;
    color: #000;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.smart-keyboard {
    background: #d1d4d9;
    padding: 3px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #babbbd;
}

.kb-row {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.kb-key {
    background: #fff;
    border: none;
    border-radius: 4px;
    flex: 1;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    color: #000;
    box-shadow: 0 1px 0 #888b8d;
    cursor: default;
    padding: 0;
    transition: background 0.1s;
    touch-action: manipulation; /* Prevent double-tap zoom on mobile */
}

.kb-key:active {
    background: #adb5bd;
    transform: translateY(1px);
    box-shadow: none;
}

.kb-key.btn-special {
    background: #abb2bb;
    flex: 1.2;
}

.kb-key.btn-space {
    flex: 5;
}

.kb-key i {
    font-size: 10px;
}

/* Smart Phone Override Styles */
.phone-mockup.smart-phone {
    width: 300px;
    height: 600px; /* Fixed height to prevent stretching */
    background: var(--bg-white);
    border: 12px solid var(--accent-navy);
    border-radius: 40px;
    padding: 0;
    overflow: hidden; /* Ensure screen doesn't spill */
    display: flex;
    flex-direction: column;
}

.phone-mockup.smart-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--accent-navy);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-mockup.smart-phone .phone-speaker {
    display: none;
}

.phone-mockup.smart-phone .phone-screen {
    flex: 1; /* Take all available space in fixed-height mockup */
    height: auto; /* Remove fixed height/100% to allow flex */
    border: none;
    border-radius: 0;
    background: var(--bg-offwhite);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-mockup.smart-phone .chat-header {
    background: var(--bg-white);
    padding: 30px 20px 15px;
    border-bottom: 1px solid var(--border-color);
}

.phone-mockup.smart-phone .chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 20px;
}

.phone-mockup.smart-phone .chat-name {
    font-size: 15px;
    color: var(--accent-navy);
}

.phone-mockup.smart-phone .chat-status {
    display: block;
    font-size: 12px;
}

.chat-status {
    display: none;
}

.phone-mockup.smart-phone .chat-body {
    padding: 20px;
    gap: 16px;
    background: var(--bg-offwhite);
}

.phone-mockup.smart-phone .message {
    font-size: 14px;
}

.phone-mockup.smart-phone .user-message {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.phone-mockup.smart-phone .ai-message {
    background: var(--bg-white);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.phone-mockup.smart-phone .phone-keypad {
    display: none;
}

.phone-mockup.smart-phone .chat-input-area {
    display: flex;
}

.chat-input-area {
    display: none;
    background: var(--bg-white);
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    align-items: center;
    gap: 12px;
}

.chat-input {
    flex: 1;
    background: var(--bg-offwhite);
    padding: 10px 15px;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--text-light);
    white-space: normal; /* Allow wrapping */
    word-wrap: break-word; /* Ensure single long words break */
    max-height: 80px; /* Don't let it push the keyboard off */
    overflow-y: auto; /* Scroll internally if text is too long */
}

.chat-send {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sections Global */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-navy);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
}

/* Nasıl Çalışır Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-white);
    scroll-margin-top: 80px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}

.step-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-offwhite);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin: 0 auto 24px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--accent-navy);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-white);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-navy);
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-light);
    font-size: 15px;
}

.step-connector {
    display: flex;
    align-items: center;
    flex: 0.5;
    margin-top: 40px;
    color: var(--border-color);
}

.step-connector .line {
    height: 2px;
    flex: 1;
    background: var(--border-color);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
    scroll-margin-top: 80px;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.testimonial-card {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.quote-icon {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--accent-gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    flex: 1;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.author-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-navy);
    margin-bottom: 4px;
}

.author-details span {
    font-size: 14px;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 110px 0 120px;
    background: linear-gradient(160deg, #080f1e 0%, #0a1628 40%, #0d1f3c 70%, #0a1628 100%);
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Dark theme section header for pricing */
.pricing .section-title {
    color: #ffffff;
}

.pricing .section-desc {
    color: rgba(226, 232, 240, 0.95);
}

/* Pricing BG Particles */
.pricing-bg-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pricing-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: feat-float 12s ease-in-out infinite;
}

.pricing-particle.p1 {
    width: 450px; height: 450px;
    background: #00A3FF;
    top: -120px; right: -80px;
    animation-duration: 15s;
}

.pricing-particle.p2 {
    width: 350px; height: 350px;
    background: #a855f7;
    bottom: -100px; left: -60px;
    animation-duration: 11s;
    animation-delay: -3s;
}

/* Dark-scoped button overrides */
.pricing .btn-outline {
    color: rgba(203, 213, 225, 0.8);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing .btn-outline:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pricing .btn-outline:disabled {
    opacity: 0.35;
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(148, 163, 184, 0.5);
}

.pricing .container {
    position: relative;
    z-index: 1;
}

/* Pricing Segmented Controls */
.pricing-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-group {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 260px;
}

.toggle-group.minor-toggle {
    width: 200px;
    padding: 4px;
}

.toggle-group input[type="radio"] {
    display: none;
}

.toggle-group label {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 10px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-group.minor-toggle label {
    padding: 6px 0;
    font-size: 13px;
}

.toggle-group input[type="radio"]:checked + label {
    color: #ffffff;
}

.toggle-group .toggle-bg {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 6px;
    width: calc(50% - 6px);
    background: rgba(0, 163, 255, 0.2);
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: var(--radius-full);
    box-shadow: 0 0 12px rgba(0, 163, 255, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.toggle-group.minor-toggle .toggle-bg {
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
}

.toggle-group input[type="radio"]:nth-of-type(2):checked ~ .toggle-bg {
    transform: translateX(100%);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.amount-original {
    font-size: 40px;
    color: rgba(203, 213, 225, 0.7);
    text-decoration: line-through;
    font-weight: 800;
}

.discount-note {
    display: inline-block;
    align-self: center;
    font-size: 12px;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    max-width: 1150px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    #cardPro {
        order: 1;
    }
    #cardBasic {
        order: 2;
    }
    #cardLive {
        order: 3;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover:not(.disabled) {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 163, 255, 0.08);
    border-color: rgba(0, 163, 255, 0.25);
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
    border: none;
    position: relative;
    /* Removed overflow: hidden to prevent font blurring and allow outer glow */
    animation: floating 4s ease-in-out infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Flashy Animated Border for Pro - Moved slightly further out to avoid text bleed */
.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ff00bd, #00d2ff, #ff00bd, #00d2ff);
    background-size: 400%;
    z-index: -1;
    border-radius: 24px;
    animation: gradientBorder 8s linear infinite;
    filter: blur(8px);
    opacity: 0.5;
}

/* Wrapper for internal effects like shine to keep main card overflow visible */
.card-shine-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.card-shine-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 55%
    );
    transform: rotate(45deg);
    animation: shine 5s infinite;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-150%) rotate(45deg); }
    30%, 100% { transform: translateX(150%) rotate(45deg); }
}

@keyframes floating {
    0%, 100% { transform: scale(1.05) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

.popular-badge {
    position: absolute;
    top: 8px;
    right: 15px;
    background: linear-gradient(135deg, #ff00bd, #00d2ff);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.amount {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

.period {
    color: rgba(226, 232, 240, 0.95);
    font-weight: 500;
}

.card-badge {
    display: inline-block;
    background: rgba(0, 163, 255, 0.12);
    color: #67b8f0;
    border: 1px solid rgba(0, 163, 255, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.alt-price {
    font-size: 14px;
    color: rgba(226, 232, 240, 0.85);
    margin-top: -12px;
    margin-bottom: 24px;
}

.card-features {
    flex: 1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(241, 245, 249, 0.95);
}

.feature-item i {
    color: #00A3FF;
    font-size: 20px;
    margin-top: 2px;
}

.highlight-feature {
    color: #ffffff;
    font-weight: 600;
}

.highlight-feature i {
    color: #F59E0B; /* distinct color for special features */
}

/* Coming Soon Section */
.coming-soon-wrapper {
    margin-top: 40px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background: transparent;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    right: -100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: -1;
}

.pricing-card.disabled {
    opacity: 0.55;
    background: rgba(255, 255, 255, 0.02);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(100, 116, 139, 0.3);
    border: 1px solid rgba(100, 116, 139, 0.3);
    color: rgba(203, 213, 225, 0.8);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-offwhite);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-form textarea {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    resize: none;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Footer */
.footer {
    background: var(--accent-navy);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.footer-desc {
    color: #94A3B8;
    font-size: 15px;
    max-width: 300px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-list li {
    color: #94A3B8;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94A3B8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* --- Mobile Header Fix --- */
    .header-container {
        height: 60px;
        padding: 0 16px;
    }

    .logo {
        font-size: 18px;
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }

    .nav {
        gap: 12px;
    }

    /* Hide Giriş Yap on mobile, compact Hemen Kaydol */
    .nav-actions .btn-outline {
        display: none;
    }

    .nav-actions .btn-kaydol {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 8px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--primary-light);
        color: var(--primary);
        font-size: 20px;
    }

    /* Mobile dropdown menu */
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        padding: 16px 24px;
        gap: 4px;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }

    .nav-list.mobile-open {
        display: flex;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list .nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
        transition: background 0.2s ease;
    }

    .nav-list .nav-link:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

    /* Mobile menu also shows auth links */
    .nav-list::after {
        content: '';
        display: block;
        height: 1px;
        background: var(--border-color);
        margin: 8px 0;
    }

    /* --- Rest of mobile fixes --- */
    .hero-title {
        font-size: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }

    /* Carousel Navigation Mobile Fix */
    .carousel-container {
        gap: 10px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .phones-wrapper {
        width: 280px;
        height: 520px;
        transform: scale(0.95);
    }
}

@media (max-width: 400px) {
    .phones-wrapper {
        transform: scale(0.85); /* Further scale for very narrow phones */
        margin-left: -10px; 
        margin-right: -10px;
    }
    
    .carousel-container {
        gap: 5px;
    }
}

/* --- Auth Modals & Forms --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--bg-white);
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    display: none; /* Controlled via JS */
}

.modal-overlay.active .modal.active {
    display: block;
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-offwhite);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.auth-container {
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-navy);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-light);
    font-size: 15px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-navy);
}

.form-group input {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-footer {
    display: flex;
    justify-content: flex-end;
}

.forgot-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.btn-block {
    width: 100%;
    padding: 14px;
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: white;
    padding: 0 12px;
    position: relative;
    font-size: 13px;
    color: var(--text-light);
}

.social-auth {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    font-size: 14px;
}

.auth-terms {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light);
}

.auth-terms a {
    color: var(--primary);
    text-decoration: underline;
}

.auth-switch {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

.auth-switch a {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 30px 20px;
    }
}

/* --- Auth Pages (Login/Register) --- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-offwhite) 100%);
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.auth-page .glow-orb {
    opacity: 0.4;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    z-index: 10;
    position: relative;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.otp-input {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    transition: var(--transition);
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.country-code {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-color);
    padding: 12px 10px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-navy);
}

.step-hidden {
    display: none;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--primary);
}

/* --- Auth Bubbles Decoration --- */
.auth-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    animation: floatBubble 15s linear infinite;
    white-space: nowrap;
    max-width: 280px;
    opacity: 0; /* Hidden by default until animation starts */
    transform: translateY(120vh); /* Start below the screen */
}

@media (max-width: 768px) {
    .bubble {
        white-space: normal;
        padding: 8px 14px;
        font-size: 11px;
        max-width: 160px;
    }
}

.bubble.ai {
    border-bottom-left-radius: 4px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
}

.bubble.user {
    border-bottom-right-radius: 4px;
    background: rgba(255, 255, 255, 0.6);
}

@keyframes floatBubble {
    0% { transform: translateY(110vh) translateX(0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-20vh) translateX(20px) scale(1.1); opacity: 0; }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
}

/* --- Features (Farkımız) Section — PREMIUM DARK REDESIGN --- */
.features-section {
    padding: 110px 0 120px;
    background: linear-gradient(160deg, #080f1e 0%, #0a1628 40%, #0d1f3c 70%, #0a1628 100%);
    position: relative;
    scroll-margin-top: 80px;
    z-index: 2;
    overflow: hidden;
}

/* === BG Particles === */
.features-bg-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.feat-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: feat-float 12s ease-in-out infinite;
}

.feat-particle.p1 {
    width: 500px; height: 500px;
    background: #00A3FF;
    top: -100px; left: -80px;
    animation-duration: 14s;
}

.feat-particle.p2 {
    width: 400px; height: 400px;
    background: #22d3ee;
    bottom: -80px; right: -60px;
    animation-duration: 10s;
    animation-delay: -4s;
}

.feat-particle.p3 {
    width: 300px; height: 300px;
    background: #6366f1;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 16s;
    animation-delay: -8s;
    opacity: 0.1;
}

@keyframes feat-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* === Features Header === */
.features-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 163, 255, 0.12);
    border: 1px solid rgba(0, 163, 255, 0.3);
    color: #7dd3fc;
    padding: 6px 18px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.feat-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00A3FF;
    box-shadow: 0 0 8px #00A3FF;
    animation: feat-dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes feat-dot-pulse {
    0%, 100% { box-shadow: 0 0 4px #00A3FF; }
    50% { box-shadow: 0 0 14px #00A3FF, 0 0 24px rgba(0,163,255,0.4); }
}

.feat-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.feat-title-highlight {
    background: linear-gradient(135deg, #00A3FF 0%, #22d3ee 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feat-desc {
    font-size: 17px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === Stats Bar === */
.feat-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px 40px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(16px);
    flex-wrap: wrap;
    gap: 20px;
}

.feat-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 120px;
}

.feat-stat-value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.feat-stat-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.feat-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feat-stat-divider { display: none; }
    .feat-stats-bar { padding: 20px 24px; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    align-items: start;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* === Feature Cards === */
.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 36px 30px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 163, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 163, 255, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Featured center card */
.fc-featured {
    background: rgba(0, 163, 255, 0.07);
    border-color: rgba(0, 163, 255, 0.3);
    box-shadow:
        0 0 0 1px rgba(0, 163, 255, 0.15),
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(0, 163, 255, 0.06);
    transform: translateY(-6px);
}

.fc-featured:hover {
    transform: translateY(-16px);
    box-shadow:
        0 0 0 1px rgba(0, 163, 255, 0.4),
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(0, 163, 255, 0.12);
}


/* Top glow stripe */
.fc-glow-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 163, 255, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .fc-glow-top {
    opacity: 1;
}

.fc-glow-accent {
    background: linear-gradient(90deg, transparent 0%, rgba(0, 163, 255, 0.8) 30%, rgba(34, 211, 238, 0.8) 70%, transparent 100%);
    opacity: 0.6;
}

.fc-featured:hover .fc-glow-accent { opacity: 1; }

/* Icon */
.fc-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 163, 255, 0.12);
    border: 1px solid rgba(0, 163, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #7dd3fc;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.fc-icon-accent {
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.2) 0%, rgba(34, 211, 238, 0.15) 100%);
    border-color: rgba(0, 163, 255, 0.35);
    color: #38bdf8;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.15);
}

.feature-card:hover .fc-icon {
    background: linear-gradient(135deg, #00A3FF 0%, #22d3ee 100%);
    border-color: transparent;
    color: white;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0, 163, 255, 0.4);
}

/* Text */
.fc-title {
    font-size: 21px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fc-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.feature-card:hover .fc-desc { color: #94a3b8; }

/* Footer tag */
.fc-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.fc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
}

.fc-tag-green {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.25);
}

.fc-tag-blue {
    background: rgba(0, 163, 255, 0.1);
    color: #7dd3fc;
    border-color: rgba(0, 163, 255, 0.25);
}

.fc-tag-purple {
    background: rgba(99, 102, 241, 0.1);
    color: #a5b4fc;
    border-color: rgba(99, 102, 241, 0.25);
}

/* === Feature Visuals === */
.fc-visual {
    width: 100%;
    height: 170px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    transition: all 0.4s ease;
}

.feature-card:hover .fc-visual {
    border-color: rgba(0, 163, 255, 0.2);
}

/* 1. Live Data Visual */
.live-data-visual {
    background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 100%);
    align-items: stretch;
    justify-content: stretch;
    padding: 8px;
}

.mini-phone {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: #0f1f38;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.mini-phone-header {
    background: linear-gradient(90deg, #0062a3 0%, #0284c7 100%);
    color: white;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}

.mini-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    margin-left: auto;
    animation: blink-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mini-phone-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    justify-content: center;
}

.mini-bubble {
    max-width: 88%;
    padding: 5px 9px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-bubble.user {
    background: rgba(0, 163, 255, 0.25);
    color: #bae6fd;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.mini-bubble.ai {
    background: rgba(255,255,255,0.07);
    color: #e2e8f0;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(255,255,255,0.08);
}

.bubble-text {
    font-weight: 600;
}

.bubble-time {
    font-size: 8px;
    color: #475569;
    align-self: flex-end;
}

.mini-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #86efac;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 9999px;
    align-self: center;
    margin-top: 2px;
    letter-spacing: 0.03em;
}

/* 2. Automation Flow Visual */
.automation-visual {
    background: linear-gradient(135deg, rgba(0,163,255,0.07) 0%, rgba(34,211,238,0.05) 100%);
    border-color: rgba(0,163,255,0.15);
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 240px;
}

.flow-node {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: #94a3b8;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.flow-node i {
    font-size: 20px;
    color: #7dd3fc;
}

.flow-node.node-ai {
    background: linear-gradient(135deg, #0062a3 0%, #0284c7 100%);
    border: 1px solid rgba(0,163,255,0.4);
    color: white;
    box-shadow: 0 0 20px rgba(0,163,255,0.25);
}

.flow-node.node-ai i {
    color: #fbbf24;
    animation: sparkle-pulse 2s ease-in-out infinite;
}

.flow-connector {
    flex: 1;
    position: relative;
    height: 2px;
    display: flex;
    align-items: center;
}

.flow-line {
    width: 100%;
    height: 2px;
    border-top: 2px dashed rgba(0,163,255,0.3);
}

.flow-pulse {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #00A3FF;
    border-radius: 50%;
    left: 0;
    box-shadow: 0 0 8px #00A3FF;
    animation: pulse-flow 1.5s linear infinite;
}

.flow-pulse.delay {
    animation-delay: 0.75s;
    background: #22d3ee;
    box-shadow: 0 0 8px #22d3ee;
}

@keyframes pulse-flow {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes sparkle-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(251,191,36,0.5)); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 10px rgba(251,191,36,0.9)); }
}

/* 3. Scheduler Visual */
.scheduler-visual {
    background: linear-gradient(135deg, rgba(99,102,241,0.07) 0%, rgba(139,92,246,0.05) 100%);
    border-color: rgba(99,102,241,0.15);
}

.scheduler-card-mini {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    width: 100%;
    max-width: 220px;
    padding: 10px 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.scheduler-time-row {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 5px;
}

.scheduler-time-row i {
    color: #a5b4fc;
    font-size: 15px;
    animation: clock-wiggle 3s ease-in-out infinite;
}

.sched-time {
    font-weight: 800;
    font-size: 14px;
    color: #e2e8f0;
}

.sched-status {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    padding: 2px 8px;
    border-radius: 9999px;
    border: 1px solid rgba(34,197,94,0.2);
    letter-spacing: 0.03em;
}

.scheduler-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sched-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

.sched-item i {
    color: #34d399;
    font-size: 12px;
}

.sched-delivery-indicator {
    background: rgba(99,102,241,0.12);
    color: #a5b4fc;
    border: 1px solid rgba(99,102,241,0.2);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sched-delivery-indicator i {
    font-size: 11px;
    color: #818cf8;
}

@keyframes clock-wiggle {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-15deg); }
    94% { transform: rotate(15deg); }
    96% { transform: rotate(-10deg); }
    98% { transform: rotate(10deg); }
}

/* Typing Indicator Bouncing Dots */
.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 12px;
    padding: 2px 4px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: #8c8c8c;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* --- Phone Flashlight Highlight --- */
.phone-flashlight {
    position: absolute;
    width: 300px;
    height: 580px;
    border-radius: 38px;
    background: transparent;
    border: 2px solid rgba(0, 163, 255, 0.35);
    z-index: 12;
    pointer-events: none;
    animation: flashlight-pulse 2.5s infinite ease-in-out;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s ease;
    opacity: 1;
    overflow: hidden;
}

/* Shimmer sweep across the ring */
.phone-flashlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(0, 163, 255, 0.4) 10%,
        transparent 20%,
        transparent 100%
    );
    animation: flashlight-rotate 3s linear infinite;
    border-radius: inherit;
}

/* Inner mask to keep only the border glow */
.phone-flashlight::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 35px;
    background: transparent;
}

@keyframes flashlight-rotate {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes flashlight-pulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(0, 163, 255, 0.12),
            0 0 40px rgba(0, 163, 255, 0.06),
            inset 0 0 20px rgba(0, 163, 255, 0.04);
    }
    50% {
        box-shadow:
            0 0 30px rgba(0, 163, 255, 0.22),
            0 0 60px rgba(0, 163, 255, 0.10),
            inset 0 0 30px rgba(0, 163, 255, 0.06);
    }
}

.phone-flashlight.flashlight-off {
    opacity: 0 !important;
    transform: scale(0.92) !important;
}

/* Demo Badge Tip */
.demo-badge-tip {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 163, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 163, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 163, 255, 0.2),
        0 0 0 1px rgba(0, 163, 255, 0.1);
    z-index: 15;
    animation: bounce-badge 2.5s ease-in-out infinite;
    transition: opacity 0.5s ease, transform 0.5s ease;
    white-space: nowrap;
}

/* Small arrow pointing down */
.demo-badge-tip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(0, 163, 255, 0.15);
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(0, 163, 255, 0.3);
    border-bottom: 1px solid rgba(0, 163, 255, 0.3);
}

.demo-badge-tip i {
    font-size: 16px;
    animation: point-bounce 1.5s ease-in-out infinite;
}

@keyframes point-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

@keyframes bounce-badge {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.demo-badge-tip.flashlight-off {
    opacity: 0 !important;
    transform: translateX(-50%) translateY(20px) scale(0.85) !important;
}
