/* =========================================
   LYSTRA YAZILIM - MAIN STYLESHEET
   ========================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:        #070E09;
    --bg2:       #0C1810;
    --bg3:       #112014;
    --border:    rgba(255,255,255,0.07);
    --border2:   rgba(255,255,255,0.14);
    --text:      #CCDEC8;
    --text-muted:#7AA876;
    --white:     #FFFFFF;

    --purple:    #3D7833;
    --purple-l:  #5FAD52;
    --cyan:      #2E8A65;
    --cyan-l:    #48AE87;
    --orange:    #F97316;
    --green:     #22C55E;
    --pink:      #EC4899;
    --red:       #EF4444;

    --grad:      linear-gradient(135deg, var(--purple-l), var(--cyan));
    --grad2:     linear-gradient(135deg, var(--purple), var(--purple-l));

    --radius:    12px;
    --radius-lg: 20px;
    --shadow:    0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);

    --nav-h:     72px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--grad2);
    color: white;
    box-shadow: 0 4px 16px rgba(61,120,51,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,120,51,0.5); filter: brightness(1.1); }
.btn-outline {
    border: 1.5px solid var(--border2);
    color: var(--text);
    background: transparent;
}
.btn-outline:hover { border-color: var(--purple-l); color: var(--white); background: rgba(61,120,51,0.1); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(6,12,8,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.logo-icon {
    width: 36px; height: 36px;
    background: var(--grad2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.logo-text { color: var(--text); letter-spacing: 0.01em; }
.logo-text strong { color: var(--white); }
.nav-logo-img {
    height: 80px;
    width: auto;
    display: block;
}

/* =========================================
   WHATSAPP FLOAT BUTTON
   ========================================= */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 2500;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 2400;
    width: 44px;
    height: 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    pointer-events: none;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.back-to-top:hover {
    background: var(--purple);
}
.back-to-top svg { display: block; }

/* =========================================
   MOBILE STICKY CTA BAR
   ========================================= */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2300;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    gap: 10px;
}
.mobile-sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 0;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.mobile-sticky-bar a:active { opacity: 0.8; }
.msb-call {
    background: var(--surface-2);
    color: var(--text-main);
    border: 1px solid var(--border);
}
.msb-wa {
    background: #25D366;
    color: #fff;
}
.msb-card {
    background: var(--bg3);
    color: var(--text);
    border: 1px solid var(--border);
}

/* =========================================
   PORTFOLIO DETAIL BANNER
   ========================================= */
.pf-detail-banner {
    width: 100%;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* =========================================
   BLOG SEARCH
   ========================================= */
.blog-search-wrap {
    max-width: 480px;
    margin: 0 auto 40px;
    position: relative;
}
.blog-search-input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px 48px 13px 18px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.blog-search-input:focus { border-color: var(--purple); }
.blog-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
.blog-no-results {
    text-align: center;
    color: var(--text-muted);
    padding: 48px 0;
    display: none;
    grid-column: 1 / -1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.nav-cta { margin-left: 12px; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* =========================================
   FLASH MESSAGES
   ========================================= */
.flash-container {
    position: fixed;
    top: calc(var(--nav-h) + 12px);
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    min-width: 300px;
    max-width: 420px;
    animation: slideIn 0.3s ease;
}
.flash-success { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.flash-error   { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.flash-close { background: none; border: none; color: inherit; font-size: 0.9rem; padding: 0 4px; opacity: 0.7; }
.flash-close:hover { opacity: 1; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* =========================================
   HERO BACKGROUND
   ========================================= */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
}
.orb-1 {
    width: 600px; height: 600px;
    background: var(--purple);
    top: -200px; right: -100px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: var(--cyan);
    bottom: -100px; left: -50px;
}
.hero-grid {
    display: none;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(61,120,51,0.15);
    border: 1px solid rgba(61,120,51,0.3);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--purple-l);
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-platforms {
    display: flex;
    gap: 10px;
}
.platform-badge {
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid;
}
.platform-badge.ios     { color: var(--text); border-color: var(--border2); background: rgba(255,255,255,0.04); }
.platform-badge.android { color: var(--green); border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.08); }
.platform-badge.flutter { color: var(--cyan-l); border-color: rgba(46,138,101,0.3); background: rgba(46,138,101,0.08); }

/* PHONE MOCKUP */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup {
    position: relative;
    width: 280px;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
.phone-frame {
    width: 260px;
    background: linear-gradient(145deg, #111a13, #0d1a0f);
    border-radius: 40px;
    padding: 12px;
    border: 1.5px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
    margin: 0 auto;
}
.phone-screen {
    background: #070e09;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 480px;
}
.phone-notch {
    width: 80px; height: 26px;
    background: #070e09;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative; z-index: 2;
}
.phone-app-ui { padding: 16px; }
.app-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.app-avatar { width: 36px; height: 36px; background: var(--grad2); border-radius: 10px; flex-shrink:0; }
.app-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.app-line.short { width: 60px; margin-bottom: 6px; }
.app-line.medium { width: 100px; }
.app-card { height: 110px; background: linear-gradient(135deg, var(--purple), var(--cyan)); border-radius: 16px; margin-bottom: 14px; opacity:0.9; }
.app-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.stat-box { height: 54px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid var(--border); }
.app-list { display: flex; flex-direction: column; gap: 8px; }
.list-item { height: 36px; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid var(--border); }

.phone-glow {
    display: none;
}
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(8,18,10,0.9);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(12px);
    white-space: nowrap;
}
.badge-top  { top: 30px;  right: -40px; }
.badge-bottom { bottom: 40px; left: -40px; }
.fb-icon { font-size: 1.4rem; color: #FFB800; }
.fb-icon.green { color: var(--green); }
.floating-badge strong { display: block; font-size: 0.95rem; color: var(--white); }
.floating-badge small  { font-size: 0.72rem; color: var(--text-muted); }

.hero-scroll-hint {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 0.78rem;
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--border2), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }

/* =========================================
   STATS
   ========================================= */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.stat-card {
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }
.stat-value { font-size: 2.6rem; font-weight: 900; letter-spacing: -0.02em; }
.stat-label { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }

/* =========================================
   SECTIONS
   ========================================= */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(61,120,51,0.12);
    border: 1px solid rgba(61,120,51,0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--purple-l);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 48px; }

/* =========================================
   SERVICE CARDS (HOME)
   ========================================= */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow); }
.card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.icon-purple { background: rgba(61,120,51,0.15); color: var(--purple-l); }
.icon-cyan   { background: rgba(46,138,101,0.15);  color: var(--cyan-l); }
.icon-orange { background: rgba(249,115,22,0.15); color: var(--orange); }
.icon-green  { background: rgba(34,197,94,0.15);  color: var(--green); }
.icon-red    { background: rgba(239,68,68,0.15);  color: var(--red); }
.icon-pink   { background: rgba(236,72,153,0.15); color: var(--pink); }

.service-card h3 { font-size: 1.15rem; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.service-card p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--purple-l);
    transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* =========================================
   WHY US SECTION
   ========================================= */
.why-section { background: var(--bg2); }
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.why-feature { display: flex; align-items: flex-start; gap: 14px; }
.wf-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.wf-icon.purple { background: rgba(61,120,51,0.15); color: var(--purple-l); }
.wf-icon.cyan   { background: rgba(46,138,101,0.15);  color: var(--cyan-l); }
.wf-icon.orange { background: rgba(249,115,22,0.15); color: var(--orange); }
.wf-icon.green  { background: rgba(34,197,94,0.15);  color: var(--green); }
.why-feature strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 3px; }
.why-feature p { color: var(--text-muted); font-size: 0.88rem; }

.tech-stack-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}
.tech-stack-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border2);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.tech-tag:hover { color: var(--white); border-color: var(--purple-l); background: rgba(61,120,51,0.1); }

