/* style.css (MODERN SATIŞ ODAKLI SÜRÜM) */

/* Google Fonts Import - Inter eklendi */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* =================================================================
   1. TEMA DEĞİŞKENLERİ - MODERN PALET
   ================================================================= */
:root {
    /* Ana Renkler */
    --primary-color: #0f172a;
    --primary-light: #1e293b;
    --accent-color: #6366f1;
    --accent-hover-color: #4f46e5;
    --accent-light: #818cf8;
    --secondary-color: #f97316;
    --secondary-hover: #ea580c;

    /* Nötr Tonlar */
    --background-light: #f8fafc;
    --background-dark: #0f172a;
    --white: #FFFFFF;
    --border-color: #e2e8f0;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;

    /* Gradientler */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    --gradient-cta: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);

    /* Tipografi */
    --font-heading: 'Inter', 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Gölgeler */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Geçişler */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* =================================================================
   MODERN UTILITY SINIFLAR
   ================================================================= */

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Backgrounds */
.bg-gradient-hero {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.bg-gradient-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated Gradient */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.animated-gradient {
    background: linear-gradient(-45deg, #0f172a, #1e3a5f, #6366f1, #8b5cf6);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Modern Card Styles */
.card-modern {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

/* Badge Styles */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =================================================================
   2. GENEL STİLLER
   ================================================================= */
body {

    font-family: var(--font-body);

    color: var(--text-dark);

    line-height: 1.7;

    background-color: var(--white);

}



h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-heading);

    font-weight: 700;

    color: var(--primary-color);

}



.section-padding {
    padding: 50px 0;
}

.bg-light-gray {
    background-color: var(--background-light);
}

.section-title {
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.section-title p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}



.btn {

    border-radius: 50px;

    padding: 14px 36px;

    font-family: var(--font-heading);

    font-weight: 600;

    font-size: 1rem;

    transition: all 0.3s ease;

    border-width: 2px;

}



.btn-primary {

    background-color: var(--accent-color);

    border-color: var(--accent-color);

    color: var(--white);

}



.btn-primary:hover {

    background-color: var(--accent-hover-color);

    border-color: var(--accent-hover-color);

    color: var(--white);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);

}



.btn-secondary {

    background-color: var(--secondary-color);

    border-color: var(--secondary-color);

    color: var(--white);

}



.btn-secondary:hover {

    background-color: #d8870b;

    border-color: #d8870b;

    color: var(--white);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);

}



.btn-outline-primary {

    color: var(--primary-color);

    border-color: var(--primary-color);

}



.btn-outline-primary:hover {

    background-color: var(--primary-color);

    color: var(--white);

}



/* =================================================================

   3. PROFESYONEL HEADER STİLLERİ

   ================================================================= */

.navbar {

    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;

    padding: 1.25rem 0;

}



.navbar.scrolled {

    background-color: var(--white);

    box-shadow: var(--shadow-sm);

    padding: 0.75rem 0;

}



.navbar-brand {

    position: relative;

    height: 50px;

    width: 180px;

    margin-right: 2rem;

}



.navbar-brand img {

    position: absolute;

    top: 50%;

    left: 0;

    transform: translateY(-50%);

    max-height: 100%;

    width: auto;

    transition: opacity 0.4s ease;

}



.logo-scrolled {

    opacity: 0;

}



.logo-transparent {

    opacity: 1;

}



.navbar.scrolled .logo-transparent {

    opacity: 0;

}



.navbar.scrolled .logo-scrolled {

    opacity: 1;

}



.navbar .nav-item {

    margin: 0;

}



.navbar .nav-link {

    font-family: var(--font-heading);

    font-weight: 600;

    padding: 0.6rem 1.2rem;

    border-radius: 10px;

    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

    margin: 0 0.15rem;

    font-size: 0.95rem;

}



.navbar:not(.scrolled) .nav-link {

    color: var(--primary-color);

}



.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .dropdown:hover .nav-link {

    background-color: rgba(255, 255, 255, 0.1);

}



.navbar.scrolled .nav-link {

    color: var(--primary-color);

}



.navbar.scrolled .nav-link:hover,
.navbar.scrolled .dropdown:hover .nav-link {

    background-color: var(--background-light);

    color: var(--accent-color);

}



.navbar .nav-link.active {

    color: var(--accent-color) !important;

    background-color: rgba(99, 102, 241, 0.08);

    font-weight: 700;

}

.navbar:not(.scrolled) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar:not(.scrolled) .navbar-toggler {
    border-color: rgba(15, 23, 42, 0.2);
}

.dropdown-menu {

    border: none;

    box-shadow: var(--shadow-md);

    border-radius: 8px;

    margin-top: 0.5rem;

    padding: 0.5rem 0;

}



.dropdown-item {

    font-family: var(--font-body);

    transition: all 0.3s ease;

    padding: 10px 20px;

    color: var(--text-dark);

}



.dropdown-item:hover {

    background-color: var(--accent-color);

    color: var(--white);

}



/* =================================================================

   4. ANASAYFA BİLEŞENLERİ

   ================================================================= */

#hero {

    /* margin-top: 100px; */

    /* padding: 120px 0 120px 0; */

    /* border-radius: 40px; */

    /* margin-left: 15px; */

    /* margin-right: 15px; */

    background: url('https://makaleyonetim.com/assets/hero_bg.avif') no-repeat center center;

    background-size: cover;

    position: relative;

    color: var(--white);

}



#hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(10, 43, 76, 0.85);

}



#hero h1 {

    font-size: 3.8rem;

    font-weight: 800;

    color: var(--white);

    line-height: 1.2;

}



#hero p.lead {

    font-size: 1.3rem;

    max-width: 750px;

    margin: 25px auto 40px;

    color: rgba(255, 255, 255, 0.9);

}



#clients {

    padding: 40px 0;

    background-color: var(--background-light);

}



#clients img {

    max-height: 45px;

    filter: grayscale(100%);

    opacity: 0.6;

    transition: all 0.3s ease;

}



#clients img:hover {

    filter: grayscale(0%);

    opacity: 1;

}



.problem-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c, #fdba74);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-radius: 16px;
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.problem-card:hover .icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fb923c 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.problem-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Modern Solution Cards */
.solution-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card .icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 20px;
    font-size: 2.2rem;
    color: var(--accent-color);
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.solution-card:hover .icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.solution-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.solution-card .card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}



.process-step {

    text-align: center;

    position: relative;

}



