/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #090d16;
    --color-surface: #0f1524;
    --color-surface-hover: #172036;
    --color-card-bg: rgba(13, 20, 35, 0.65);
    --color-card-border: rgba(255, 255, 255, 0.08);
    
    /* Branding Colors */
    --color-red: #ff3b30; /* Electric Red */
    --color-blue: #007aff; /* Royal Blue */
    --color-blue-glow: rgba(0, 122, 255, 0.15);
    --color-red-glow: rgba(255, 59, 48, 0.15);
    
    /* Text Colors */
    --color-text: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-text-dark: #6b7280;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('assets/ununitedBackround.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -2;
    pointer-events: none;
    filter: brightness(0.7) saturate(1.15);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(9, 13, 22, 0.4);
    z-index: -1;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
}

button {
    cursor: pointer;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-blue);
}

/* ==========================================================================
   TYPOGRAPHY & BRAND STYLE
   ========================================================================== */
.brand-style {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Formatted Words (JS Generated) */
.brand-style .word {
    display: inline-block;
    white-space: nowrap;
    margin-right: 0.2em;
}

.brand-style .char-first {
    color: var(--color-red);
    text-transform: none;
    font-weight: 800;
}

.brand-style .char-rest {
    color: #ffffff;
    text-transform: none;
    font-weight: 800;
}

.brand-style .word-non-alpha {
    color: #ffffff;
    font-weight: 800;
    margin-right: 0.2em;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.border-top {
    border-top: 1px solid var(--color-card-border);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-card-border);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 38px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    opacity: 0.85;
    white-space: nowrap;
}

.nav-link:hover {
    opacity: 1;
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 1.25rem;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-section-title {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    margin-top: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-section-title:first-child {
    margin-top: 0;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    color: var(--color-text-muted);
}

.dropdown-item:hover {
    background: var(--color-surface-hover);
    color: var(--color-text);
}

.dropdown-item.highlight-item {
    font-weight: 700;
}

.nav-socials {
    display: flex;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.nav-socials a:hover {
    color: var(--color-blue);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-bg);
    border-left: 1px solid var(--color-card-border);
    z-index: 1001;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-close {
    font-size: 1.5rem;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-size: 1.25rem;
    font-weight: 700;
}

.drawer-socials {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 6.5rem 0 3rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75) saturate(1.15);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, var(--color-bg) 95%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slogan-wrapper {
    margin-bottom: 1.5rem;
}

.slogan {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    max-width: 750px;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.hero-ctas .btn {
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-ctas .btn .char-first,
.hero-ctas .btn .char-rest,
.hero-ctas .btn .word-non-alpha {
    color: #ffffff !important;
}

.hero-ctas .btn-linkedin {
    background: #0a66c2;
    border: 1px solid #0a66c2;
}

.hero-ctas .btn-linkedin:hover {
    background: #004182;
    border-color: #004182;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

.hero-ctas .btn-youtube {
    background: #ff0000;
    border: 1px solid #ff0000;
}

.hero-ctas .btn-youtube:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

/* Enes Cards in Hero */
.enes-carousel-container {
    width: 100%;
    margin-top: 2rem;
}

.carousel-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.carousel-title-icon {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.4);
    display: inline-block;
}

.enes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.enes-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(12px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.enes-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue));
    opacity: 0;
    transition: var(--transition-normal);
}

.enes-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.1);
}

.enes-card:hover::before {
    opacity: 1;
}

.enes-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

.enes-info {
    text-align: center;
}

.enes-role {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.enes-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: var(--transition-fast);
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-card-border);
}

.btn-primary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-card-border);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-blue);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   MODULES GRID SECTION
   ========================================================================== */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.filter-tab.active, .filter-tab:hover {
    background: rgba(0, 122, 255, 0.1);
    border-color: var(--color-blue);
    color: var(--color-text);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.module-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.module-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.module-card.ready-mod {
    position: relative;
    border-left: 3px solid var(--color-blue);
}

.module-card.upcoming-mod {
    border-left: 3px solid var(--color-text-dark);
    opacity: 0.75;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.module-status {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    text-transform: uppercase;
}

.ready-mod .module-status {
    background: rgba(0, 122, 255, 0.15);
    color: var(--color-blue);
    border: 1px solid rgba(0, 122, 255, 0.25);
}

.upcoming-mod .module-status {
    background: rgba(107, 114, 128, 0.15);
    color: var(--color-text-muted);
    border: 1px solid rgba(107, 114, 128, 0.25);
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.module-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.module-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.module-features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.04);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.03);
}

