﻿/* ============================================
   GENEL AYARLAR VE MODERN EFFECTS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0E5A90;
    --primary-dark: #0a4470;
    --gradient-start: #0E5A90;
    --gradient-end: #1a7bb8;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

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

html {
    scroll-behavior: smooth;
}

.container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANIMATED BACKGROUND GRADIENT
   ============================================ */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(14, 90, 144, 0.03) 0%, rgba(26, 123, 184, 0.05) 50%, rgba(14, 90, 144, 0.03) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   GRADIENT TEXT EFFECT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientFlow 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-scroll-animation] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-scroll-animation="fade-up"] {
    transform: translateY(80px);
}

[data-scroll-animation="fade-down"] {
    transform: translateY(-80px);
}

[data-scroll-animation="fade-left"] {
    transform: translateX(80px);
}

[data-scroll-animation="fade-right"] {
    transform: translateX(-80px);
}

[data-scroll-animation="zoom-in"] {
    transform: scale(0.85);
}

[data-scroll-animation].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* List items için özel animasyon */
.list-item-animate {
    opacity: 0;
    animation: slideInFromLeft 0.8s ease forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   NAVBAR - MINIMAL & MODERN DESIGN
   ============================================ */
.navbar {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #ffffff;
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #ffffff;
        padding: 18px 40px;
        border-radius: 50px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 1px solid rgba(14, 90, 144, 0.08);
    }

    .navbar.scrolled .container {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-color: rgba(14, 90, 144, 0.12);
        padding: 16px 40px;
    }

.logo {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
}

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

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-outline {
    padding: 11px 24px;
    border: 2px solid rgba(14, 90, 144, 0.15);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-align: center;
    position: relative;
    background: rgba(14, 90, 144, 0.03);
}

    .btn-outline:hover {
        background: rgba(14, 90, 144, 0.08);
        border-color: rgba(14, 90, 144, 0.25);
        transform: translateY(-2px);
    }

.btn-primary {
    padding: 11px 28px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-align: center;
    border: none;
    background-size: 200% auto;
    box-shadow: 0 4px 16px rgba(14, 90, 144, 0.25);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(14, 90, 144, 0.35);
        background-position: right center;
    }

.divider {
    display: none;
}

/* ============================================
   HERO SECTION WITH PARTICLES
   ============================================ */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite;
}

    .particle:nth-child(1) {
        top: 10%;
        left: 10%;
        width: 8px;
        height: 8px;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        top: 20%;
        right: 15%;
        width: 12px;
        height: 12px;
        animation-delay: 2s;
    }

    .particle:nth-child(3) {
        bottom: 20%;
        left: 20%;
        width: 6px;
        height: 6px;
        animation-delay: 4s;
    }

    .particle:nth-child(4) {
        top: 60%;
        right: 25%;
        width: 10px;
        height: 10px;
        animation-delay: 6s;
    }

    .particle:nth-child(5) {
        bottom: 10%;
        right: 10%;
        width: 8px;
        height: 8px;
        animation-delay: 8s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
    }

    50% {
        transform: translateY(-60px) translateX(-30px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) translateX(30px) rotate(270deg);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

    .hero-text h1 {
        font-size: clamp(36px, 5vw, 52px);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 24px;
        color: var(--text-dark);
    }

    .hero-text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.8;
        color: var(--text-light);
        margin-bottom: 32px;
    }

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    background-size: 200% auto;
    box-shadow: 0 8px 30px rgba(14, 90, 144, 0.25);
    position: relative;
    overflow: hidden;
}

    .btn-discover::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-discover:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-discover:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 40px rgba(14, 90, 144, 0.4);
        background-position: right center;
    }

    .btn-discover svg {
        transition: transform 0.3s ease;
    }

    .btn-discover:hover svg {
        transform: translateX(5px);
    }

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-bg {
    background: linear-gradient(135deg, #FFEFBF 0%, #FFE89F 100%);
    padding: 30px;
    border-radius: 32px;
    max-width: 580px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 239, 191, 0.4);
    transition: all 0.4s ease;
}

    .image-bg:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(255, 239, 191, 0.5);
    }

.glow-effect {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(14, 90, 144, 0.2), transparent);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

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

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.mobile-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    position: relative;
    z-index: 1;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   SECTION DIVIDER WITH ANIMATION
   ============================================ */
