:root {
    --brand: #00704A;
    --brand-2: #10b981;
    --brand-3: #34d399;
    --brand-glow: #6ee7b7;
    --brand-lime: #a7f3d0;
    --bg-0: #0d1424;
    --bg-1: #131c30;
    --bg-2: #182238;
    --bg-3: #1e2a42;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.08);
    --border-2: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(110, 231, 183, 0.25);
    --fg: #f1f5f9;
    --fg-2: #cbd5e1;
    --fg-3: #94a3b8;
    --fg-4: #64748b;
    --fg-5: #475569;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-0);
    color: var(--fg);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ambient::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(16, 185, 129, 0.28), transparent 60%),
        radial-gradient(ellipse 60% 40% at 90% 30%, rgba(0, 112, 74, 0.30), transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 50%, rgba(52, 211, 153, 0.18), transparent 60%);
}
.ambient::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; animation: float 18s ease-in-out infinite; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #10b981, transparent 70%); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #00704A, transparent 70%); top: 30%; right: -150px; animation-delay: -6s; }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, #34d399, transparent 70%); bottom: -100px; left: 30%; animation-delay: -12s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.08); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

body > nav, body > section, body > main, body > footer, .page-main { position: relative; z-index: 1; }

/* site-nav dropdown — koyu tema uyumu */
.nav-dropdown-toggle {
  color: var(--fg-3) !important;
  font-size: 0.92rem !important;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--fg) !important;
  background: var(--surface-2) !important;
}
.nav-dropdown-menu {
  background: var(--bg-2) !important;
  border-color: var(--border) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
}
.nav-dropdown-menu a {
  color: var(--fg-3) !important;
}
.nav-dropdown-menu a:hover {
  background: var(--surface-2) !important;
  color: var(--brand-glow) !important;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(13, 20, 36, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000; padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled { background: rgba(13, 20, 36, 0.88); padding: 0.65rem 0; }
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2rem;
}
.logo {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 1.45rem; font-weight: 800;
    color: white; text-decoration: none; letter-spacing: -0.02em;
}
.logo-icon {
    width: 44px; height: 44px;
    background: white; padding: 5px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(110, 231, 183, 0.35), inset 0 0 0 1px rgba(110, 231, 183, 0.4);
}
.nav-links {
    display: flex; gap: 0.15rem; list-style: none;
    align-items: center; margin: 0; padding: 0;
}
.nav-links > li > a {
    text-decoration: none; color: var(--fg-3); font-weight: 500;
    font-size: 0.92rem; padding: 0.55rem 0.95rem;
    border-radius: 8px; transition: all 0.2s ease; display: inline-block;
}
.nav-links > li > a:hover { color: var(--fg); background: var(--surface-2); }
.nav-links > li > a.active { color: var(--brand-glow); background: var(--surface-2); }
.nav-login {
    background: linear-gradient(135deg, var(--brand-2), var(--brand)) !important;
    color: white !important; padding: 0.55rem 1.2rem !important;
    border-radius: 8px; margin-left: 0.5rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255,255,255,0.18);
    font-weight: 600 !important;
}
.nav-login:hover { transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; }

/* Hero */
.hero {
    position: relative; padding: 11rem 2rem 6rem;
    text-align: center; overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(110, 231, 183, 0.2);
    color: var(--brand-glow);
    padding: 0.45rem 1rem; border-radius: 999px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 2rem; backdrop-filter: blur(10px);
}
.eyebrow .pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--brand-glow);
    box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.6);
    animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(110, 231, 183, 0); }
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900; line-height: 1; color: white;
    letter-spacing: -0.045em; margin-bottom: 1.5rem;
}
.hero-title .gradient {
    background: linear-gradient(135deg, #6ee7b7 0%, #34d399 35%, #10b981 70%, #6ee7b7 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: shine 6s linear infinite;
}
@keyframes shine { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.hero-lead {
    font-size: 1.18rem; color: var(--fg-3);
    max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    max-width: 760px; margin: 0 auto; padding: 1.5rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 20px; backdrop-filter: blur(20px);
}
.hero-stat { text-align: center; position: relative; }
.hero-stat:not(:last-child)::after {
    content: ''; position: absolute; top: 50%; right: -0.5rem;
    transform: translateY(-50%); width: 1px; height: 36px;
    background: linear-gradient(180deg, transparent, var(--border-2), transparent);
}
.stat-counter {
    font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800;
    letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 0.25rem;
    background: linear-gradient(135deg, white, var(--brand-glow));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat-label { font-size: 0.82rem; color: var(--fg-4); font-weight: 500; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* Section */
.section { padding: 6rem 0; position: relative; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--surface); color: var(--brand-glow);
    padding: 0.4rem 0.95rem; border-radius: 999px;
    font-size: 0.74rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 1.2rem; border: 1px solid var(--border);
    font-family: 'JetBrains Mono', monospace;
}
.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800; color: white;
    letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.1rem;
}
.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-glow), var(--brand-3));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lead { font-size: 1.08rem; color: var(--fg-3); line-height: 1.75; max-width: 680px; }