.review-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 12px; }
.review-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; color: white;
    flex-shrink: 0;
}
.reviewer-avatar.purple { background: var(--grad2); }
.reviewer strong { display: block; color: var(--white); font-size: 0.9rem; }
.reviewer small  { color: var(--text-muted); font-size: 0.78rem; }

/* =========================================
   PORTFOLIO PREVIEW (HOME)
   ========================================= */
.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.portfolio-visual {
    height: 200px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.bg-purple { background: linear-gradient(135deg, rgba(61,120,51,0.4), rgba(95,173,82,0.2)); }
.bg-cyan   { background: linear-gradient(135deg, rgba(46,138,101,0.4), rgba(72,174,135,0.2)); }
.bg-orange { background: linear-gradient(135deg, rgba(249,115,22,0.4), rgba(251,146,60,0.2)); }
.bg-green  { background: linear-gradient(135deg, rgba(34,197,94,0.4), rgba(74,222,128,0.2)); }
.bg-pink   { background: linear-gradient(135deg, rgba(236,72,153,0.4), rgba(244,114,182,0.2)); }
.bg-red    { background: linear-gradient(135deg, rgba(239,68,68,0.4), rgba(248,113,113,0.2)); }

.pv-phone {
    width: 80px;
    height: 140px;
    background: rgba(6,12,8,0.8);
    border-radius: 16px;
    border: 1.5px solid rgba(255,255,255,0.15);
    overflow: hidden;
}
.pv-screen {
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.03), transparent);
}
.pv-label {
    position: absolute;
    bottom: 12px; right: 12px;
    padding: 3px 10px;
    background: rgba(6,12,8,0.8);
    border: 1px solid var(--border2);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--text-muted);
    backdrop-filter: blur(8px);
}
.portfolio-info { padding: 22px; }
.portfolio-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--purple-l);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.portfolio-info h3 { color: var(--white); font-size: 1.1rem; margin: 6px 0; font-weight: 700; }
.portfolio-info p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; background: var(--bg2); }
.cta-orb {
    display: none;
}
.cta-inner {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-inner p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.7; }
.cta-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   PAGE HERO
   ========================================= */
.page-hero {
    position: relative;
    padding: calc(var(--nav-h) + 80px) 0 80px;
    text-align: center;
    overflow: hidden;
}
.page-hero-inner { position: relative; }
.page-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}
.page-hero-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-full-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.service-full-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow); }
.sfc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.sfc-header h3 { font-size: 1.05rem; color: var(--white); font-weight: 700; }
.service-full-card > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.feature-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--text-muted);
}
.feature-list li svg { color: var(--purple-l); flex-shrink: 0; }

/* PROCESS */
.process-section { background: var(--bg2); }
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
}
.process-step {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: all var(--transition);
}
.process-step:hover { border-color: var(--border2); transform: translateY(-3px); }
.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}
.step-content h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* =========================================
   PORTFOLIO PAGE
   ========================================= */
.portfolio-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--purple-l);
    color: var(--white);
    background: rgba(61,120,51,0.12);
}
.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.project-visual {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project-platform-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 12px;
    background: rgba(6,12,8,0.85);
    border: 1px solid var(--border2);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--text-muted);
    backdrop-filter: blur(8px);
}
.pv-phone-container { display: flex; gap: 12px; }
.pv-phone-large {
    width: 90px; height: 170px;
    background: rgba(6,12,8,0.85);
    border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,0.12);
    overflow: hidden;
    padding: 8px;
}
.pvl-notch {
    width: 30px; height: 8px;
    background: rgba(6,12,8,1);
    border-radius: 0 0 6px 6px;
    margin: 0 auto 10px;
}
.pvl-content { display: flex; flex-direction: column; gap: 7px; }
.pvl-header  { height: 20px; background: rgba(255,255,255,0.06); border-radius: 4px; }
.pvl-card    { height: 55px; background: rgba(255,255,255,0.08); border-radius: 8px; }
.pvl-row     { height: 10px; background: rgba(255,255,255,0.06); border-radius: 3px; }
.pvl-row.short { width: 60%; }

.project-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.project-cat-badge {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--purple-l);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.project-rating { display: flex; align-items: center; gap: 4px; font-size: 0.82rem; color: #FFB800; font-weight: 600; }
.project-info h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.project-info p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; margin-bottom: 16px; flex: 1; }
.project-tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tech-tag-sm {
    padding: 3px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.project-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.ps-item { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); }