.section-divider {
    width: 85%;
    max-width: 1400px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #e5e5e5 20%, #e5e5e5 80%, transparent);
    margin: 10px auto;
    position: relative;
    overflow: hidden;
}

    .section-divider::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 30%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* ============================================
   HOVER EFFECTS
   ============================================ */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .hover-lift:hover {
        transform: translateY(-10px);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    }

.hover-tilt {
    transition: all 0.4s ease;
}

/* ============================================
   IMAGE CARDS WITH GLASS EFFECT
   ============================================ */
.image-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .image-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    }

    .image-card img {
        border-radius: 16px;
        width: 100%;
    }

.data-card {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    height:900px;
   
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

    .data-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    }

/* ============================================
   FEATURE SECTION
   ============================================ */
.feature-section {
   
    text-align: center;
}

.feature-full-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
}

/* ============================================
   COMPONENT SECTION
   ============================================ */
.component-section {
    padding: 20px 0;
    text-align: center;
}

.component-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.component-img {
    width: 80%;
    max-width: 900px;
    height: auto;
    display: block;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    padding: 20px 0 100px;
    text-align: center;
}

.brands-img {
    width: 90%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: grayscale(30%);
    transition: filter 0.4s ease;
}

    .brands-img:hover {
        filter: grayscale(0%);
    }

/* ============================================
   CUSTOMER DATA SECTION
   ============================================ */
.customer-data-section {
    
    text-align: center;
}

    .customer-data-section .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.data-dashboard-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ============================================
   LAPTOP SHOWCASE WITH GLOW
   ============================================ */
.laptop-showcase {
    padding-top: 300px ;
    text-align: center;
    position: relative;
}

.laptop-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 60px;
    color: var(--text-dark);
    padding: 0 20px;
}

.laptop-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1000px;
}

.laptop-img {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.laptop-wrapper:hover .laptop-img {
    transform: scale(1.02);
}

.laptop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(117, 169, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.laptop-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shine 8s infinite;
    z-index: 3;
    pointer-events: none;
}

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

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* ============================================
   CRM FEATURE SECTION
   ============================================ */
.crm-feature-section {
    
}

.crm-title {
    text-align: center;
    font-size: clamp(32px, 4.5vw, 42px);
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.crm-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.crm-left {
    flex: 1.2;
    max-width: 650px;
}

.crm-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.crm-right {
    flex: 1;
}

.crm-list {
    list-style: none;
    padding-left: 0;
}

    .crm-list li {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.8;
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        color: #333;
        opacity: 0;
        animation: slideIn 0.6s forwards;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.crm-list li:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(14, 90, 144, 0.3);
}

.crm-list li strong {
    color: var(--text-dark);
}

/* ============================================
   CRM WHY SECTION
   ============================================ */
.crm-why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(14, 90, 144, 0.02) 0%, rgba(26, 123, 184, 0.03) 100%);
}

.crm-why-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

    .crm-why-wrapper .crm-left {
        flex: 1;
    }

        .crm-why-wrapper .crm-left h2 {
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            margin-bottom: 28px;
            color: var(--text-dark);
        }

        .crm-why-wrapper .crm-left p {
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.9;
            color: var(--text-light);
        }

    .crm-why-wrapper .crm-right {
        flex: 1;
        display: flex;
        justify-content: center;
    }

.crm-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   CRM SECTION
   ============================================ */
.crm-section {
    padding: 100px 0;
}

.crm-text {
    flex: 1;
    max-width: 550px;
}

    .crm-text h2 {
        font-size: clamp(30px, 4vw, 42px);
        font-weight: 700;
        margin-bottom: 28px;
        color: var(--text-dark);
    }

    .crm-text p {
        font-size: clamp(16px, 2vw, 17px);
        line-height: 1.9;
        color: var(--text-light);
    }

.crm-section .crm-image {
    flex: 1;
}

