/* ===== Reset & Variables ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --primary-dark: #e0e0e0;
    --primary-light: #a0a0a0;
    --cyan: #888888;
    --purple: #999999;
    --green: #888888;
    --orange: #999999;
    --accent: #ffffff;
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text: #999999;
    --text-muted: #555555;
    --text-bright: #e8e8e8;
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255,255,255,0.06);
}

/* ===== Light Theme ===== */
[data-theme="light"] {
    --primary: #111111;
    --primary-dark: #222222;
    --primary-light: #555555;
    --cyan: #555555;
    --purple: #666666;
    --green: #555555;
    --orange: #666666;
    --accent: #111111;
    --bg: #f5f5f5;
    --bg-elevated: #eeeeee;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f0;
    --text: #555555;
    --text-muted: #888888;
    --text-bright: #111111;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.08);
    --navbar-bg: rgba(245, 245, 245, 0.85);
    --mobile-menu-bg: rgba(245, 245, 245, 0.98);
    --cookie-bg: rgba(245, 245, 245, 0.95);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Background Grid ===== */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

[data-theme="light"] .bg-grid {
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navbar-bg, rgba(10, 10, 10, 0.85));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--text-muted);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.nav-links a:hover { color: var(--text-bright); }

.nav-links .nav-cta {
    color: var(--bg);
    background: var(--text-bright);
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--text-bright);
    transition: all 0.2s;
}

.nav-links .nav-cta:hover {
    opacity: 0.85;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.theme-toggle:hover {
    color: var(--text-bright);
    border-color: var(--text-muted);
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
}

.theme-toggle .icon-moon,
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(255,255,255,0.04);
    padding: 3px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

[data-theme="light"] .lang-switcher {
    background: rgba(0,0,0,0.04);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.02em;
}

.lang-btn:hover { color: var(--text-bright); }
.lang-btn.active { background: rgba(255,255,255,0.12); color: var(--text-bright); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mobile-menu-bg, rgba(10, 10, 10, 0.98));
    backdrop-filter: blur(24px);
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-lang-switcher {
    display: flex;
    gap: 4px;
    margin-top: 24px;
}

.mobile-lang-switcher .lang-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-showcase {
    margin-bottom: 40px;
}

.hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 0 60px rgba(255,255,255,0.06), 0 0 120px rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
}

[data-theme="light"] .hero-logo {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.08);
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-bright);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text {
    color: var(--text-bright);
    -webkit-text-fill-color: var(--text-bright);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
    font-family: inherit;
    letter-spacing: -0.01em;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-bright);
    color: var(--bg);
    box-shadow: none;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    box-shadow: none;
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid var(--border-light);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

[data-theme="light"] .btn-ghost {
    background: rgba(0,0,0,0.04);
}

[data-theme="light"] .btn-ghost:hover {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.12);
}

[data-theme="light"] .lang-btn.active {
    background: rgba(0,0,0,0.1);
}

[data-theme="light"] .service-icon.icon-cyan,
[data-theme="light"] .service-icon.icon-purple,
[data-theme="light"] .service-icon.icon-green,
[data-theme="light"] .service-icon.icon-orange {
    background: rgba(0,0,0,0.05);
}

[data-theme="light"] .blog-page-content blockquote {
    border-left-color: rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.02);
}

[data-theme="light"] .blog-page-content code {
    background: rgba(0,0,0,0.06);
}

[data-theme="light"] .blog-page-content .info-box {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}

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

.stat { text-align: center; }

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* ===== Section Common ===== */
.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.7;
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

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

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    color: var(--text);
}

.service-icon.icon-cyan { background: rgba(255,255,255,0.05); }
.service-icon.icon-cyan svg { color: var(--text); }
.service-icon.icon-purple { background: rgba(255,255,255,0.05); }
.service-icon.icon-purple svg { color: var(--text); }
.service-icon.icon-green { background: rgba(255,255,255,0.05); }
.service-icon.icon-green svg { color: var(--text); }
.service-icon.icon-orange { background: rgba(255,255,255,0.05); }
.service-icon.icon-orange svg { color: var(--text); }

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

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

.services-tagline {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 0.8;
}

/* ===== Products ===== */
.products {
    padding: 40px 0 120px;
    position: relative;
    z-index: 1;
}

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

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.product-card.product-featured {
    grid-column: 1 / -1;
    border-color: rgba(255,255,255,0.08);
    background: linear-gradient(135deg, rgba(255,255,255,0.02), var(--bg-card));
}

.product-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.product-name h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