.ps-item svg { flex-shrink: 0; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.story-content p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

.story-milestones { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.story-milestones h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
    display: grid;
    grid-template-columns: 60px 20px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-size: 0.85rem; font-weight: 700; color: var(--purple-l); text-align: right; }
.timeline-dot {
    width: 10px; height: 10px;
    background: var(--grad2);
    border-radius: 50%;
    justify-self: center;
    flex-shrink: 0;
}
.timeline-event { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }

.values-section { background: var(--bg2); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.value-icon {
    width: 56px; height: 56px;
    background: rgba(61,120,51,0.12);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--purple-l);
    margin: 0 auto 16px;
}
.value-card h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p  { color: var(--text-muted); font-size: 0.87rem; line-height: 1.5; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.team-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow); }
.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800; color: white;
    margin: 0 auto 16px;
}
.avatar-purple { background: linear-gradient(135deg, var(--purple), var(--purple-l)); }
.avatar-cyan   { background: linear-gradient(135deg, #1a8060, var(--cyan)); }
.avatar-orange { background: linear-gradient(135deg, #ea580c, var(--orange)); }
.avatar-green  { background: linear-gradient(135deg, #16a34a, var(--green)); }
.avatar-pink   { background: linear-gradient(135deg, #db2777, var(--pink)); }
.avatar-red    { background: linear-gradient(135deg, #dc2626, var(--red)); }
.team-info h4     { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role        { font-size: 0.8rem; color: var(--purple-l); font-weight: 600; display: block; margin-bottom: 10px; }
.team-info p      { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.contact-info-col h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.contact-info-col > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: all var(--transition);
}
.contact-card:hover { border-color: var(--border2); }
.cc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cc-icon.purple { background: rgba(61,120,51,0.15); color: var(--purple-l); }
.cc-icon.cyan   { background: rgba(46,138,101,0.15);  color: var(--cyan-l); }
.cc-icon.orange { background: rgba(249,115,22,0.15); color: var(--orange); }
.cc-icon.green  { background: rgba(34,197,94,0.15);  color: var(--green); }
.contact-card strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 2px; }
.contact-card span   { color: var(--text-muted); font-size: 0.83rem; line-height: 1.4; }
.contact-social h4   { color: var(--white); font-size: 0.95rem; margin-bottom: 12px; }
.social-links  { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
    transition: all var(--transition);
}
.social-link:hover { border-color: var(--purple-l); color: var(--purple-l); background: rgba(61,120,51,0.1); }

.contact-form-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-form-card h3 { color: var(--white); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg3);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--white);
    font-size: 0.9rem;
    transition: border-color var(--transition);
    outline: none;
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple-l); }
.form-group input.error,
.form-group textarea.error { border-color: var(--red); }
.form-group select option { background: var(--bg3); color: var(--white); }
.field-error { font-size: 0.78rem; color: var(--red); min-height: 16px; }

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 12px;
}
.form-success h4 { color: var(--white); font-size: 1.2rem; }
.form-success p  { color: var(--text-muted); font-size: 0.9rem; }

/* MAPS */
.maps-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* FAQ */
.faq-section { background: var(--bg2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border2); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    gap: 16px;
}
.faq-icon {
    font-size: 1.4rem;
    color: var(--purple-l);
    flex-shrink: 0;
    transition: transform var(--transition);
    line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding-top: 64px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.footer-newsletter { display: flex; flex-direction: column; gap: 8px; }
.footer-nl-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg3);
    border: 1.5px solid var(--border2);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition);
}
.footer-nl-input:focus { border-color: var(--purple-l); }
.footer-nl-input::placeholder { color: var(--text-muted); }

/* Mobile WA nav link */
.nav-wa-mobile { display: none; }
@media (max-width: 768px) {
    .nav-wa-mobile { display: block; }
    .nav-link-wa { color: #25D366 !important; font-weight: 600; }
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand > p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.contact-info li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.contact-icon { color: var(--purple-l); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.83rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--text-muted); font-size: 0.83rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* =========================================
   404 PAGE
   ========================================= */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.error-inner { position: relative; }
.error-code { font-size: clamp(6rem, 15vw, 10rem); font-weight: 900; line-height: 1; letter-spacing: -0.05em; }
.error-inner h1 { font-size: 2rem; color: var(--white); margin: 16px 0 12px; }
.error-inner p  { color: var(--text-muted); margin-bottom: 32px; }

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 3000;
    background: rgba(8,18,10,0.97);
    border-top: 1px solid var(--border2);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp { from { transform:translateY(100%); } to { transform:translateY(0); } }
.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text { display: flex; align-items: flex-start; gap: 10px; flex: 1; }
.cookie-text svg { flex-shrink: 0; color: var(--purple-l); margin-top: 2px; }
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.cookie-text a { color: var(--purple-l); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* =========================================
   LEGAL PAGES
   ========================================= */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}
.legal-content h2 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 32px 0 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p  { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-content li { list-style: disc; color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }
.legal-content strong { color: var(--white); }

/* =========================================
   KARIYER PAGE
   ========================================= */
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition);
}
.job-card:hover { border-color: var(--border2); }
.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    gap: 16px;
}
.job-header h3 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.job-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}
.job-badge.dept     { background: rgba(61,120,51,0.12); color: var(--purple-l); }
.job-badge.location { background: rgba(46,138,101,0.12);  color: var(--cyan-l); }
.job-badge.type     { background: rgba(34,197,94,0.12);  color: var(--green); }
.job-toggle-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid var(--border);
    color: var(--text-muted); font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all var(--transition);
    white-space: nowrap; flex-shrink: 0;
}
.job-toggle-btn:hover { border-color: var(--border2); color: var(--white); }
.job-toggle-btn.open svg { transform: rotate(180deg); }
.job-toggle-btn svg { transition: transform var(--transition); }
.job-body {
    padding: 0 28px 28px;
    border-top: 1px solid var(--border);
}
.job-body p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; margin: 16px 0 20px; }
.job-body h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; }
.job-body ul { margin-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.job-body li { list-style: disc; color: var(--text-muted); font-size: 0.88rem; }
.job-apply-form {
    margin-top: 28px;
    padding: 24px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.job-apply-form h4 { color: var(--white); margin-bottom: 16px; }
.job-apply-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.job-apply-form label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.job-apply-form input,
.job-apply-form textarea {
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--white);
    font-size: 0.88rem;
    outline: none;
    resize: none;
    transition: border-color var(--transition);
}
.job-apply-form input:focus,
.job-apply-form textarea:focus { border-color: var(--purple-l); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section { background: var(--bg2); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: var(--shadow); }
.testimonial-stars { color: #FFB800; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    border-left: 3px solid var(--purple);
    padding-left: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span  { color: var(--text-muted); font-size: 0.78rem; }

/* =========================================
   BLOG PREVIEW (HOME)
   ========================================= */
.blog-preview-section { background: var(--bg2); }
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-preview-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.blog-preview-card:hover { transform: translateY(-6px); border-color: var(--border2); box-shadow: var(--shadow-lg); }
.bpc-header {
    height: 140px;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 16px;
}
.bpc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.bpc-body h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.bpc-body p  { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; flex: 1; margin-bottom: 16px; }
.bpc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.bpc-author { display: flex; align-items: center; gap: 8px; }
.bpc-author span { color: var(--text-muted); font-size: 0.8rem; }
.bpc-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 800; color: white; flex-shrink: 0;
}
.bpc-read { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }

/* =========================================
   BLOG CAT BADGES
   ========================================= */
.blog-cat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cat-purple { background: rgba(61,120,51,0.2);  color: var(--purple-l); }
.cat-cyan   { background: rgba(46,138,101,0.2);   color: var(--cyan-l); }
.cat-orange { background: rgba(249,115,22,0.2);  color: var(--orange); }
.cat-green  { background: rgba(34,197,94,0.2);   color: var(--green); }
.cat-red    { background: rgba(239,68,68,0.2);   color: var(--red); }
.cat-pink   { background: rgba(236,72,153,0.2);  color: var(--pink); }

/* =========================================
   BLOG PAGE
   ========================================= */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    margin-bottom: 16px;
}
.featured-post:hover { border-color: var(--border2); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.featured-visual {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.featured-visual-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.fp-phone {
    width: 100px; height: 180px;
    background: rgba(6,12,8,0.8);
    border-radius: 20px;
    border: 1.5px solid rgba(255,255,255,0.15);
    overflow: hidden;
}
.fp-screen { width:100%; height:100%; background: linear-gradient(to bottom, rgba(255,255,255,0.04), transparent); }
.fp-dots { display: flex; gap: 6px; }
.fp-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.fp-dots span:first-child { background: rgba(255,255,255,0.7); }

.featured-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}
.featured-meta { display: flex; align-items: center; gap: 12px; }
.blog-read-time { color: var(--text-muted); font-size: 0.78rem; }
.blog-date      { color: var(--text-muted); font-size: 0.78rem; }
.featured-info h2 { color: var(--white); font-size: 1.5rem; font-weight: 800; line-height: 1.3; letter-spacing: -0.01em; }
.featured-info > p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }
.featured-author { display: flex; align-items: center; gap: 12px; }
.featured-author strong { display: block; color: var(--white); font-size: 0.88rem; }
.featured-author span   { color: var(--text-muted); font-size: 0.78rem; }
.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--purple-l);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
    transition: gap var(--transition);
}
.featured-post:hover .featured-cta { gap: 10px; }

