/* ═══════════════════════════════════════
   ELFOMEDIA — SHARED STYLES
   ═══════════════════════════════════════ */

:root {
    --bg: #0a0a0a;
    --white: #f5f5f0;
    --text: #d4d0c8;
    --text-muted: #8a8580;
    --text-dim: #5a5650;
    --accent: #c8ff00;
    --accent-dark: #a5d400;
    --surface: rgba(255,255,255,0.035);
    --surface-hover: rgba(255,255,255,0.06);
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.14);
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection { background: var(--accent); color: var(--bg); }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.5s var(--ease-out-expo), background 0.3s;
    transform: translateY(-100%);
    animation: navSlide 0.6s 0.5s var(--ease-out-expo) forwards;
}
@keyframes navSlide { to { transform: translateY(0); } }
nav.scrolled { background: rgba(10, 10, 10, 0.9); }
nav.nav-hidden { transform: translateY(-100%); }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-cta {
    background: var(--accent) !important;
    color: var(--bg) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.82rem !important;
    font-weight: 600;
    transition: opacity 0.3s !important;
}
.nav-cta:hover { opacity: 0.85; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(40px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.5s;
}
.mobile-menu.active { opacity: 1; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--ease-out-expo), color 0.3s;
}
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   HERO (home)
═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem 0.4rem 0.7rem;
    border-radius: 100px;
    border: 1px solid rgba(200, 255, 0, 0.15);
    background: rgba(200, 255, 0, 0.04);
    font-size: 0.78rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.6s var(--ease-out-expo) forwards;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(200, 255, 0, 0.5);
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 400;
    margin-bottom: 2rem;
}
.hero-line { display: block; overflow: hidden; }
.hero-line-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
    animation: lineReveal 1s var(--ease-out-expo) forwards;
}
.hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.3s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.45s; }
.hero-line:nth-child(3) .hero-line-inner { animation-delay: 0.6s; }
@keyframes lineReveal { to { opacity: 1; transform: translateY(0); } }

.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.8s var(--ease-out-expo) forwards;
}

.hero-actions {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 1s var(--ease-out-expo) forwards;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s var(--ease-out-expo);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-primary .btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-strip {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    gap: clamp(3rem, 6vw, 6rem);
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--white);
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ═══════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════ */
section {
    padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 4vw, 4rem);
    position: relative;
}

.section-label {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 400;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--white);
}
.section-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}

/* ═══════════════════════════════════════
   REVEAL SYSTEM
═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd-1 { transition-delay: 0.08s; }
.rd-2 { transition-delay: 0.16s; }
.rd-3 { transition-delay: 0.24s; }
.rd-4 { transition-delay: 0.32s; }
.rd-5 { transition-delay: 0.40s; }
.rd-6 { transition-delay: 0.48s; }
.rd-7 { transition-delay: 0.56s; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-desc { margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.service-card {
    background: var(--bg);
    padding: clamp(2rem, 3vw, 2.5rem);
    cursor: pointer;
    transition: background 0.4s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card:hover { background: rgba(255,255,255,0.03); }

.service-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    background: rgba(200, 255, 0, 0.06);
    color: var(--accent);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: var(--white);
}
.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.25rem;
}
.service-tags span {
    font-size: 0.68rem;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: border-color 0.3s;
}
.service-card:hover .service-tags span { border-color: var(--border-hover); }

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-card-link {
    opacity: 1;
    transform: translateX(0);
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-desc { margin: 0 auto; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    padding: 2rem;
    border-left: 1px solid var(--border);
}
.process-step:first-child { border-left: none; }

.process-number {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}
.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 400;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   SHOWCASE
═══════════════════════════════════════ */
.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.showcase-card {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    cursor: pointer;
}
.showcase-card:first-child { grid-column: span 2; aspect-ratio: 21/9; }

.showcase-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--ease-out-expo), filter 0.8s;
}
.showcase-card:hover .showcase-bg { transform: scale(1.05); filter: brightness(1.1); }