.btn-card {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

/* ==========================================================================
   UNUNITED SHOWCASE
   ========================================================================== */
.ununited-showcase {
    margin-top: 4rem;
}

.showcase-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(13, 20, 35, 0.8) 100%);
    border: 1px solid var(--color-card-border);
    border-radius: 24px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    backdrop-filter: blur(16px);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(255, 59, 48, 0.15);
    color: var(--color-red);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 59, 48, 0.25);
    margin-bottom: 1.5rem;
}

.badge-warning {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
    border-color: rgba(234, 179, 8, 0.25);
}

.showcase-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.showcase-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.s-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.s-feature i {
    color: var(--color-blue);
}

.showcase-btn {
    padding: 1rem 2.5rem;
}

.showcase-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.dashboard-preview-img {
    width: 100%;
    transition: var(--transition-slow);
}

.showcase-image:hover .dashboard-preview-img {
    transform: scale(1.03);
}

/* ==========================================================================
   FEATURE HIGHLIGHTS (OCR & n8n)
   ========================================================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.icon-box {
    width: 54px;
    height: 54px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-blue);
}

.highlight-card-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.highlight-card-desc {
    color: var(--color-text-muted);
}

/* OCR Section Design */
.ocr-comparison {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    margin-top: 1rem;
}

.ocr-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-lbl {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    font-weight: 600;
    min-height: 2.25rem;
    display: flex;
    align-items: center;
}

.ocr-thumb-container {
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-card-border);
}

.ocr-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ocr-arrow {
    font-size: 1.2rem;
    color: var(--color-blue);
    align-self: flex-start;
    margin-top: 5.5rem;
}