.blog-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--border2); box-shadow: var(--shadow-lg); }
.blog-card-header {
    height: 120px;
    display: flex;
    align-items: flex-start;
    padding: 14px;
    gap: 8px;
}
.featured-badge {
    padding: 3px 10px;
    background: rgba(255,183,0,0.15);
    border: 1px solid rgba(255,183,0,0.3);
    color: #FFB800;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { color: var(--white); font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-card-body p  { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; flex: 1; margin-bottom: 14px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.blog-tag {
    padding: 3px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.72rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.blog-tag:hover { color: var(--purple-l); border-color: var(--purple-l); background: rgba(61,120,51,0.08); }
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.blog-card-footer .bpc-author strong { display: block; color: var(--white); font-size: 0.8rem; }
.blog-card-footer .bpc-author span   { color: var(--text-muted); font-size: 0.73rem; }

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto 12px;
}
.newsletter-input {
    flex: 1;
    padding: 13px 16px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid var(--border2);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--purple-l); }
.newsletter-note { font-size: 0.78rem; color: var(--text-muted); }

.empty-state { text-align: center; padding: 60px 0; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* =========================================
   BLOG DETAIL PAGE
   ========================================= */
.article-hero {
    position: relative;
    padding: calc(var(--nav-h) + 60px) 0 60px;
    overflow: hidden;
}
.article-hero-inner { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--purple-l); }
.breadcrumb span { color: var(--border2); }

.article-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.article-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.article-excerpt {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 28px;
}
.article-author-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.article-author-row strong { display: block; color: var(--white); font-size: 0.9rem; }
.article-author-row span   { color: var(--text-muted); font-size: 0.78rem; }
.avatar-lg { width: 48px !important; height: 48px !important; font-size: 0.9rem !important; }

.article-section { background: var(--bg); }
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}
.article-content {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    line-height: 1.8;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.article-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 32px 0 14px;
    letter-spacing: -0.01em;
}
.article-content p  { margin-bottom: 16px; }
.article-content ul { margin: 12px 0 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.article-content li { list-style: disc; color: var(--text-muted); }
.article-content strong { color: var(--white); font-weight: 600; }
.article-content pre {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text);
}
.article-content code {
    background: rgba(61,120,51,0.1);
    border: 1px solid rgba(61,120,51,0.2);
    border-radius: 4px;
    padding: 2px 7px;
    font-size: 0.85em;
    color: var(--purple-l);
    font-family: 'Courier New', monospace;
}
.article-content pre code { background: none; border: none; padding: 0; color: var(--text); }

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 0;
    margin-top: 32px;
    border-top: 1px solid var(--border);
}
.article-tags strong { color: var(--white); font-size: 0.88rem; }

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
}
.article-share strong { color: var(--white); font-size: 0.88rem; }
.share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--bg3);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.share-btn:hover { border-color: var(--border2); color: var(--white); }
.share-twitter:hover  { border-color: #1DA1F2; color: #1DA1F2; }
.share-linkedin:hover { border-color: #0A66C2; color: #0A66C2; }

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: calc(var(--nav-h) + 24px);
}
.sidebar-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}
.sidebar-card h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.sidebar-card p  { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }
.author-card .team-role { font-size: 0.78rem; color: var(--purple-l); font-weight: 600; display: block; margin-bottom: 10px; }
.author-card p { margin-top: 8px; }
.sidebar-cta { background: linear-gradient(135deg, rgba(61,120,51,0.15), rgba(46,138,101,0.1)); border-color: rgba(61,120,51,0.3); }
.sidebar-cta h4 { font-size: 1.1rem; }

