/* Custom Fonts */
@font-face {
    font-family: 'Batusa';
    src: url('../fonts/Batusa.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
}

section {
    overflow-x: hidden;
}
:root {
    --primary-color: #cc0000;
    --secondary-color: #ff4444;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
    --gradient-2: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    /* Referanslar — yumuşak sıcak tonlar */
    --ref-warm-bg: #f4f1eb;
    --ref-surface: #ffffff;
    --ref-border-soft: rgba(0, 0, 0, 0.07);
    --ref-shadow-soft: 0 4px 28px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Lora', Georgia, serif;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Batusa', 'Bodoni Moda', Georgia, serif;
    font-weight: normal;
}

/* Nav, butonlar ve form elemanları için sans-serif */
.nav-link, .btn, .btn-primary, .btn-secondary, .btn-outline,
button, input, textarea, select, label,
.footer-links a, .badge, .tab-btn, .ref-tab {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

/* Text-only logo */
.logo-brand {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1;
    user-select: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text h2 {
    font-size: 24px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info i {
    font-size: 18px;
}

/* Nav Badges */
.nav-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-badge-mikro {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-badge-partner {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.nav-badge-partner:hover {
    transform: scale(1.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: #ffffff;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#matrixCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.glow1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204,0,0,0.25) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: glowPulse 6s ease-in-out infinite;
}

.glow2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: glowPulse 8s ease-in-out infinite reverse;
}

.glow3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,60,60,0.1) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: glowPulse 10s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #ffffff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.hero-text h1 {
    font-size: 62px;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a2e;
    font-family: 'Batusa', Georgia, serif;
}

.gradient-text {
    background: linear-gradient(135deg, #ff4444 0%, #ff8888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-text p {
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(204,0,0,0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204,0,0,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-hero-outline {
    background: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.btn-hero-outline:hover {
    background: #aa0000;
    border-color: #aa0000;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.12);
}

.stat h3 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat p {
    font-size: 13px;
    color: #1a1a2e;
    letter-spacing: 0.03em;
}

/* Hero Image & Orb */
.hero-image {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
}


.hero-center-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(204,0,0,0.25);
    animation: orbRotate 12s linear infinite;
}

.ring1 {
    width: 260px;
    height: 260px;
    border-style: dashed;
}

.ring2 {
    width: 340px;
    height: 340px;
    animation-duration: 20s;
    animation-direction: reverse;
    border-color: rgba(204,0,0,0.12);
}

@keyframes orbRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orb-core {
    width: 120px;
    height: 120px;
    background: #cc0000;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(204,0,0,0.4);
}

.orb-core i {
    font-size: 48px;
    color: #ffffff;
}

.floating-card {
    position: absolute;
    background: #cc0000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(204,0,0,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 32px;
    color: #ffffff;
}

.floating-card span {
    font-weight: 600;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.04em;
}

/* Servis kartları — üst/alt köşeler */
.card1 { top: 10%; left: 2%; animation-delay: 0s; }
.card2 { top: 10%; right: 2%; animation-delay: 1s; }
.card3 { bottom: 10%; left: 2%; animation-delay: 2s; }
.card4 { bottom: 10%; right: 2%; animation-delay: 0.5s; }
/* Logo kartları — sol/sağ orta */
.card5 { top: 50%; left: 0%; transform: translateY(-50%); animation-delay: 1.5s; }
.card6 { top: 50%; right: 0%; transform: translateY(-50%); animation-delay: 2.5s; }
/* Rozet kartları — tam üst/alt orta */
.card7 { top: 1%; left: 50%; transform: translateX(-50%); animation-delay: 0.8s; }
.card8 { bottom: 1%; left: 50%; transform: translateX(-50%); animation-delay: 1.8s; }

.floating-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
}

.card5, .card6, .card7, .card8 {
    padding: 14px 18px;
}

.card5 {
    background: #cc0000 !important;
    background-image: none !important;
    border-color: rgba(255,255,255,0.15) !important;
    box-shadow: 0 8px 32px rgba(204,0,0,0.35) !important;
}

.card5 .floating-logo-img {
    mix-blend-mode: normal;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

@keyframes floatCardCenter {
    0%, 100% { translate: 0 0px; }
    50% { translate: 0 -14px; }
}

@keyframes floatCardVertCenter {
    0%, 100% { transform: translateY(calc(-50% + 0px)); }
    50% { transform: translateY(calc(-50% - 14px)); }
}

.card7, .card8 {
    animation-name: floatCardCenter;
}

.card5, .card6 {
    animation-name: floatCardVertCenter;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(204, 0, 0, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-align: center;
    width: 100%;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Service Cards - Dark card style */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.5rem;
    background-color: #0f0f14;
    background-image:
        radial-gradient(at 0% 70%, hsla(0, 93%, 30%, 0.7) 0px, transparent 60%),
        radial-gradient(at 100% 100%, hsla(350, 100%, 38%, 0.5) 0px, transparent 60%);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 0 1px rgba(204,0,0,0.15), 0 8px 32px rgba(0,0,0,0.5);
    overflow: hidden;
}

/* Dönen border efekti — wrapper */
.service-card__border {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    inset: -1px;
    border-radius: 1rem;
    z-index: 0;
}

/* Dönen ışık çizgisi */
.service-card__border::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    transform-origin: center;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 40%,
        hsl(0, 85%, 50%) 50%,
        transparent 60%,
        transparent 100%
    );
    animation: sc-rotate 6s linear infinite;
}

/* Kartın iç arka planı border'ı kapatır */
.service-card__border::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(1rem - 1px);
    background-color: #0f0f14;
    background-image:
        radial-gradient(at 0% 70%, hsla(0, 93%, 30%, 0.7) 0px, transparent 60%),
        radial-gradient(at 100% 100%, hsla(350, 100%, 38%, 0.5) 0px, transparent 60%);
}

@keyframes sc-rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card__badge,
.hardware-card .featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(204, 0, 0, 0.7);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 14px;
    width: fit-content;
}

.service-card__logo img {
    height: 44px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
}

.service-card__icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    line-height: 1;
}

.service-card__title {
    font-size: 1.15rem;
    color: #1a1a2e;
    font-family: 'Batusa', Georgia, serif;
    margin: 0;
    font-weight: normal;
}

.service-card__paragraph {
    font-size: 0.8rem;
    color: #4a4a6a;
    line-height: 1.6;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card__line {
    width: 100%;
    height: 1px;
    background-color: rgba(204,0,0,0.15);
    border: none;
    margin: 0;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    flex: 1;
    margin: 0;
    padding: 0;
}

.service-card__list-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-card__check {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-color: hsl(0, 80%, 42%);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card__check svg {
    width: 11px;
    height: 11px;
    fill: #ffffff;
}

.service-card__list-text {
    font-size: 0.82rem;
    color: #1a1a2e;
    font-family: 'Space Grotesk', sans-serif;
}

.service-card__button {
    cursor: pointer;
    display: block;
    text-align: center;
    padding: 0.6rem 1rem;
    width: 100%;
    background: linear-gradient(180deg, hsl(0, 70%, 52%) 0%, hsl(0, 85%, 36%) 100%);
    font-size: 0.82rem;
    color: #ffffff;
    text-decoration: none;
    border: 0;
    border-radius: 9999px;
    box-shadow: inset 0 -2px 16px -4px rgba(255,255,255,0.25);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    transition: opacity 0.2s ease;
    margin-top: auto;
    letter-spacing: 0.02em;
}

.service-card__button:hover {
    opacity: 0.82;
    color: #ffffff;
}

/* Partners Section */
.partners {
    background: #ffffff;
    color: #1a1a2e;
}

.partners .section-badge {
    background: rgba(204, 0, 0, 0.1);
    color: var(--primary-color);
}

.partners .section-header h2,
.partners .section-header p {
    color: #1a1a2e;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    padding: 40px 30px;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.partner-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 14px;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(204,0,0,0.1);
}

.partner-logo img {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.mikro-logo-container {
    width: 100%;
    max-width: 150px;
    padding: 8px;
    margin-bottom: 20px;
}

.mikro-brand-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.partner-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.partner-card p {
    color: #4a4a6a;
}

/* References Section */
.references {
    background: var(--ref-warm-bg);
    scroll-margin-top: 88px;
}

.references-subnav {
    margin-top: 8px;
    margin-bottom: 0;
}

.references-subnav .references-jump {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(204, 0, 0, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.references-subnav .references-jump:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.references-subnav .references-jump span {
    font-weight: 700;
}

.references-jump--back {
    font-size: 14px;
}

.page-header-subnav {
    margin-top: 16px;
}

.references.references-page {
    padding-top: 56px;
}

.references .section-badge {
    background: rgba(204, 0, 0, 0.08);
    color: var(--primary-color);
}

/* ── Logo Duvarı (References) ── */
.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.reference-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding-bottom: 16px;
}

.reference-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Logo görselli kartlar */
.reference-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 12px;
    margin-bottom: 8px;
}

.reference-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* İkon fallback */
.reference-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 10px;
}

.reference-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.reference-card h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.4;
    margin: 0;
    padding: 0 8px;
}

.ref-location {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

.ref-location i {
    margin-right: 5px;
    font-size: 12px;
}

/* Referans Filtreleme Tabları */
.ref-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.ref-tab {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    background: white;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ref-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.ref-tab.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.reference-card.hidden {
    display: none;
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-content {
    margin-bottom: 60px;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-text-large {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text-large h3 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text-large p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text-large strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-partners {
    font-size: 16px !important;
    margin-top: 30px;
    color: var(--text-color);
    line-height: 1.8;
}

/* Timeline Section */
.timeline-section {
    margin: 40px 0;
    padding: 40px 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid rgba(204, 0, 0, 0.1);
    position: relative;
    align-items: start;
}

.timeline-title {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 22px;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.timeline-year {
    font-size: 26px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    padding: 10px 8px;
    background-color: rgba(204, 0, 0, 0.05);
    border-radius: 10px;
    height: fit-content;
    line-height: 1.2;
    white-space: nowrap;
}

.timeline-content {
    text-align: left;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* About Highlight */
.about-highlight {
    display: flex;
    gap: 25px;
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 35px;
    border-radius: 1rem;
    color: #1a1a2e;
    margin: 40px 0;
    align-items: center;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.highlight-text h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a2e;
}

.highlight-text p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    color: #4a4a6a !important;
    opacity: 0.95;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-item {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 30px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.about-item:hover {
    transform: none;
}

.about-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-item-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.about-item h4 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 0;
    font-weight: normal;
    font-family: 'Batusa', Georgia, serif;
}

.about-item p {
    color: #4a4a6a;
    line-height: 1.7;
    font-size: 15px;
}

/* About Features Section */
.about-features-section {
    margin: 80px 0;
}

/* Why Section */
.why-section {
    margin: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.why-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-header h3 {
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--dark-color);
    font-family: 'Batusa', Georgia, serif;
    font-weight: normal;
    margin: 0;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.why-list--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.why-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.why-item div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-item strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

.why-item span {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.55;
}


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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

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

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

    .why-list--3col {
        grid-template-columns: 1fr;
    }

    .why-item:nth-child(even) {
        padding-left: 0;
        border-right: none;
    }

    .why-item {
        border-right: none;
    }
}

.about-features-section h3 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-content h4 i {
    color: var(--primary-color);
    font-size: 18px;
}

.feature-content p {
    color: #4a4a6a;
    line-height: 1.7;
    font-size: 15px;
}

/* About Services Summary */
.about-services-summary {
    padding: 50px 0;
    margin: 60px 0;
}

.about-services-summary h3 {
    text-align: center;
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.services-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px;
}

.summary-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.summary-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    font-family: 'Space Grotesk', sans-serif;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: #1a1a2e;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

.about-cta .btn-primary:hover {
    background: #a80000;
    transform: translateY(-3px);
}

.about-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.about-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    gap: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-card.contact-card--info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item .contact-icon {
    margin: 0;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.contact-info-item p {
    color: #4a4a6a;
    margin-bottom: 2px;
    white-space: nowrap;
    font-size: 14px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 28px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.contact-card p {
    color: #4a4a6a;
    margin-bottom: 3px;
    white-space: nowrap;
}

.contact-card--form {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.contact-card--form .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-card--form .contact-form .form-group:last-of-type {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-card--form .contact-form .form-group:last-of-type textarea {
    flex: 1;
    min-height: 80px;
    resize: none;
}

.contact-map {
    margin-top: 14px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-card--map {
    text-align: center;
}

.contact-form {
    margin-top: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-row .form-group:last-child {
    grid-column: 1 / -1;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid rgba(204,0,0,0.2);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9f9fc;
    color: #1a1a2e;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9ab0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer .logo-brand {
    font-size: 26px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #ffffff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--primary-color);
    color: #ffffff;
    background: rgba(204,0,0,0.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        justify-content: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-badges {
        display: none;
    }

    .contact-info {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: block;
        order: -1;
    }

    .hero-text {
        order: 1;
    }

    .image-wrapper {
        height: 520px;
    }

    .card5 .floating-logo-img,
    .card6 .floating-logo-img,
    .card7 .floating-logo-img,
    .card8 .floating-logo-img {
        height: 48px;
    }

    .card5, .card6, .card7, .card8 {
        padding: 10px 12px;
    }

    .floating-card {
        padding: 10px 14px;
    }

    .floating-card i {
        font-size: 22px;
    }

    .floating-card span {
        font-size: 11px;
    }

    .floating-logo-img {
        height: 44px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .services-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about-text-large h3 {
        font-size: 26px;
    }

    .about-text-large p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    /* Genel ortalama */
    .section-header,
    .section-header h2,
    .section-header p,
    .section-badge {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        text-align: center;
    }

    .contact-card.contact-card--info {
        text-align: center;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-item p,
    .contact-info-item h4 {
        white-space: normal;
        word-break: break-word;
    }

    .contact-card .btn {
        width: 100%;
        justify-content: center;
    }


    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-group:last-child {
        grid-column: 1;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section ul {
        padding: 0;
        list-style: none;
    }

    .footer-section ul li {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-section ul li i {
        margin-right: 0;
    }

    .social-links {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-number {
        font-size: 36px;
    }

    .services-summary-grid {
        grid-template-columns: 1fr;
    }

    .about-services-summary {
        padding: 30px 20px;
    }

    .about-services-summary h3 {
        font-size: 24px;
    }

    .about-features-section h3 {
        font-size: 26px;
    }

    .about-text-large h3 {
        font-size: 22px;
    }

    .about-text-large p {
        font-size: 15px;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

    .timeline-year {
        font-size: 24px;
        padding: 10px;
    }

    .timeline-content h4 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .about-highlight {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .highlight-text h4 {
        font-size: 20px;
    }

    .highlight-text p {
        font-size: 15px;
    }

    .about-partners {
        font-size: 15px !important;
        padding: 20px;
    }

    .about-cta {
        padding: 30px 20px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .timeline-year {
        font-size: 28px;
        padding: 12px;
        margin: 0 auto;
        max-width: 120px;
    }

    .about-highlight {
        padding: 25px 15px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
    }

    .highlight-icon i {
        font-size: 28px;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.page-header--dark {
    background: #ffffff;
}

.page-header--dark .page-header h1,
.page-header--dark h1 {
    color: #1a1a2e !important;
}

.page-header--dark p {
    color: #4a4a6a !important;
}

.page-header--dark .page-badge {
    color: var(--primary-color);
    background: rgba(204,0,0,0.1);
    border-color: rgba(204,0,0,0.2);
}

.page-circuit-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.mikro-hero-logo {
    display: block;
    max-width: 140px;
    height: auto;
    margin: -10px auto 0;
}

.mikro-hero-logo + h1 {
    margin-top: 4px;
}

.page-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(204, 0, 0, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

/* Software Detail Sections */
.software-detail {
    padding: 80px 0;
}

.software-detail.alt-bg {
    background: var(--light-color);
}

.software-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.software-content.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.software-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.software-logo i {
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.software-logo h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin: 0;
}

.software-logo .badge {
    padding: 4px 12px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-list .feature-item i {
    font-size: 28px;
    color: var(--primary-color);
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.software-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.software-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 30px;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.software-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.software-card.featured {
    background: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, #fff5f5 100%);
    background-image: none;
    color: #1a1a2e;
}

.software-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.software-card.featured .card-icon {
    background: transparent;
}

.software-card .card-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.software-card.featured .card-icon i {
    color: var(--primary-color);
}

.software-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.software-card p {
    color: #4a4a6a;
}

.software-card.featured h3,
.software-card.featured p {
    color: #1a1a2e;
}

/* Custom Intro */
.custom-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.intro-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 40px 30px;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.intro-card i {
    font-size: 64px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.intro-card p {
    color: #4a4a6a;
    line-height: 1.7;
}

/* Custom Software Section */
.custom-software {
    padding: 80px 0;
    background: var(--light-color);
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.custom-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 35px;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.custom-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.custom-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.custom-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.custom-card p {
    color: #4a4a6a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.custom-card ul {
    list-style: none;
    padding: 0;
}

.custom-card ul li {
    padding: 8px 0;
    color: #4a4a6a;
    position: relative;
    padding-left: 25px;
}

.custom-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Hardware About Section */
.hardware-about {
    padding: 80px 0;
    background: var(--light-color);
}

.about-hardware-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-hardware-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-hardware-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-box {
    background: var(--white);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: 35px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: center;
    gap: 0;
    margin-top: 30px;
    box-shadow: 0 8px 32px rgba(204, 0, 0, 0.12);
    position: relative;
}

.highlight-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.highlight-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(204, 0, 0, 0.2), transparent);
    flex-shrink: 0;
}

.highlight-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: var(--gradient);
    z-index: -1;
}


.highlight-logo {
    width: 180px;
    height: 90px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
}

.highlight-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.highlight-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.highlight-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* Brand Partners Section */
.brand-partners {
    padding: 80px 0;
    background: white;
}

.brands-showcase {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.brands-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.brands-image:hover {
    transform: none;
}

/* Security Systems Section */
.security-systems {
    padding: 80px 0;
    background: var(--light-color);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.security-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.security-card.featured {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: white;
}

.security-card.featured .security-icon {
    background: transparent;
    color: white;
}

.security-card.featured h3,
.security-card.featured p,
.security-card.featured .feature-item span {
    color: white;
}

.security-card.featured .feature-item i {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.security-icon i {
    font-size: 36px;
    color: white;
}

.security-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.security-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.feature-item i {
    font-size: 16px;
    color: var(--primary-color);
    background: rgba(204, 0, 0, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Security Expertise Section */
.security-expertise {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(204, 0, 0, 0.1);
}

.expertise-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.expertise-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.expertise-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise-icon i {
    font-size: 32px;
    color: white;
}

.expertise-text h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.expertise-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Security Advantages Section */
.security-advantages {
    margin-top: 60px;
    padding: 50px;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.advantages-header {
    text-align: center;
    margin-bottom: 40px;
}

.advantages-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.advantage-item {
    background: var(--light-color);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.advantage-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 36px;
    font-weight: 800;
    color: rgba(204, 0, 0, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 28px;
    color: white;
}

.advantage-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Camera CTA Section */
.camera-cta {
    margin-top: 60px;
    background: var(--gradient);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(204, 0, 0, 0.3);
}

.camera-cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.camera-icon-large {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.camera-icon-large i {
    font-size: 60px;
    color: white;
}

.camera-text {
    flex: 1;
}

.camera-text h2 {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.camera-text p {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.95;
}

.camera-highlight {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 20px 0 !important;
}

.slogan-box {
    margin-top: 30px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.slogan-box i {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
    display: block;
}

.slogan-box h3 {
    font-size: 26px;
    color: white;
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hardware Sections */
.hardware-categories {
    padding: 80px 0;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hardware-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 35px;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.hardware-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.hardware-card.featured {
    background: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, #fff5f5 100%);
    background-image: none;
    color: #1a1a2e;
}

.hardware-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.hardware-card.featured .hardware-icon {
    background: transparent;
}

.hardware-icon i {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.hardware-card.featured .hardware-icon i {
    color: var(--primary-color);
}

.hardware-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.hardware-card p {
    color: #4a4a6a;
    line-height: 1.7;
}

.hardware-card.featured h3,
.hardware-card.featured p {
    color: #1a1a2e;
}


.hardware-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.hardware-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a4a6a;
}

.hardware-card.featured .hardware-list li {
    color: #4a4a6a;
}

.hardware-list i {
    color: var(--primary-color);
    font-size: 14px;
}

.hardware-card.featured .hardware-list i {
    color: var(--primary-color);
}

/* Server Solutions */
.server-solutions {
    padding: 80px 0;
    background: var(--light-color);
}

.server-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.server-feature {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 40px;
    border-radius: 20px;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-large i {
    font-size: 36px;
    color: var(--primary-color);
}

.server-feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.server-feature p {
    color: #4a4a6a;
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.spec i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.spec span {
    color: #4a4a6a;
    font-size: 15px;
}

/* Network Infrastructure */
.network-infrastructure {
    padding: 80px 0;
}

.infrastructure-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.infra-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.infra-item {
    display: flex;
    gap: 20px;
}

.infra-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.infra-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.infra-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.infra-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-box i {
    font-size: 36px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--text-light);
    margin: 0;
}

/* Hardware Services */
.hardware-services {
    padding: 80px 0;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-box:hover {
    transform: none;
    box-shadow: none;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.7;
}

.service-box i {
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Web Services */
.web-services {
    padding: 80px 0;
}

.web-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.web-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.web-card:hover {
    transform: none;
    box-shadow: none;
}

.web-card.featured {
    background: var(--gradient);
    color: white;
}

.web-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.web-card.featured .web-icon {
    background: transparent;
}

.web-icon i {
    font-size: 32px;
    color: #ffffff;
}

.web-card.featured .web-icon i {
    color: white;
}

.web-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.web-card.featured h3,
.web-card.featured p {
    color: white;
}

.web-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.web-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.web-card.featured .web-list li {
    color: white;
}

.web-list i {
    color: var(--primary-color);
    font-size: 14px;
}

.web-card.featured .web-list i {
    color: white;
}

/* Hosting Section */
.hosting-section {
    padding: 80px 0;
}

.hosting-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.plan-card:hover {
    transform: none;
    box-shadow: none;
}

.plan-card.featured {
    background: var(--gradient);
    color: white;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.plan-header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.plan-card.featured .plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-header i {
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.plan-card.featured .plan-header i {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.plan-card.featured .plan-header h3 {
    color: white;
}

.plan-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.plan-card.featured .plan-price {
    color: white;
}

.plan-price span {
    font-size: 18px;
    font-weight: 400;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-card.featured .plan-feature {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-feature i {
    color: var(--primary-color);
    font-size: 16px;
}

.plan-card.featured .plan-feature i {
    color: white;
}

.plan-feature span {
    color: var(--text-color);
}

.plan-card.featured .plan-feature span {
    color: white;
}

.domain-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.domain-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.domain-info h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.domain-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 18px;
}

.domain-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.domain-features span {
    background: var(--light-color);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--text-color);
    font-size: 15px;
}

.domain-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Web Process */
.web-process {
    padding: 80px 0;
    background: var(--light-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

@media (max-width: 640px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.process-step {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: none;
    box-shadow: none;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Technologies */
.technologies {
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tech-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: none;
    box-shadow: none;
}

.tech-item i {
    font-size: 64px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.tech-item span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Software Selection */
.software-selection {
    padding: 80px 0;
}

.software-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

@media (max-width: 640px) {
    .software-categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 40px 35px;
    border-radius: 1rem;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.category-card.featured {
    background: linear-gradient(135deg, rgba(204,0,0,0.12) 0%, #fff5f5 100%);
    background-image: none;
    color: #1a1a2e;
}

.category-card.featured:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 90px;
    height: 90px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.category-logo-box {
    width: 100%;
    max-width: 200px;
    height: 80px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.category-card:hover .category-icon {
    transform: none;
}

.category-card.featured .category-icon {
    background: transparent;
}

.category-icon i {
    font-size: 48px;
    color: var(--primary-color);
}

.category-card.featured .category-icon i {
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.category-card.featured h3 {
    color: #1a1a2e;
}

.category-card > p {
    font-size: 16px;
    color: #4a4a6a;
    line-height: 1.8;
    margin-bottom: 25px;
}

.category-card.featured > p {
    color: #4a4a6a;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex: 1;
}

.category-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a4a6a;
    font-size: 15px;
}

.category-card.featured .category-features li {
    color: #4a4a6a;
}

.category-features i {
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
}

.category-card.featured .category-features i {
    color: var(--primary-color);
}

.category-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: var(--gradient);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.category-card.featured .category-button {
    background: white;
    color: var(--primary-color);
}

.category-card:hover .category-button {
    padding-right: 0;
}

.category-button i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-button i {
    transform: none;
}

/* Why Choose Software */
.why-choose-software {
    padding: 80px 0;
}


/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 2.4rem;
    color: var(--primary-color);
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.cta-text p {
    font-size: 18px;
    color: #4a4a6a;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Mikro Modules */
.mikro-modules {
    padding: 80px 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 640px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

.module-card {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%);
    background-image: none;
    border: 1px solid rgba(204,0,0,0.15);
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06);
    padding: 35px;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(204,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
}

.module-icon {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.module-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.module-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.module-list {
    list-style: none;
    padding: 0;
}

.module-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a4a6a;
}

.module-list i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* NPratik Theme */
.npratik-bg {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.npratik-page .gradient-text {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.npratik-page .btn-primary {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
}

.npratik-page .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
}

.npratik-page .module-icon {
    background: transparent;
}

.npratik-page .benefit-number {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--dark-color);
    background-clip: unset;
    color: var(--dark-color);
}

.npratik-page .feature-item i {
    color: #cc0000;
    background: transparent !important;
}

.npratik-page .module-list i {
    color: #ffffff;
    background: transparent !important;
}

.npratik-page .software-logo .badge {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
}

.npratik-page .cta-icon {
    background: transparent;
}

.npratik-page .nav-link:hover,
.npratik-page .nav-link.active {
    color: #cc0000;
}

.npratik-page .nav-link::after {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%);
}

.npratik-page .hero-shape {
    background: linear-gradient(135deg, #cc0000 0%, #ff4444 100%) !important;
}

.npratik-page .software-card:hover {
    border-color: transparent;
}

.npratik-page .module-card:hover {
    transform: none;
    box-shadow: none;
}

.npratik-page .benefit-item:hover {
    box-shadow: none;
}

.npratik-benefits {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%) !important;
}

.npratik-detail {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.npratik-page .page-badge {
    background: rgba(227, 30, 36, 0.1);
    color: #cc0000;
}

.npratik-page .mikro-logo-container {
    border: 2px solid #cc0000;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.2);
}

.npratik-page .software-card {
    border: 2px solid transparent;
}

.npratik-page .software-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.npratik-page .hero-badge {
    background: rgba(227, 30, 36, 0.1);
    color: #cc0000;
}

.npratik-page .section-badge {
    background: rgba(227, 30, 36, 0.1) !important;
    color: #cc0000 !important;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: none;
    box-shadow: none;
}

.benefit-number {
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 968px) {
    .software-content,
    .software-content.reverse,
    .infrastructure-content {
        grid-template-columns: 1fr;
    }

    .hosting-plans {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .camera-cta-content {
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 28px;
    }

    .hardware-grid,
    .web-grid,
    .custom-grid,
    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .software-logo h2 {
        font-size: 24px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-showcase {
        padding: 15px;
        max-width: 100%;
    }

    .brands-image {
        max-width: 100%;
    }

    .highlight-box {
        padding: 25px 20px;
    }

    .highlight-box {
        flex-direction: column;
    }

    .highlight-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(204, 0, 0, 0.2), transparent);
    }

    .highlight-item {
        padding: 16px 0;
    }

    .highlight-logo {
        width: 140px;
        height: 70px;
    }

    .about-hardware-text p {
        font-size: 15px;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .security-card {
        padding: 30px 20px;
    }

    .security-icon {
        width: 70px;
        height: 70px;
    }

    .security-icon i {
        font-size: 30px;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .expertise-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .expertise-icon {
        margin: 0 auto;
    }

    .security-advantages {
        padding: 30px 20px;
    }

    .advantages-header h2 {
        font-size: 28px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .camera-cta {
        padding: 40px 25px;
    }

    .camera-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .camera-icon-large {
        width: 100px;
        height: 100px;
    }

    .camera-icon-large i {
        font-size: 50px;
    }

    .camera-text h2 {
        font-size: 22px;
    }

    .camera-text p {
        font-size: 15px;
    }

    .slogan-box {
        padding: 20px;
    }

    .slogan-box i {
        font-size: 32px;
    }

    .slogan-box h3 {
        font-size: 20px;
    }
}

/* Extra Small Devices (320px - smallest mobile) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .logo-text span {
        font-size: 9px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .hero-text p {
        font-size: 13px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .section-header p {
        font-size: 12px;
    }

    .service-card {
        padding: 1.2rem 1rem;
    }

    .reference-card,
    .hardware-card {
        padding: 18px 12px;
    }

    .contact-form {
        padding: 18px 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row .form-group:last-child {
        grid-column: 1;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px;
    }

    .cta-box {
        padding: 25px 12px;
    }

    .cta-text h2 {
        font-size: 18px;
    }

    .cta-text p {
        font-size: 13px;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* =============================================
   Light Card Theme — Açık kırmızıdan beyaza
   ============================================= */
.service-card,
.partner-card,
.about-highlight,
.about-item,
.feature-box,
.about-cta,
.contact-card,
.software-card,
.software-card.featured,
.intro-card,
.custom-card,
.hardware-card,
.hardware-card.featured,
.server-feature {
    background: linear-gradient(135deg, rgba(204,0,0,0.07) 0%, #ffffff 100%) !important;
    background-image: none !important;
    border: 1px solid rgba(204,0,0,0.15) !important;
    box-shadow: 0 4px 24px rgba(204,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06) !important;
}

/* Metin renkleri — beyaz metinleri koyuya çevir */
.service-card h2, .service-card h3, .service-card h4, .service-card .service-card__title,
.partner-card h2, .partner-card h3, .partner-card h4,
.about-highlight h2, .about-highlight h3, .about-highlight h4,
.about-item h3, .about-item h4,
.feature-box h3, .feature-box h4,
.about-cta h2, .about-cta h3,
.contact-card h4,
.software-card h3, .software-card h4, .software-card .software-title,
.intro-card h3, .intro-card h4,
.custom-card h3, .custom-card h4,
.hardware-card h3, .hardware-card h4,
.server-feature h3, .server-feature h4 {
    color: #1a1a2e !important;
}

.service-card p, .service-card span:not(.gradient-text):not(.section-badge):not(.service-card__badge),
.partner-card p,
.about-highlight p, .about-highlight li,
.about-item p,
.feature-box p, .feature-box li,
.about-cta p,
.contact-card p,
.software-card p, .software-card li,
.intro-card p, .intro-card li,
.custom-card p, .custom-card li,
.hardware-card p, .hardware-card li,
.server-feature p, .server-feature li {
    color: #4a4a6a !important;
}

/* İkon renkleri */
.service-card .service-card__icon,
.service-card .service-card__icon i,
.partner-card i,
.about-item i,
.feature-box i,
.server-feature i,
.hardware-card i {
    color: var(--primary-color) !important;
}

/* service-card ikonları gradient kalabilir */
.service-card .service-card__border {
    background: linear-gradient(135deg, rgba(204,0,0,0.15) 0%, rgba(204,0,0,0.05) 100%) !important;
}

/* Contact card metin renkleri */
.contact-card h4,
.contact-info-item h4 {
    color: #1a1a2e !important;
}

.contact-info-item p,
.contact-card p {
    color: #4a4a6a !important;
}

.contact-icon i {
    color: var(--primary-color) !important;
}

/* Butonlar kart override'ından etkilenmesin */
.service-card .btn,
.partner-card .btn,
.about-highlight .btn,
.about-item .btn,
.feature-box .btn,
.about-cta .btn,
.contact-card .btn,
.software-card .btn,
.hardware-card .btn,
.server-feature .btn {
    color: unset !important;
}

.about-cta .btn-primary {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.about-cta .btn-primary span,
.about-cta .btn-primary i {
    color: #ffffff !important;
}

.about-cta .btn-secondary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background: transparent !important;
}

.about-cta .btn-secondary span,
.about-cta .btn-secondary i {
    color: var(--primary-color) !important;
}


