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

:root {
    /* Color Palette */
    --primary-color: #3B82F6;
    --secondary-color: #14B8A6;
    --background-color: #F8FAFC;
    --heading-text: #1E293B;
    --body-text: #475569;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--heading-text);
    font-weight: 700;
}

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

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

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }

.stagger-animation {
    animation: staggerAnimation 0.6s ease-out forwards;
}

.stagger-animation:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation:nth-child(3) { animation-delay: 0.3s; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--heading-text);
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--body-text);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.demo-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow-md);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--heading-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* YENİ HERO SECTION - İKİ SÜTUNLU TASARIM */
.hero-new {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}



/* Ana Container */
.hero-container-new {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 40px 40px;
    display: grid;
    grid-template-columns: 1.8fr 0.8fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 120px);
    position: relative;
}

/* Sol Sütun - Mesaj */
.hero-left {
    padding-right: 40px;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle-new {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Anahtar Faydalar */
.hero-benefits {
    margin: 15px 0 0 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: white;
    font-weight: 500;
}

.benefit-item i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    width: 20px;
}

.benefit-item span {
    font-size: 1.05rem;
}

/* Hero Kampanya */
.hero-campaign-new {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 25px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-campaign-new i {
    color: #FCD34D;
    font-size: 1.5rem;
}

.hero-campaign-new .campaign-text {
    color: white;
    line-height: 1.4;
}

.hero-campaign-new .campaign-text strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.hero-campaign-new .campaign-text span {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Hero CTA */
.hero-cta-new {
    margin-top: 40px;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

/* Sağ Sütun - 3 Telefon Showcase */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-top: 0;
    transform: translateY(-40px);
}

.phones-showcase {
    display: flex;
    gap: -30px;
    position: relative;
    justify-content: center;
    align-items: flex-start;
    transform: scale(0.9);
}

.hero-phone-container {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.phone-1 {
    transform: translateX(20px) translateY(20px) scale(0.85);
    z-index: 1;
}

.phone-2 {
    transform: translateX(0) translateY(0) scale(1);
    z-index: 3;
}

.phone-3 {
    transform: translateX(-20px) translateY(20px) scale(0.85);
    z-index: 1;
}

.hero-phone-container:hover {
    transform: translateX(0) translateY(0) scale(1) !important;
    z-index: 5 !important;
}

/* Telefon Parıltısı */
.phone-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, 
        rgba(59, 130, 246, 0.3) 0%, 
        rgba(20, 184, 166, 0.2) 50%, 
        transparent 70%);
    border-radius: 50px;
    animation: phoneGlow 4s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
    0% { 
        transform: scale(1);
        opacity: 0.6;
    }
    100% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Telefon Tasarımı */
.hero-phone {
    position: relative;
    z-index: 4;
}

.phone-frame {
    width: 180px;
    height: 360px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d1117 50%, #000000 100%);
    border-radius: 25px;
    padding: 8px 4px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
    transform: perspective(800px) rotateX(2deg) rotateY(-1deg);
    border: 1.5px solid #333;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #444;
    border-radius: 2px;
    z-index: 10;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #444;
    border-radius: 2px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phone-header {
    background: #075E54;
    padding: 15px;
    color: white;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.indicators {
    display: flex;
    gap: 8px;
}

/* WhatsApp Preview */
.whatsapp-preview {
    height: 100%;
    background: #ECE5DD;
}

.chat-header {
    background: #075E54;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.chat-header .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.chat-header .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-info h4 {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
}

.chat-info .online {
    font-size: 0.6rem;
    opacity: 0.8;
}

.chat-messages {
    padding: 12px 10px;
    height: calc(100% - 80px);
    overflow: hidden;
}

.message {
    margin-bottom: 8px;
    max-width: 80%;
}

.message.received {
    background: white;
    padding: 6px 8px;
    border-radius: 12px 12px 12px 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message.sent {
    background: #DCF8C6;
    padding: 6px 8px;
    border-radius: 12px 12px 3px 12px;
    margin-left: auto;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message p {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.3;
    color: #333;
}



/* iOS Arama Ekranı */
.ios-call-screen {
    height: 100%;
    background: linear-gradient(180deg, #1c1c1e 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px 20px;
    color: white;
}

.call-status {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    margin-top: 10px;
}

.caller-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.caller-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 12px;
    overflow: hidden;
}

.caller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caller-name {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 6px;
}

.caller-number {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.call-controls {
    display: flex;
    gap: 40px;
    align-items: center;
}

.call-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.call-btn.decline {
    background: #ff3b30;
    color: white;
}

.call-btn.answer {
    background: #30d158;
    color: white;
}

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

/* Instagram DM Arayüzü */
.instagram-preview {
    height: 100%;
    background: #ffffff;
}

.instagram-header {
    background: #ffffff;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #dbdbdb;
}

.instagram-avatar {
    position: relative;
}

.story-ring {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-ring img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid white;
}

.instagram-info h4 {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: #262626;
}

.instagram-info .aktif {
    font-size: 0.6rem;
    color: #8e8e8e;
}

.instagram-messages {
    padding: 10px;
    height: calc(100% - 60px);
    overflow: hidden;
}

.instagram-message {
    margin-bottom: 8px;
    max-width: 80%;
}

.instagram-message.received {
    background: #efefef;
    padding: 6px 8px;
    border-radius: 15px 15px 15px 3px;
    align-self: flex-start;
}

.instagram-message.sent {
    background: #3797f0;
    color: white;
    padding: 6px 8px;
    border-radius: 15px 15px 3px 15px;
    margin-left: auto;
}

.instagram-message p {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.3;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-divider path {
    fill: var(--background-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--heading-text);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--body-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 41, 59, 0.1);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-text);
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--body-text);
}

.solution-features {
    list-style: none;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.solution-features i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--background-color);
}

/* Process Highlight Card */
.process-highlight-card {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 50px auto;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    color: white;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 2rem;
    color: white;
}

.highlight-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Horizontal Process Steps */
.process-steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.process-step-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-header {
    text-align: center;
    margin-bottom: 25px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
}

.step-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--heading-text);
    line-height: 1.3;
}

.step-header h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    line-height: 1.6;
    color: var(--body-text);
    font-size: 0.95rem;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 10px;
    flex-shrink: 0;
}

.process-arrow i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: white;
}

/* YENİ VE GÜÇLENDİRİLMİŞ KAMPANYA BANDI */
.campaign-banner-new {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 950px;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

/* Shine (Parlama) Animasyonu */
.campaign-banner-new::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    animation: shine 4s infinite ease-out;
}

@keyframes shine {
    0% { left: -60%; }
    40% { left: 140%; }
    100% { left: 140%; }
}

.campaign-banner-new i {
    font-size: 1.8rem;
    color: #FCD34D;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.campaign-banner-new .campaign-text strong {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.campaign-banner-new .campaign-text {
    flex: 1;
    line-height: 1.5;
}

/* Sticky Kampanya Bandı */
.sticky-campaign {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-campaign.show {
    transform: translateY(0);
}

.sticky-campaign i {
    color: #FCD34D;
    margin-right: 8px;
}

.sticky-campaign .close-sticky {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}

.sticky-campaign .close-sticky:hover {
    opacity: 1;
}

/* Hero Kampanya Bandı */
.hero-campaign {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px auto 20px;
    max-width: 700px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-campaign i {
    font-size: 1.4rem;
    color: #FCD34D;
}

.hero-campaign .campaign-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-campaign .campaign-text strong {
    font-weight: 700;
    display: inline;
}

/* İletişim Kampanya Hatırlatması */
.contact-campaign-reminder {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-campaign-reminder i {
    color: #FCD34D;
    margin-right: 8px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--heading-text);
}

.package-header p {
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 30px;
}

.package-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.package-features i {
    color: var(--secondary-color);
}

.package-cta {
    text-align: center;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: var(--heading-text);
    color: white;
}

.demo-section .section-header h2,
.demo-section .section-header p {
    color: white;
}

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

.demo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.demo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.demo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.demo-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-card:hover .demo-btn {
    transform: translateX(5px);
}

/* Contact Section - Yeni Tasarım */
.contact-new {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.contact-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    font-size: 1.3rem;
    color: var(--body-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Container */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 25px 25px 0 0;
}

/* Campaign Reminder - Yeni Tasarım */
.contact-campaign-reminder {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-campaign-reminder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 30%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.reminder-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reminder-icon i {
    font-size: 1.8rem;
    color: white;
}

.reminder-content strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.reminder-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Modern Form */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--heading-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.btn-primary-large {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--body-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--heading-text);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: white;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

/* Realistic Phones Showcase */
.realistic-phones-showcase {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 12px;
    max-width: 100%;
    margin: 0;
    transform: scale(0.55);
    transform-origin: right center;
}

/* Android Phone Frame Styles */
.iphone-frame {
    position: relative;
    margin: 0 auto;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.iphone-frame:hover {
    transform: scale(1.02) translateY(-3px);
}

.iphone-frame.small {
    width: 240px;
    height: 480px;
}

.iphone-frame.large {
    width: 280px;
    height: 560px;
}

.iphone-frame.tilt-left:hover {
    transform: scale(1.02) translateY(-3px) rotateY(-1deg);
}

.iphone-frame.tilt-right:hover {
    transform: scale(1.02) translateY(-3px) rotateY(1deg);
}

/* Android Phone Body */
.phone-body {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: #1f2937;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.6);
}

/* Phone Bezel */
.phone-bezel {
    position: absolute;
    inset: 4px;
    border-radius: 20px;
    background: #000;
}

/* Phone Screen */
.phone-screen {
    position: absolute;
    inset: 8px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

/* Android Camera Hole */
.iphone-notch {
    position: absolute;
    top: 12px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    z-index: 20;
    border: 2px solid #333;
}

/* Screen Content - No Safe Area Needed */
.screen-content {
    height: 100%;
    width: 100%;
    padding-top: 0;
}

/* Phone Highlight */
.phone-highlight {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 30%);
}

/* iOS Status Bar */
.ios-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px 2px;
    font-size: 8px;
    color: white;
    font-weight: 500;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time {
    letter-spacing: 0.5px;
    font-weight: 600;
}

.signal-bars {
    display: flex;
    align-items: end;
    gap: 2px;
    margin-left: 4px;
}

.bar {
    width: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
}

.bar-1 { height: 4px; }
.bar-2 { height: 8px; }
.bar-3 { height: 12px; }
.bar-4 { height: 16px; }

.carrier {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.battery-icon {
    width: 18px;
    height: 9px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.battery-level {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 82%;
    background: #34d399;
}

.battery-percent {
    color: rgba(255, 255, 255, 0.8);
    font-size: 8px;
}

/* Android Call Screen */
.ios-call-screen {
    height: 100%;
    background: linear-gradient(180deg, #18181b 0%, #27272a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 15px;
}

.caller-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.caller-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.call-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
}

.caller-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.caller-number {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin: 0;
}

.call-buttons {
    display: flex;
    gap: 50px;
}

.call-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.call-btn:active {
    transform: scale(0.95);
}

.decline-btn {
    background: #dc2626;
}

.accept-btn {
    background: #16a34a;
}

/* WhatsApp Styles */
.whatsapp-header {
    background: #075E54;
}

.wa-chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: white;
}

.wa-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-info {
    flex: 1;
}

.wa-name {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.wa-status {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.whatsapp-chat {
    height: calc(100% - 80px);
    background: #efeae2;
    display: flex;
    flex-direction: column;
}

.date-divider {
    margin: 6px auto;
    font-size: 9px;
    background: #e1d9cf;
    color: #6b7280;
    padding: 3px 6px;
    border-radius: 8px;
    text-align: center;
}

.messages-container {
    flex: 1;
    padding: 8px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.message {
    max-width: 80%;
    padding: 6px 8px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.message.incoming {
    align-self: flex-start;
    background: white;
    color: #1f2937;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.message.outgoing {
    align-self: flex-end;
    background: #DCF8C6;
    color: #1f2937;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.message p {
    margin: 0;
}

.message-meta {
    font-size: 8px;
    color: #6b7280;
    margin-top: 2px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.wa-input {
    background: #f0ede9;
    padding: 8px;
}

.input-field {
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
}

.input-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1f2937;
}

.input-field input::placeholder {
    color: #9ca3af;
}

.send-button {
    background: transparent;
    border: none;
    color: #075E54;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Instagram DM Styles */
.instagram-dm {
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    color: #1f2937;
}

.ig-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.ig-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.ig-info {
    flex: 1;
}

.ig-name {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.ig-status {
    font-size: 9px;
    color: #6b7280;
    margin: 0;
}

.ig-messages {
    flex: 1;
    padding: 8px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: white;
}

.ig-message {
    max-width: 80%;
    padding: 6px 8px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.3;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.ig-message.incoming {
    align-self: flex-start;
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ig-message.outgoing {
    align-self: flex-end;
    background: #2563eb;
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ig-message p {
    margin: 0;
}

.ig-message-meta {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.ig-input {
    padding: 8px;
    border-top: 1px solid #e5e7eb;
}

.ig-input-field {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: 20px;
    padding: 8px 12px;
    gap: 8px;
}

.ig-input-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: #1f2937;
}

.ig-input-field input::placeholder {
    color: #9ca3af;
}

.ig-send-button {
    background: transparent;
    border: none;
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* Android Phones Showcase */
.android-phones-showcase {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    height: 100%;
    padding: 20px;
}

/* Android Phone Container */
.android-phone {
    position: relative;
    transition: transform 0.3s ease;
}

.android-phone:hover {
    transform: translateY(-5px);
}

.phone-left {
    width: 220px;
    height: 460px;
}

.phone-center {
    width: 260px;
    height: 540px;
    margin-top: -20px;
}

.phone-right {
    width: 220px;
    height: 460px;
}

/* Android Frame */
.android-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Android Screen */
.android-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Android Status Bar */
.android-status-bar {
    background: rgba(0, 0, 0, 0.05);
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #333;
}

.android-time {
    font-weight: 500;
}

.android-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
}

.android-battery {
    font-size: 11px;
    font-weight: 500;
}

/* Android Call Screen */
.android-call-screen {
    height: calc(100% - 30px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px;
    color: white;
}

.call-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.android-caller-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.android-caller-name {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.android-call-status {
    font-size: 14px;
    opacity: 0.9;
    margin: 5px 0;
}

.android-caller-number {
    font-size: 13px;
    opacity: 0.8;
}

.android-call-actions {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.android-call-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.android-call-btn:active {
    transform: scale(0.95);
}

.android-call-btn.red {
    background: #ef4444;
}

.android-call-btn.green {
    background: #22c55e;
}

/* WhatsApp Android Styles */
.android-whatsapp {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #e5ddd5;
}

.android-wa-header {
    background: #075e54;
    color: white;
}

.wa-top-bar {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
}

.android-wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.android-wa-info {
    flex: 1;
}

.android-wa-info h3 {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.android-wa-info span {
    font-size: 11px;
    opacity: 0.9;
}

.wa-header-icons {
    display: flex;
    gap: 16px;
    font-size: 16px;
}

.android-wa-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAATklEQVQoU2NkYGD4z8DAwMiABpgYGBgYkRVhE0MXQ1dISEhISEgIXSEuMXQFhISEhIRwKcQmhi6GrhCXGLoYukJcYuhi6ApxiaGLoSsEALPtCqtfm9NVAAAAAElFTkSuQmCC');
}

.wa-date {
    text-align: center;
    margin: 10px 0;
    font-size: 11px;
    color: #667781;
    background: rgba(225, 245, 254, 0.92);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.wa-msg {
    max-width: 75%;
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    clear: both;
}

.wa-msg.received {
    background: white;
    float: left;
    border-top-left-radius: 0;
}

.wa-msg.sent {
    background: #dcf8c6;
    float: right;
    border-top-right-radius: 0;
}

.wa-msg small {
    display: block;
    font-size: 10px;
    color: #667781;
    margin-top: 4px;
    text-align: right;
}

.android-wa-input {
    background: white;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
}

.android-wa-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 13px;
    outline: none;
}

.android-wa-input i {
    color: #667781;
    font-size: 18px;
    cursor: pointer;
}

.wa-send {
    background: #075e54;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Instagram Android Styles */
.android-instagram {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
}

.android-ig-header {
    background: white;
    border-bottom: 1px solid #dbdbdb;
}

.ig-top-bar {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 10px;
}

.android-ig-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.android-ig-info {
    flex: 1;
}

.android-ig-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #262626;
}

.android-ig-info span {
    font-size: 11px;
    color: #8e8e8e;
}

.ig-header-icons {
    display: flex;
    gap: 16px;
    font-size: 18px;
    color: #262626;
}

.android-ig-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #fafafa;
}

.ig-date {
    text-align: center;
    margin: 10px 0;
    font-size: 11px;
    color: #8e8e8e;
}

.ig-msg {
    max-width: 70%;
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.4;
    clear: both;
}

.ig-msg.received {
    background: #efefef;
    color: #262626;
    float: left;
    border: 1px solid #dbdbdb;
}

.ig-msg.sent {
    background: linear-gradient(135deg, #5851db, #833ab4, #c13584);
    color: white;
    float: right;
}

.ig-msg small {
    display: block;
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.7;
}

.android-ig-input {
    padding: 10px;
    border-top: 1px solid #dbdbdb;
    background: white;
}

.ig-input-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid #dbdbdb;
    border-radius: 22px;
    background: white;
}

.ig-input-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
}

.ig-input-box i {
    color: #8e8e8e;
    font-size: 16px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .realistic-phones-showcase {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        transform: scale(1);
    }
    
    .iphone-frame.small {
        width: 300px;
        height: 600px;
    }
    
    .iphone-frame.large {
        width: 340px;
        height: 680px;
    }
}

@media (max-width: 768px) {
    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 140px 20px 40px;
    }
    .hero-left { padding-right: 0; align-items: center; text-align: center; }
    .hero-title-new { font-size: 2rem; }
    .hero-subtitle-new { font-size: .95rem; }

    .realistic-phones-showcase { justify-content: center; transform: scale(0.7); gap: 10px; }
    .iphone-frame.small { width: 200px; height: 420px; }
    .iphone-frame.large { width: 220px; height: 460px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Yeni Hero Responsive */
    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 140px 20px 40px;
        text-align: center;
        align-items: center;
    }

    .hero-left {
        padding-right: 0;
        order: 2;
        max-width: 100%;
    }

    .hero-right {
        order: 1;
        align-items: center;
    }

    .phones-showcase {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .phone-1, .phone-2, .phone-3 {
        transform: translateX(0) translateY(0) scale(0.9) !important;
        z-index: 3 !important;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.1rem;
    }

    .phone-frame {
        width: 160px;
        height: 320px;
        transform: perspective(600px) rotateX(1deg) rotateY(0deg);
    }

    .caller-avatar {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 15px !important;
    }

    .caller-name {
        font-size: 1.2rem !important;
    }

    .call-controls {
        gap: 40px !important;
    }

    /* Process Section Mobile */
    .process-highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
    }

    .highlight-icon i {
        font-size: 1.5rem;
    }

    .highlight-content h3 {
        font-size: 1.5rem;
    }

    .process-steps-horizontal {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .process-step-card {
        padding: 25px 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-header h3 {
        font-size: 1.2rem;
    }

    /* Contact Section Mobile */
    .contact-header h2 {
        font-size: 2.2rem;
    }

    .contact-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .contact-form-container {
        margin: 0 20px;
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-campaign-reminder {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .reminder-icon {
        width: 50px;
        height: 50px;
    }

    .reminder-icon i {
        font-size: 1.5rem;
    }

    .btn-primary-large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .call-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        transform: perspective(800px) rotateX(2deg) rotateY(-1deg);
    }

    .phone-glow {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .solutions-grid,
    .packages-grid,
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .process-connector {
        width: 40px;
        height: 2px;
        margin: 0 auto 20px;
    }

    .package-card.popular {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .solution-card,
    .package-card,
    .contact-form {
        padding: 30px 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
	/* Hero tek kolona düşsün */
	.hero-container-new { grid-template-columns: 1fr; gap: 24px; padding: 100px 20px 40px; }
	.hero-left { padding-right: 0; align-items: center; text-align: center; }
	.hero-title-new { font-size: 2rem; }
	.hero-subtitle-new { font-size: .95rem; }

	/* Android mockup'ları ortala ve küçült */
	.android-phones-showcase { justify-content: center; align-items: flex-end; gap: 8px; }
	.android-phone { transform: none; }
	.phone-left, .phone-right { width: 170px; height: 360px; }
	.phone-center { width: 190px; height: 400px; margin-top: 0; }
}

@media (max-width: 480px) {
	.hero-title-new { font-size: 1.75rem; }
	.hero-subtitle-new { font-size: .9rem; }
	.phone-left, .phone-right { width: 150px; height: 320px; }
	.phone-center { width: 170px; height: 360px; }
}

/* --- Mobile hero stronger fix --- */
@media (max-width: 640px) {
	/* Üç telefon da kalsın ama daha küçük ve satır atlamalı */
	.android-phones-showcase { flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 8px; }
	.android-phone { transform: none !important; }
	.phone-left, .phone-right, .phone-center { display: block; width: 32vw; height: auto; aspect-ratio: 9 / 19.5; }
	/* En geniş olan ortadaki telefonu çok az büyük tut */
	.phone-center { width: 35vw; }
	/* Çerçeve ve ekran paddingleri küçülsün */
	.android-frame { padding: 6px; border-radius: 16px; }
	.android-screen { border-radius: 10px; }
	/* Status bar ve header küçülsün */
	.android-status-bar { height: 20px; font-size: 9px; padding: 0 6px; }
	.wa-top-bar { padding: 6px; gap: 6px; }
	.android-wa-avatar { width: 24px; height: 24px; }
	.android-wa-info h3 { font-size: 12px; }
	.android-wa-info span { font-size: 9px; }
	/* Mesaj alanı ölçekleri */
	.android-wa-messages { padding: 6px; }
	.wa-msg { font-size: 11px; padding: 5px 6px; border-radius: 8px; }
	.wa-msg small { font-size: 8.5px; margin-top: 1px; }
	.android-wa-input { padding: 6px; }
	.android-wa-input input { font-size: 11px; padding: 6px 8px; }
}

/* Hide hero mockups on mobile */
@media (max-width: 768px) {
	.android-phones-showcase, .hero-right { display: none !important; }
	.hero-container-new { grid-template-columns: 1fr; gap: 16px; padding: 120px 20px 40px; }
	.hero-left { padding-right: 0; align-items: center; text-align: center; }
}