/* =========================================
   ANIMATIONS
   ========================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate="fade-left"]  { transform: translateX(30px); }
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}
@keyframes fadeIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .services-full-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .blog-preview-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-post { grid-template-columns: 1fr; }
    .featured-visual { min-height: 200px; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav-links, .nav-cta { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(6,12,8,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 4px;
        z-index: 999;
    }
    .nav-links.open .nav-link { padding: 12px 16px; border-radius: 8px; }
    .hamburger { display: flex; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-platforms { justify-content: center; }
    .hero-visual { display: none; }
    .hero-scroll-hint { display: none; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2) { border-right: none; }
    .stat-card:nth-child(3) { border-right: 1px solid var(--border); }

    .cards-grid { grid-template-columns: 1fr; }
    .why-inner { grid-template-columns: 1fr; }
    .portfolio-preview-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .story-inner { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .services-full-grid { grid-template-columns: 1fr; }
    .portfolio-full-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 64px 0; }
    .cta-actions { flex-direction: column; align-items: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-preview-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .article-layout { grid-template-columns: 1fr; }
    .article-hero-inner { text-align: left; }
    .article-meta-top { justify-content: flex-start; }
    .article-author-row { justify-content: flex-start; }
    .breadcrumb { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    .wa-float { bottom: 76px; right: 16px; width: 48px; height: 48px; }
    .back-to-top { bottom: 136px; right: 16px; }
    body { padding-bottom: 64px; }
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-section { background: var(--bg2); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

.pricing-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
}
.pricing-card:hover {
    border-color: var(--border2);
    transform: translateY(-4px);
}
.pricing-card--featured {
    border-color: var(--purple-l);
    background: linear-gradient(160deg, rgba(95,173,82,0.08) 0%, var(--bg3) 60%);
    box-shadow: 0 0 40px rgba(95,173,82,0.12);
    transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-l);
    margin-bottom: 16px;
}
.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}
.pricing-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.pricing-from {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-amt {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.4;
}
.pricing-features .pf-no { color: var(--text-muted); opacity: 0.6; }
.pf-check { color: var(--purple-l); font-weight: 700; flex-shrink: 0; }
.pf-no span { color: var(--text-muted); flex-shrink: 0; }

.pricing-btn { width: 100%; justify-content: center; margin-top: auto; }

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 28px;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card--featured { transform: scale(1); }
    .pricing-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .btn-lg { width: 100%; justify-content: center; }
    .contact-form-card { padding: 24px 18px; }
    .legal-content { padding: 28px 20px; }
    .article-content { padding: 24px 18px; }
    .job-header { padding: 18px; }
    .job-body { padding: 0 18px 18px; }
    .page-hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
    .portfolio-filter { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.8rem; }
    .footer-grid { gap: 24px; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
    .contact-inner { gap: 32px; }
}

/* =========================================
   DESIGN ENHANCEMENTS v2
   ========================================= */

/* --- Glassmorphism cards --- */
.service-card,
.value-card,
.testimonial-card,
.portfolio-card,
.team-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- Enhanced hover states --- */
.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--border2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--purple-l);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--border2);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border2);
}

/* --- Blog preview card improved hover --- */
.blog-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* --- Hero improvements --- */
.hero-title {
    letter-spacing: -0.03em;
}
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--grad);
}

/* --- Section tag improved --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-l);
    background: rgba(95, 173, 82, 0.12);
    border: 1px solid rgba(95, 173, 82, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* --- Improved flash messages --- */
.flash-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
}
.flash {
    padding: 14px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.flash-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}
.flash-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}
.flash-close {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1;
    padding: 2px;
    flex-shrink: 0;
}
.flash-close:hover { opacity: 1; }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* --- Page hero shimmer effect --- */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(95,173,82,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Better CTA section --- */
.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(95,173,82,0.06) 0%, transparent 70%);
}

/* --- Improved form inputs --- */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--purple-l);
    box-shadow: 0 0 0 3px rgba(95,173,82,0.15);
    outline: none;
}

/* --- Better stats animation --- */
.stat-card {
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(95,173,82,0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat-card:hover::before { opacity: 1; }

/* --- Improved nav active state --- */
.nav-link.active {
    color: var(--purple-l);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad);
    border-radius: 2px;
}
.nav-link { position: relative; }

/* --- Job card improvements --- */
.job-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* --- Better timeline --- */
.timeline-item {
    position: relative;
}
.timeline-dot {
    transition: transform 0.2s ease, background 0.2s ease;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.4);
    background: var(--purple-l);
}

/* --- Scroll progress bar for blog --- */
.read-progress {
    background: var(--grad) !important;
}

/* --- FAQ improved --- */
.faq-item {
    transition: border-color 0.2s ease;
}
.faq-item:hover {
    border-color: var(--border2);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--purple-l);
}
.faq-icon {
    transition: transform 0.3s ease, color 0.2s ease;
}