.process-step .step-number {

    width: 80px;

    height: 80px;

    border: 2px solid var(--accent-color);

    color: var(--accent-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    font-size: 2rem;

    font-weight: 700;

    font-family: var(--font-heading);

    transition: all 0.3s ease;

}



.process-step:hover .step-number {

    background-color: var(--accent-color);

    color: var(--white);

    transform: scale(1.1);

}



.process-step h5 {

    color: var(--primary-color);

    font-weight: 700;

}



.process-step::after {

    content: '';

    position: absolute;

    top: 40px;

    left: 50%;

    width: 100%;

    height: 2px;

    background: repeating-linear-gradient(90deg, var(--border-color), var(--border-color) 6px, transparent 6px, transparent 12px);

    z-index: -1;

}



.col-md-4:last-child .process-step::after {

    display: none;

}



.features-section .nav-tabs .nav-link {

    border: none;

    border-bottom: 3px solid transparent;

    border-radius: 10px;

    font-family: var(--font-heading);

    font-weight: 600;

    color: var(--text-light);

    padding: 15px 25px;

}



.features-section .nav-tabs .nav-link.active {

    color: var(--primary-color);

    border-bottom-color: var(--accent-color);

    background-color: transparent;

    border-radius: 10px;

}



.features-section .tab-pane {

    padding-top: 40px;

}



.feature-list-item {

    display: flex;

    align-items: flex-start;

    margin-bottom: 15px;

}



.feature-list-item i {

    color: var(--accent-color);

    font-size: 1.2rem;

    margin-right: 15px;

    margin-top: 5px;

}



#stats {

    background-color: var(--primary-color);

    color: var(--white);

    padding: 80px 0;

}



.counter-box h3 {

    font-size: 3.5rem;

    font-weight: 800;

    color: var(--accent-color);

}



.counter-box p {

    font-family: var(--font-heading);

    font-size: 1.1rem;

    color: rgba(255, 255, 255, 0.8);

}



.testimonial-card {

    background-color: var(--white);

    padding: 40px;

    border-radius: 10px;

    box-shadow: var(--shadow-sm);

    position: relative;

    margin: 20px;

}



.testimonial-card::before {

    content: "\201C";

    font-family: 'Times New Roman', Times, serif;

    position: absolute;

    top: -10px;

    left: 20px;

    font-size: 6rem;

    color: var(--accent-color);

    opacity: 0.1;

}



.testimonial-card .quote {

    font-size: 1.1rem;

    font-style: italic;

    color: var(--text-dark);

}



.testimonial-card .author {

    font-family: var(--font-heading);

    font-weight: 700;

    color: var(--primary-color);

    margin-top: 20px;

}



.testimonial-card .author span {

    display: block;

    font-family: var(--font-body);

    font-weight: 400;

    font-size: 0.9rem;

    color: var(--text-light);

}



.testimonial-card .carousel-control-prev-icon,

.testimonial-card .carousel-control-next-icon {

    filter: invert(1) grayscale(100%) brightness(0.5);

}



/* =================================================================

   5. DİĞER SAYFALARIN ORTAK BİLEŞENLERİ

   ================================================================= */

.page-header {

    background-color: var(--primary-color);

    padding: 80px 0;

    color: var(--white);

}



.page-header h1 {

    color: var(--white);

    font-size: 3.2rem;

}



.page-header p {

    color: rgba(255, 255, 255, 0.8);

}



/* Hakkımızda Sayfası */

.value-card {

    background-color: var(--white);

    padding: 30px;

    border-radius: 8px;

    box-shadow: var(--shadow-sm);

    height: 100%;

    transition: all 0.3s ease;

}



.value-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-md);

}



.value-card .icon {

    font-size: 2.5rem;

    color: var(--accent-color);

    margin-bottom: 15px;

    display: inline-block;

}



.mission-vision-box {

    padding: 40px;

    background-color: var(--background-light);

    border-radius: 10px;

    border-left: 5px solid var(--accent-color);

}



.mission-vision-box .icon {

    font-size: 2rem;

    color: var(--primary-color);

    float: left;

    margin-right: 20px;

    opacity: 0.5;

}



.team-card {

    background-color: var(--white);

    border-radius: 10px;

    box-shadow: var(--shadow-sm);

    text-align: center;

    padding: 30px 20px;

    transition: all 0.3s ease;

    overflow: hidden;

}



.team-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

}



.team-card .team-img {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 20px;

    border: 5px solid var(--background-light);

}



.team-card .team-name {

    font-size: 1.25rem;

    margin-bottom: 5px;

    color: var(--primary-color);

}