.showcase-card:nth-child(1) .showcase-bg { background: linear-gradient(135deg, #0a1628, #162544, #1e3a5f); }
.showcase-card:nth-child(2) .showcase-bg { background: linear-gradient(135deg, #1a0a2e, #2d1555, #3d1f7a); }
.showcase-card:nth-child(3) .showcase-bg { background: linear-gradient(135deg, #061a0f, #0d3320, #1a5c38); }
.showcase-card:nth-child(4) .showcase-bg { background: linear-gradient(135deg, #2a1508, #4a2512, #6b3820); }
.showcase-card:nth-child(5) .showcase-bg { background: linear-gradient(135deg, #15082a, #2a1058, #401a82); }

.showcase-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(10px);
    opacity: 0.7;
    transition: all 0.5s var(--ease-out-expo);
}
.showcase-card:hover .showcase-content { transform: translateY(0); opacity: 1; }
.showcase-tag {
    font-size: 0.68rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.showcase-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--white);
}

/* ═══════════════════════════════════════
   TECH MARQUEE
═══════════════════════════════════════ */
#teknolojiler { text-align: center; overflow: hidden; }

.tech-marquee-wrap { overflow: hidden; margin-top: 3rem; }
.tech-marquee {
    display: flex;
    gap: 1.25rem;
    animation: techScroll 30s linear infinite;
    width: max-content;
}
.tech-marquee:hover { animation-play-state: paused; }
@keyframes techScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    white-space: nowrap;
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: all 0.4s;
}
.tech-item:hover { border-color: var(--accent); color: var(--white); }
.tech-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.tech-marquee-reverse {
    display: flex;
    gap: 1.25rem;
    animation: techScrollReverse 35s linear infinite;
    width: max-content;
    margin-top: 0.75rem;
}
@keyframes techScrollReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-desc { margin: 0 auto; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg);
    position: relative;
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.15;
    margin-bottom: -1rem;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.78rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bg);
    background: var(--accent);
}
.testimonial-name { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.testimonial-role { font-size: 0.72rem; color: var(--text-dim); }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-section {
    text-align: center;
    padding: clamp(6rem, 14vw, 12rem) 2rem;
    border-top: 1px solid var(--border);
}
.cta-section .section-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: 1rem;
}
.cta-section .section-title em { font-style: italic; color: var(--accent); }
.cta-section .section-desc { margin: 0 auto 2.5rem; }

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.cta-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
}
.cta-link:hover { color: var(--white); border-color: var(--white); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
    padding: 4rem clamp(1.5rem, 4vw, 4rem) 2rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-brand { max-width: 280px; }
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}
.footer-logo span { color: var(--accent); }
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; }

.footer-col h4 {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--text-dim);
    transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════
   PAGE HERO (subpages)
═══════════════════════════════════════ */
.page-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .section-desc {
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.72rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.breadcrumb a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }
.breadcrumb .current { color: var(--text-muted); }

/* ═══════════════════════════════════════
   SERVICES PAGE — larger cards
═══════════════════════════════════════ */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.services-page-grid .service-card {
    padding: clamp(2rem, 4vw, 3rem);
}

/* Why ElfoMedia section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.why-item {
    background: var(--bg);
    padding: 2.5rem;
}
.why-item h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 400;
}
.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.why-number {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   SERVICE DETAIL
═══════════════════════════════════════ */
.service-detail-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
.service-detail-intro p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.feature-card {
    background: var(--bg);
    padding: 2rem;
}
.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 400;
}
.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.feature-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(200, 255, 0, 0.06);
    color: var(--accent);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.blog-card {
    background: var(--bg);
    padding: clamp(2rem, 3vw, 2.5rem);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background 0.4s;
}
.blog-card:hover { background: rgba(255,255,255,0.03); }

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.72rem;
    color: var(--text-dim);
}
.blog-card-category {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-size: 0.68rem;
}
.blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}
.blog-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.25rem;
}
.blog-card-link {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ═══════════════════════════════════════
   BLOG DETAIL
═══════════════════════════════════════ */
.blog-detail {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-dim);
}
.blog-detail-meta .blog-card-category {
    font-size: 0.72rem;
}
.blog-detail h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 2.5rem 0 1rem;
    color: var(--white);
    font-weight: 400;
}
.blog-detail p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.blog-detail ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.9;
}
.blog-detail li { margin-bottom: 0.5rem; }

.blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
}
.blog-author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}
.blog-author-name { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.blog-author-role { font-size: 0.72rem; color: var(--text-dim); }

.related-posts { margin-top: 4rem; }
.related-posts h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 400;
}

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.contact-info {
    background: var(--bg);
    padding: clamp(2rem, 4vw, 3.5rem);
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.contact-info p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.contact-info-item svg {
    color: var(--accent);
    flex-shrink: 0;
}
.contact-info-item a,
.contact-info-item span {
    color: var(--text);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--accent); }
.contact-form-wrap {
    background: var(--bg);
    padding: clamp(2rem, 4vw, 3.5rem);
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-dim);
}
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 0.5rem;
}
.btn-submit:hover { opacity: 0.85; }
.contact-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}
.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-dim);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.contact-socials a:hover { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-story {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
.about-story p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.about-value-card {
    background: var(--bg);
    padding: clamp(2rem, 3vw, 2.5rem);
}
.about-value-card .feature-icon { margin-bottom: 1.2rem; }
.about-value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.8rem;
}
.about-value-card p {
    color: var(--text-dim);
    font-size: 0.8rem;
    line-height: 1.7;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 700px;
    margin: 0 auto;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.team-card {
    background: var(--bg);
    padding: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
}
.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(200,255,0,0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}
.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.3rem;
}
.team-card p {
    color: var(--text-dim);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════
   404 PAGE
═══════════════════════════════════════ */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.error-code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    color: var(--accent);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 1rem;
}
.error-page h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1rem;
}
.error-page p {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 400px;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════
   SHOWCASE / BLOG CARD IMAGES
═══════════════════════════════════════ */
.showcase-card { position: relative; }
.showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: opacity 0.4s;
}
.showcase-card:hover .showcase-bg { opacity: 0.55; }
.blog-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(200,255,0,0.04);
    border-radius: 8px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-page-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-card:first-child { grid-column: span 1; aspect-ratio: 16/10; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { border-left: none; border-bottom: 1px solid var(--border); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .other-services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-strip { gap: 2rem; }
    .page-hero { padding: 8rem 1.5rem 3rem; }
    .form-row { grid-template-columns: 1fr; }
}