/* --- Better portfolio visual gradient --- */
.portfolio-visual {
    position: relative;
    overflow: hidden;
}
.portfolio-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* --- Why feature improved --- */
.why-feature {
    padding: 12px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.why-feature:hover {
    border-color: var(--border);
}

/* --- Social link hover --- */
.social-link {
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.social-link:hover {
    transform: translateY(-2px);
    background: var(--purple-l);
    color: white;
    border-color: var(--purple-l);
}

/* --- Back to top smooth --- */
.back-to-top {
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top:hover {
    transform: translateY(-2px);
}

/* --- Value card icon animation --- */
.value-icon {
    transition: transform 0.3s ease;
}
.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* --- Navbar blur on scroll (JS adds .scrolled class) --- */
.navbar.scrolled {
    background: rgba(7, 14, 9, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

/* --- Mobile sticky bar improved --- */
.mobile-sticky-bar {
    background: rgba(7, 14, 9, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border2);
}

/* --- Better section transitions --- */
/* will-change kaldırıldı — performans iyileştirmesi */

/* =========================================
   PORTFOLIO CARD MOCK SCREENS
   ========================================= */
.pvl-topbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4px 8px; background: rgba(0,0,0,0.3);
}
.pvl-topbar span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.pvl-tb-title { font-size: 7px; color: rgba(255,255,255,0.6); font-weight: 600; flex:1; text-align:center; }

/* Map UI */
.pvl-maparea {
    height: 80px; background: rgba(0,0,0,0.3); position: relative; overflow: hidden;
    margin: 2px 0;
}
.pvl-mapgrid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 12px 12px;
}
.pvl-mappin {
    position: absolute; width: 8px; height: 8px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.4);
    animation: pinPulse 2s infinite;
}
.pvl-mappin.p1 { background:#5FAD52; top:35%; left:25%; animation-delay:0s; }
.pvl-mappin.p2 { background:#48AE87; top:20%; left:60%; animation-delay:0.7s; }
.pvl-mappin.p3 { background:#F97316; top:60%; left:50%; animation-delay:1.4s; }
.pvl-statrow { display:flex; gap:0; margin: 2px 0; }
.pvl-sb { flex:1; text-align:center; padding:3px 2px; border-right:1px solid rgba(255,255,255,0.05); }
.pvl-sb:last-child { border-right:none; }
.pvl-sv { display:block; font-size:8px; font-weight:800; color:#5FAD52; }
.pvl-sl { display:block; font-size:6px; color:rgba(255,255,255,0.35); }
.pvl-nfcrow { display:flex; gap:3px; padding:4px 6px; }
.pvl-nfcbadge {
    font-size:6px; font-weight:700; padding:2px 5px; border-radius:4px;
    background:rgba(94,173,82,0.2); color:#5FAD52;
}

/* Social feed UI */
.pvl-social .pvl-feeditem {
    display:flex; align-items:center; gap:5px; padding:4px 6px;
}
.pvl-avatar {
    width:14px; height:14px; border-radius:50%;
    background:linear-gradient(135deg,#5FAD52,#2E8A65); flex-shrink:0;
}
.pvl-avatar.sm { width:10px; height:10px; }
.pvl-feedtext { flex:1; }
.pvl-feedtext .pvl-row { height:5px; background:rgba(255,255,255,0.12); border-radius:3px; margin-bottom:3px; }
.pvl-feedtext .pvl-row.short { width:60%; }
.pvl-imgblock {
    height:50px; margin:2px 4px;
    background:linear-gradient(135deg,rgba(249,115,22,0.3),rgba(236,72,153,0.3));
    border-radius:6px;
}
.pvl-actions { display:flex; gap:6px; padding:3px 6px; }
.pvl-action-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.15); }
.pvl-liverow {
    display:flex; align-items:center; gap:4px; padding:3px 6px;
}
.pvl-livebadge {
    font-size:6px; font-weight:700; color:#ef4444; background:rgba(239,68,68,0.15);
    padding:1px 4px; border-radius:3px;
}
.pvl-liverow .pvl-row { height:4px; background:rgba(255,255,255,0.1); border-radius:2px; flex:1; }

/* =========================================
   HERO VISUAL — VİZYONER SAHA APP
   ========================================= */
.hv-scene {
    position: relative;
    width: 340px;
    height: 520px;
    margin: 0 auto;
    flex-shrink: 0;
}

/* Telefon arkası statik glow */
.hv-aurora-bg {
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(ellipse 55% 50% at 50% 40%, rgba(31,162,96,.16) 0%, transparent 65%),
        radial-gradient(ellipse 35% 30% at 70% 70%, rgba(63,209,138,.07) 0%, transparent 60%);
    filter: blur(28px);
    pointer-events: none;
}

/* Telefon çerçevesi */
.hv-phone {
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: 220px;
}
.hv-phone-frame {
    background: linear-gradient(170deg, #0d1e14 0%, #080f0b 100%);
    border: 1.5px solid rgba(31,162,96,.30);
    border-radius: 38px;
    padding: 14px 10px 10px;
    box-shadow:
        0 0 0 1px rgba(31,162,96,.08),
        0 0 40px rgba(31,162,96,.18),
        0 32px 80px rgba(0,0,0,.75),
        inset 0 1px 0 rgba(255,255,255,.06);
    position: relative;
    z-index: 2;
}

/* Notch + kamera */
.hv-notch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 10px;
    background: #060c08;
    border-radius: 6px;
    margin: 0 auto 10px;
    border: 1px solid rgba(255,255,255,.05);
}
.hv-camera {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #0f2018;
    border: 1px solid rgba(31,162,96,.25);
}

/* Ekran */
.hv-screen {
    background: #060e09;
    border-radius: 26px;
    overflow: hidden;
    min-height: 340px;
    border: 1px solid rgba(255,255,255,.04);
}

/* Topbar — temiz, minimal */
.hvs-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(7,14,9,.9);
    border-bottom: 1px solid rgba(31,162,96,.10);
}
.hvs-app-id {
    display: flex;
    align-items: center;
    gap: 5px;
}
.hvs-app-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #1FA260;
    box-shadow: 0 0 6px #1FA260;
}
.hvs-appname {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245,241,232,.7);
}
.hvs-live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .15em;
    color: #3FD18A;
    background: rgba(31,162,96,.12);
    border: 1px solid rgba(31,162,96,.25);
    padding: 2px 7px;
    border-radius: 20px;
}

/* Harita alanı — koyu, aurora ışıklı, kozmik his */
.hvs-map {
    height: 168px;
    background: #060e09;
    position: relative;
    overflow: hidden;
}
/* İnce grid */
.hvs-map-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(31,162,96,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,162,96,.055) 1px, transparent 1px);
    background-size: 22px 22px;
}
/* Harita loş ışığı — statik, animasyonsuz */
.hvs-map-aurora {
    position: absolute;
    width: 160px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31,162,96,.14) 0%, transparent 70%);
    top: -20%; left: 25%;
    filter: blur(22px);
    pointer-events: none;
}
/* SVG rota */
.hvs-route-svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}
/* Pinler — aurora glow halkalı */
.hvs-pin {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    z-index: 2;
}
.hvs-pin-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: .35;
    animation: pinRing 2.4s ease-out infinite;
}
@keyframes pinRing {
    0%   { transform: scale(1);   opacity: .35; }
    100% { transform: scale(2.2); opacity: 0; }
}
.pin-1 {
    background: #1FA260;
    box-shadow: 0 0 10px #1FA260, 0 0 20px rgba(31,162,96,.5);
    color: #1FA260;
    top: 42%; left: 28%;
    animation: pinPulse 2.5s infinite;
}
.pin-2 {
    background: #3FD18A;
    box-shadow: 0 0 8px #3FD18A, 0 0 16px rgba(63,209,138,.4);
    color: #3FD18A;
    top: 22%; left: 58%;
    animation: pinPulse 2.5s infinite 0.8s;
}
.pin-3 {
    background: #48AE87;
    box-shadow: 0 0 8px #48AE87;
    color: #48AE87;
    top: 62%; left: 52%;
    animation: pinPulse 2.5s infinite 1.6s;
}
@keyframes pinPulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.25); }
}
/* Koordinat etiketi */
.hvs-coord-label {
    position: absolute;
    bottom: 6px; left: 10px;
    font-family: 'Courier New', monospace;
    font-size: 6px;
    letter-spacing: .12em;
    color: rgba(31,162,96,.5);
}