/* Story */
.story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.story-text p {
    font-size: 1.04rem; color: var(--fg-3);
    line-height: 1.85; margin-bottom: 1.1rem;
}
.story-card {
    position: relative;
    background:
        radial-gradient(ellipse 100% 80% at 0% 0%, rgba(16, 185, 129, 0.25), transparent 60%),
        linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-glow);
    border-radius: 24px; padding: 2.75rem;
    overflow: hidden; backdrop-filter: blur(20px);
    min-height: 380px;
}
.story-card::before {
    content: ''; position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.2), transparent 70%);
    border-radius: 50%; filter: blur(40px);
}
.story-card-inner { position: relative; z-index: 2; }
.story-card-label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.25);
    color: var(--brand-glow);
    padding: 0.35rem 0.85rem; border-radius: 999px;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
}
.story-card-year {
    font-size: 5rem; font-weight: 900;
    letter-spacing: -0.05em; line-height: 1;
    margin-bottom: 0.6rem;
    background: linear-gradient(180deg, #ffffff 0%, #6ee7b7 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    text-shadow: 0 0 80px rgba(110, 231, 183, 0.4);
}
.story-card-text {
    font-size: 1.05rem; color: var(--fg-2);
    line-height: 1.7; max-width: 340px;
}
.story-mini-stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.story-mini-stat .v {
    font-size: 1.4rem; font-weight: 800;
    letter-spacing: -0.02em; color: white;
}
.story-mini-stat .l {
    font-size: 0.8rem; color: var(--fg-4);
    font-weight: 500;
}

/* Pillars */
.pillars-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem; margin-top: 3rem;
}
.pillar {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 2.5rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden; backdrop-filter: blur(20px);
}
.pillar::before {
    content: ''; position: absolute;
    inset: -1px; border-radius: 20px; padding: 1px;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.4), transparent 50%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.pillar:hover {
    transform: translateY(-4px);
    background: var(--surface-2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 60px -10px rgba(16, 185, 129, 0.25);
}
.pillar:hover::before { opacity: 1; }
.pillar-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(0, 112, 74, 0.08));
    border: 1px solid rgba(110, 231, 183, 0.25);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; color: var(--brand-glow);
    box-shadow: inset 0 0 20px rgba(110, 231, 183, 0.1);
}
.pillar h3 {
    font-size: 1.4rem; font-weight: 700;
    color: white; margin-bottom: 0.75rem;
    letter-spacing: -0.015em;
}
.pillar p { color: var(--fg-3); line-height: 1.75; font-size: 1rem; }

/* Values */
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-top: 3rem;
}
.value-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px); overflow: hidden;
}
.value-card:hover {
    transform: translateY(-4px);
    background: var(--surface-2);
    border-color: var(--border-glow);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 40px -10px rgba(16, 185, 129, 0.22);
}
.value-num {
    font-size: 0.74rem; font-weight: 600;
    color: var(--brand-glow); letter-spacing: 0.14em;
    margin-bottom: 1rem; font-family: 'JetBrains Mono', monospace;
}
.value-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; color: white;
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.32), inset 0 1px 0 rgba(255,255,255,0.2);
}
.value-card h3 {
    font-size: 1.18rem; font-weight: 700;
    color: white; margin-bottom: 0.55rem;
    letter-spacing: -0.015em;
}
.value-card p { color: var(--fg-3); line-height: 1.7; font-size: 0.94rem; }