/* ============================================
   CTA SECTION WITH ANIMATED SHAPES
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0E5380 0%, #0a4470 100%);
    padding: 120px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: -150px;
    left: -50px;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: white;
    top: 50%;
    left: 20%;
    animation: float 30s infinite ease-in-out;
}

.cta-container {
    position: relative;
    z-index: 1;
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-left h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 36px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background: transparent;
}

    .cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: white;
        transition: left 0.4s ease;
        z-index: -1;
    }

    .cta-btn:hover {
        color: #0E5380;
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    }

        .cta-btn:hover::before {
            left: 0;
        }

    .cta-btn svg {
        transition: transform 0.3s ease;
    }

    .cta-btn:hover svg {
        transform: translateX(5px);
    }

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: linear-gradient(135deg, #0F1C46 0%, #1a2854 100%);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    text-align: center;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

    .footer-icon:hover {
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-icon svg {
        width: 60px;
        height: 60px;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }

.footer-item h3 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-item p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    opacity: 0.85;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(14, 90, 144, 0.3);
    z-index: 999;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 12px 32px rgba(14, 90, 144, 0.4);
    }

    .scroll-to-top:active {
        transform: translateY(-3px) scale(1.05);
    }

/* ============================================
   RESPONSIVE STYLES - TABLET
   ============================================ */
@media (max-width: 992px) {
    .container {
        width: 90%;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

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

    .hero-image {
        width: 100%;
    }

    .image-bg {
        padding: 40px;
        max-width: 500px;
    }

    .section-divider {
        margin: 80px auto;
    }

    .component-img {
        width: 90%;
    }

    .laptop-title {
        font-size: 34px;
        margin-bottom: 50px;
    }

    .crm-feature-section {
        padding: 80px 0;
    }

    .crm-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .crm-left,
    .crm-right {
        width: 100%;
        max-width: 100%;
    }

    .crm-list {
        text-align: left;
        width: 100%;
    }

    .customer-data-section {
        padding: 60px 0;
    }

    .crm-why-section {
        padding: 80px 0;
    }

    .crm-why-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .crm-section {
        padding: 80px 0;
    }

        .crm-section .crm-wrapper {
            flex-direction: column;
            text-align: center;
        }

    .cta-section {
        padding: 80px 0;
    }

    .footer-section {
        padding: 80px 0;
    }
}

/* ============================================
   RESPONSIVE STYLES - MOBILE
   ============================================ */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    .navbar {
        padding: 20px 0;
    }

        .navbar .container {
            padding: 14px 24px;
            border-radius: 40px;
        }

        .navbar.scrolled .container {
            padding: 12px 24px;
        }

    .logo {
        height: 40px;
    }

    .nav-right {
        gap: 10px;
    }

    .btn-outline,
    .btn-primary {
        padding: 9px 18px;
        font-size: 14px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-content {
        gap: 40px;
    }

    .btn-discover {
        padding: 14px 30px;
        font-size: 15px;
    }

    .image-bg {
        padding: 30px;
        border-radius: 24px;
    }

    .section-divider {
        margin: 60px auto;
        width: 90%;
    }

    .feature-section,
    .component-section {
        padding: 40px 0;
    }

    .component-img {
        width: 100%;
    }

    .brands-section {
        padding: 40px 0 60px;
    }

    .laptop-showcase {
        padding: 50px 0;
    }

    .laptop-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .laptop-glow {
        filter: blur(40px);
    }

    .crm-feature-section,
    .crm-why-section,
    .crm-section {
        padding: 60px 0;
    }

    .crm-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .crm-list li {
        font-size: 16px;
        margin-bottom: 16px;
        gap: 12px;
    }

    .icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .customer-data-section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-left h2 {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .cta-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .footer-section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }

        .footer-icon svg {
            width: 50px;
            height: 50px;
        }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   RESPONSIVE STYLES - VERY SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .navbar {
        padding: 16px 0;
    }

        .navbar .container {
            padding: 12px 20px;
            border-radius: 35px;
        }

    .logo {
        height: 36px;
    }

    .nav-right {
        gap: 8px;
    }

    .btn-outline,
    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 40px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .btn-discover {
        padding: 12px 24px;
        font-size: 14px;
    }

    .image-bg {
        padding: 25px;
        border-radius: 20px;
    }

    .laptop-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .crm-title {
        font-size: 28px;
    }

    .crm-list li {
        font-size: 15px;
    }

    .icon-wrapper {
        width: 26px;
        height: 26px;
    }

    .cta-left h2 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .footer-icon {
        width: 90px;
        height: 90px;
    }

        .footer-icon svg {
            width: 45px;
            height: 45px;
        }

    .scroll-to-top {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   ACCESSIBILITY & UTILITIES
   ============================================ */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer-section,
    .scroll-to-top,
    .particles,
    .animated-bg {
        display: none;
    }

    .section-divider {
        background: #000;
    }

    body {
        background: white;
    }
}