/* Stats satırı */
.hvs-stats {
    display: flex;
    border-bottom: 1px solid rgba(31,162,96,.08);
}
.hvs-stat {
    flex: 1;
    padding: 9px 4px;
    text-align: center;
    border-right: 1px solid rgba(31,162,96,.07);
}
.hvs-stat:last-child { border-right: none; }
.hvs-stat-val {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #1FA260;
    text-shadow: 0 0 12px rgba(31,162,96,.6);
    letter-spacing: -.01em;
}
.hvs-stat-lbl {
    display: block;
    font-size: 6.5px;
    letter-spacing: .08em;
    color: rgba(245,241,232,.3);
    margin-top: 2px;
    text-transform: uppercase;
}

/* Alt bar */
.hvs-bottombar {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6,14,9,.6);
}
.hvs-slogan-micro {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 8px;
    color: rgba(107,117,112,.7);
    letter-spacing: .04em;
}
.hvs-tech-pills {
    display: flex;
    gap: 3px;
}
.hvs-tech-pills span {
    font-size: 6.5px;
    font-weight: 600;
    letter-spacing: .1em;
    color: rgba(31,162,96,.7);
    background: rgba(31,162,96,.08);
    border: 1px solid rgba(31,162,96,.18);
    padding: 2px 5px;
    border-radius: 4px;
}
.hvs-pulse {
    display: inline-block;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse 1.5s infinite;
}

/* Telefon altı glow */
.hv-glow {
    position: absolute;
    bottom: -30px; left: 50%;
    transform: translateX(-50%);
    width: 180px; height: 50px;
    background: radial-gradient(ellipse, rgba(31,162,96,.45) 0%, transparent 70%);
    filter: blur(18px);
    z-index: 1;
}

/* ── Floating kartlar ── */
.hv-float {
    position: absolute;
    background: rgba(8,15,11,.88);
    border: 1px solid rgba(31,162,96,.20);
    border-radius: 14px;
    padding: 11px 15px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 5;
    box-shadow:
        0 0 0 1px rgba(31,162,96,.06),
        0 12px 32px rgba(0,0,0,.55);
}

/* Koordinat kartı — sol */
.hv-float--coord {
    left: -88px;
    top: 70px;
    width: 120px;
}
.hvf-eyebrow {
    font-family: 'Courier New', monospace;
    font-size: 6.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(107,117,112,.8);
    margin-bottom: 5px;
}
.hvf-coords {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    line-height: 1.65;
    color: #F5F1E8;
    letter-spacing: .06em;
}
.hvf-sep {
    width: 24px; height: 1px;
    background: linear-gradient(90deg, #1FA260, transparent);
    margin: 7px 0;
    opacity: .5;
}
.hvf-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .14em;
    color: #1FA260;
}
.hvf-dot-live {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse 1.5s infinite;
}

/* Metrik kartı — sağ */
.hv-float--metric {
    right: -72px;
    top: 110px;
    text-align: center;
    min-width: 80px;
}
.hvf-metric-val {
    font-size: 20px;
    font-weight: 900;
    color: #1FA260;
    text-shadow: 0 0 20px rgba(31,162,96,.7);
    line-height: 1;
    margin-bottom: 4px;
}
.hvf-metric-lbl {
    font-size: 7px;
    line-height: 1.5;
    color: rgba(245,241,232,.45);
    letter-spacing: .06em;
}