/* Integrations strip */
.integrations-strip {
    padding: 4rem 0 5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(5, 8, 16, 0.4);
    backdrop-filter: blur(10px);
}
.integrations-header { text-align: center; margin-bottom: 2.5rem; }
.integrations-header p {
    font-size: 0.76rem; text-transform: uppercase;
    letter-spacing: 0.16em; color: var(--fg-4);
    font-weight: 600; font-family: 'JetBrains Mono', monospace;
}
.integrations-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.int-pill {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.5rem 1rem;
    text-align: center; transition: all 0.2s ease;
    backdrop-filter: blur(20px);
}
.int-pill:hover {
    transform: translateY(-3px);
    background: var(--surface-2);
    border-color: var(--border-glow);
}
.int-pill .name {
    font-weight: 700; color: white;
    font-size: 0.98rem; margin-bottom: 0.15rem;
    letter-spacing: -0.01em;
}
.int-pill .tag {
    font-size: 0.74rem; color: var(--fg-4);
    font-family: 'JetBrains Mono', monospace;
}

/* CTA */
.cta-section { padding: 6rem 0 7rem; }
.cta-card {
    position: relative;
    background:
        radial-gradient(ellipse 80% 100% at 50% 0%, rgba(16, 185, 129, 0.25), transparent 60%),
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(52, 211, 153, 0.15), transparent 60%),
        linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 28px; padding: 4.5rem 3rem;
    text-align: center; overflow: hidden;
    backdrop-filter: blur(20px);
}
.cta-card::before {
    content: ''; position: absolute;
    inset: -1px; border-radius: 28px; padding: 1px;
    background: linear-gradient(135deg, rgba(110, 231, 183, 0.5), transparent 50%, rgba(110, 231, 183, 0.2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-card h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 800; color: white;
    letter-spacing: -0.028em; line-height: 1.18; margin-bottom: 1rem;
}
.cta-card h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-glow), var(--brand-3));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-card p {
    font-size: 1.08rem; color: var(--fg-3);
    max-width: 540px; margin: 0 auto 2.25rem; line-height: 1.7;
}
.cta-buttons {
    display: flex; gap: 0.85rem;
    justify-content: center; flex-wrap: wrap;
}
.btn {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.95rem 1.85rem; border-radius: 12px;
    font-weight: 600; text-decoration: none;
    font-size: 0.96rem; transition: all 0.25s ease;
    border: 1px solid transparent; cursor: pointer; font-family: inherit;
}
.btn-primary {
    background: linear-gradient(135deg, #10b981, #00704A);
    color: white;
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(16, 185, 129, 0.55); }
.btn-ghost {
    background: var(--surface); color: var(--fg);
    border-color: var(--border-2); backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    background: var(--surface-2); border-color: var(--border-glow);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-1); color: var(--fg);
    padding: 4.5rem 0 2rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand img {
    width: 38px; height: 38px;
    background: white; padding: 4px;
    border-radius: 9px;
    box-shadow: 0 6px 14px rgba(110, 231, 183, 0.25);
}
.footer-brand span { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; color: white; }
.footer p { color: var(--fg-4); font-size: 0.92rem; line-height: 1.65; }
.footer-grid h4 {
    font-size: 0.72rem; font-weight: 600;
    color: var(--fg-4); letter-spacing: 0.14em;
    text-transform: uppercase; margin-bottom: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a {
    color: var(--fg-3); text-decoration: none;
    font-size: 0.92rem; transition: color 0.2s ease;
}
.footer-grid a:hover { color: var(--brand-glow); }
.footer-bottom { text-align: center; padding-top: 2rem; color: var(--fg-5); font-size: 0.86rem; }

/* Responsive */
@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .integrations-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .section { padding: 4rem 0; }
    .hero { padding: 9rem 1.25rem 4rem; }
    .nav-container { padding: 0 1rem; }
    .logo { font-size: 1.2rem; }
    .logo-icon { width: 32px; height: 32px; }
    .hero-stats { gap: 0.5rem; padding: 1rem; }
    .stat-counter { font-size: 1.4rem; }
    .story-card { padding: 2rem; }
    .story-card-year { font-size: 3.8rem; }
    .pillar, .value-card { padding: 1.75rem; }
    .cta-card { padding: 3rem 1.5rem; }
}
@media (max-width: 560px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none; position: fixed; top: 60px;
        left: 0; right: 0;
        background: rgba(19, 28, 48, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 1rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--border); gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.85rem 1rem; font-size: 0.96rem; border-radius: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .integrations-row { grid-template-columns: 1fr 1fr; }
}
    </style>
/* Sayfa içerik alanı */
body > nav,
body > section,
body > main,
body > footer,
.page-main {
  position: relative;
  z-index: 1;
}

.page-main {
  padding: 0 0 5rem;
}

.page-main .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.page-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  text-align: center;
}

