/* ============================================
   QR MENÜ SİSTEMLERİ - SaaS TASARIM
   Modern, Profesyonel, Teknolojik
   ============================================ */

:root {
    --primary: #18cb96;
    --primary-dark: #128f6a;
    --primary-light: #2ee5b0;
    --primary-gradient: linear-gradient(135deg, #18cb96 0%, #128f6a 100%);
    --secondary: #d1fae5;
    --accent: #FFC7D9;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-surface: #ffffff;
    --border-color: #e2e8f0;
    --border: #e2e8f0;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 16px rgba(24, 203, 150, 0.15);
    --shadow-lg: 0 8px 32px rgba(24, 203, 150, 0.2);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px -10px rgba(24, 203, 150, 0.3);
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    position: relative;
    padding-top: 100px;
}

@media (max-width: 1024px) {
    body {
        padding-top: 90px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

img, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

/* ============================================
   FLOATING ACTION BUTTONS (FAB)
   ============================================ */
/* Minimal & Şık İletişim Butonları */
.contact-buttons-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    animation: slideInRight 0.4s ease-out;
    border: none;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-button:active {
    transform: translateY(0);
}

.contact-button i {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-button-text {
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.contact-button-call {
    background: #3b82f6;
}

.contact-button-call:hover {
    background: #2563eb;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.contact-button-whatsapp {
    background: #25D366;
}

.contact-button-whatsapp:hover {
    background: #20BA5A;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

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

/* ============================================
   HERO SECTION - SaaS Design
   ============================================ */
.hero-saas {
    position: relative;
    padding: 60px 0 80px;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
    margin-top: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-saas {
        padding: 40px 0 60px;
        min-height: auto;
    }
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(24, 203, 150, 0.15) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 203, 150, 0.03);
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(24, 203, 150, 0.08) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(24, 203, 150, 0.1);
    border: 1px solid rgba(24, 203, 150, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-dark);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(24, 203, 150, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 203, 150, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-mockups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mockup-item {
    position: relative;
    transition: var(--transition);
}

.mockup-item:hover {
    transform: translateY(-10px);
}

.mockup-main {
    /* Eşit boyut için grid-row span kaldırıldı */
}

.mockup-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.mockup-label i {
    color: var(--primary);
    font-size: 14px;
}

.dashboard-mockup {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: white;
    padding: 15px;
    position: relative;
    transition: var(--transition);
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(24, 203, 150, 0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: var(--radius-lg);
}

.dashboard-mockup:hover {
    box-shadow: 0 30px 100px rgba(24, 203, 150, 0.25);
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    display: block;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-mockups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-visual {
        margin-top: 40px;
    }
    
    .hero-mockups-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dashboard-mockup {
        padding: 15px;
    }
}

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

.trusted-section::before,
.trusted-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trusted-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent);
}

.trusted-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent);
}

.trusted-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-weight: 600;
}

.trusted-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    overflow: visible;
    will-change: transform;
    width: max-content;
    position: relative;
}

.clients-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-carousel-wrapper .trusted-logos {
    animation: slideLogos 30s linear infinite;
}

.clients-carousel-wrapper:hover .trusted-logos {
    animation-play-state: paused;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trusted-logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trusted-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trusted-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-saas {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(24, 203, 150, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
}

.why-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(24, 203, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
    margin-bottom: 0;
}

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

.why-card-content {
    flex: 1;
    width: 100%;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.why-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.875rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-saas {
    padding: 120px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(24, 203, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

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

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   PRICING SECTION - 30 Gün Deneme
   ============================================ */
.pricing-saas {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

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

.pricing-features li i {
    color: var(--primary);
    font-size: 14px;
}

.pricing-cta {
    margin-top: auto;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--primary-dark);
}

.pricing-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(24, 203, 150, 0.05);
    border: 1px solid rgba(24, 203, 150, 0.2);
    border-radius: var(--radius);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-note i {
    color: var(--primary);
    font-size: 20px;
}

.pricing-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.pricing-note strong {
    color: var(--primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-saas {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-saas {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(24, 203, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1280px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    padding: 0;
}

.main-header.scrolled {
    top: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.header-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 30px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 70px;
    width: auto;
    filter: none;
    display: block;
    transition: var(--transition);
    max-width: none;
}

.header-logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-logo img {
        height: 55px;
    }
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(24, 203, 150, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Header responsive adjustments */
@media (max-width: 1024px) {
    .main-header {
        width: calc(100% - 30px);
    }
    
    .nav-list {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .main-header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 0;
    }
    
    .header-wrapper {
        padding: 12px 16px;
    }
    
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        padding: 20px;
    }
    
    .header-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */
/* ============================================
   FOOTER - Modern & Professional
   ============================================ */

.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 24px;
    display: block;
    transition: var(--transition);
    max-width: none;
    filter: drop-shadow(0 2px 8px rgba(24, 203, 150, 0.1));
}

.footer-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(24, 203, 150, 0.2));
}

.footer-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a,
.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.footer-list li a:hover,
.contact-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.contact-link i {
    width: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--primary);
    opacity: 0.7;
}

.footer-bottom {
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.footer-copyright strong {
    color: var(--text-dark);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

.separator {
    color: var(--text-light);
    font-size: 12px;
}

.footer-company {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.footer-company span {
    color: var(--text-dark);
    font-weight: 500;
}

.footer-company a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-company a:hover {
    text-decoration: underline;
}

.nkolaymedya-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    vertical-align: middle;
}

.nkolaymedya-logo {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.9;
    transition: var(--transition);
}

.nkolaymedya-link:hover .nkolaymedya-logo {
    opacity: 1;
    transform: scale(1.05);
}

.nkolaymedya-link span {
    display: inline-block;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-company {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-saas {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-mockup {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-saas {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 30px;
        padding-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .why-choose-saas {
        padding: 60px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-saas,
    .pricing-saas,
    .contact-saas {
        padding: 60px 0;
    }
    
    .trusted-section {
        padding: 50px 0;
    }
    
    .trusted-label {
        font-size: 12px;
        margin-bottom: 30px;
    }
    
    .trusted-logo-item {
        width: 150px;
        height: 50px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .why-card,
    .feature-card,
    .contact-card {
        padding: 30px 24px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .cta-saas {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .contact-buttons-container {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }
    
    .contact-button {
        padding: 11px 18px;
        font-size: 13px;
        min-width: 150px;
        border-radius: 26px;
    }
    
    .contact-button i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .dashboard-mockup {
        padding: 10px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .contact-buttons-container {
        bottom: 16px;
        right: 16px;
        left: auto;
        align-items: flex-end;
        gap: 8px;
    }
    
    .contact-button {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 140px;
        width: auto;
        border-radius: 24px;
        justify-content: center;
    }
    
    .contact-button i {
        font-size: 16px;
    }
    
    .contact-button-text {
        font-size: 13px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(24, 203, 150, 0.05) 0%, rgba(255,255,255,0) 100%);
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 20px 0;
    color: var(--text-dark);
    line-height: 1.2;
}

.blog-hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.blog-posts-section {
    padding: 80px 0 120px;
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    font-size: 3rem;
}

.blog-card-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-item i {
    font-size: 0.875rem;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-card:hover .blog-card-read-more {
    gap: 12px;
}

.blog-card-read-more i {
    transition: var(--transition);
}

.blog-card:hover .blog-card-read-more i {
    transform: translateX(4px);
}

.blog-empty {
    text-align: center;
    padding: 100px 20px;
}

.blog-empty-icon {
    width: 100px;
    height: 100px;
    background: rgba(24, 203, 150, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--primary);
}

.blog-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-empty p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ============================================
   BLOG DETAIL SECTION
   ============================================ */
.blog-detail-section {
    padding: 100px 0 120px;
    background: var(--bg-white);
}

.blog-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: var(--transition);
}

.blog-back-button:hover {
    color: var(--primary);
    gap: 12px;
}

.blog-detail-category {
    margin-bottom: 20px;
}

.blog-detail-category a {
    display: inline-block;
    background: rgba(24, 203, 150, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.blog-detail-category a:hover {
    background: var(--primary);
    color: white;
}

.blog-detail-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.blog-detail-image {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-excerpt {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.blog-detail-content p {
    margin-bottom: 24px;
}

.blog-detail-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.blog-detail-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-detail-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.blog-detail-content a:hover {
    color: var(--primary-dark);
}

/* Blog Detail Article */
.blog-detail-article {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* Blog Breadcrumb */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.blog-breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Blog Detail Header */
.blog-detail-header {
    margin-bottom: 40px;
}

/* Blog Detail Footer */
.blog-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.blog-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-detail-actions {
    display: flex;
    justify-content: flex-start;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-top: 50px;
}

.blog-detail-share span {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 8px;
}

.share-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-whatsapp {
    background: #25d366;
}

.share-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-posts-section {
        padding: 60px 0 80px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card-image-wrapper {
        height: 200px;
    }
    
    .blog-detail-section {
        padding: 80px 0 100px;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-excerpt {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .blog-detail-share {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .blog-detail-article {
        padding: 24px;
    }
    
    .blog-detail-title {
        font-size: 1.75rem;
    }
    
    .blog-breadcrumb {
        font-size: 0.85rem;
    }
    
    .blog-detail-tags {
        gap: 8px;
    }
    
    .blog-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .contact-buttons-container,
    .main-header,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}