.product-platform {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
    font-family: 'JetBrains Mono', monospace;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-tags span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

/* ===== Clients ===== */
.clients {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

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

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.project-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.project-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: -0.02em;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s;
}

.project-card:hover .arrow-icon,
.product-card:hover .arrow-icon {
    color: #fff;
    transform: translate(2px, -2px);
}

.project-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.6;
}

.project-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 6px;
    align-self: flex-start;
}

/* ===== Blog ===== */
.blog {
    padding: 40px 0 120px;
    position: relative;
    z-index: 1;
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.blog-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    background: rgba(255,255,255,0.06);
    padding: 3px 8px;
    border-radius: 4px;
}

.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

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

/* ===== Contact ===== */
.contact {
    padding: 40px 0 120px;
    position: relative;
    z-index: 1;
}

.contact-card-wrap {
    position: relative;
}

.contact-inner {
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 72px 48px;
}

.contact-inner h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.contact-inner > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px 28px;
    transition: all 0.25s;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-link:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--text);
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-logo-img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

.footer-inner p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--cookie-bg, rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-light);
    padding: 20px 24px;
}

.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-inner p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: -0.01em;
}

.cookie-accept {
    background: var(--text-bright);
    color: var(--bg);
}

.cookie-accept:hover {
    opacity: 0.85;
}

.cookie-reject {
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text);
}

/* ===== Blog Page Styles ===== */
.blog-page {
    padding: 120px 24px 80px;
    position: relative;
    z-index: 1;
}

.blog-page .container {
    max-width: 740px;
}

.blog-page-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    transition: color 0.2s;
}

.blog-page-back:hover {
    color: #fff;
}

.blog-page-back svg {
    width: 16px;
    height: 16px;
}

.blog-page-header {
    margin-bottom: 48px;
}

.blog-page-header .blog-meta {
    margin-bottom: 20px;
}

.blog-page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.blog-page-header .blog-excerpt {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.blog-page-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-top: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.blog-page-content p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-page-content ul,
.blog-page-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-page-content li {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 8px;
}

.blog-page-content strong {
    color: var(--text-bright);
    font-weight: 600;
}

.blog-page-content code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    background: rgba(255,255,255,0.06);
    color: var(--text-bright);
    padding: 2px 6px;
    border-radius: 4px;
}

.blog-page-content blockquote {
    border-left: 3px solid rgba(255,255,255,0.2);
    padding: 16px 24px;
    margin: 28px 0;
    background: rgba(255,255,255,0.02);
    border-radius: 0 12px 12px 0;
}

.blog-page-content blockquote p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

.blog-page-content .info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    margin: 28px 0;
}

.blog-page-content .info-box h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-page-content .info-box p {
    margin-bottom: 8px;
}

.blog-page-content .info-box p:last-child {
    margin-bottom: 0;
}

.video-embed {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 40px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

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

.blog-page-content hr {
    border: none;
    height: 1px;
    background: var(--border-light);
    margin: 48px 0;
}

/* ===== Scroll Animations ===== */
.service-card,
.product-card,
.project-card,
.blog-card,
.contact-card-wrap {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible,
.product-card.visible,
.project-card.visible,
.blog-card.visible,
.contact-card-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5) { transition-delay: 0.32s; }

.product-card:nth-child(2) { transition-delay: 0.08s; }
.product-card:nth-child(3) { transition-delay: 0.16s; }
.product-card:nth-child(4) { transition-delay: 0.24s; }
.product-card:nth-child(5) { transition-delay: 0.32s; }
.product-card:nth-child(6) { transition-delay: 0.40s; }

.project-card:nth-child(2) { transition-delay: 0.08s; }
.project-card:nth-child(3) { transition-delay: 0.16s; }
.project-card:nth-child(4) { transition-delay: 0.24s; }

.blog-card:nth-child(2) { transition-delay: 0.08s; }
.blog-card:nth-child(3) { transition-delay: 0.16s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .navbar .lang-switcher { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero {
        min-height: auto;
        padding: 120px 24px 64px;
    }

    .hero h1 { font-size: 2.4rem; }

    .hero-logo { width: 72px; height: 72px; border-radius: 18px; }

    .hero-stats { gap: 20px; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.7rem; }

    .section-title { font-size: 1.8rem; }

    .services-grid,
    .products-grid,
    .clients-grid,
    .blog-grid { grid-template-columns: 1fr; }

    .product-card.product-featured { grid-column: 1; }

    .contact-inner { padding: 48px 24px; }
    .contact-inner h2 { font-size: 1.8rem; }

    .contact-links { flex-direction: column; align-items: center; }
    .contact-link { width: 100%; justify-content: center; }

    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }

    .cookie-inner { flex-direction: column; text-align: center; }

    .blog-page-header h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
}