.team-card .team-title {

    font-size: 0.9rem;

    color: var(--text-light);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



.team-card .social-links {

    margin-top: 15px;

}



.team-card .social-links a {

    color: var(--text-light);

    font-size: 1.2rem;

    margin: 0 8px;

    transition: color 0.3s ease;

}



.team-card .social-links a:hover {

    color: var(--accent-color);

}



/* Ürün Detay Sayfaları */

.product-header {

    padding: 100px 0;

}



.product-header .product-header-tag {

    display: inline-block;

    background-color: var(--accent-color);

    color: var(--white);

    padding: 5px 15px;

    border-radius: 50px;

    font-size: 0.9rem;

    font-weight: 600;

    margin-bottom: 20px;

}



.product-header h1 {

    font-size: 3rem;

}



.feature-box {

    padding: 20px;

    height: 100%;

}



.feature-box .feature-box-icon {

    font-size: 3rem;

    color: var(--primary-color);

    margin-bottom: 15px;

    display: inline-block;

}



.role-based-features .nav-pills .nav-link {

    text-align: left;

    padding: 15px 20px;

    font-family: var(--font-heading);

    font-weight: 600;

    color: var(--primary-color);

    margin-bottom: 10px;

    opacity: 0.7;

}



.role-based-features .nav-pills .nav-link.active {

    background-color: var(--white);

    color: var(--accent-color);

    border-radius: 8px;

    box-shadow: var(--shadow-sm);

    opacity: 1;

}



.role-based-features .tab-content {

    background-color: var(--white);

    border-radius: 8px;

    box-shadow: var(--shadow-sm);

}



ul.feature-list {

    list-style-type: none;

    padding-left: 0;

}



ul.feature-list li {

    display: flex;

    align-items: flex-start;

    margin-bottom: 15px;

}



ul.feature-list i {

    color: var(--accent-color);

    margin-right: 15px;

    margin-top: 5px;

    font-size: 1.2rem;

}



.advanced-feature-card {

    background: var(--white);

    padding: 25px;

    border-radius: 8px;

    border: 1px solid var(--border-color);

    display: flex;

    align-items: flex-start;

    width: 100%;

    transition: all 0.3s ease;

}



.advanced-feature-card:hover {

    border-color: var(--accent-color);

    box-shadow: var(--shadow-sm);

    transform: translateY(-5px);

}



.advanced-feature-card i {

    font-size: 2.5rem;

    color: var(--primary-color);

    margin-right: 20px;

    margin-top: 5px;

}



.advanced-feature-card h5 {

    font-size: 1.1rem;

    margin-bottom: 5px;

}



.advanced-feature-card p {

    font-size: 0.95rem;

    color: var(--text-light);

    margin-bottom: 0;

}



.timeline {

    position: relative;

    border-top: 4px solid var(--background-light);

}



.timeline-step {

    padding: 30px 20px;

    position: relative;

}



.timeline-dot {

    position: absolute;

    top: -12px;

    left: 20px;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    background-color: var(--white);

    border: 4px solid var(--accent-color);

    transition: all 0.3s ease;

}



.timeline-step:hover .timeline-dot {

    transform: scale(1.2);

    background-color: var(--accent-color);

}



.timeline-content .timeline-stage {

    display: block;

    font-size: 0.8rem;

    font-weight: 700;

    color: var(--accent-color);

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 5px;

}



.timeline-content h5 {

    font-size: 1.1rem;

    color: var(--primary-color);

    margin-bottom: 10px;

}



.timeline-content p {

    font-size: 0.95rem;

    color: var(--text-light);

    margin-bottom: 0;

}



.problem-solution-box {

    background-color: var(--background-light);

    border-radius: 8px;

    padding: 30px;

    text-align: center;

    height: 100%;

    border: 1px solid var(--border-color);

}



.problem-solution-box i {

    font-size: 2.5rem;

    margin-bottom: 15px;

}



.problem-solution-box h5 {

    color: var(--primary-color);

}



.how-it-works-step {

    position: relative;

    padding: 20px;

}



.how-it-works-step .step-icon {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    background-color: var(--white);

    color: var(--accent-color);

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 20px;

    font-size: 2.5rem;

    box-shadow: var(--shadow-sm);

}



.how-it-works-step h5 {

    color: var(--primary-color);

    margin-bottom: 10px;

}



.how-it-works-step p {

    color: var(--text-light);

}



.how-it-works-step::after {

    content: '\f138';

    font-family: 'bootstrap-icons';

    font-size: 2.5rem;

    color: var(--border-color);

    position: absolute;

    top: 40px;

    right: -25px;

}



.col-md-4:last-child .how-it-works-step::after {

    display: none;

}



ul.feature-list p.text-secondary {

    color: var(--text-light) !important;

    font-size: 0.95rem;

    line-height: 1.6;

}



ul.feature-list strong {

    color: var(--primary-color);

    font-weight: 600;

}



.process-card {

    background-color: var(--white);

    padding: 30px;

    border-radius: 8px;

    height: 100%;

    position: relative;

    overflow: hidden;

    transition: all 0.3s ease;

    border: 1px solid transparent;

}



.process-card:hover {

    border-color: var(--accent-color);

    transform: translateY(-5px);

}



.process-card .process-number {

    position: absolute;

    top: -10px;

    right: 15px;

    font-size: 4rem;

    font-weight: 800;

    font-family: var(--font-heading);

    color: var(--background-light);

    z-index: 1;

}



.process-card h5 {

    position: relative;

    z-index: 2;

    color: var(--primary-color);

}



.process-card p {

    position: relative;

    z-index: 2;

    color: var(--text-light);

}



.portfolio-card-link {

    display: block;

    text-decoration: none;

    height: 100%;

}



.portfolio-card-new {

    background-color: var(--white);

    border-radius: 8px;

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    height: 100%;

    display: flex;

    flex-direction: column;

    transition: all 0.3s ease-in-out;

}



.portfolio-card-link:hover .portfolio-card-new {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

}



.portfolio-image-wrapper {

    position: relative;

    overflow: hidden;

}



.portfolio-image-wrapper img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    transition: transform 0.4s ease;

}



.portfolio-card-link:hover .portfolio-image-wrapper img {

    transform: scale(1.05);

}



.portfolio-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(10, 43, 76, 0.7);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.4s ease;

}



.portfolio-card-link:hover .portfolio-overlay {

    opacity: 1;

}



.portfolio-overlay i {

    font-size: 2.5rem;

    color: var(--white);

}



.portfolio-content {

    padding: 25px;

    flex-grow: 1;

    border-top: 1px solid var(--border-color);

}



.portfolio-title {

    font-size: 1.2rem;

    font-weight: 700;

    color: var(--primary-color);

    margin-bottom: 8px;

}



.portfolio-category {

    font-size: 0.85rem;

    font-weight: 600;

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: 0.5px;

}



/* Blog Sayfası */

.blog-post-item {

    background-color: var(--white);

    border-radius: 8px;

    box-shadow: var(--shadow-sm);

    transition: all 0.3s ease;

    margin-bottom: 30px;

    overflow: hidden;

}



.blog-post-item:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);

}



.blog-post-item .post-image {

    height: 100%;

    min-height: 250px;

    background-size: cover;

    background-position: center;

    border-top-left-radius: 8px;

    border-bottom-left-radius: 8px;

}



.blog-post-item .card-body {

    padding: 30px;

    display: flex;

    flex-direction: column;

}



.blog-post-item .blog-card-meta {

    font-size: 0.85rem;

    color: var(--text-light);

}



.blog-post-item .blog-card-meta a {

    text-decoration: none;

    font-weight: 500;

}



.badge.bg-accent-light {

    background-color: rgba(26, 188, 156, 0.1);

    color: var(--accent-color);

}



.badge.bg-primary-light {

    background-color: rgba(10, 43, 76, 0.1);

    color: var(--primary-color);

}



.badge.bg-secondary-light {

    background-color: rgba(243, 156, 18, 0.1);

    color: var(--secondary-color);

}



.blog-post-item .card-title {

    font-size: 1.5rem;

    line-height: 1.4;

}



.blog-post-item .card-title a {

    color: var(--primary-color);

    text-decoration: none;

    transition: color 0.3s ease;

}



.blog-post-item .card-title a:hover {

    color: var(--accent-color);

}



.blog-post-item .card-text {

    color: var(--text-light);

    flex-grow: 1;

}



.blog-post-item .read-more-link {

    font-family: var(--font-heading);

    font-weight: 600;

    text-decoration: none;

    color: var(--accent-color);

}



.blog-post-item .read-more-link:hover {

    color: var(--accent-hover-color);

}



