/* ============================================
   Inner Page Styles - S1 Yazılımı vb.
   ============================================ */

/* Header Hide/Show Animation */
.header {
    transition: transform 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-hidden .mega-menu {
    display: none;
}

/* Inner Hero Section */
.inner-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 50%, #0d1f3c 100%);
    color: white;
    overflow: hidden;
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.inner-hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.inner-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .inner-hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .current {
    color: #10b981;
}

.inner-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
}

@media (min-width: 768px) {
    .inner-hero-title {
        font-size: 3.5rem;
    }
}

.title-main {
    display: block;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #34d399, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-sub {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.inner-hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.inner-hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.inner-hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .inner-hero-visual {
        display: block;
    }
}

.dashboard-preview {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dashboard-preview img {
    width: 100%;
    border-radius: 12px;
}

/* Dashboard Mock UI */
.dashboard-mock {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.mock-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #f59e0b; }
.mock-dots span:nth-child(3) { background: #22c55e; }

.mock-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin-left: auto;
}

.mock-content {
    padding: 20px;
}

.mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.mock-stat {
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    padding: 14px;
    border-radius: 10px;
    text-align: center;
}

.mock-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0056D2;
}

.mock-stat-label {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-chart {
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 86, 210, 0.1) 0%, transparent 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mock-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 86, 210, 0.3) 20%, 
        rgba(16, 185, 129, 0.4) 40%,
        rgba(0, 86, 210, 0.3) 60%,
        rgba(16, 185, 129, 0.5) 80%,
        transparent 100%);
    clip-path: polygon(0 100%, 5% 70%, 15% 80%, 25% 40%, 35% 60%, 45% 30%, 55% 50%, 65% 20%, 75% 40%, 85% 10%, 95% 30%, 100% 50%, 100% 100%);
}