/* Tech stack kartı — alt */
.hv-float--tech {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}
.hv-tech-stack { display: flex; gap: 5px; flex-wrap: wrap; }
.hvt {
    font-size: 8.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: .05em;
}
.hvt.flutter  { background: rgba(31,162,96,.15);  color: #3FD18A; border: 1px solid rgba(31,162,96,.25); }
.hvt.kotlin   { background: rgba(248,91,53,.12);   color: #F8895A; border: 1px solid rgba(248,91,53,.2); }
.hvt.python   { background: rgba(59,130,246,.12);  color: #7EB8FA; border: 1px solid rgba(59,130,246,.2); }
.hvt.firebase { background: rgba(249,115,22,.12);  color: #FBA86A; border: 1px solid rgba(249,115,22,.2); }

@keyframes floatY  {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}
@keyframes floatY2 {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}
@keyframes floatY3 {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(-9px); }
}

@media (max-width: 900px) {
    .hv-scene { display: none; }
}

/* =========================================
   SKILLS SECTION
   ========================================= */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}
.skill-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.skill-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.skill-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.skill-icon--purple { background: rgba(61,120,51,0.15); color: var(--purple-l); }
.skill-icon--cyan   { background: rgba(46,138,101,0.15); color: var(--cyan-l); }
.skill-icon--orange { background: rgba(249,115,22,0.15); color: var(--orange); }
.skill-icon--green  { background: rgba(34,197,94,0.15); color: var(--green); }
.skill-icon--pink   { background: rgba(236,72,153,0.15); color: var(--pink); }
.skill-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}
.skill-items { display: flex; flex-direction: column; gap: 14px; }
.skill-item-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
.skill-name {
    font-size: 0.88rem;
    color: var(--text);
    flex: 1;
}
.skill-note {
    font-size: 0.75rem;
    color: var(--muted);
    background: var(--surface2);
    padding: 1px 7px;
    border-radius: 20px;
}
.skill-pct {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    min-width: 36px;
    text-align: right;
}
.skill-bar {
    height: 5px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.skill-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease;
}
.skill-bar-fill--purple { background: linear-gradient(90deg, var(--purple), var(--purple-l)); }
.skill-bar-fill--cyan   { background: linear-gradient(90deg, var(--cyan), var(--cyan-l)); }
.skill-bar-fill--orange { background: linear-gradient(90deg, #ea580c, var(--orange)); }
.skill-bar-fill--green  { background: linear-gradient(90deg, #16a34a, var(--green)); }
.skill-bar-fill--pink   { background: linear-gradient(90deg, #db2777, var(--pink)); }

/* =========================================
   VİZYONER HERO — AURORA & SERİF SLOGAN
   ========================================= */

/* Aurora blob animasyonları */
@keyframes auroraDrift1 {
    0%   { transform: translate(0,0) scale(1);      opacity: .65; }
    33%  { transform: translate(50px,30px) scale(1.1);  opacity: .9;  }
    66%  { transform: translate(-20px,60px) scale(.95); opacity: .75; }
    100% { transform: translate(0,0) scale(1);      opacity: .65; }
}
@keyframes auroraDrift2 {
    0%   { transform: translate(0,0) scale(1);       opacity: .55; }
    40%  { transform: translate(-40px,-25px) scale(1.12); opacity: .8;  }
    100% { transform: translate(0,0) scale(1);       opacity: .55; }
}
@keyframes auroraDrift3 {
    0%   { transform: translate(0,0) scale(1);      opacity: .4; }
    50%  { transform: translate(30px,-40px) scale(1.18); opacity: .65; }
    100% { transform: translate(0,0) scale(1);      opacity: .4; }
}

/* Hero orb'lar devre dışı */
.hero-orb { opacity: 0 !important; animation: none !important; }
.orb-3 { display: none; }

/* Hero badge — vizyoner */
.hero-badge-visionary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 16px;
    background: transparent;
    border: none;
    font-family: 'Courier New', monospace;
    font-size: 0.72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #6B7570;
    margin-bottom: 28px;
}
.hero-badge-visionary .badge-line {
    display: inline-block;
    width: 28px; height: 1px;
    background: #1FA260;
    opacity: .6;
}

/* Hero serif slogan */
.hero-slogan-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    line-height: 1.1;
    letter-spacing: .01em;
    color: #F5F1E8;
    margin-bottom: 14px;
}
.hero-slogan-en {
    font-style: italic;
    font-size: 1.05rem;
    color: #6B7570;
    margin-bottom: 36px;
    letter-spacing: .04em;
}

/* Hero koordinat */
.hero-coord {
    font-family: 'Courier New', monospace;
    font-size: .68rem;
    letter-spacing: .15em;
    color: #4a5a50;
    margin-top: 20px;
}

/* Hero iki kolon düzeni (slogan sol, saha app sağ) */
.hero-inner--single {
    grid-template-columns: 1fr !important;
    max-width: 760px;
    margin: 0 auto;
}
.hero-inner--single .hero-content { text-align: center; }
.hero-inner--single .hero-actions { justify-content: center; }
.hero-inner--single .hero-badge-visionary { justify-content: center; }
.hero-inner--single .hero-coord { text-align: center; }

/* Slogan açılış animasyonu */
@keyframes sloganReveal {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-slogan-serif--animate {
    animation: sloganReveal 0.9s cubic-bezier(.22,.61,.36,1) 0.15s both;
}

/* =========================================
   VİDEO BANNER SECTION
   ========================================= */
.video-banner-section {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vb-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.vb-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(7,14,9,.70) 0%,
        rgba(7,14,9,.45) 40%,
        rgba(7,14,9,.45) 60%,
        rgba(7,14,9,.85) 100%
    );
}
.vb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}
.vb-eyebrow {
    font-family: 'Courier New', monospace;
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #1FA260;
    margin-bottom: 18px;
}
.vb-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    color: #F5F1E8;
    margin-bottom: 32px;
}
.vb-title em {
    color: #3FD18A;
    font-style: italic;
}
.vb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 100px;
    background: rgba(31,162,96,.15);
    border: 1px solid rgba(31,162,96,.45);
    color: #F5F1E8;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .04em;
    backdrop-filter: blur(8px);
    transition: background .25s, border-color .25s;
}
.vb-btn:hover {
    background: rgba(31,162,96,.30);
    border-color: rgba(31,162,96,.7);
}

@media (max-width: 768px) {
    .video-banner-section { height: 360px; }
    .vb-title { font-size: 2rem; }
}

/* =========================================
   AURORA RENK KIRILIMI DÜZELTMESİ + YOĞUNLAŞTIRMA
   ========================================= */

/* Hero'yu tam izole et — aurora sadece hero içinde görünsün */
.hero {
    isolation: isolate;
}
.hero-bg {
    contain: layout paint;
}

/* Aurora orb'larını daha yoğun ve renge doygun yap */
.orb-1 {
    background: radial-gradient(circle, rgba(31,162,96,.42) 0%, rgba(31,162,96,.18) 40%, transparent 70%) !important;
    filter: blur(90px) !important;
}
.orb-2 {
    background: radial-gradient(circle, rgba(46,138,101,.32) 0%, rgba(46,138,101,.12) 45%, transparent 70%) !important;
    filter: blur(80px) !important;
}
.orb-3 {
    background: radial-gradient(circle, rgba(63,209,138,.22) 0%, rgba(63,209,138,.08) 45%, transparent 70%) !important;
    filter: blur(70px) !important;
}

/* Kartvizit aurora da izole et */
.aurora-stage {
    contain: layout paint;
}

/* =========================================
   MOBİL OPTİMİZASYON
   ========================================= */
@media (max-width: 768px) {

    /* --- Vizyoner Hero --- */
    .hero-badge-visionary {
        font-size: .62rem;
        justify-content: center;
        letter-spacing: .15em;
        margin-bottom: 20px;
    }
    .hero-slogan-serif {
        font-size: clamp(2.2rem, 9vw, 3rem);
        text-align: center;
    }
    .hero-slogan-en {
        font-size: .88rem;
        text-align: center;
        margin-bottom: 20px;
    }
    .hero-desc {
        text-align: center;
        font-size: .95rem;
        line-height: 1.65;
        margin: 0 auto 20px;
        max-width: 380px;
    }
    .hero-coord {
        text-align: center;
        font-size: .6rem;
        margin-top: 16px;
    }
    .hero-content--visionary {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* --- Logo --- */
    .nav-logo-img { height: 56px; }

    /* --- Video banner --- */
    .video-banner-section { height: 280px; }

    /* --- Kartvizit aurora (mobilde daha küçük blob) --- */
    .blob-1 { width: 280px; height: 280px; }
    .blob-2 { width: 220px; height: 220px; }
    .blob-3 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .hero-slogan-serif { font-size: clamp(1.9rem, 10vw, 2.6rem); }
    .hero-badge-visionary { font-size: .58rem; letter-spacing: .12em; }
    .video-banner-section { height: 240px; }
}