.sidebar .sidebar-widget {

    margin-bottom: 40px;

    background: var(--background-light);

    padding: 30px;

    border-radius: 8px;

}



.sidebar .widget-title {

    font-size: 1.5rem;

    margin-bottom: 25px;

    padding-bottom: 15px;

    border-bottom: 2px solid var(--border-color);

}



.sidebar .widget-list {

    list-style: none;

    padding: 0;

}



.sidebar .widget-list li {

    margin-bottom: 15px;

}



.sidebar .widget-list a {

    text-decoration: none;

    color: var(--text-dark);

    transition: color 0.3s ease;

    display: flex;

    justify-content: space-between;

}



.sidebar .widget-list a:hover {

    color: var(--accent-color);

}



.sidebar .widget-list a span {

    background-color: var(--white);

    color: var(--text-light);

    padding: 2px 8px;

    border-radius: 4px;

    font-size: 0.8rem;

}



.widget-list-popular {

    list-style: none;

    padding: 0;

}



.widget-list-popular li {

    margin-bottom: 20px;

}



.widget-list-popular a {

    display: flex;

    align-items: center;

    text-decoration: none;

}



.widget-list-popular a img {

    width: 60px;

    height: 60px;

    object-fit: cover;

    border-radius: 8px;

    margin-right: 15px;

}



.widget-list-popular a h6 {

    font-size: 1rem;

    color: var(--primary-color);

    margin-bottom: 5px;

    line-height: 1.4;

    transition: color 0.3s ease;

}



.widget-list-popular a:hover h6 {

    color: var(--accent-color);

}



.widget-list-popular a span {

    font-size: 0.8rem;

    color: var(--text-light);

}



.blog-post .post-title {

    font-size: 2.5rem;

    font-weight: 800;

}



.blog-post .post-meta {

    margin: 20px 0;

    color: var(--text-light);

    font-size: 0.9rem;

}



.blog-post .post-meta span {

    margin-right: 20px;

}



.blog-post .post-meta a {

    color: var(--accent-color);

    text-decoration: none;

    font-weight: 600;

}



.blog-post .post-content {

    line-height: 1.8;

}



.blog-post .post-content h4 {

    margin-top: 40px;

    margin-bottom: 20px;

}



.blog-post .post-content blockquote {

    border-left: 4px solid var(--accent-color);

    padding-left: 20px;

    margin: 30px 0;

    font-style: italic;

    color: var(--text-light);

}



.post-share {

    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid var(--border-color);

}



.btn-social {

    color: var(--white);

    margin-right: 10px;

    border: none;

}



.btn-twitter {

    background-color: #1DA1F2;

}



.btn-linkedin {

    background-color: #0077B5;

}



.btn-whatsapp {

    background-color: #25D366;

}



@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.fade-in {

    animation: fadeIn 0.6s ease-out forwards;

}



/* SSS Sayfası */

.faq-category-title {

    font-size: 1.8rem;

    padding-bottom: 15px;

    margin-bottom: 25px;

    border-bottom: 2px solid var(--border-color);

}



#faq-search {

    border-left: 0;

}



#faq-search:focus {

    box-shadow: 0 0 0 0.25rem rgba(26, 188, 156, 0.25);

    border-color: var(--accent-color);

}



#search-icon {

    border-right: 0;

}



.accordion-item {

    border: none;

    border-bottom: 1px solid var(--border-color);

    border-radius: 0 !important;

    background-color: transparent;

}



.accordion-header {

    font-family: var(--font-heading);

}



.accordion-button {

    font-weight: 600;

    font-size: 1.1rem;

    padding: 25px 20px;

    color: var(--primary-color);

    background-color: transparent;

}



.accordion-button:not(.collapsed) {

    background-color: rgba(26, 188, 156, 0.05);

    box-shadow: none;

    color: var(--accent-color);

}



.accordion-button:focus {

    box-shadow: none;

    border-color: transparent;

}



.accordion-button::after {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2B4C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}



.accordion-button:not(.collapsed)::after {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231ABC9C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");

}



.accordion-body {

    padding: 0 20px 25px 20px;

    line-height: 1.8;

}



/* İletişim Sayfası */

.contact-info-item {

    display: flex;

    align-items: flex-start;

    margin-bottom: 30px;

}



.alert-animated {

    opacity: 0;
    /* Başlangıçta görünmez */

    transform: translateY(20px);
    /* Başlangıçta biraz aşağıda */

    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    /* Animasyon tanımı */

}



/* Animasyonu tetikleyecek 'show' sınıfı */

.alert-animated.show {

    opacity: 1;
    /* Görünür yap */

    transform: translateY(0);
    /* Orijinal pozisyonuna getir */

}



.contact-info-item .icon-wrapper {

    flex-shrink: 0;

    width: 60px;

    height: 60px;

    background-color: rgba(26, 188, 156, 0.1);

    color: var(--accent-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    margin-right: 25px;

}



.contact-info-item .info-content h5 {

    font-size: 1.25rem;

    margin-bottom: 5px;

    color: var(--primary-color);

}



.contact-info-item .info-content p {

    margin-bottom: 0;

    color: var(--text-light);

    line-height: 1.6;

}



.contact-form-wrapper {

    background-color: var(--white);

    border-radius: 10px;

    box-shadow: var(--shadow-md);

    border-top: 5px solid var(--accent-color);

}



.map-section {

    padding: 0;

    margin: 0;

    line-height: 0;

}





/* =================================================================

   11. YENİDEN TASARLANMIŞ CTA VE FOOTER STİLLERİ

   ================================================================= */

.final-cta-new {

    background: linear-gradient(135deg, var(--primary-color) 0%, #0e3b68 100%);

    color: var(--white);

    padding: 100px 0;

    position: relative;

    overflow: hidden;

}



.final-cta-new::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -20%;

    width: 100%;

    height: 200%;

    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23FFF' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");

    opacity: 0.5;

    transform: rotate(15deg);

    z-index: 0;

}



.final-cta-new .cta-content-wrapper {

    position: relative;

    z-index: 1;

}



.final-cta-new .cta-title {

    color: var(--white);

    font-size: 2.8rem;

    font-weight: 800;

}



.final-cta-new .cta-lead {

    color: rgba(255, 255, 255, 0.85);

    font-size: 1.25rem;

    max-width: 750px;

    margin: 25px auto 40px;

}



.final-cta-new .cta-subtext {

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.9rem;

}



.final-cta-new .cta-subtext i {

    color: var(--accent-color);

}



.pre-footer {

    background-color: var(--background-light);

    padding: 40px 0;

}



.pre-footer h4 {

    font-weight: 700;

    color: var(--primary-color);

}



.pre-footer p {

    color: var(--text-light);

}



.newsletter-form .form-control {

    padding: 0.9rem 1rem;

    border-top-right-radius: 0;

    border-bottom-right-radius: 0;

    border: 1px solid var(--border-color);

}



.newsletter-form .form-control:focus {

    box-shadow: none;

    border-color: var(--accent-color);

}



.newsletter-form .btn {

    border-radius: 50px;

    border-top-left-radius: 0;

    border-bottom-left-radius: 0;

    padding: 0.9rem 1.5rem;

}



.main-footer {

    background-color: var(--primary-color);

    color: rgba(255, 255, 255, 0.7);

}



.footer-widget h5 {

    color: var(--white);

    font-family: var(--font-heading);

    margin-bottom: 25px;

    font-weight: 600;

}



.footer-widget .footer-tagline {

    font-style: italic;

    color: rgba(255, 255, 255, 0.6);

}



.footer-links li {

    margin-bottom: 12px;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: color 0.3s, padding-left 0.3s;

}



.footer-links a:hover {

    color: var(--accent-color);

    padding-left: 5px;

}



.footer-contact-list {

    list-style: none;

    padding: 0;

}



.footer-contact-list li {

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.7);

}