.mock-modules {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.mock-module {
    flex: 1;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.7rem;
    color: #475569;
    font-weight: 600;
}

.mock-module.active {
    background: linear-gradient(135deg, #0056D2, #0ea5e9);
    color: white;
}

/* Page Tabs - Sticky Navigation - Below Header */
.page-tabs {
    position: sticky;
    top: 80px; /* Header height */
    z-index: 99; /* Below header (header is z-index: 100) */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: top 0.3s ease;
}

/* When header is hidden on scroll down */
.header-hidden + main .page-tabs,
.header-hidden ~ main .page-tabs {
    top: 0;
}

.tabs-wrapper {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-item {
    padding: 16px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-item:hover {
    color: #0f172a;
}

.tab-item.active {
    color: #0056D2;
    border-bottom-color: #0056D2;
}

/* Content Layout */
.inner-content {
    background: #f8fafc;
}

.content-section {
    padding: var(--spacing-2xl) 0;
}

/* Overview Section */
.overview-section {
    background: white;
    padding: var(--spacing-3xl) 0;
}

.section-desc-large {
    font-size: 1.15rem;
    color: #1e293b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
    .overview-features {
        grid-template-columns: 1fr;
    }
}

.overview-feature {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.overview-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #0056D2;
}

.overview-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0056D2, #0ea5e9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto var(--spacing-md);
}

.overview-feature h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.overview-feature p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #0f172a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: var(--spacing-md);
}

/* Section Headers - Inner Page Override */
.section-header-center {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header-center .section-badge {
    background: linear-gradient(135deg, rgba(0, 86, 210, 0.1), rgba(14, 165, 233, 0.1));
    color: #0056D2;
    border: 1px solid rgba(0, 86, 210, 0.2);
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

/* Override section-title-large for light backgrounds */
.inner-content .section-title-large {
    color: #0f172a !important;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .inner-content .section-title-large {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .inner-content .section-title-large {
        font-size: 2.75rem;
    }
}

.section-desc {
    font-size: 1.05rem;
    color: #475569;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modules Section - Categorized */
.modules-section {
    background: white;
    padding: var(--spacing-3xl) 0;
}

/* Module Category */
.module-category {
    margin-bottom: 32px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.module-category:last-child {
    margin-bottom: 0;
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Category Color Themes */
.category-security .category-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.category-hr .category-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.category-building .category-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.category-system .category-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.category-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.category-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Category Modules Grid */
.category-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Module Chip (Clickable) */
.module-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.module-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #0056D2;
}

.module-chip:focus {
    border-color: #0056D2;
    box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.15);
}

.module-chip:active {
    transform: translateY(0);
}

.module-icon-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon-sm svg {
    width: 20px;
    height: 20px;
    color: white;
}

.module-card-sm span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

/* Icon Colors */
.module-icon-sm.module-icon-blue { 
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.module-icon-sm.module-icon-green { 
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.module-icon-sm.module-icon-orange { 
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.module-icon-sm.module-icon-red { 
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.module-icon-sm.module-icon-purple { 
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.module-icon-sm.module-icon-cyan { 
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.module-icon-sm.module-icon-yellow { 
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.module-icon-sm.module-icon-teal { 
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.module-icon-sm.module-icon-pink { 
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.module-icon-sm.module-icon-amber { 
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.module-icon-sm.module-icon-lime { 
    background: linear-gradient(135deg, #84cc16, #65a30d);
}

.module-icon-sm.module-icon-indigo { 
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.module-icon-sm.module-icon-slate { 
    background: linear-gradient(135deg, #64748b, #475569);
}

.module-icon-sm.module-icon-rose { 
    background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.module-icon-sm.module-icon-emerald { 
    background: linear-gradient(135deg, #10b981, #059669);
}

.module-icon-sm.module-icon-sky { 
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .category-modules {
        justify-content: center;
    }
    
    .module-chip {
        flex: 1 1 calc(50% - 6px);
        min-width: 140px;
    }
}

/* ============================================
   Module Detail Modal
   ============================================ */
.module-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.module-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.module-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.modal-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: #f1f5f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #e2e8f0;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: #64748b;
}

/* Modal Tabs */
.modal-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    scrollbar-width: none;
}

.modal-tabs::-webkit-scrollbar {
    display: none;
}

.modal-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.modal-tab:hover {
    border-color: #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modal-tab.active {
    background: linear-gradient(135deg, #0056D2, #0ea5e9);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 86, 210, 0.3);
}

.modal-tab .tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-tab .tab-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

/* Tab icon colors - inherit from icon class */
.modal-tab .tab-icon.module-icon-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.modal-tab .tab-icon.module-icon-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.modal-tab .tab-icon.module-icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.modal-tab .tab-icon.module-icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.modal-tab .tab-icon.module-icon-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.modal-tab .tab-icon.module-icon-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.modal-tab .tab-icon.module-icon-yellow { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.modal-tab .tab-icon.module-icon-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.modal-tab .tab-icon.module-icon-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.modal-tab .tab-icon.module-icon-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.modal-tab .tab-icon.module-icon-lime { background: linear-gradient(135deg, #84cc16, #65a30d); }
.modal-tab .tab-icon.module-icon-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.modal-tab .tab-icon.module-icon-slate { background: linear-gradient(135deg, #64748b, #475569); }
.modal-tab .tab-icon.module-icon-rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.modal-tab .tab-icon.module-icon-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.modal-tab .tab-icon.module-icon-sky { background: linear-gradient(135deg, #0ea5e9, #0284c7); }

.modal-tab.active .tab-icon {
    opacity: 0.9;
}

.modal-tab:not(.active):hover .tab-icon {
    transform: scale(1.05);
    transition: transform 0.2s;
}

.modal-tab span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Modal Content */
.modal-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.module-detail {
    animation: fadeIn 0.3s ease;
}

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

.module-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.module-detail-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-detail-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.module-detail-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.module-detail-info p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Features List */
.module-features {
    margin-top: 24px;
}

.module-features h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    color: #475569;
}

/* Brands Section in Modal */
.module-brands {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.module-brands h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brand-tag {
    padding: 8px 14px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
}

/* Modal CTA */
.module-cta {
    margin-top: 24px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.module-cta p {
    font-size: 0.95rem;
    color: #0369a1;
    margin: 0;
}

.module-cta .btn {
    white-space: nowrap;
}

/* Why S1 Section */
.why-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s;
}

.why-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 86, 210, 0.08);
    line-height: 1;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 86, 210, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056D2;
    margin-bottom: var(--spacing-md);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: var(--spacing-sm);
}

.why-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 100%);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.benefit-security .benefit-icon { background: linear-gradient(135deg, #10b981, #059669); }
.benefit-efficiency .benefit-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.benefit-cost .benefit-icon { background: linear-gradient(135deg, #f97316, #ea580c); }
.benefit-ease .benefit-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.benefit-stat {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Integrations Section */
.integrations-section {
    background: white;
}

.integration-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .integration-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .integration-logos {
        grid-template-columns: repeat(6, 1fr);
    }
}

.logo-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.logo-item:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.logo-item img {
    max-width: 80%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s;
}

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

.integration-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
}

.integration-cta p {
    color: #64748b;
    margin-bottom: var(--spacing-md);
}

/* System Diagram V2 - Realistic Architecture */
.diagram-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--spacing-3xl) 0;
}

.system-diagram-v2 {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow-x: auto;
}

/* Servers Row */
.diagram-servers {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.server-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.server-icon {
    width: 64px;
    height: 80px;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
}

.server-icon::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.server-icon svg {
    width: 28px;
    height: 28px;
}

.server-node span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.server-node.server-main .server-icon {
    background: linear-gradient(180deg, #22d3ee 0%, #06b6d4 50%, #0891b2 100%);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.server-node.server-main span {
    color: #0891b2;
    font-weight: 700;
}

/* Connection Lines */
.diagram-connection-group {
    padding: 10px 0;
}

.vertical-lines {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.vertical-lines span {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #94a3b8, #64748b);
    border-radius: 1px;
}

.horizontal-bus {
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #64748b 10%, #64748b 90%, transparent 100%);
    margin: 15px auto;
    border-radius: 2px;
    position: relative;
}

.horizontal-bus::before,
.horizontal-bus::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #64748b;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.horizontal-bus::before { left: 10%; }
.horizontal-bus::after { right: 10%; }

/* Network Layer */
.diagram-network-layer {
    display: grid;
    grid-template-columns: 120px 1fr 180px;
    gap: 30px;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
}

/* Protocols Panel */
.protocols-panel {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.protocol-item {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.protocol-item img {
    max-width: 80px;
    max-height: 24px;
    object-fit: contain;
}

.protocol-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0056D2;
}
/* Protocol Colors */
.protocol-item:nth-child(1) .protocol-text {
    color: #0056D2;
}
/* BACnet - Blue */
.protocol-item:nth-child(2) .protocol-text {
    color: #F59E0B;
}
/* Modbus - Yellow/Orange */
.protocol-item:nth-child(3) .protocol-text {
    color: #10B981;
}
/* OPC - Green */
.protocol-item:nth-child(4) .protocol-text {
    color: #3B82F6;
}
/* Web API - Blue */

.protocol-item:nth-child(1) {
    border-left: 3px solid #0056D2;
}

.protocol-item:nth-child(2) {
    border-left: 3px solid #F59E0B;
}

.protocol-item:nth-child(3) {
    border-left: 3px solid #10B981;
}

.protocol-item:nth-child(4) {
    border-left: 3px solid #3B82F6;
}

/* Network Switch */
.network-switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.switch-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.switch-box {
    width: 200px;
    height: 40px;
    background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.switch-ports {
    display: flex;
    gap: 6px;
}

.switch-ports span {
    width: 16px;
    height: 12px;
    background: #475569;
    border-radius: 2px;
    border: 1px solid #64748b;
}

.switch-leds {
    display: flex;
    gap: 4px;
}

.led {
    width: 6px;
    height: 6px;
    background: #475569;
    border-radius: 50%;
}

.led.active {
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

/* Clients Panel */
.clients-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.client-device {
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
}

.client-icon svg {
    width: 24px;
    height: 24px;
}

.client-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.s1-badge {
    background: linear-gradient(135deg, #0056D2, #0ea5e9);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.s1-badge-sm {
    background: linear-gradient(135deg, #0056D2, #0ea5e9);
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}

.client-label span:last-child {
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
}

/* Controller Panels Row */
.diagram-panels {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.panel-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.panel-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    min-width: 70px;
    transition: all 0.3s;
}

.panel-node:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.panel-node.panel-main {
    background: linear-gradient(145deg, #dbeafe, #eff6ff);
    border-color: #93c5fd;
}

.panel-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
}

.panel-icon svg {
    width: 28px;
    height: 28px;
}

.panel-node span {
    font-size: 0.65rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

/* Sub Devices */
.sub-devices {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 140px;
    border-left: 2px dashed #cbd5e1;
    border-bottom: 2px dashed #cbd5e1;
    border-right: 2px dashed #cbd5e1;
    border-radius: 0 0 8px 8px;
    padding: 8px;
    position: relative;
}

.sub-devices::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background: #cbd5e1;
}

.sub-devices-large {
    max-width: 200px;
}

.sub-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    min-width: 50px;
    transition: all 0.2s;
}

.sub-device:hover {
    border-color: #0056D2;
    box-shadow: 0 2px 8px rgba(0, 86, 210, 0.15);
}

.sub-device svg {
    width: 20px;
    height: 20px;
    color: #64748b;
}

.sub-device span {
    font-size: 0.55rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 1024px) {
    .diagram-network-layer {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .protocols-panel {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .clients-panel {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .diagram-panels {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .diagram-servers {
        gap: 15px;
    }
    
    .server-icon {
        width: 50px;
        height: 65px;
    }
    
    .server-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .vertical-lines {
        gap: 40px;
    }
    
    .switch-box {
        width: 160px;
    }
}

/* Benefits Section - Vertical Carousel */
.benefits-carousel-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 100%);
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.benefits-carousel-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .benefits-carousel-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.benefits-carousel-header {
    position: relative;
}

.benefits-carousel-header .section-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.benefits-carousel-header .section-title-large {
    color: white !important;
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .benefits-carousel-header .section-title-large {
        font-size: 3rem;
    }
}

/* Carousel Container */
.benefits-carousel {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    min-height: 320px;
}

.benefits-track {
    position: relative;
    height: 240px;
}

/* Benefit Slides */
.benefit-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.benefit-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.benefit-slide.exit-up {
    opacity: 0;
    transform: translateY(-30px);
}

.benefit-number {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

.benefit-icon-carousel {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon-carousel svg {
    width: 32px;
    height: 32px;
    color: white;
}

.benefit-icon-carousel.benefit-icon-security {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.benefit-icon-carousel.benefit-icon-efficiency {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.benefit-icon-carousel.benefit-icon-cost {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.benefit-icon-carousel.benefit-icon-ease {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.benefit-slide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.benefit-slide p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 500px;
}

/* Indicators */
.benefits-indicators {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.benefit-indicator {
    width: 48px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.benefit-indicator:hover {
    background: rgba(255, 255, 255, 0.3);
}

.indicator-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.benefit-indicator.active .indicator-progress {
    animation: progressFill 4s linear forwards;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

.benefit-indicator.completed .indicator-progress {
    width: 100%;
}

/* Pause on hover */
.benefits-carousel:hover .benefit-indicator.active .indicator-progress {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .benefits-carousel {
        padding: 30px 24px;
    }
    
    .benefits-track {
        height: 280px;
    }
    
    .benefit-number {
        font-size: 4rem;
    }
    
    .benefit-slide h3 {
        font-size: 1.25rem;
    }
}

/* Integrations Section V2 */
.integrations-section-v2 {
    background: #f8fafc;
    padding: var(--spacing-2xl) 0;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: var(--spacing-xl);
}

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

@media (max-width: 768px) {
    .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.brand-logo-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.brand-logo-item:hover {
    border-color: #0056D2;
    box-shadow: 0 4px 20px rgba(0, 86, 210, 0.12);
    transform: translateY(-2px);
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 45px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
}

.brand-logo-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    text-align: center;
}

/* Integration Footer - Download & Contact */
.integration-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

@media (max-width: 768px) {
    .integration-footer {
        grid-template-columns: 1fr;
    }
}

.download-card {
    background: linear-gradient(145deg, #fef9c3, #fef3c7);
    border: 1px solid #fcd34d;
    border-radius: 16px;
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s;
}

.download-card:hover {
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.download-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.download-content {
    flex: 1;
}

.download-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
}

.download-content p {
    font-size: 0.85rem;
    color: #a16207;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f !important;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-download:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
}

.contact-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0056D2;
}

.contact-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: var(--spacing-sm);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0056D2 0%, #0ea5e9 100%);
    padding: var(--spacing-2xl) 0;
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .cta-box {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: #0056D2;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