.digital-receipt {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    position: relative;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.digital-line {
    margin-bottom: 0.25rem;
}

.status-glow {
    margin-top: 0.4rem;
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Automation Flow Styling */
.automation-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.flow-node {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.flow-node:hover {
    border-color: var(--color-blue);
    transform: translateY(-2px);
}

.flow-node.highlight-node {
    border-color: var(--color-blue);
    box-shadow: 0 0 15px var(--color-blue-glow);
}

.flow-line {
    width: 2px;
    height: 1.25rem;
    background: linear-gradient(180deg, var(--color-card-border), var(--color-blue), var(--color-card-border));
    margin: 0.1rem 0;
    flex-grow: 0;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.price-card.popular {
    border: 2px solid var(--color-blue);
    box-shadow: 0 10px 30px var(--color-blue-glow);
    transform: scale(1.03);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-blue);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    white-space: nowrap;
}

.price-header {
    margin-bottom: 2rem;
    text-align: center;
}

.price-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
}

.price-value .period {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-features li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.price-features li i {
    color: #10b981;
    margin-top: 0.25rem;
}

.pricing-notes {
    margin-top: 3rem;
}

.note-box {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 2rem;
}

.note-box h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-box h4 i {
    color: var(--color-blue);
}

.note-box p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.note-box p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   ABOUT & VISION/MISSION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.cv-placeholder-box {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 2rem;
}

.cv-placeholder-box h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cv-placeholder-box h4 i {
    color: var(--color-red);
}

.placeholder-cv-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.vision-blank-box {
    border: 2px dashed rgba(255,255,255,0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    flex-grow: 1;
}

.blank-icon {
    font-size: 3rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.blank-text {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.partner-logo-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100px;
    transition: var(--transition-fast);
}

.partner-logo-card:hover {
    border-color: rgba(255, 59, 48, 0.3);
    box-shadow: 0 10px 20px var(--color-red-glow);
    transform: translateY(-4px);
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.partner-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   OTONOM SATIN ALMA YETENEKLERI SECTION
   ========================================================================== */
.satinalma-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.satinalma-feature-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition-normal);
}

.satinalma-feature-card:hover {
    border-color: rgba(255, 59, 48, 0.2);
    box-shadow: 0 15px 30px rgba(255, 59, 48, 0.05);
}

.satinalma-feature-card.span-2 {
    grid-column: span 2;
}

.s-feat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.s-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-red);
}

.s-feat-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Folder simulation styling */
.folder-simulation {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.folder-header {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.folder-files {
    display: flex;
    gap: 1rem;
}

.file-card {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    flex: 1;
}

.file-card i {
    color: var(--color-blue);
    font-size: 1.1rem;
}

.simulation-arrow {
    display: flex;
    justify-content: center;
    color: var(--color-blue);
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

.simulation-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.6rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Chat simulation styling */
.chat-simulation {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-bubble {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    max-width: 85%;
    font-size: 0.8rem;
}

.user-bubble {
    background: #054d40;
    border: 1px solid rgba(16, 185, 129, 0.2);
    align-self: flex-start;
    border-top-left-radius: 0;
}

.system-bubble {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    align-self: flex-end;
    border-top-right-radius: 0;
}

.chat-sender {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.chat-text {
    line-height: 1.4;
    color: var(--color-text);
}

.parsed-data {
    margin-top: 0.5rem;
    border-top: 1px dashed var(--color-card-border);
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Supplier simulation styling */
.supplier-simulation {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.status-alert {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--color-red);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-box {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sug-title {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.sug-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* B2B simulation styling */
.web-browser-mock {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.browser-address-bar {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--color-card-border);
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    color: var(--color-text-dark);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-body {
    padding: 1rem;
    background: #0b0f19;
}

.mock-b2b-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   E-LEARNING & AI ONBOARDING SECTION
   ========================================================================== */
.e-learning-section {
    margin-top: 2rem;
}

.e-learning-card {
    background: radial-gradient(circle at 100% 100%, var(--color-surface-hover) 0%, var(--color-surface) 100%);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.e-learning-content {
    flex: 1.5;
}

.e-learning-icon {
    flex: 0.5;
    font-size: 6rem;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.e-learning-wrapper {
    width: 100%;
}

.ai-uyarlama-header {
    margin-top: 4rem;
    border-top: 1px dashed var(--color-card-border);
    padding-top: 4rem;
}

.ai-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.ai-step-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.ai-step-card:hover {
    border-color: rgba(0, 122, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.05);
}

.step-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue));
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    letter-spacing: 1px;
}

.step-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.step-highlight-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.step-highlight-tag i {
    color: var(--color-blue);
}

.upload-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
    position: relative;
}

.upload-dropzone:hover {
    border-color: var(--color-blue);
    background: rgba(0, 122, 255, 0.03);
}

.upload-icon {
    font-size: 2.5rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.upload-dropzone:hover .upload-icon {
    color: var(--color-blue);
    transform: translateY(-3px);
}

.upload-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.upload-subtext {
    font-size: 0.75rem;
    color: var(--color-text-dark);
}

.selected-files-list {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.file-item {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.2s ease-out;
}

.file-item-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-item-info i {
    color: var(--color-blue);
}

.file-item-remove {
    cursor: pointer;
    color: var(--color-text-dark);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: 0 0.25rem;
}

.file-item-remove:hover {
    color: var(--color-red);
}

.step-action-area {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar-wrapper {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue));
    border-radius: 4px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(0, 122, 255, 0.5);
}

.progress-status-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.simulation-success {
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeIn 0.4s ease-out;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
}

.success-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.success-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.success-stats .stat-badge {
    font-size: 0.75rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.success-stats .stat-badge strong {
    font-weight: 800;
}

.success-stats .success-highlight {
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.1), rgba(0, 122, 255, 0.1));
    border: 1px solid rgba(0, 122, 255, 0.25);
    color: var(--color-text);
    font-weight: 700;
}

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

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

/* ==========================================================================
   CONTACT & ORDER SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-desc {
    color: var(--color-text-muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-item i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--color-blue);
}

.contact-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-dark);
    text-transform: uppercase;
    font-weight: 700;
}

.contact-item .val {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item a.val:hover {
    color: var(--color-blue);
}

.contact-form-panel {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(12px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-blue);
    outline: none;
    box-shadow: 0 0 10px var(--color-blue-glow);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-disclaimer i {
    margin-top: 0.15rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-card-border);
    padding: 5rem 0 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.footer-links {
    display: contents;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-col a:hover {
    color: var(--color-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
}

.footer-socials a:hover {
    color: var(--color-blue);
}

/* ==========================================================================
   PRESENTATION SLIDES MODAL
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(8px);
}

.modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    z-index: 2001;
    transform: translateY(30px);
    transition: transform var(--transition-normal);
}

.modal.open .modal-wrapper {
    transform: translateY(0);
}

.modal-card {
    background: var(--color-surface);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 90vh; /* Slaytların ekrana sığması için üst sınır */
}

.modal-header {
    padding: 0.75rem 1.5rem; /* Üst boşluğu azalttık */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.15rem; /* Satın Alma yazısı ve başlığı küçülttük */
    font-weight: 700;
}

.modal-close {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.modal-close:hover {
    color: var(--color-red);
}

.modal-body {
    padding: 1rem 1.5rem; /* İç dolgu boşlukları azaltıldı */
    background: radial-gradient(circle at center, #111a2e 0%, var(--color-bg) 100%);
    overflow-y: auto; /* İçeriğin sığmadığı durumlarda içte scroll olması için */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.slides-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    height: 100%;
    flex-grow: 1;
}

.slide-content-area {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 1.25rem; /* Slayt başlığını küçülttük */
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.slide-text-body {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    max-width: 650px;
    white-space: pre-line;
    line-height: 1.5;
}

/* Slayt Görselleştirme */
.slide-text-paragraph {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    text-align: center;
    max-width: 700px;
    line-height: 1.5;
}

.slide-bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem; /* Kartlar arası boşluğu daralttık */
    width: 100%;
    margin-top: 0.5rem;
    max-width: 800px;
    text-align: left;
}

.slide-bullet-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-card-border);
    border-radius: 8px; /* Kenarları biraz daha keskinleştirip küçülttük */
    padding: 0.75rem 1rem; /* Kart içi padding daraltıldı */
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: var(--transition-fast);
}

.slide-bullet-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 122, 255, 0.2);
    transform: translateY(-1px);
}

.bullet-icon {
    width: 24px; /* Simge boyutu küçültüldü */
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.slide-bullet-card:hover .bullet-icon {
    background: var(--color-blue);
    color: #ffffff;
}

.bullet-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bullet-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
}

.bullet-card-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.slide-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 1rem; /* Kontroller ile slayt arasındaki boşluğu azalttık */
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0.75rem;
}

.slide-nav-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-card-border);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.slide-nav-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--color-blue);
    color: var(--color-text);
}

.slide-nav-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.slide-counter {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .showcase-card {
        grid-template-columns: 1fr;
        padding: 2.5rem;
        gap: 2rem;
    }
    
    .showcase-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .slogan {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu, .nav-socials {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .e-learning-card {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }
    
    .e-learning-icon {
        display: none;
    }
    
    .ai-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-step-card {
        padding: 2rem 1.5rem;
    }
    
    .satinalma-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .satinalma-feature-card {
        padding: 1.5rem;
    }
    
    .satinalma-feature-card.span-2 {
        grid-column: span 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .slide-bullets-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   ENS INDUSTRIAL EXPERIENCE SECTION
   ========================================================================== */
.ens-section {
    background-color: var(--color-bg);
    color: var(--color-text);
    padding: 6rem 0;
    border-top: 1px solid var(--color-card-border);
}

.ens-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ens-section .section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3.5rem;
    font-weight: 700;
}

.ens-section .section-title span {
    color: var(--color-red);
    font-weight: 800;
}

/* GÜVEN VE TECRÜBE BAROMETRESİ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.stat-card {
    background: var(--color-card-bg);
    border-left: 4px solid var(--color-blue);
    border-top: 1px solid var(--color-card-border);
    border-right: 1px solid var(--color-card-border);
    border-bottom: 1px solid var(--color-card-border);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.stat-number span { color: var(--color-red); }

/* MİMARİ VE ÖZGÜRLÜK KARTLARI */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.1);
}

.card-icon-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.card-icon-title h3 {
    font-size: 1.35rem;
    margin: 0;
    font-weight: 700;
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.highlight-box {
    background: rgba(0, 122, 255, 0.08);
    border: 1px dashed var(--color-blue);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.25rem;
    color: #c4d9ff;
    font-size: 0.85rem;
}

/* ==========================================================================
   HERO TWO-COLUMN GRID & SIDEBAR
   ========================================================================== */
.hero-main-layout {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 3rem;
    text-align: left;
}

.hero-left-column {
    flex: 2; /* 2/3 of layout width */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* Align elements to the left */
    text-align: left; /* Text align left */
}

.hero-right-sidebar {
    flex: 1; /* 1/3 of layout width */
    background: rgba(15, 15, 17, 0.85);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 1rem; /* Shrunk padding by 50% */
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Shrunk gap by 50% */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    justify-content: space-between;
}

/* Slogan & Subtitle styles inside Left Column */
.hero-top-part {
    text-align: center; /* Center-align the slogan within the 2/3 column */
    margin-bottom: 1.5rem;
    width: 100%;
}

.hero-top-part h1 {
    font-size: 2.6rem; /* Shrunk by 20% from 3.25rem */
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
}

.hero-top-part h1 span {
    color: #e50914;
    font-weight: 800;
    font-size: inherit; /* Keep font-size exactly equal to rest of text */
}

.hero-subtitle-p {
    font-size: 0.92rem; /* Shrunk by 20% from 1.15rem */
    color: #e0e0e0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    margin: 0;
}

/* Vision Part Title (outside box) */
.hero-vision-title {
    color: var(--color-red);
    font-size: 1rem; /* Shrunk by 20% from 1.25rem */
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left; /* Aligned left in line with box start */
    align-self: flex-start;
    width: 100%;
}

.hero-left-column .hero-vision-part {
    background: rgba(15, 15, 17, 0.85);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 1.2rem; /* Shrunk by 20% from 1.5rem */
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    text-align: left; /* Starts from left start of box */
    width: 100%;
}

.hero-left-column .hero-vision-part p {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.78rem; /* Shrunk by 20% from 0.95rem */
    margin: 0;
    text-align: left; /* Starts from left start */
}

.hero-left-column .hero-buttons-part {
    display: flex;
    justify-content: space-between; /* Space items: one left, one right */
    align-items: center;
    width: 100%; /* Spans full width of the box */
    margin-bottom: 1rem;
}

/* Custom toned-down colors for hero buttons */
.hero-left-column .hero-buttons-part .btn-linkedin {
    background: #1a4d80 !important; /* Premium muted blue */
    border: 1px solid #1a4d80 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.hero-left-column .hero-buttons-part .btn-linkedin:hover {
    background: #12375c !important;
    border-color: #12375c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(26, 77, 128, 0.35) !important; /* Low glow */
}

.hero-left-column .hero-buttons-part .btn-youtube {
    background: #961c1c !important; /* Premium muted red */
    border: 1px solid #961c1c !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
}

.hero-left-column .hero-buttons-part .btn-youtube:hover {
    background: #731313 !important;
    border-color: #731313 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(150, 28, 28, 0.35) !important; /* Low glow */
}

/* Sidebar Tech Spec Elements */
.tech-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.6rem;
    cursor: pointer;
}

.tech-spec-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.tech-spec-item.blue-line:hover {
    border-color: rgba(26, 115, 232, 0.4) !important;
    box-shadow: 0 12px 35px rgba(26, 115, 232, 0.2) !important;
    background: rgba(26, 115, 232, 0.02) !important;
}

.btn-red {
    background-color: #e50914;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

/* 1. KİLİT İKONU HAREKETİ */
.tech-spec-item:nth-child(1):hover .tech-spec-icon {
    display: inline-block;
    animation: openLock 0.4s ease forwards;
}
@keyframes openLock {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(-15deg) scale(1.2); }
    100% { transform: rotate(0deg) scale(1.1); }
}

/* 2. KRONOMETRE HAREKETİ */
.tech-spec-item:nth-child(2):hover .tech-spec-icon {
    display: inline-block;
    animation: tickTok 0.5s linear infinite;
}
@keyframes tickTok {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

/* 3. ŞİMŞEK İKONU HAREKETİ */
.tech-spec-item:nth-child(3):hover .tech-spec-icon {
    display: inline-block;
    animation: lightningFlash 0.3s ease-in-out infinite alternate;
}
@keyframes lightningFlash {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.2); filter: drop-shadow(0 0 8px #ffb703); }
}

.tech-spec-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-spec-icon {
    font-size: 1.1rem; /* Shrunk icon size */
}

.tech-spec-header h4 {
    font-size: 0.8rem; /* Shrunk title size */
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.tech-spec-item p {
    color: var(--color-text-muted);
    font-size: 0.72rem; /* Shrunk paragraph size */
    line-height: 1.4;
    margin: 0;
}

.tech-spec-highlight {
    background: rgba(26, 115, 232, 0.1);
    border: 1px dashed var(--color-blue);
    padding: 0.4rem 0.6rem; /* Shrunk padding */
    border-radius: 8px;
    color: #c4d9ff;
    font-size: 0.65rem; /* Shrunk highlight size */
    line-height: 1.3;
}

.branding-content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: -webkit-sticky; /* Safari desteği */
    position: sticky;        /* Sayfa kayarken sabit kalması için */
    top: 100px;              /* Üst menünün altında temiz duracağı mesafe */
}

/* Mobile Responsiveness for Hero Layout */
@media (max-width: 768px) {
    .hero-main-layout {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-left-column, .hero-right-sidebar {
        flex: 1;
        width: 100%;
    }
    
    .hero-left-column {
        align-items: center;
        text-align: center;
    }
    
    .hero-top-part {
        text-align: center;
    }
    
    .hero-top-part h1 {
        font-size: 2.25rem;
    }
    
    .hero-vision-title {
        text-align: center;
        align-self: center;
    }
    
    .hero-left-column .hero-vision-part {
        text-align: center;
    }
    
    .hero-left-column .hero-vision-part p {
        text-align: justify;
    }
    
    .hero-left-column .hero-buttons-part {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   FLOATING QUICK-ACTION MENU
   ========================================================================== */
.ens-floating-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999; /* Her şeyin en üstünde durması için */
    font-family: sans-serif;
}

.ens-floating-item {
    width: 48px;
    height: 48px;
    background-color: #16171b; /* Bizim koyu gri/siyah tonumuz */
    border: 1px solid #242730;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Fareyle üzerine gelindiğinde (Hover) Efektleri */
.ens-floating-item:hover {
    background-color: #e50914; /* Kırmızı kurumsal rengimizle parlasın */
    border-color: #e50914;
    transform: scale(1.1);
}

/* Üzerine gelince soldan açılan minik bilgilendirme yazısı */
.ens-floating-item::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background-color: #16171b;
    border: 1px solid #242730;
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.ens-floating-item:hover::after {
    opacity: 1;
    visibility: visible;
    right: 55px;
}

/* Cep telefonlarında dar ekranda dikkat dağıtmaması için gizle veya küçült */
@media screen and (max-width: 768px) {
    .ens-floating-menu {
        right: 10px;
    }
    .ens-floating-item {
        width: 42px;
        height: 42px;
    }
    .ens-floating-item::after {
        display: none !important; /* Mobilde yazıyı gizle, sadece ikon kalsın */
    }
}

/* ==========================================================================
   AI-UYARLAMA / SCADA TABBED INTERFACE SYSTEM
   ========================================================================== */
.tab-content-standart,
.tab-content-scada {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

#tab-standart:checked ~ .e-learning-wrapper .tab-content-standart,
.e-learning-wrapper.active-standart .tab-content-standart {
    display: block;
}

#tab-scada:checked ~ .e-learning-wrapper .tab-content-scada,
.e-learning-wrapper.active-scada .tab-content-scada {
    display: block;
}

#tab-standart:checked ~ .e-learning-wrapper .btn-tab-1,
.e-learning-wrapper.active-standart .btn-tab-1 {
    background: rgba(255, 183, 3, 0.1) !important;
    border-color: #ffb703 !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.2);
}

#tab-scada:checked ~ .e-learning-wrapper .btn-tab-2,
.e-learning-wrapper.active-scada .btn-tab-2 {
    background: rgba(26, 115, 232, 0.15) !important;
    border-color: #1a73e8 !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(26, 115, 232, 0.25);
}

.ens-tab-button:hover {
    background: #1f222b !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* ==========================================================================
   ORDER FORM SECTION
   ========================================================================== */
.order-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.order-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.order-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-section-title .step-num {
    background: var(--color-blue);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.package-option-card {
    cursor: pointer;
    display: block;
}

.package-card-inner {
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-option-card input:checked + .package-card-inner {
    border-color: var(--color-blue);
    background: rgba(0, 122, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.15);
}

.package-option-card:hover .package-card-inner {
    border-color: rgba(0, 122, 255, 0.5);
    transform: translateY(-2px);
}

.package-radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.package-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
}

.package-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.package-badge.popular {
    background: rgba(255, 59, 48, 0.15);
    color: var(--color-red);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.package-price .price-period {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.package-text {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.checkbox-option-card {
    cursor: pointer;
    display: block;
}

.checkbox-card-inner {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-card-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.checkbox-option-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--color-card-border);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-option-card input:checked ~ .checkbox-card-inner {
    border-color: var(--color-blue);
    background: rgba(0, 122, 255, 0.02);
}

.checkbox-option-card input:checked ~ .checkbox-card-inner .checkbox-custom {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-option-card input:checked ~ .checkbox-card-inner .checkbox-custom:after {
    display: block;
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.checkbox-text strong {
    font-size: 0.88rem;
    color: #ffffff;
}

.checkbox-text span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.checkbox-option-card:hover .checkbox-card-inner {
    border-color: rgba(0, 122, 255, 0.4);
}

.order-form-panel .form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.order-form-panel .form-group input[type="text"],
.order-form-panel .form-group input[type="email"],
.order-form-panel .form-group input[type="tel"] {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-card-border);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.order-form-panel .form-group input[type="text"]:focus,
.order-form-panel .form-group input[type="email"]:focus,
.order-form-panel .form-group input[type="tel"]:focus,
.order-form-panel input[type="number"]:focus {
    border-color: var(--color-blue);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.1);
}

/* Calculator Summary */
.order-summary-panel {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: radial-gradient(circle at top right, rgba(0, 122, 255, 0.1) 0%, var(--color-surface) 100%);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.summary-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.summary-row.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.summary-label {
    color: var(--color-text-muted);
}

.summary-val {
    color: #ffffff;
    font-weight: 600;
}

.total-section {
    background: rgba(0,0,0,0.25);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.03);
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.total-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.total-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
}

#total-monthly {
    color: var(--color-blue);
}

.total-val .vat {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-dark);
    margin-left: 0.2rem;
}

.summary-disclaimer {
    font-size: 0.72rem;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin: 1.25rem 0 0;
}

@media (max-width: 991px) {
    .order-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .order-summary-panel {
        position: static;
    }
    
    .package-options-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SEO KEYWORDS tag cloud
   ========================================================================== */
.footer-seo-directory {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-seo-directory h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.seo-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.seo-tags-cloud span {
    font-size: 0.75rem;
    color: var(--color-text-dark);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    transition: var(--transition-fast);
    cursor: default;
}

.seo-tags-cloud span:hover {
    color: var(--color-blue);
    border-color: rgba(0, 122, 255, 0.2);
    background: rgba(0, 122, 255, 0.02);
}

/* Tablet & Laptop Navbar Optimizations to prevent text-wrapping and slogan overlaps */
@media (min-width: 769px) and (max-width: 1200px) {
    .nav-menu {
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .nav-socials {
        display: none;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 32px;
    }
}

/* ==========================================================================
   LANGUAGE SWITCHER STYLING
   ========================================================================== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.lang-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 140px;
    background: rgba(15, 15, 17, 0.95);
    border: 1px solid var(--color-card-border);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.2s ease-out;
}

/* Invisible bridge to prevent dropdown from closing when moving cursor across the gap */
.lang-dropdown-content::before {
    content: "";
    position: absolute;
    top: -0.6rem;
    left: 0;
    right: 0;
    height: 0.6rem;
    background: transparent;
}

.lang-dropdown:hover .lang-dropdown-content,
.lang-dropdown-content.show {
    display: block !important;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted) !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
}

.flag-icon {
    font-size: 1rem;
}

/* Mobile Language Switcher Active Highlight */
.mobile-lang-btn {
    transition: all 0.3s ease;
}
.mobile-lang-btn.active {
    background: rgba(0, 122, 255, 0.15) !important;
    border: 1px solid rgba(0, 122, 255, 0.3) !important;
    color: #ffffff !important;
}

/* Real Life Solutions Section Styling */
.solutions-section {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.solutions-category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #242730;
    padding-bottom: 0.75rem;
    margin: 0;
}

.category-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sol-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.sol-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.04);
}

.sol-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sol-num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-red);
    background: rgba(229, 9, 20, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

.sol-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.sol-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.sol-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.sol-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-blue);
    background: rgba(0, 122, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ==========================================================================
   RIGHT-TO-LEFT (RTL) STYLING OVERRIDES FOR ARABIC
   ========================================================================== */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] body {
    direction: rtl;
}

/* RTL layout switches */
html[dir="rtl"] .hero-left-column {
    align-items: flex-end;
    text-align: right;
}

html[dir="rtl"] .hero-right-sidebar {
    text-align: right;
}

/* RTL Alignment & Direction Flips */
html[dir="rtl"] .lang-dropdown-content {
    right: auto;
    left: 0;
}

html[dir="rtl"] .nav-dropdown .dropdown-content {
    right: auto;
    left: 0;
}

html[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .drawer-close {
    left: 1.5rem;
    right: auto;
}

html[dir="rtl"] .drawer-header {
    flex-direction: row-reverse;
}

html[dir="rtl"] .spec-highlight-badge {
    border-left: none;
    border-right: 3px solid #1a73e8;
}

html[dir="rtl"] .tech-spec-highlight {
    border-left: none;
    border-right: 3px solid #1a73e8;
}

html[dir="rtl"] .module-card.ready-mod {
    border-left: none;
    border-right: 3px solid var(--color-blue);
}

html[dir="rtl"] .module-card.upcoming-mod {
    border-left: none;
    border-right: 3px solid var(--color-text-dark);
}

html[dir="rtl"] .stat-card {
    border-left: 1px solid var(--color-card-border);
    border-right: 4px solid var(--color-blue);
}

/* Mobile Drawer RTL positioning */
html[dir="rtl"] .mobile-drawer {
    right: auto;
    left: -100%;
    border-left: none;
    border-right: 1px solid var(--color-card-border);
}
html[dir="rtl"] .mobile-drawer.open {
    left: 0;
    right: auto;
}

/* Flip arrow transforms in RTL */
html[dir="rtl"] .fa-chevron-right, 
html[dir="rtl"] .fa-arrow-right,
html[dir="rtl"] .btn i.fa-play {
    transform: scaleX(-1);
}

/* RTL margin swaps */
html[dir="rtl"] .btn i {
    margin-left: 0;
    margin-right: 0.5rem;
}

html[dir="rtl"] .total-val .vat {
    margin-left: 0;
    margin-right: 0.2rem;
}

html[dir="rtl"] .summary-row {
    flex-direction: row-reverse;
}

html[dir="rtl"] .total-row {
    flex-direction: row-reverse;
}