.footer-contact-list i {

    font-size: 1.1rem;

    color: var(--accent-color);

    margin-right: 15px;

    margin-top: 4px;

}



.social-icons a {

    color: rgba(255, 255, 255, 0.6);

    font-size: 1.5rem;

    margin-right: 18px;

    transition: all 0.3s ease;

}



.social-icons a:hover {

    color: var(--white);

    transform: translateY(-3px);

}



.footer-bottom {

    background-color: color-mix(in srgb, var(--primary-color) 80%, #000);

    padding: 25px 0;

    font-size: 0.9rem;

    color: rgba(255, 255, 255, 0.5);

}



.footer-bottom a {

    color: rgba(255, 255, 255, 0.5);

    text-decoration: none;

    transition: color 0.3s ease;

}



.footer-bottom a:hover {

    color: var(--white);

}



.back-to-top {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 40px;

    height: 40px;

    background-color: var(--accent-color);

    color: var(--white);

    border-radius: 50%;

    visibility: hidden;

    opacity: 0;

    transition: all 0.4s ease;

    z-index: 999;

}



.back-to-top.active {

    visibility: visible;

    opacity: 1;

}



.back-to-top:hover {

    background-color: var(--accent-hover-color);

    color: var(--white);

}



.back-to-top i {

    font-size: 24px;

    line-height: 0;

}



/* =================================================================

   13. YENİ SAYFA BAŞLIĞI (PAGE HEADER) STİLLERİ

   ================================================================= */

.page-header-new {

    padding: 120px 0;

    position: relative;

    background-size: cover;

    background-position: center;

    color: var(--white);

}



.page-header-new::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(45deg, rgba(10, 43, 76, 0.9), rgba(10, 43, 76, 0.7));
    /* --primary-color'dan gradyan */

}



.page-header-new .container {

    position: relative;
    /* Overlay'in üzerinde kalması için */

    z-index: 2;

}



.page-header-new .breadcrumb {

    margin-bottom: 1rem;

}



.page-header-new .breadcrumb-item a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: color 0.3s;

}



.page-header-new .breadcrumb-item a:hover {

    color: var(--white);

}



.page-header-new .breadcrumb-item.active {

    color: var(--accent-color);

    font-weight: 500;

}



.page-header-new .breadcrumb-item+.breadcrumb-item::before {

    color: rgba(255, 255, 255, 0.5);

}



.page-header-new .page-title {

    color: var(--white);

    font-size: 3.5rem;

    font-weight: 800;

    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);

}



.page-header-new .page-subtitle {

    font-size: 1.3rem;

    color: rgba(255, 255, 255, 0.9);

    margin-top: 0.5rem;

}



/* =================================================================

   14. LANDING PAGE ÖZEL STİLLERİ

   ================================================================= */

.landing-page-body {
    background-color: var(--white);
}

.landing-header {
    padding: 20px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.landing-header .navbar-brand img {
    max-height: 45px;
}



.landing-hero {
    padding: 100px 0;
    background-color: var(--white);
}

.landing-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.landing-hero .hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 20px 0 30px 0;
}

.feature-list-hero {
    list-style-type: none;
    padding-left: 0;
}

.feature-list-hero li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-list-hero i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 1.2rem;
}



.comparison-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 10px;
}

.comparison-box .comparison-item {
    flex: 1;
    text-align: center;
}

.comparison-box .comparison-arrow i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

@media (max-width: 991.98px) {

    .comparison-box {
        flex-direction: column;
    }

    .comparison-box .comparison-arrow i {
        transform: rotate(90deg);
    }

}



.clients-landing {
    padding: 50px 0;
    background-color: var(--background-light);
}

.clients-landing img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.clients-landing img:hover {
    filter: grayscale(0%);
    opacity: 1;
}



.landing-footer {
    padding: 25px 0;
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}



.solution-card {

    position: relative;

}





/* =================================================================

   12. RESPONSIVE DÜZENLEMELER

   ================================================================= */

@media (max-width: 991.98px) {

    #hero h1 {

        font-size: 3rem;

    }



    .section-title h2 {

        font-size: 2.4rem;

    }



    .process-step::after {

        display: none;

    }



    .role-based-features {

        flex-direction: column;

    }



    .role-based-features .nav-pills {

        flex-direction: row;

        width: 100%;

        overflow-x: auto;

        white-space: nowrap;

        margin-bottom: 20px;

    }



    .role-based-features .nav-pills .nav-link {

        margin-right: 10px;

        margin-bottom: 0;

    }

}



@media (max-width: 767.98px) {

    /* YENİ: Mobil Cihazlar İçin Genel Kenar Boşluğu */

    .container,
    .container-fluid {

        padding-right: 20px;

        padding-left: 20px;

    }



    .section-padding {

        padding: 80px 0;

    }



    #hero {

        padding: 150px 0 80px 0;

    }



    #hero h1 {

        font-size: 2.5rem;

    }



    #hero p.lead {

        font-size: 1.1rem;

    }



    .btn {

        padding: 12px 30px;

    }



    #clients img {

        max-height: 35px;

    }



    .features-section .nav-tabs .nav-link {

        padding: 15px;

        font-size: 0.9rem;

    }



    .timeline {

        border-top: none;

        border-left: 4px solid var(--background-light);

    }



    .timeline-step {

        padding-left: 40px;

    }



    .timeline-dot {

        left: -12px;

        top: 30px;

    }



    .how-it-works-step::after {

        content: '\f128';

        top: auto;

        bottom: -25px;

        left: 50%;

        right: auto;

        transform: translateX(-50%);

    }



    .blog-post-item .post-image {

        min-height: 200px;

        border-bottom-left-radius: 0;

        border-top-right-radius: 8px;

    }

}