.page-section-lead {
  text-align: center;
  color: var(--fg-3);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px -10px rgba(16, 185, 129, 0.2);
  background: var(--surface-2);
}

.blog-card-image {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(0, 112, 74, 0.06));
  border-bottom: 1px solid var(--border);
}

.blog-card-content {
  padding: 1.35rem 1.5rem 1.5rem;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-glow);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(110, 231, 183, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.blog-card-excerpt {
  color: var(--fg-3);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--fg-4);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.integration-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.integration-card:hover {
  border-color: var(--border-glow);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.integration-card-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.integration-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 0.75rem;
}

.integration-card p {
  color: var(--fg-3);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.integration-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  color: var(--fg-4);
  font-size: 0.88rem;
}

.integration-card li {
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
}

.integration-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-glow);
  font-weight: 700;
}

.integration-card .btn-card {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: white;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.3);
}

/* Referanslar */
.stats-panel,
.integration-partners-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(20px);
}

.stats-panel h2,
.integration-partners-panel h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stats-panel > p,
.integration-partners-panel > p {
  text-align: center;
  color: var(--fg-3);
  font-size: 0.92rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.stat-number {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, white, var(--brand-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-4);
  font-weight: 500;
}

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

.reference-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  backdrop-filter: blur(20px);
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.reference-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), transparent);
  border-bottom: 1px solid var(--border);
}

.reference-content {
  padding: 1.35rem;
}

.reference-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-glow);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(110, 231, 183, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  font-family: 'JetBrains Mono', monospace;
}

.reference-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.reference-description,
.reference-stats {
  color: var(--fg-3);
  font-size: 0.88rem;
}

.reference-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.integration-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  margin: 1rem 0;
}

.integration-logos-row img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.05);
}

.integration-logos-more {
  text-align: center;
  margin-top: 1rem;
}

.integration-logos-more a {
  color: var(--brand-glow);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

.integration-logos-more a:hover {
  text-decoration: underline;
}

.ads-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.ads-cta-row a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.ads-cta-restaurant {
  background: linear-gradient(135deg, #10b981, #00704A);
  color: white;
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.35);
}

.ads-cta-courier {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border-2);
}

.ads-cta-row a:hover {
  transform: translateY(-2px);
}

.ref-cta-box {
  margin-top: 2rem;
  text-align: center;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.ref-cta-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.ref-cta-box p {
  color: var(--fg-3);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.ref-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--fg-3);
}

/* SSS / Destek */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.support-card:hover {
  border-color: var(--border-glow);
  background: var(--surface-2);
}

.support-card-wide {
  grid-column: 1 / -1;
}

.support-card-image {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), transparent);
  border-bottom: 1px solid var(--border);
}

.support-card-body {
  padding: 1.5rem;
}

.support-card-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-glow);
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
}

.support-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.65rem;
}

.support-card p {
  color: var(--fg-3);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.contact-info .contact-item {
  color: var(--fg-3);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--fg-2);
}

.support-card .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.faq-list {
  margin-top: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: var(--surface-2);
}

.faq-question {
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.faq-question::after {
  content: '+';
  color: var(--brand-glow);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.15rem 1rem;
  color: var(--fg-3);
  font-size: 0.9rem;
  line-height: 1.65;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (max-width: 900px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .references-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog makale sayfaları */
.article-main {
  padding-top: 0;
}

.article-main .container {
  max-width: 820px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand-glow);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: white;
}

.blog-post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.blog-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), transparent);
}

.blog-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-glow);
  margin-bottom: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
}

.blog-title {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--fg-3);
  font-size: 0.88rem;
}

.blog-content {
  padding: 2rem;
  color: var(--fg-2);
  font-size: 1rem;
  line-height: 1.8;
}

.blog-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: white;
  margin: 2rem 0 0.85rem;
}

.blog-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg-1);
  margin: 1.5rem 0 0.65rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
  margin: 0.75rem 0 1.25rem 1.25rem;
}

.blog-content li {
  margin-bottom: 0.45rem;
}

.blog-content a {
  color: var(--brand-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content a:hover {
  color: white;
}

.blog-content strong {
  color: white;
}

.cta-box {
  margin-top: 2rem;
  padding: 1.75rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.04));
  border: 1px solid var(--border-glow);
  text-align: center;
}

.cta-box h3 {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: var(--fg-3);
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, var(--brand), #059669);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
}

@media (max-width: 768px) {
  .blog-header,
  .blog-content {
    padding: 1.25rem;
  }
}
