/* ========================================
   Menüme Bak - Modern CSS Stylesheet
   SEO Optimized | Responsive Design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-blue: #2196F3;
    --dark-blue: #1565C0;
    --light-blue: #42A5F5;
    --very-dark-blue: #0D47A1;
    --dark-gray: #212121;
    --light-gray: #FAFAFA;
    --white: #FFFFFF;
    --text-gray: #666666;
    --border-gray: #E0E0E0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 4px 12px rgba(33, 150, 243, 0.3);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 40px 0;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* Section Styles */
section {
    padding: var(--section-padding-mobile);
}

@media (min-width: 768px) {
    section {
        padding: var(--section-padding);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 60px;
    }
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 40px;
    }
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 18px;
    }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

@media (min-width: 768px) {
    .navbar {
        padding: 20px 0;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
}

@media (min-width: 768px) {
    .logo img {
        width: 60px;
        height: 60px;
    }
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    display: none;
}

@media (min-width: 768px) {
    .logo-text {
        display: block;
        font-size: 28px;
    }
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    background: rgba(33, 150, 243, 0.1);
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

/* Mobile Menu Toggle - Hidden since menu is always visible */
.navbar-toggle {
    display: none;
}

/* Mobile Menu - Always Visible with Horizontal Tabs */
@media (max-width: 1023px) {
    .navbar {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .navbar-menu {
        width: 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    /* Horizontal Tab Navigation */
    .nav-links {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        border-bottom: 2px solid var(--border-gray);
    }
    
    .nav-links::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .nav-link {
        flex: 0 0 auto;
        min-width: fit-content;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 0;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        border-bottom-color: var(--primary-blue);
        color: var(--primary-blue);
    }
    
    .nav-buttons {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 8px;
    }
    
    .nav-buttons .btn {
        flex: 1;
        font-size: 13px;
        padding: 10px 12px;
        white-space: nowrap;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    background: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-blue);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-height: 700px;
        padding: 80px 0;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--very-dark-blue) 0%, var(--dark-blue) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(66, 165, 245, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 32px;
}

.hero-badge img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .hero-badge img {
        width: 80px;
        height: 80px;
    }
}

.hero-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .hero-brand {
        font-size: 36px;
    }
}

.hero-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 16px;
    }
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
        margin-bottom: 20px;
    }
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 32px;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .hero-cta {
        margin-bottom: 60px;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 60px;
        padding-top: 32px;
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 40px;
    }
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 15px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 48px;
    }
}

.about-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-gray);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .about-card {
        padding: 28px;
    }
}

.about-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-primary);
    transform: translateY(-4px);
}

.about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.about-icon svg {
    stroke: var(--white);
    stroke-width: 2;
}

.about-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

@media (min-width: 768px) {
    .about-title {
        font-size: 21px;
    }
}

.about-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .about-description {
        font-size: 15px;
    }
}

.trust-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

@media (min-width: 768px) {
    .trust-badge {
        padding: 48px;
    }
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 20px;
}

.trust-icon svg {
    stroke: var(--white);
    stroke-width: 2;
}

.trust-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .trust-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
}

.trust-description {
    font-size: 15px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .trust-description {
        font-size: 17px;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    gap: 16px;
}

.feature-card:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: var(--radius-md);
}

.feature-icon svg {
    stroke: var(--white);
    stroke-width: 2;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 18px;
    }
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ========================================
   WHY SECTION
   ======================================== */

.why-section {
    background: #ffffff;
    padding: 80px 0;
}

.why-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-section .section-title {
    color: #212121;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

.why-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #2196F3;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #212121;
}

.why-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--very-dark-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 100px 0;
    }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 48px;
        margin-bottom: 20px;
    }
}

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
}

.footer-brand-text {
    font-size: 24px;
    font-weight: 700;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 300px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact li {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-blue);
}

.bg-light {
    background: var(--light-gray);
}

.bg-white {
    background: var(--white);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ========================================
   GALLERY SLIDER
   ======================================== */

.slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.slider-track {
    display: flex;
    will-change: transform;
    transition: transform 500ms ease;
}

.slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 12px;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.slide-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 12px;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.15);
    color: var(--dark-blue);
    display: grid;
    place-items: center;
    border: 2px solid rgba(33, 150, 243, 0.3);
    transition: var(--transition-fast);
    z-index: 2;
}

.slider-control:hover {
    background: rgba(33, 150, 243, 0.25);
}

.slider-control.prev { left: 12px; }
.slider-control.next { right: 12px; }

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 12px 0 16px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D6EAFB;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.is-active {
    background: var(--primary-blue);
}

@media (min-width: 768px) {
    .slide { padding: 16px; }
    .slider-control { width: 48px; height: 48px; }
    .slide-caption { font-size: 15px; }
}

/* ========================================
   Customer Features Section
   ======================================== */
.customer-features-section {
    background: #ffffff;
    padding: 80px 0;
}

.customer-features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.customer-features-section .section-title {
    color: #212121;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.customer-features-section .section-subtitle {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
}

.customer-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .customer-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .customer-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.customer-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.customer-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #2196F3;
}

.customer-feature-icon {
    width: 64px;
    height: 64px;
    background: #2196F3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.customer-feature-card:hover .customer-feature-icon {
    transform: scale(1.05);
}

.customer-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    margin: 0;
    line-height: 1.4;
}

.customer-feature-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.customer-feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding-left: 0;
}

.customer-feature-list li {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.customer-feature-list li::before {
    content: '✓';
    color: #2196F3;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* ========================================
   Business Features Section
   ======================================== */
.business-features-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.business-features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.business-features-section .section-title {
    color: #212121;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.business-features-section .section-subtitle {
    color: #666666;
    font-size: 16px;
    font-weight: 400;
}

.business-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .business-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .business-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.business-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.business-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #2196F3;
}

.business-feature-icon {
    width: 64px;
    height: 64px;
    background: #2196F3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.business-feature-card:hover .business-feature-icon {
    transform: scale(1.05);
}

.business-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    margin: 0;
}

.business-feature-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   About Section Enhancements
   ======================================== */
.about-section {
    background: var(--white);
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.about-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.about-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.trust-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.trust-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.trust-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {
    .trust-title {
        font-size: 26px;
    }
    
    .trust-description {
        font-size: 16px;
    }
}