@media (min-width: 992px) {

    .dropdown:hover>.dropdown-menu {

        display: block;

    }



    .dropdown-menu {

        margin-top: 0;

    }

}



@media (max-width: 767.98px) {

    .page-header-new {

        padding: 100px 0;

    }



    .page-header-new .page-title {

        font-size: 2.5rem;

    }



    .page-header-new .page-subtitle {

        font-size: 1.1rem;

    }

}

/* =================================================================
   MODERN HERO SECTION
   ================================================================= */
.hero-modern {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--secondary-color);
}

/* CTA Butonları */
.btn-cta-primary {
    background: var(--gradient-cta);
    border: none;
    color: var(--white);
    padding: 16px 32px;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    transition: all var(--transition-base);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
    color: var(--white);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 14px 30px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Güven Göstergeleri */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

/* Sosyal Kanıt Bar */
.social-proof-bar {
    background: var(--background-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.proof-label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.proof-logo-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.proof-logo-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-sm);
}

/* Responsive Hero */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .hero-modern {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        text-align: center;
    }
}

/* =================================================================
   PREMIUM ANASAYFA STİLLERİ - V2.0
   ================================================================= */

/* --- HERO PARÇACIK ANİMASYONLARI --- */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.6);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 14s;
    background: rgba(139, 92, 246, 0.5);
}

.particle:nth-child(3) {
    left: 35%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(4) {
    left: 50%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 13s;
    background: rgba(168, 85, 247, 0.4);
}

.particle:nth-child(5) {
    left: 65%;
    top: 25%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    left: 75%;
    top: 55%;
    animation-delay: 5s;
    animation-duration: 11s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(7) {
    left: 85%;
    top: 35%;
    animation-delay: 2.5s;
    animation-duration: 17s;
    background: rgba(99, 102, 241, 0.7);
}

.particle:nth-child(8) {
    left: 90%;
    top: 80%;
    animation-delay: 0.5s;
    animation-duration: 14s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.8;
    }

    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.9;
    }
}

/* Glow Ring Effect */
.hero-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transform: translate(-50%, -50%);
    animation: pulseRing 4s infinite ease-in-out;
    pointer-events: none;
}

.hero-glow-ring:nth-child(2) {
    width: 800px;
    height: 800px;
    animation-delay: 1s;
    border-color: rgba(139, 92, 246, 0.08);
}

.hero-glow-ring:nth-child(3) {
    width: 1000px;
    height: 1000px;
    animation-delay: 2s;
    border-color: rgba(168, 85, 247, 0.05);
}

@keyframes pulseRing {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.6;
    }
}

/* Premium Hero Title */
.hero-title-premium {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title-premium .highlight {
    background: linear-gradient(135deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Premium Badge */
.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #c7d2fe;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: glowPulse 2s infinite ease-in-out;
}

.badge-glow i {
    color: #fbbf24;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
    }
}

/* --- SONSUZ MARQUEE --- */
.marquee-section {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--white) 100%);
    padding: 30px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--background-light) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--background-light) 100%);
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.marquee-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.marquee-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.marquee-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- 3D PROBLEM KARTLARI --- */
.problem-card-3d {
    perspective: 1000px;
}

.problem-card-3d .card-inner {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.problem-card-3d .card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #f97316, #fb923c, #fdba74);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card-3d:hover .card-inner {
    transform: rotateY(-5deg) rotateX(5deg) translateY(-10px);
    box-shadow: 20px 20px 60px rgba(249, 115, 22, 0.15), 0 0 40px rgba(249, 115, 22, 0.1);
}

.problem-card-3d:hover .card-inner::before {
    opacity: 1;
}

.problem-card-3d .icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-radius: 20px;
    margin: 0 auto 24px;
    position: relative;
}

.problem-card-3d .icon-wrapper i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.problem-card-3d:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fb923c 100%);
    animation: iconPulse 1s ease;
}

.problem-card-3d:hover .icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* --- BENTO GRID ÇÖZÜMLER --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.bento-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.bento-card:hover::before {
    top: 100%;
    left: 100%;
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15);
    border-color: var(--accent-color);
}

.bento-card .card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.bento-card .card-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.bento-card:hover .card-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(-5deg);
}

.bento-card:hover .card-icon i {
    color: white;
}

.bento-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.bento-card .card-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.bento-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--accent-color);
    color: white;
}

@media (max-width: 1199.98px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* --- TIMELINE SÜREÇ ADIMLARI --- */
.timeline-section {
    position: relative;
    padding: 100px 0;
}

.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--border-color) 0%, var(--accent-color) 50%, var(--border-color) 100%);
    border-radius: 2px;
    z-index: 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.timeline-dot {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--white);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    animation: rotateDash 20s linear infinite;
}

@keyframes rotateDash {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.timeline-step:hover .timeline-dot {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
    border-color: transparent;
}

.timeline-step h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- GLASSMORPHİSM İSTATİSTİKLER --- */
.stats-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat-card-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stat-card-glass .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-card-glass .stat-suffix {
    font-size: 2rem;
    font-weight: 700;
}

.stat-card-glass .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* --- MODERN SSS ACCORDION --- */
.faq-premium {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--white) 100%);
}

.faq-item-premium {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
}

.faq-item-premium .accordion-button {
    background: transparent;
    font-weight: 600;
    color: var(--primary-color);
    padding: 24px 28px;
    font-size: 1.05rem;
    box-shadow: none;
    border: none;
}

.faq-item-premium .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    color: var(--accent-color);
}

.faq-item-premium .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: all 0.3s ease;
    width: auto;
    height: auto;
}

