/* ==========================================================================
   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: lowercase;
    font-weight: 800;
}

.brand-style .char-rest {
    color: var(--color-blue);
    text-transform: uppercase;
    font-weight: 800;
}

.brand-style .word-non-alpha {
    color: var(--color-blue);
    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;
}

.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: 10rem 0 6rem 0;
    min-height: 90vh;
    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: 950px;
    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;
}

/* 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;
}

.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);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-blue) 100%);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.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: var(--color-blue);
    border-color: var(--color-blue);
    color: #ffffff;
}

.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(2, 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: center;
    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;
}

.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);
}

.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;
    align-items: center;
    justify-content: space-between;
    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.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

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

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

/* ==========================================================================
   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;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.modal-body {
    padding: 2.5rem;
    background: radial-gradient(circle at center, #111a2e 0%, var(--color-bg) 100%);
}

.slides-viewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 380px;
}

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

.slide-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

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

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

.slide-bullets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    margin-top: 1rem;
    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: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    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(-2px);
}

.bullet-icon {
    width: 32px;
    height: 32px;
    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.9rem;
    flex-shrink: 0;
}

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

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

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

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

.slide-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}

.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: var(--color-blue);
    border-color: var(--color-blue);
    color: #ffffff;
}

.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;
    }
    
    .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;
    }
}