.faq-item-premium .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.faq-item-premium .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* --- RESPONSIVE DÜZENLEMELER --- */
@media (max-width: 991.98px) {
    .hero-title-premium {
        font-size: 2.75rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-dot {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }

    .stat-card-glass .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title-premium {
        font-size: 2rem;
    }

    .badge-glow {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .marquee-section {
        padding: 20px 0;
    }

    .bento-card {
        padding: 24px;
    }

    .timeline-dot {
        width: 70px;
        height: 70px;
    }

    .stat-card-glass {
        padding: 30px 20px;
    }

    .stat-card-glass .stat-number {
        font-size: 2rem;
    }
}

/* =================================================================
   KURUMSAL PREMIUM TASARIM STİLLERİ - V3.0
   ================================================================= */

/* --- HERO PREMIUM --- */
.hero-premium {
    min-height: 100vh;
    background: linear-gradient(165deg, #1a365d 0%, #234876 50%, #1a365d 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-subtitle-premium {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Premium Buttons */
.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    color: #fff;
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge-item i {
    color: #818cf8;
    font-size: 1.1rem;
}

/* --- SOCIAL PROOF PREMIUM --- */
.social-proof-premium {
    background: var(--background-light);
    padding: 40px 0 30px;
    border-bottom: 1px solid var(--border-color);
}

.proof-heading {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
}

/* --- SECTION CORPORATE --- */
.section-corporate {
    padding: 100px 0;
    background: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: #c7d2fe;
}

.section-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* --- PROBLEM CARDS CORPORATE --- */
.problem-card-corporate {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-card-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.problem-card-corporate:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.problem-card-corporate:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 24px;
}

.problem-icon i {
    font-size: 2rem;
    color: #f97316;
}

.problem-card-corporate h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.problem-card-corporate p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.problem-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.problem-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f97316;
}

.problem-stat .stat-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.section-solutions {
    padding: 100px 0;
    background: linear-gradient(165deg, #1a365d 0%, #234876 100%);
    position: relative;
}

.section-solutions::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.solution-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.5);
}

.solution-card-featured {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
}

.solution-card-featured .card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 28px;
}

.card-icon-wrapper i {
    font-size: 1.5rem;
    color: #818cf8;
}

.solution-card-featured .card-icon-wrapper i {
    font-size: 2rem;
}

.solution-card-premium h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.solution-card-featured h4 {
    font-size: 1.75rem;
}

.solution-card-premium p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.card-features span i {
    color: #34d399;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #818cf8;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.solution-card-premium:hover .card-link {
    color: #c7d2fe;
}

.solution-card-premium:hover .card-link i {
    transform: translateX(4px);
}

.card-link i {
    transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-card-featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 767.98px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-featured {
        grid-column: span 1;
    }
}

/* --- TIMELINE PREMIUM --- */
.timeline-premium {
    position: relative;
    padding-top: 40px;
}

.timeline-line-track {
    position: absolute;
    top: 100px;
    left: 16.67%;
    right: 16.67%;
    height: 4px;
    background: linear-gradient(90deg, var(--border-color), var(--accent-color), var(--border-color));
    border-radius: 2px;
    z-index: 0;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    background: var(--white);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-number::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    animation: rotateDash 20s linear infinite;
}

.timeline-item:hover .timeline-number {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}

.timeline-item h5 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .timeline-line-track {
        display: none;
    }

    .timeline-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
}

/* --- NAV TABS PREMIUM (GLASSMORPHISM) --- */
.nav-tabs-premium {
    border: none;
    background: #fff;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-tabs-premium .nav-link {
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-weight: 600;
    color: #64748b;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
}

.nav-tabs-premium .nav-link i {
    color: #818cf8;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.nav-tabs-premium .nav-link:hover {
    color: #1e293b;
    background: rgba(99, 102, 241, 0.08);
}

.nav-tabs-premium .nav-link:hover i {
    color: #6366f1;
}

.nav-tabs-premium .nav-link.active {
    background: rgba(99, 102, 241, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #4f46e5;
    border: 1px solid rgba(99, 102, 241, 0.25);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

.nav-tabs-premium .nav-link.active i {
    color: #6366f1;
}

.tab-content-premium {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.tab-content-premium h4 {
    font-weight: 700;
    color: var(--primary-color);
}

.tab-content-premium .feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.tab-content-premium .feature-list-item i {
    color: #34d399;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* --- STATS SECTION PREMIUM --- */
.stats-section-premium {
    background: linear-gradient(165deg, #1a365d 0%, #234876 50%, #1a365d 100%);
    padding: 100px 0;
    position: relative;
}

.stats-section-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-card-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat-card-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.stat-value {
    margin-bottom: 12px;
}

.stat-card-premium .rs-count,
.stat-value span:first-child {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-card-premium .stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-premium .stat-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-card-premium .stat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 767.98px) {

    .stat-card-premium .rs-count,
    .stat-value span:first-child {
        font-size: 2.5rem;
    }

    .stat-card-premium .stat-suffix {
        font-size: 1.5rem;
    }
}

/* --- ACCORDION PREMIUM --- */
.accordion-premium .accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-premium .accordion-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
}

.accordion-premium .accordion-button {
    background: transparent;
    font-weight: 600;
    color: var(--primary-color);
    padding: 24px 28px;
    font-size: 1.05rem;
    box-shadow: none !important;
    border-radius: 16px !important;
}

.accordion-premium .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    color: var(--accent-color);
}

.accordion-premium .accordion-button i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.accordion-premium .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.accordion-premium .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.accordion-premium .accordion-body {
    padding: 0 28px 24px;
    padding-left: 56px;
    color: var(--text-light);
    line-height: 1.8;
}

/* --- RESPONSIVE UPDATES --- */
@media (max-width: 991.98px) {
    .hero-premium {
        padding: 120px 0 80px;
    }

    .hero-title-premium {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2.25rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-premium-outline {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .hero-premium {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title-premium {
        font-size: 2rem;
    }

    .hero-subtitle-premium {
        font-size: 1rem;
    }

    .section-corporate {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .hero-trust-badges {
        gap: 16px;
    }

    .trust-badge-item {
        font-size: 0.8rem;
    }

    .timeline-number {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
    }

    .tab-content-premium {
        padding: 32px 24px;
    }

    .nav-tabs-premium {
        flex-wrap: wrap;
    }

    .nav-tabs-premium .nav-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* --- ULTRA PREMIUM CTA SECTION --- */
.cta-section-ultra {
    background: linear-gradient(165deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Glow Orbs */
.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: ctaGlowFloat 8s ease-in-out infinite;
}

.cta-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.cta-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation-delay: -4s;
}

@keyframes ctaGlowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* Grid Background */
.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.cta-wrapper-ultra {
    position: relative;
    z-index: 1;
}

/* Left Content */
.cta-content-ultra {
    padding-right: 40px;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: ctaDotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

@keyframes ctaDotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.cta-eyebrow span {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-heading-ultra {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-heading-gradient {
    display: block;
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text-ultra {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-features-ultra {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-feature-item i {
    color: #818cf8;
    font-size: 1.1rem;
}

/* Right Card */
.cta-card-ultra {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
}

.cta-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(99, 102, 241, 0.15) 60deg, transparent 120deg);
    animation: ctaCardGlowRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes ctaCardGlowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
}

.cta-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.cta-card-content h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-card-content>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.btn-cta-ultra-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
    margin-bottom: 12px;
}

.btn-cta-ultra-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    color: #fff;
}

.btn-cta-ultra-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-ultra-primary:hover i {
    transform: translateX(4px);
}

.btn-cta-ultra-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-ultra-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-card-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.cta-card-trust i {
    color: #22c55e;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-content-ultra {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .cta-heading-ultra {
        font-size: 2.5rem;
    }

    .cta-text-ultra {
        max-width: 100%;
    }

    .cta-features-ultra {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-section-ultra {
        padding: 80px 0;
    }

    .cta-heading-ultra {
        font-size: 2rem;
    }

    .cta-features-ultra {
        flex-direction: column;
        gap: 16px;
    }

    .cta-card-ultra {
        padding: 30px 24px;
    }
}

.cta-section-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.cta-content-premium {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #c7d2fe;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.cta-badge i {
    color: #818cf8;
}

.cta-title-premium {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-title-premium span {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-premium::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 ease;
}

.btn-cta-premium:hover::before {
    left: 100%;
}

.btn-cta-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
    color: #fff;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-4px);
}

.cta-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cta-trust-item i {
    color: #34d399;
}

@media (max-width: 767.98px) {
    .cta-title-premium {
        font-size: 2rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .btn-cta-premium,
    .btn-cta-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .cta-trust-row {
        gap: 20px;
    }
}

/* --- TOOLS SECTION PREMIUM --- */
.section-tools-premium {
    padding: 100px 0;
    background: linear-gradient(165deg, #1a365d 0%, #2a4a7a 50%, #1a365d 100%);
    position: relative;
}

.section-tools-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.tool-card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tool-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
}

.tool-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
}

.tool-icon i {
    font-size: 1.5rem;
}

.tool-card-premium h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tool-card-premium p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tool-features span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

.tool-features span i {
    color: #34d399;
    font-size: 0.7rem;
}

.tool-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #a5b4fc;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.tool-action:hover {
    background: rgba(99, 102, 241, 0.3);
    color: #fff;
}

.tool-action i {
    transition: transform 0.3s ease;
}

.tool-action:hover i {
    transform: translateX(4px);
}

.btn-tools-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tools-all:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .tool-card-premium {
        padding: 24px;
    }
}

/* --- PREMIUM FOOTER --- */
.main-footer {
    background: linear-gradient(165deg, #1a365d 0%, #234876 100%);
    padding-top: 60px !important;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}

.main-footer .footer-widget h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-footer .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.main-footer .footer-links li {
    margin-bottom: 12px;
}

.main-footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.main-footer .footer-links a:hover {
    color: #818cf8;
    transform: translateX(4px);
}

.main-footer .footer-contact-list li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.main-footer .footer-contact-list i {
    color: #818cf8;
    margin-right: 12px;
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #818cf8;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-3px);
}

/* =================================================================
   5. MODERN SAYFA BAŞLIĞI VE BREADCRUMB (SİTE TEMALI)
   ================================================================= */

.page-header {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4f46e5 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    margin-top: 4.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(31, 27, 75, 0.15);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.page-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.page-nav .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.page-nav .current {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.page-icon {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
}

.page-icon i {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.08);
}

/* Premium Navbar (Glassmorphism) */
.navbar-premium {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
}

.navbar.scrolled.navbar-premium {
    background: rgba(255, 255, 255, 0.95) !important;
}

/* =================================================================
   6. FİYATLANDIRMA KARTLARI (PRICING CARDS)
   ================================================================= */

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-color);
}

.pricing-card.highlight {
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.pricing-card .card-header {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    border: none;
}

.pricing-card .card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 1rem 0 0.25rem;
}

.pricing-card .price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-card .card-body {
    padding: 0;
    flex-grow: 1;
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-card .feature-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

.pricing-card .card-footer {
    background: transparent;
    padding: 0;
    margin-top: 2rem;
    border: none;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Custom Project CTA Area */
.custom-project-cta {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 30px;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31, 27, 75, 0.2);
}

.custom-project-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* =================================================================
   DERGİ YÖNETİM SİSTEMİ ÖZEL STİLLERİ
   ================================================================= */

/* Premium Nav Pills (Sidebar Tabs) */
.nav-pills-premium .nav-link {
    background-color: #fff;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-pills-premium .nav-link:hover {
    background-color: #f8fafc;
    transform: translateX(5px);
}

.nav-pills-premium .nav-link.active {
    background-color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.15), 0 8px 10px -6px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-pills-premium .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.nav-pills-premium .nav-link.active .icon-box {
    background: var(--gradient-primary) !important;
    color: #fff !important;
}

/* Feature & Icon Boxes */
.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Ultra CTA Card */
.cta-card-ultra {
    position: relative;
    z-index: 1;
}

.cta-glow-orb {
    pointer-events: none;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =================================================================
   BOOTSTRAP OVERRIDES & UTILITIES
   ================================================================= */

/* Text Colors */
.text-primary {
    color: var(--accent-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-dark {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Background Colors */
.bg-primary {
    background-color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-dark {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--background-light) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--accent-hover-color) !important;
    border-color: var(--accent-hover-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.btn-outline-primary {
    color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Badges */
.badge.bg-primary {
    background-color: var(--accent-color) !important;
}

/* Borders */
.border-primary {
    border-color: var(--accent-color) !important;
}

/* Custom Opacities for Utility Use */
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

/* FIXED FEATURE ICONS (Perfect Circle) */
.feature-icon-circle {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

/* Icon Color Variants */
.feature-icon-primary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
}

.feature-icon-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.feature-icon-info {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.feature-icon-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.feature-icon-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.feature-icon-secondary {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

/* Hover Effect for Icons */
.hover-lift:hover .feature-icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.advanced-feature-card .feature-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* =================================================================
   PREMIUM TESTIMONIALS & CTA
   ================================================================= */

/* Modern Testimonial Card */
.testimonial-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.quote-icon-large {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author-box {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced CTA Section */
.cta-pattern-overlay {
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

.cta-glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
    animation: ctaPulse 5s infinite alternate;
}

@keyframes ctaPulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.backdrop-blur-md {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}