/* ============================================================
   MIZAN MALI MUSAVIRLIK - CONSOLIDATED STYLESHEET
   Extracted from: index, hakkimizda, hizmetler, iletisim, mevzuat
   Design: Playfair Display + Inter, Emerald accent, Square corners
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
    /* Core palette */
    --night: #0F172A;
    --night-light: #1E293B;
    --ivory: #F8FAFC;
    --ivory-dark: #E2E8F0;
    --slate: #64748B;
    --slate-light: #94A3B8;
    --emerald: #10B981;
    --emerald-dark: #059669;
    --gold: #D4AF37;
    --red: #EF4444;
    --orange: #F59E0B;

    /* Spacing unit */
    --unit: 8px;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Motion */
    --transition: cubic-bezier(0.4, 0, 0.2, 1);

    /* Theme colors - Light (default) */
    --bg-primary: #F8FAFC;
    --bg-secondary: #E2E8F0;
    --bg-card: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --header-bg: rgba(248, 250, 252, 0.95);
    --border-color: #E2E8F0;
}

/* ----------------------------------------------------------
   2. DARK THEME OVERRIDES
   ---------------------------------------------------------- */
[data-theme="dark"] {
    --bg-primary: #0F172A;
    --bg-secondary: #1E293B;
    --bg-card: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --header-bg: rgba(15, 23, 42, 0.95);
    --border-color: #334155;
    --ivory: #0F172A;
    --ivory-dark: #1E293B;
    --night: #F8FAFC;
    --night-light: #E2E8F0;
    --slate: #94A3B8;
    --slate-light: #64748B;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s var(--transition), color 0.3s var(--transition);
}

/* ----------------------------------------------------------
   4. CONTAINER & TYPOGRAPHY HELPERS
   ---------------------------------------------------------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 calc(var(--unit) * 4);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: calc(var(--unit) * 2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 3);
}

.text-emerald { color: var(--emerald); }
.text-slate { color: var(--slate); }

/* ----------------------------------------------------------
   5. HEADER
   ---------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(var(--unit) * 10);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 1.5);
    text-decoration: none;
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--night) 0%, var(--night-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--emerald);
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--ivory); }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--night);
}
.logo-text span { color: var(--emerald); }
.logo-subtitle {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate);
    margin-top: -2px;
}

/* Navigation */
.nav { display: flex; align-items: center; gap: calc(var(--unit) * 5); }
.nav-list { display: flex; list-style: none; gap: calc(var(--unit) * 4); }
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--night);
    text-decoration: none;
    position: relative;
    padding: calc(var(--unit) * 0.5) 0;
    transition: color 0.2s var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width 0.3s var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--emerald); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
    padding: calc(var(--unit) * 1.5) calc(var(--unit) * 3);
    background: var(--night);
    color: var(--ivory);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--transition);
}
.nav-cta:hover { background: var(--emerald); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--unit) * 1);
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--transition);
}

/* ----------------------------------------------------------
   6. THEME TOGGLE
   ---------------------------------------------------------- */
.theme-toggle {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.theme-toggle:hover { background: var(--emerald); }
.theme-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    stroke-width: 2;
    fill: none;
    transition: all 0.3s var(--transition);
    position: absolute;
}
.theme-toggle:hover svg { stroke: white; }
.theme-toggle .sun-icon { opacity: 1; transform: rotate(0deg); }
.theme-toggle .moon-icon { opacity: 0; transform: rotate(-90deg); }
[data-theme="dark"] .theme-toggle .sun-icon { opacity: 0; transform: rotate(90deg); }
[data-theme="dark"] .theme-toggle .moon-icon { opacity: 1; transform: rotate(0deg); }

/* ----------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
    padding: calc(var(--unit) * 2) calc(var(--unit) * 4);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--transition);
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--night); color: var(--ivory); }
.btn-primary:hover {
    background: var(--emerald);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--night);
    box-shadow: inset 0 0 0 1.5px var(--night);
}
.btn-outline:hover { background: var(--night); color: var(--ivory); }

/* ----------------------------------------------------------
   8. HERO (index.html)
   ---------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--unit) * 12);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0c1222 50%, var(--bg-primary) 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: radial-gradient(circle at 1px 1px, var(--slate-light) 1px, transparent 0);
    background-size: 40px 40px;
}
.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--unit) * 6);
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 580px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
    padding: calc(var(--unit) * 1) calc(var(--unit) * 2);
    background: var(--night);
    color: var(--ivory);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: calc(var(--unit) * 3);
}
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 3);
}
.hero-title em {
    font-style: normal;
    color: var(--emerald);
    position: relative;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(16, 185, 129, 0.2);
    z-index: -1;
}
.hero-description {
    font-size: 1.125rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: calc(var(--unit) * 4);
}
.hero-actions {
    display: flex;
    gap: calc(var(--unit) * 2);
    flex-wrap: wrap;
    margin-bottom: calc(var(--unit) * 5);
}

/* Hero trust */
.hero-trust { display: flex; align-items: center; gap: calc(var(--unit) * 3); }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid var(--ivory);
    margin-left: -12px;
    overflow: hidden;
    background: var(--slate-light);
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-trust-text { font-size: 0.8125rem; color: var(--slate); }
.hero-trust-text strong { color: var(--night); display: block; }

/* Hero visual */
.hero-visual {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-person { position: relative; z-index: 2; }
.hero-person-img {
    width: 420px;
    height: 520px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}
.hero-person-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    opacity: 0.1;
    z-index: -1;
}

/* ----------------------------------------------------------
   9. FLOATING METRIC CARDS (index hero)
   ---------------------------------------------------------- */
.hero-metric {
    position: absolute;
    background: white;
    padding: calc(var(--unit) * 2.5) calc(var(--unit) * 3);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    z-index: 10;
    min-width: 180px;
}
.hero-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--emerald);
}
.hero-metric-1 { top: 8%; right: 0; animation: floatMetric1 5s ease-in-out infinite; }
.hero-metric-2 { top: 40%; left: -10%; animation: floatMetric2 6s ease-in-out infinite 0.5s; }
.hero-metric-3 { bottom: 15%; right: 5%; animation: floatMetric3 5.5s ease-in-out infinite 1s; }

@keyframes floatMetric1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatMetric2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes floatMetric3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--unit) * 1.5);
}
.metric-icon svg { width: 20px; height: 20px; stroke: var(--emerald); stroke-width: 2; fill: none; }
.metric-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 4px;
}
.metric-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--night);
    line-height: 1;
}
.metric-value span { color: var(--emerald); }
.metric-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--emerald);
    font-weight: 500;
}
.metric-trend svg { width: 14px; height: 14px; }

/* ----------------------------------------------------------
   10. STATS (index)
   ---------------------------------------------------------- */
.stats {
    padding: calc(var(--unit) * 8) 0;
    background: var(--night);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald) 0%, var(--gold) 50%, var(--emerald) 100%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--unit) * 4); }
.stat-item {
    text-align: center;
    padding: calc(var(--unit) * 3);
    border-right: 1px solid var(--night-light);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto calc(var(--unit) * 2);
    background: var(--night-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon svg { width: 24px; height: 24px; stroke: var(--emerald); stroke-width: 1.5; fill: none; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: calc(var(--unit) * 1);
}
.stat-number span { color: var(--emerald); }
.stat-label { font-size: 0.875rem; color: var(--slate-light); }

/* ----------------------------------------------------------
   11. SERVICES - INDEX GRID
   ---------------------------------------------------------- */
.services { padding: calc(var(--unit) * 15) 0; position: relative; }
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: calc(var(--unit) * 8);
}
.services-header-content { max-width: 500px; }
.services-link {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--night);
    text-decoration: none;
    transition: color 0.2s;
}
.services-link:hover { color: var(--emerald); }
.services-link svg { width: 18px; height: 18px; transition: transform 0.2s; }
.services-link:hover svg { transform: translateX(4px); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--unit) * 3); }
.service-card {
    display: block;
    text-decoration: none;
    padding: calc(var(--unit) * 4);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--unit) * 3);
    transition: all 0.3s var(--transition);
}
.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--night);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s;
}
.service-card:hover .service-icon { background: var(--emerald); }
.service-card:hover .service-icon svg { stroke: white; }
.service-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 1.5);
}
.service-desc {
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: calc(var(--unit) * 3);
}
/* Index card features (tags) */
.service-card .service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--unit) * 1);
}
.service-card .service-features li {
    font-size: 0.75rem;
    padding: calc(var(--unit) * 0.5) calc(var(--unit) * 1.5);
    background: var(--ivory);
    color: var(--slate);
}

/* ----------------------------------------------------------
   12. WHY US (index)
   ---------------------------------------------------------- */
.why-us { padding: calc(var(--unit) * 12) 0; background: var(--bg-secondary); }
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--unit) * 10);
    align-items: center;
}
.why-us-content { max-width: 500px; }
.why-us-list { margin-top: calc(var(--unit) * 5); }
.why-us-item {
    display: flex;
    gap: calc(var(--unit) * 2.5);
    padding: calc(var(--unit) * 3) 0;
    border-bottom: 1px solid var(--slate-light);
}
.why-us-item:last-child { border-bottom: none; }
.why-us-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-us-icon svg { width: 24px; height: 24px; stroke: white; stroke-width: 2; fill: none; }
.why-us-item h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--night);
    margin-bottom: 4px;
}
.why-us-item p { font-size: 0.875rem; color: var(--slate); }
.why-us-visual { position: relative; }
.why-us-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(30%); }
.why-us-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--night);
    color: white;
    padding: calc(var(--unit) * 4);
    text-align: center;
}
.why-us-badge .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
}
.why-us-badge .text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ----------------------------------------------------------
   13. TESTIMONIALS (index)
   ---------------------------------------------------------- */
.testimonials {
    padding: calc(var(--unit) * 15) 0;
    background: var(--night);
    position: relative;
}
.testimonials::before {
    content: '\201C';
    position: absolute;
    top: 60px;
    left: 10%;
    font-family: var(--font-display);
    font-size: 20rem;
    color: var(--night-light);
    line-height: 1;
    pointer-events: none;
}
.testimonials-header {
    text-align: center;
    margin-bottom: calc(var(--unit) * 8);
    position: relative;
    z-index: 1;
}
.testimonials-header .section-label { color: var(--emerald); }
.testimonials-header .section-title { color: var(--ivory); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--unit) * 3);
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: var(--night-light);
    padding: calc(var(--unit) * 4);
    position: relative;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(var(--unit) * 4);
    width: 40px;
    height: 3px;
    background: var(--emerald);
}
.testimonial-rating { display: flex; gap: 4px; margin-bottom: calc(var(--unit) * 2); }
.testimonial-rating svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-text {
    font-size: 0.9375rem;
    color: var(--slate-light);
    line-height: 1.7;
    margin-bottom: calc(var(--unit) * 3);
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: calc(var(--unit) * 2); }
.testimonial-avatar { width: 48px; height: 48px; overflow: hidden; background: var(--slate); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}
.testimonial-name { font-weight: 600; color: var(--ivory); margin-bottom: 2px; }
.testimonial-role { font-size: 0.8125rem; color: var(--slate-light); }

/* ----------------------------------------------------------
   14. CTA
   ---------------------------------------------------------- */
.cta {
    padding: calc(var(--unit) * 12) 0;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: calc(var(--unit) * 2);
}
.cta-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: calc(var(--unit) * 4);
}
.cta-btn {
    background: white;
    color: var(--emerald-dark);
    padding: calc(var(--unit) * 2) calc(var(--unit) * 5);
    font-weight: 600;
}
.cta-btn:hover {
    background: var(--night);
    color: white;
    transform: translateY(-2px);
}

/* ----------------------------------------------------------
   15. PAGE HERO (hakkimizda - dark variant with image stack)
   ---------------------------------------------------------- */
.page-hero {
    padding: calc(var(--unit) * 20) 0 calc(var(--unit) * 12);
    background: var(--night);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, var(--night-light) 1px, transparent 0);
    background-size: 48px 48px;
    opacity: 0.5;
}
.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald) 0%, var(--gold) 50%, var(--emerald) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--unit) * 8);
    align-items: center;
}
.page-hero .section-label { color: var(--emerald); }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.1;
    margin-bottom: calc(var(--unit) * 3);
}
.page-hero-title em { font-style: normal; color: var(--emerald); }
.page-hero-desc {
    font-size: 1.125rem;
    color: var(--slate-light);
    line-height: 1.8;
}

/* Hero stats (hakkimizda) */
.page-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(var(--unit) * 3);
    margin-top: calc(var(--unit) * 5);
}
.hero-stat {
    text-align: center;
    padding: calc(var(--unit) * 3);
    background: var(--night-light);
    position: relative;
}
.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--emerald);
}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: calc(var(--unit) * 1);
}

/* Hero image stack (hakkimizda) */
.page-hero-visual { position: relative; }
.hero-image-stack { position: relative; height: 450px; }
.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(30%);
}
.hero-image-small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 200px;
    object-fit: cover;
    border: 6px solid var(--night);
    filter: grayscale(30%);
}
.hero-badge-float {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--emerald);
    padding: calc(var(--unit) * 3);
    color: white;
    text-align: center;
}
.hero-badge-float .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}
.hero-badge-float .text {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ----------------------------------------------------------
   16. PAGE HERO - CENTERED VARIANT (hizmetler)
   ---------------------------------------------------------- */
.page-hero-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.page-hero-inner .section-label {
    color: var(--emerald);
    font-size: 0.8125rem;
    letter-spacing: 0.25em;
    margin-bottom: calc(var(--unit) * 2);
}
.page-hero-inner .page-hero-title {
    color: var(--text-primary);
}
.page-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 1px 1px, var(--text-secondary) 1px, transparent 0);
    background-size: 32px 32px;
    z-index: 1;
}

/* Hizmetler hero - light bg variant */
.page-hero:has(.page-hero-inner) {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.page-hero:has(.page-hero-inner)::before { display: none; }
.page-hero:has(.page-hero-inner) .page-hero-title {
    color: var(--text-primary);
}

/* Description card with emerald left border */
.page-hero-inner .page-hero-desc {
    font-size: 1.1875rem;
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
    padding: calc(var(--unit) * 3) calc(var(--unit) * 4);
    background: var(--bg-card);
    border-left: 4px solid var(--emerald);
    text-align: left;
}
[data-theme="dark"] .page-hero-inner .page-hero-desc {
    background: rgba(30, 41, 59, 0.8);
}
[data-theme="dark"] .page-hero:has(.page-hero-inner) {
    background: linear-gradient(135deg, #0a0f1a 0%, var(--bg-secondary) 100%);
}

/* ----------------------------------------------------------
   17. STORY (hakkimizda)
   ---------------------------------------------------------- */
.story { padding: calc(var(--unit) * 15) 0; position: relative; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: calc(var(--unit) * 10);
    align-items: start;
}
.story-sticky { position: sticky; top: 120px; }
.story-intro {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--night);
    line-height: 1.4;
    margin-bottom: calc(var(--unit) * 4);
}
.story-intro em { font-style: normal; color: var(--emerald); }
.story-quote {
    padding: calc(var(--unit) * 4);
    background: var(--ivory-dark);
    position: relative;
    margin-top: calc(var(--unit) * 4);
}
.story-quote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: calc(var(--unit) * 3);
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--emerald);
    line-height: 1;
    opacity: 0.3;
}
.story-quote p {
    font-size: 1.0625rem;
    color: var(--slate);
    line-height: 1.8;
    font-style: italic;
}
.story-quote-author {
    margin-top: calc(var(--unit) * 2);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--night);
}
.story-paragraph {
    font-size: 1.0625rem;
    color: var(--slate);
    line-height: 1.9;
    margin-bottom: calc(var(--unit) * 3);
}
.story-paragraph:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    float: left;
    line-height: 1;
    margin-right: calc(var(--unit) * 2);
    color: var(--night);
    margin-top: 6px;
}
.story-highlight {
    background: linear-gradient(135deg, var(--night) 0%, var(--night-light) 100%);
    color: var(--ivory);
    padding: calc(var(--unit) * 5);
    margin: calc(var(--unit) * 5) 0;
}
.story-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: calc(var(--unit) * 2);
}
.story-highlight p { color: var(--slate-light); }

/* ----------------------------------------------------------
   18. VALUES (hakkimizda)
   ---------------------------------------------------------- */
.values { padding: calc(var(--unit) * 12) 0; background: var(--ivory-dark); }
.values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto calc(var(--unit) * 8);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--unit) * 3); }
.value-card {
    background: white;
    padding: calc(var(--unit) * 5);
    text-align: center;
    transition: all 0.4s var(--transition);
    position: relative;
}
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald);
    transform: scaleX(0);
    transition: transform 0.4s var(--transition);
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.value-card:hover::after { transform: scaleX(1); }
.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto calc(var(--unit) * 3);
    background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
}
.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--night);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s;
}
.value-card:hover .value-icon { background: var(--emerald); }
.value-card:hover .value-icon svg { stroke: white; }
.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 1.5);
}
.value-desc { font-size: 0.875rem; color: var(--slate); line-height: 1.7; }

/* ----------------------------------------------------------
   19. TIMELINE (hakkimizda)
   ---------------------------------------------------------- */
.timeline {
    padding: calc(var(--unit) * 15) 0;
    background: var(--night);
    position: relative;
    overflow: hidden;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--night-light);
    transform: translateX(-50%);
}
.timeline-header {
    text-align: center;
    margin-bottom: calc(var(--unit) * 10);
    position: relative;
    z-index: 1;
}
.timeline-header .section-label { color: var(--emerald); }
.timeline-header .section-title { color: var(--ivory); }
.timeline-items { position: relative; z-index: 1; }
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--unit) * 6);
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-item:nth-child(odd) .timeline-content {
    padding-right: calc(var(--unit) * 8);
    padding-left: 0;
}
.timeline-item:nth-child(even) .timeline-content { padding-left: calc(var(--unit) * 8); }
.timeline-content { flex: 1; }
.timeline-year {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: calc(var(--unit) * 1);
}
.timeline-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    color: var(--ivory);
    margin-bottom: calc(var(--unit) * 1);
}
.timeline-desc { font-size: 0.9375rem; color: var(--slate-light); line-height: 1.7; }
.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--emerald);
    position: relative;
    flex-shrink: 0;
}
.timeline-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--emerald);
    opacity: 0.3;
}

/* ----------------------------------------------------------
   20. TEAM (hakkimizda)
   ---------------------------------------------------------- */
.team { padding: calc(var(--unit) * 15) 0; }
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: calc(var(--unit) * 8);
}
.team-header-content { max-width: 500px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--unit) * 3); }
.team-card { position: relative; overflow: hidden; }
.team-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s var(--transition);
}
.team-card:hover .team-image { filter: grayscale(0%); transform: scale(1.05); }
.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 60%, transparent 100%);
    padding: calc(var(--unit) * 10) calc(var(--unit) * 3) calc(var(--unit) * 3);
    transform: translateY(30px);
    transition: transform 0.4s var(--transition);
}
.team-card:hover .team-info { transform: translateY(0); }
.team-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #F8FAFC;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.team-role {
    font-size: 0.8125rem;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: calc(var(--unit) * 1.5);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.team-bio {
    font-size: 0.8125rem;
    color: rgba(248,250,252,0.85);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--transition) 0.1s;
}
.team-card:hover .team-bio { opacity: 1; transform: translateY(0); }
.team-social {
    display: flex;
    gap: calc(var(--unit) * 1);
    margin-top: calc(var(--unit) * 2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s var(--transition) 0.2s;
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
    width: 32px;
    height: 32px;
    background: var(--night-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.team-social a:hover { background: var(--emerald); }
.team-social svg { width: 14px; height: 14px; fill: var(--ivory); }

/* ----------------------------------------------------------
   21. CERTIFICATIONS (hakkimizda)
   ---------------------------------------------------------- */
.certifications { padding: calc(var(--unit) * 10) 0; background: var(--ivory-dark); }
.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--unit) * 8);
    flex-wrap: wrap;
}
.cert-item {
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 2);
    padding: calc(var(--unit) * 3) calc(var(--unit) * 4);
    background: white;
}
.cert-icon {
    width: 48px;
    height: 48px;
    background: var(--night);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-icon svg { width: 24px; height: 24px; stroke: var(--emerald); stroke-width: 1.5; fill: none; }
.cert-name { font-size: 0.875rem; font-weight: 600; color: var(--night); }
.cert-desc { font-size: 0.75rem; color: var(--slate); }

/* ----------------------------------------------------------
   22. SERVICE NAVIGATION (hizmetler - sticky)
   ---------------------------------------------------------- */
.service-nav {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 80px;
    z-index: 100;
}
.service-nav-inner {
    display: flex;
    gap: calc(var(--unit) * 1);
    padding: calc(var(--unit) * 2) 0;
    overflow-x: auto;
}
.service-nav-item {
    padding: calc(var(--unit) * 1.5) calc(var(--unit) * 3);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    position: relative;
}
.service-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--emerald);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.service-nav-item:hover,
.service-nav-item.active { color: var(--text-primary); }
.service-nav-item.active::after { transform: scaleX(1); }

/* ----------------------------------------------------------
   23. SERVICE SECTIONS (hizmetler - alternating)
   ---------------------------------------------------------- */
.service-section {
    padding: calc(var(--unit) * 12) 0;
    border-bottom: 1px solid var(--ivory-dark);
}
.service-section:nth-child(even) { background: var(--ivory-dark); }
.service-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--unit) * 8);
    align-items: center;
}
.service-section:nth-child(even) .service-section-grid { direction: rtl; }
.service-section:nth-child(even) .service-section-grid > * { direction: ltr; }
.service-section-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    color: var(--ivory-dark);
    line-height: 1;
    margin-bottom: calc(var(--unit) * -3);
    position: relative;
    z-index: 0;
}
.service-section:nth-child(even) .service-section-number { color: var(--ivory); }
.service-section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 2);
    position: relative;
    z-index: 1;
}
.service-section-desc {
    font-size: 1.0625rem;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: calc(var(--unit) * 4);
}

/* Service features list (hizmetler detail) */
.service-section .service-features {
    list-style: none;
    margin-bottom: calc(var(--unit) * 4);
}
.service-feature {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--unit) * 2);
    padding: calc(var(--unit) * 2) 0;
    border-bottom: 1px solid var(--ivory-dark);
}
.service-section:nth-child(even) .service-feature { border-color: rgba(255,255,255,0.3); }
.service-feature:last-child { border-bottom: none; }
.service-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.service-feature-icon svg { width: 14px; height: 14px; stroke: white; stroke-width: 2.5; fill: none; }
.service-feature-text { font-size: 0.9375rem; color: var(--night); }
.service-feature-text span {
    display: block;
    font-size: 0.8125rem;
    color: var(--slate);
    margin-top: 2px;
}

/* Service visual cards */
.service-section-visual { position: relative; }
.service-visual-card {
    background: var(--night);
    padding: calc(var(--unit) * 5);
    position: relative;
    overflow: hidden;
}
.service-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--emerald);
}
.service-visual-icon {
    width: 80px;
    height: 80px;
    background: var(--night-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--unit) * 4);
}
.service-visual-icon svg { width: 40px; height: 40px; stroke: var(--emerald); stroke-width: 1.5; fill: none; }
.service-visual-stat { margin-bottom: calc(var(--unit) * 3); }
.service-visual-stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
}
.service-visual-stat-label {
    font-size: 0.8125rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: calc(var(--unit) * 1);
}
.service-visual-list { list-style: none; }
.service-visual-list li {
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 1.5);
    padding: calc(var(--unit) * 1.5) 0;
    font-size: 0.875rem;
    color: var(--ivory);
    border-bottom: 1px solid var(--night-light);
}
.service-visual-list li:last-child { border-bottom: none; }
.service-visual-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald);
}

/* ----------------------------------------------------------
   24. PROCESS (hizmetler)
   ---------------------------------------------------------- */
.process {
    padding: calc(var(--unit) * 15) 0;
    background: var(--night);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.process-header {
    text-align: center;
    margin-bottom: calc(var(--unit) * 10);
    position: relative;
    z-index: 1;
}
.process-header .section-label { color: var(--emerald); }
.process-header .section-title { color: var(--ivory); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--unit) * 3);
    position: relative;
    z-index: 1;
}
.process-card {
    background: var(--night-light);
    padding: calc(var(--unit) * 4);
    position: relative;
    transition: all 0.4s var(--transition);
}
.process-card::before {
    content: '';
    position: absolute;
    top: calc(var(--unit) * 4);
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), transparent);
}
.process-card:last-child::before { display: none; }
.process-card:hover { transform: translateY(-8px); }
.process-number {
    width: 48px;
    height: 48px;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: calc(var(--unit) * 3);
}
.process-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: calc(var(--unit) * 1.5);
}
.process-desc { font-size: 0.875rem; color: var(--slate-light); line-height: 1.7; }

/* ----------------------------------------------------------
   25. FAQ (hizmetler)
   ---------------------------------------------------------- */
.faq { padding: calc(var(--unit) * 15) 0; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: calc(var(--unit) * 10);
}
.faq-intro { position: sticky; top: 120px; }
.faq-item { border-bottom: 1px solid var(--ivory-dark); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--unit) * 3) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.faq-question-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--night);
}
.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--ivory-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-icon { background: var(--emerald); transform: rotate(45deg); }
.faq-icon svg { width: 16px; height: 16px; stroke: var(--night); stroke-width: 2; fill: none; transition: stroke 0.3s; }
.faq-item.active .faq-icon svg { stroke: white; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding-bottom: calc(var(--unit) * 3);
    font-size: 0.9375rem;
    color: var(--slate);
    line-height: 1.8;
}

/* ----------------------------------------------------------
   26. PACKAGES (hizmetler)
   ---------------------------------------------------------- */
.packages { padding: calc(var(--unit) * 12) 0; background: var(--ivory-dark); }
.packages-header { text-align: center; margin-bottom: calc(var(--unit) * 8); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--unit) * 3); }
.package-card {
    background: white;
    padding: calc(var(--unit) * 5);
    position: relative;
    transition: all 0.4s var(--transition);
}
.package-card.featured { background: var(--night); }
.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald);
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.package-badge {
    position: absolute;
    top: calc(var(--unit) * 2);
    right: calc(var(--unit) * 2);
    padding: calc(var(--unit) * 0.5) calc(var(--unit) * 1.5);
    background: var(--emerald);
    font-size: 0.6875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.package-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 1);
}
.package-card.featured .package-name { color: var(--ivory); }
.package-desc {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: calc(var(--unit) * 3);
}
.package-card.featured .package-desc { color: var(--slate-light); }
.package-features { list-style: none; margin-bottom: calc(var(--unit) * 4); }
.package-feature {
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 1.5);
    padding: calc(var(--unit) * 1) 0;
    font-size: 0.875rem;
    color: var(--night);
}
.package-card.featured .package-feature { color: var(--slate-light); }
.package-feature svg { width: 16px; height: 16px; stroke: var(--emerald); stroke-width: 2; fill: none; flex-shrink: 0; }
.package-btn { width: 100%; padding: calc(var(--unit) * 2); text-align: center; font-weight: 500; }
.package-card .package-btn { background: var(--night); color: white; }
.package-card.featured .package-btn { background: var(--emerald); color: white; }
.package-card .package-btn:hover { background: var(--emerald); }
.package-card.featured .package-btn:hover { background: white; color: var(--night); }

/* ----------------------------------------------------------
   27. CONTACT HERO (iletisim)
   ---------------------------------------------------------- */
.contact-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact-info {
    background: var(--night);
    padding: calc(var(--unit) * 20) calc(var(--unit) * 8) calc(var(--unit) * 8);
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald) 0%, var(--gold) 50%, var(--emerald) 100%);
}
.contact-info::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.contact-info-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-info .section-label { color: var(--emerald); }
.contact-info .section-title { color: var(--ivory); font-size: clamp(2rem, 4vw, 3rem); }
.contact-info-desc {
    font-size: 1.0625rem;
    color: var(--slate-light);
    line-height: 1.8;
    margin-bottom: calc(var(--unit) * 6);
    max-width: 400px;
}

/* Contact methods */
.contact-methods { display: flex; flex-direction: column; gap: calc(var(--unit) * 3); margin-bottom: calc(var(--unit) * 6); }
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--unit) * 3);
    padding: calc(var(--unit) * 3);
    background: var(--night-light);
    transition: all 0.3s var(--transition);
}
.contact-method:hover { transform: translateX(8px); }
.contact-method-icon {
    width: 56px;
    height: 56px;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-method-icon svg { width: 28px; height: 28px; stroke: white; stroke-width: 1.5; fill: none; }
.contact-method-label {
    font-size: 0.6875rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.contact-method-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--ivory); }
.contact-method-value a { color: var(--ivory); text-decoration: none; }
.contact-method-value a:hover { color: var(--emerald); }
.contact-method-note { font-size: 0.8125rem; color: var(--slate-light); margin-top: 4px; }

/* Contact hours */
.contact-hours { background: var(--night-light); padding: calc(var(--unit) * 4); margin-top: auto; }
.contact-hours-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--ivory);
    margin-bottom: calc(var(--unit) * 2);
}
.contact-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--unit) * 2); }
.contact-hours-item {
    display: flex;
    justify-content: space-between;
    padding: calc(var(--unit) * 1) 0;
    font-size: 0.875rem;
}
.contact-hours-day { color: var(--slate-light); }
.contact-hours-time { color: var(--ivory); font-weight: 500; }
.contact-hours-time.closed { color: var(--red); }

/* Contact social */
.contact-social { display: flex; gap: calc(var(--unit) * 2); margin-top: calc(var(--unit) * 4); }
.contact-social a {
    width: 48px;
    height: 48px;
    background: var(--night-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.contact-social a:hover { background: var(--emerald); }
.contact-social svg { width: 22px; height: 22px; fill: var(--slate-light); transition: fill 0.3s; }
.contact-social a:hover svg { fill: white; }

/* ----------------------------------------------------------
   28. CONTACT FORM (iletisim)
   ---------------------------------------------------------- */
.contact-form-section {
    background: var(--ivory);
    padding: calc(var(--unit) * 20) calc(var(--unit) * 8) calc(var(--unit) * 8);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-header { margin-bottom: calc(var(--unit) * 5); }
.form-header .section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.form-header-desc { font-size: 0.9375rem; color: var(--slate); }

.contact-form { display: flex; flex-direction: column; gap: calc(var(--unit) * 3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: calc(var(--unit) * 3); }
.form-group { display: flex; flex-direction: column; gap: calc(var(--unit) * 1); }
.form-label { font-size: 0.8125rem; font-weight: 500; color: var(--night); }
.form-label span { color: var(--red); }
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: calc(var(--unit) * 2);
    background: white;
    border: 1px solid var(--ivory-dark);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--night);
    outline: none;
    transition: all 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--slate-light); }
.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--unit) * 1.5);
    cursor: pointer;
}
.form-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--emerald);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}
.form-checkbox-text { font-size: 0.8125rem; color: var(--slate); }
.form-checkbox-text a { color: var(--emerald); text-decoration: none; }
.form-checkbox-text a:hover { text-decoration: underline; }
.form-submit {
    padding: calc(var(--unit) * 2.5) calc(var(--unit) * 5);
    background: var(--night);
    color: white;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
}
.form-submit:hover { background: var(--emerald); transform: translateY(-2px); }
.form-submit svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Form success */
.form-success {
    display: none;
    padding: calc(var(--unit) * 4);
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--emerald);
}
.form-success.show { display: block; }
.form-success-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 1);
}
.form-success-text { font-size: 0.9375rem; color: var(--slate); }

.form-error {
    padding: calc(var(--unit) * 3);
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--red);
    margin-bottom: calc(var(--unit) * 3);
}
.form-error p {
    color: var(--red);
    font-size: 0.875rem;
    margin-bottom: calc(var(--unit) * 0.5);
}
.form-error p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------
   29. MAP SECTION (iletisim)
   ---------------------------------------------------------- */
.map-section { height: 400px; background: var(--ivory-dark); position: relative; }
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--night) 0%, var(--night-light) 100%);
}
.map-overlay {
    position: absolute;
    bottom: calc(var(--unit) * 4);
    left: calc(var(--unit) * 4);
    background: white;
    padding: calc(var(--unit) * 4);
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}
.map-overlay-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 1);
}
.map-overlay-address {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: calc(var(--unit) * 2);
}
.map-overlay-link {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--emerald);
    text-decoration: none;
}
.map-overlay-link:hover { text-decoration: underline; }
.map-overlay-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ----------------------------------------------------------
   30. QUICK HELP (iletisim)
   ---------------------------------------------------------- */
.quick-help { padding: calc(var(--unit) * 10) 0; background: var(--ivory-dark); }
.quick-help-header { text-align: center; margin-bottom: calc(var(--unit) * 6); }
.quick-help-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--unit) * 3); }
.quick-help-card {
    background: white;
    padding: calc(var(--unit) * 4);
    text-align: center;
    transition: all 0.3s var(--transition);
}
.quick-help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.quick-help-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto calc(var(--unit) * 3);
    background: var(--ivory-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.quick-help-card:hover .quick-help-icon { background: var(--emerald); }
.quick-help-icon svg { width: 32px; height: 32px; stroke: var(--night); stroke-width: 1.5; fill: none; transition: stroke 0.3s; }
.quick-help-card:hover .quick-help-icon svg { stroke: white; }
.quick-help-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 1);
}
.quick-help-desc { font-size: 0.8125rem; color: var(--slate); line-height: 1.6; }

/* ----------------------------------------------------------
   31. CURRENT DATE CARD (mevzuat hero)
   ---------------------------------------------------------- */
.current-date-card {
    background: var(--night-light);
    padding: calc(var(--unit) * 5);
    position: relative;
}
.current-date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--emerald);
}
.date-card-header { display: flex; align-items: center; gap: calc(var(--unit) * 2); margin-bottom: calc(var(--unit) * 3); }
.date-card-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
}
.date-card-icon svg { width: 24px; height: 24px; stroke: white; stroke-width: 2; fill: none; }
.date-card-label { font-size: 0.75rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.1em; }
.date-card-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--ivory); }

/* Upcoming deadlines */
.upcoming-deadlines { margin-top: calc(var(--unit) * 3); }
.upcoming-title {
    font-size: 0.75rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: calc(var(--unit) * 2);
}
.upcoming-item {
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 2);
    padding: calc(var(--unit) * 1.5) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.upcoming-item:last-child { border-bottom: none; }
.upcoming-date {
    width: 48px;
    height: 48px;
    background: var(--night);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.upcoming-day {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
}
.upcoming-month { font-size: 0.625rem; color: var(--slate-light); text-transform: uppercase; }
.upcoming-text { font-size: 0.8125rem; color: var(--ivory); }
.upcoming-badge { padding: 2px 8px; font-size: 0.625rem; font-weight: 600; text-transform: uppercase; }
.upcoming-badge.urgent { background: var(--red); color: white; }
.upcoming-badge.warning { background: var(--orange); color: white; }

/* ----------------------------------------------------------
   32. TAX CALENDAR (mevzuat)
   ---------------------------------------------------------- */
.tax-calendar { padding: calc(var(--unit) * 12) 0; }
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: calc(var(--unit) * 6);
}
.calendar-controls { display: flex; gap: calc(var(--unit) * 2); }
.calendar-nav { display: flex; align-items: center; gap: calc(var(--unit) * 1); }
.calendar-nav-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.calendar-nav-btn:hover { background: var(--emerald); }
.calendar-nav-btn svg { width: 20px; height: 20px; stroke: var(--night); stroke-width: 2; fill: none; }
.calendar-nav-btn:hover svg { stroke: white; }
.calendar-month {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--night);
    padding: 0 calc(var(--unit) * 2);
}
.calendar-filter { display: flex; gap: calc(var(--unit) * 1); }
.filter-btn {
    padding: calc(var(--unit) * 1) calc(var(--unit) * 2);
    font-size: 0.8125rem;
    font-weight: 500;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--night); color: var(--ivory); }

/* Calendar grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--ivory-dark);
}
.calendar-day-header {
    background: var(--night);
    padding: calc(var(--unit) * 2);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ivory);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.calendar-day {
    background: var(--bg-card);
    min-height: 120px;
    padding: calc(var(--unit) * 1.5);
    position: relative;
    transition: all 0.2s;
}
.calendar-day:hover { z-index: 10; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15); }
.calendar-day.other-month { background: var(--ivory); }
.calendar-day.other-month .day-number { color: var(--slate-light); }
.calendar-day.today { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%); }
.calendar-day.today .day-number { background: var(--emerald); color: white; }
.day-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 1);
}
.day-events { display: flex; flex-direction: column; gap: 4px; }
.day-event {
    padding: 4px 8px;
    font-size: 0.6875rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.day-event:hover { opacity: 0.8; }
.day-event.tax { background: var(--red); color: white; }
.day-event.sgk { background: var(--emerald); color: white; }
.day-event.declaration { background: var(--gold); color: var(--night); }
.day-event.other { background: var(--slate); color: white; }

/* Calendar legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: calc(var(--unit) * 4);
    margin-top: calc(var(--unit) * 4);
    padding: calc(var(--unit) * 3);
    background: var(--bg-secondary);
}
.legend-item { display: flex; align-items: center; gap: calc(var(--unit) * 1); font-size: 0.8125rem; color: var(--slate); }
.legend-color { width: 16px; height: 16px; }
.legend-color.tax { background: var(--red); }
.legend-color.sgk { background: var(--emerald); }
.legend-color.declaration { background: var(--gold); }
.legend-color.other { background: var(--slate); }

/* ----------------------------------------------------------
   33. CIRCULARS (mevzuat)
   ---------------------------------------------------------- */
.circulars { padding: calc(var(--unit) * 12) 0; background: var(--bg-secondary); }
.circulars-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: calc(var(--unit) * 6);
}
.circulars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: calc(var(--unit) * 3); }
.circular-card {
    background: var(--bg-card);
    padding: calc(var(--unit) * 4);
    transition: all 0.3s var(--transition);
    position: relative;
}
.circular-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.circular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}
.circular-card:hover::before { transform: scaleX(1); }
.circular-meta { display: flex; align-items: center; gap: calc(var(--unit) * 2); margin-bottom: calc(var(--unit) * 2); }
.circular-date { font-size: 0.75rem; color: var(--slate); }
.circular-category {
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}
.circular-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--night);
    margin-bottom: calc(var(--unit) * 2);
    line-height: 1.4;
}
.circular-excerpt {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: calc(var(--unit) * 3);
}
.circular-link {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--emerald);
    text-decoration: none;
    transition: gap 0.2s;
}
.circular-link:hover { gap: calc(var(--unit) * 1.5); }
.circular-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ----------------------------------------------------------
   34. RESOURCES & NEWSLETTER (mevzuat)
   ---------------------------------------------------------- */

/* Resources */
.resources { padding: calc(var(--unit) * 12) 0; }
.resources-header { text-align: center; margin-bottom: calc(var(--unit) * 8); }
.resources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--unit) * 3); }
.resource-card {
    background: var(--night);
    padding: calc(var(--unit) * 4);
    text-align: center;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.resource-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.resource-card:hover { transform: translateY(-6px); }
.resource-card:hover::before { opacity: 1; }
.resource-card > * { position: relative; z-index: 1; }
.resource-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto calc(var(--unit) * 3);
    background: var(--night-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.resource-card:hover .resource-icon { background: rgba(255,255,255,0.2); }
.resource-icon svg { width: 32px; height: 32px; stroke: var(--emerald); stroke-width: 1.5; fill: none; transition: stroke 0.3s; }
.resource-card:hover .resource-icon svg { stroke: white; }
.resource-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--ivory);
    margin-bottom: calc(var(--unit) * 1);
}
.resource-desc { font-size: 0.8125rem; color: var(--slate-light); margin-bottom: calc(var(--unit) * 3); }
.resource-link {
    display: inline-flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--emerald);
    text-decoration: none;
    transition: all 0.2s;
}
.resource-card:hover .resource-link { color: white; }
.resource-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Newsletter */
.newsletter {
    padding: calc(var(--unit) * 10) 0;
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--unit) * 8);
    align-items: center;
    position: relative;
    z-index: 1;
}
.newsletter-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin-bottom: calc(var(--unit) * 2);
}
.newsletter-desc { font-size: 1rem; color: rgba(255,255,255,0.9); }
.newsletter-form { display: flex; gap: calc(var(--unit) * 1); }
.newsletter-form input {
    flex: 1;
    padding: calc(var(--unit) * 2) calc(var(--unit) * 3);
    background: var(--bg-card);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
}
.newsletter-form button {
    padding: calc(var(--unit) * 2) calc(var(--unit) * 4);
    background: var(--night);
    color: white;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--night-light); }

/* ----------------------------------------------------------
   35. FOOTER
   ---------------------------------------------------------- */
.footer { background: var(--night); position: relative; }

/* Footer top (newsletter CTA) */
.footer-top { padding: calc(var(--unit) * 10) 0; border-bottom: 1px solid var(--night-light); }
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: calc(var(--unit) * 8);
    align-items: center;
}
.footer-cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ivory);
    margin-bottom: calc(var(--unit) * 2);
}
.footer-cta-desc { color: var(--slate-light); margin-bottom: calc(var(--unit) * 3); }
.footer-newsletter { display: flex; gap: calc(var(--unit) * 1); }
.footer-newsletter input {
    flex: 1;
    padding: calc(var(--unit) * 1.5) calc(var(--unit) * 2);
    background: var(--night-light);
    border: 1px solid var(--night-light);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s;
}
.footer-newsletter input::placeholder { color: var(--slate); }
.footer-newsletter input:focus { border-color: var(--emerald); }
.footer-newsletter button {
    padding: calc(var(--unit) * 1.5) calc(var(--unit) * 3);
    background: var(--emerald);
    color: white;
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.footer-newsletter button:hover { background: var(--emerald-dark); }
.footer-contact-mini { display: flex; gap: calc(var(--unit) * 4); }
.footer-contact-item { display: flex; align-items: center; gap: calc(var(--unit) * 1.5); }
.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--night-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-contact-icon svg { width: 20px; height: 20px; stroke: var(--emerald); stroke-width: 1.5; fill: none; }
.footer-contact-text { font-size: 0.875rem; color: var(--ivory); }
.footer-contact-label { font-size: 0.6875rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.1em; }

/* Footer main grid */
.footer-main { padding: calc(var(--unit) * 8) 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
    gap: calc(var(--unit) * 5);
}

/* Footer brand */
.footer-logo { display: flex; align-items: center; gap: calc(var(--unit) * 1.5); margin-bottom: calc(var(--unit) * 3); }
.footer-logo .logo-mark { background: var(--night-light); }
.footer-logo .logo-text { color: var(--ivory); }
.footer-desc {
    font-size: 0.875rem;
    color: var(--slate-light);
    line-height: 1.7;
    margin-bottom: calc(var(--unit) * 3);
}
.footer-certifications { display: flex; gap: calc(var(--unit) * 2); flex-wrap: wrap; }
.footer-cert {
    padding: calc(var(--unit) * 1) calc(var(--unit) * 1.5);
    background: var(--night-light);
    font-size: 0.6875rem;
    color: var(--slate-light);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Footer columns */
.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: calc(var(--unit) * 3);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: calc(var(--unit) * 1.5);
}
.footer-links a {
    font-size: 0.875rem;
    color: var(--slate-light);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 1);
}
.footer-links a::before { content: ''; width: 0; height: 1px; background: var(--emerald); transition: width 0.2s; }
.footer-links a:hover { color: var(--ivory); padding-left: calc(var(--unit) * 1); }
.footer-links a:hover::before { width: 12px; }

/* Footer hours */
.footer-hours-title {
    font-size: 0.75rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: calc(var(--unit) * 2);
}
.footer-hours-item {
    display: flex;
    justify-content: space-between;
    padding: calc(var(--unit) * 1) 0;
    border-bottom: 1px solid var(--night-light);
    font-size: 0.8125rem;
}
.footer-hours-item:last-child { border-bottom: none; }
.footer-hours-day { color: var(--slate-light); }
.footer-hours-time { color: var(--ivory); font-weight: 500; }

/* Footer social */
.footer-social { display: flex; gap: calc(var(--unit) * 1.5); margin-top: calc(var(--unit) * 3); }
.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--night-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--emerald); }
.footer-social svg { width: 18px; height: 18px; fill: var(--slate-light); transition: fill 0.2s; }
.footer-social a:hover svg { fill: white; }

/* Footer bottom */
.footer-bottom { padding: calc(var(--unit) * 3) 0; border-top: 1px solid var(--night-light); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-copyright { font-size: 0.8125rem; color: var(--slate); }
.footer-legal { display: flex; gap: calc(var(--unit) * 3); }
.footer-legal a { font-size: 0.8125rem; color: var(--slate); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--ivory); }

/* ----------------------------------------------------------
   36. MOBILE MENU
   ---------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1001;
    padding: calc(var(--unit) * 10) calc(var(--unit) * 4);
    transition: right 0.4s var(--transition);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
}
.mobile-menu.active { right: 0; }
.mobile-menu-close {
    position: absolute;
    top: calc(var(--unit) * 3);
    right: calc(var(--unit) * 3);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-close svg { width: 24px; height: 24px; stroke: var(--night); stroke-width: 2; fill: none; }
.mobile-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: calc(var(--unit) * 2);
}
.mobile-nav a {
    display: block;
    padding: calc(var(--unit) * 2);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--emerald); }
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------
   37. RESPONSIVE - 1024px
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    /* Index */
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }

    /* Hakkimizda */
    .page-hero-content { grid-template-columns: 1fr; }
    .page-hero-visual { display: none; }
    .story-grid { grid-template-columns: 1fr; }
    .story-sticky { position: relative; top: 0; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }

    /* Hizmetler */
    .service-section-grid { grid-template-columns: 1fr; }
    .service-section:nth-child(even) .service-section-grid { direction: ltr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-card::before { display: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-intro { position: relative; top: 0; }
    .packages-grid { grid-template-columns: 1fr 1fr; }

    /* Iletisim */
    .contact-hero { grid-template-columns: 1fr; min-height: auto; }
    .contact-info { padding: calc(var(--unit) * 15) calc(var(--unit) * 4) calc(var(--unit) * 8); }
    .contact-form-section { padding: calc(var(--unit) * 8) calc(var(--unit) * 4); }
    .contact-hours-grid { grid-template-columns: 1fr; }
    .quick-help-grid { grid-template-columns: 1fr 1fr; }

    /* Mevzuat */
    .current-date-card { margin-top: calc(var(--unit) * 5); }
    .circulars-grid { grid-template-columns: 1fr 1fr; }
    .resources-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-content { grid-template-columns: 1fr; text-align: center; }
    .newsletter-form { max-width: 500px; margin: calc(var(--unit) * 4) auto 0; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-top-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   38. RESPONSIVE - 768px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .nav-list { display: none; }
    .menu-toggle { display: flex; }

    /* Index */
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--night-light); }
    .stat-item:nth-child(2n) { border-left: 1px solid var(--night-light); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .services-header { flex-direction: column; align-items: flex-start; gap: calc(var(--unit) * 2); }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Hakkimizda */
    .page-hero-stats { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(odd) { flex-direction: column; text-align: left; }
    .timeline-item .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content { padding: calc(var(--unit) * 3) 0 0 calc(var(--unit) * 6); }
    .timeline-dot { position: absolute; left: 20px; transform: translateX(-50%); }
    .team-grid { grid-template-columns: 1fr; }
    .cert-grid { flex-direction: column; }

    /* Hizmetler */
    .service-nav-inner { gap: 0; }
    .service-nav-item { padding: calc(var(--unit) * 1.5) calc(var(--unit) * 2); font-size: 0.8125rem; }
    .process-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }

    /* Iletisim */
    .form-row { grid-template-columns: 1fr; }
    .quick-help-grid { grid-template-columns: 1fr; }
    .map-overlay { left: calc(var(--unit) * 2); right: calc(var(--unit) * 2); max-width: none; }

    /* Mevzuat */
    .calendar-header { flex-direction: column; align-items: flex-start; gap: calc(var(--unit) * 3); }
    .calendar-grid { display: none; }
    .calendar-legend { flex-wrap: wrap; justify-content: flex-start; }
    .circulars-grid { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: calc(var(--unit) * 2); text-align: center; }
    .footer-contact-mini { flex-direction: column; gap: calc(var(--unit) * 2); }
}

/* ============================================================
   MICRO-ANIMATIONS
   ============================================================ */

/* Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(16, 185, 129, 0.15); }
}

@keyframes gradient-x {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hero glow pulse */
.hero-glow {
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Hero metrics floating */
.hero-metric-1 { animation: float 6s ease-in-out infinite; }
.hero-metric-2 { animation: float 6s ease-in-out infinite 1s; }
.hero-metric-3 { animation: float 6s ease-in-out infinite 2s; }

/* Service cards - gradient border on hover */
.service-card {
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s var(--transition);
}
.service-card:hover::before {
    opacity: 1;
    animation: gradient-x 3s ease infinite;
}

/* Service icon micro-animation */
.service-card:hover .service-icon svg {
    animation: float 2s ease-in-out infinite;
}

/* CTA animated gradient background */
.cta {
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

/* Button hover lift */
.btn:hover, .nav-cta:hover, .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Card hover lift */
.value-card:hover, .process-card:hover, .cert-item:hover, .quick-help-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Section label slide-in (visible via IntersectionObserver) */
.section-label {
    opacity: 0;
    animation: slide-in-left 0.6s var(--transition) forwards;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-progress { display: none; }
}

/* ==========================================================
   BLOG STYLES
   ========================================================== */

/* ---- Blog Hero ---- */
.blog-hero .page-hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.blog-hero .page-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
}

/* ---- Blog Filters ---- */
.blog-filters-section {
    padding: 0 0 2rem;
}

.blog-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-filter-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.blog-filter-tabs::-webkit-scrollbar {
    display: none;
}

.blog-filter-tab {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s var(--transition);
}

.blog-filter-tab:hover {
    color: var(--emerald);
    border-color: var(--emerald);
}

.blog-filter-tab.active {
    background: var(--emerald);
    color: #fff;
    border-color: var(--emerald);
}

.blog-search-form {
    flex-shrink: 0;
}

.blog-search-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    min-width: 240px;
    transition: border-color 0.2s;
}

.blog-search-input:focus-within {
    border-color: var(--emerald);
}

.blog-search-input svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

.blog-search-input input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--text-primary);
    width: 100%;
    font-family: var(--font-body);
}

.blog-search-input input::placeholder {
    color: var(--text-secondary);
}

.blog-search-info {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-search-info a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 500;
}

/* ---- Blog Grid ---- */
.blog-listing {
    padding: 0 0 5rem;
}

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

/* ---- Blog Card ---- */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--transition), transform 0.5s var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.blog-card-image-link {
    display: block;
    text-decoration: none;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    opacity: 0.3;
}

.blog-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.blog-card-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--emerald);
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.blog-card-author {
    font-weight: 500;
    color: var(--text-primary);
}

.blog-card-separator {
    opacity: 0.4;
}

/* ---- Blog Empty State ---- */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.blog-empty-icon {
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.blog-empty h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ---- Blog Pagination ---- */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.blog-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s var(--transition);
}

.blog-page-link:hover {
    color: var(--emerald);
    border-color: var(--emerald);
}

.blog-page-link.active {
    background: var(--emerald);
    color: #fff;
    border-color: var(--emerald);
}

.blog-page-dots {
    color: var(--text-secondary);
    padding: 0 0.25rem;
}

/* ==========================================================
   BLOG DETAIL (blog-detay.php)
   ========================================================== */

/* ---- Reading Progress Bar ---- */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--gold));
    z-index: 10000;
    transition: none;
}

/* ---- Breadcrumb ---- */
.blog-breadcrumb {
    padding: 1.5rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: var(--emerald);
}

.breadcrumb-sep {
    opacity: 0.4;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ---- Article Layout ---- */
.blog-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding-bottom: 5rem;
}

/* ---- Article Header ---- */
.article-header {
    margin-bottom: 2rem;
}

.article-category-badge {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-bottom: 1rem;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.article-meta-item svg {
    opacity: 0.6;
}

.article-meta-sep {
    opacity: 0.3;
}

/* ---- Featured Image ---- */
.article-featured-image {
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Article Content (Rich Typography) ---- */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--emerald);
    line-height: 1.3;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.article-content ul li::marker {
    color: var(--emerald);
}

.article-content ol li::marker {
    color: var(--emerald);
    font-weight: 600;
}

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--emerald);
    background: var(--bg-secondary);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

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

.article-content a {
    color: var(--emerald);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--emerald-dark);
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    display: block;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.article-content th,
.article-content td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.article-content th {
    background: var(--bg-secondary);
    font-weight: 600;
}

.article-content code {
    background: var(--bg-secondary);
    padding: 0.125rem 0.375rem;
    font-size: 0.875rem;
    font-family: 'Fira Code', monospace;
}

.article-content pre {
    background: var(--bg-secondary);
    padding: 1.25rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.article-content pre code {
    background: none;
    padding: 0;
}

/* ---- Tags ---- */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.article-tags svg {
    color: var(--text-secondary);
    opacity: 0.5;
}

.article-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    transition: all 0.2s;
}

.article-tag:hover {
    color: var(--emerald);
}

/* ---- Share Buttons ---- */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.share-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-right: 0.25rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s var(--transition);
}

.share-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.share-twitter:hover { color: #1DA1F2; border-color: #1DA1F2; }
.share-linkedin:hover { color: #0A66C2; border-color: #0A66C2; }
.share-whatsapp:hover { color: #25D366; border-color: #25D366; }

.share-btn.copied {
    background: var(--emerald);
    color: #fff;
    border-color: var(--emerald);
}

/* ---- Author Box ---- */
.author-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-left: 4px solid var(--emerald);
    margin-bottom: 3rem;
}

.author-box-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    overflow: hidden;
}
.author-box-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-box-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
}

.author-box-title {
    font-size: 0.8125rem;
    color: var(--emerald);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.author-box-bio {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- Related Posts ---- */
.related-posts {
    margin-top: 1rem;
}

.related-posts-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card-sm .blog-card-image {
    aspect-ratio: 16 / 9;
}

.blog-card-sm .blog-card-title {
    font-size: 1rem;
}

/* ---- Blog Sidebar ---- */
.blog-sidebar {
    position: relative;
}

.blog-sidebar-inner {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.sidebar-widget-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--emerald);
}

/* Sidebar: Recent Posts */
.sidebar-recent-list {
    list-style: none;
}

.sidebar-recent-item {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-recent-item:last-child {
    border-bottom: none;
}

.sidebar-recent-item a {
    display: block;
    padding: 0.75rem 0;
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-recent-item a:hover .sidebar-recent-title {
    color: var(--emerald);
}

.sidebar-recent-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}

.sidebar-recent-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Sidebar: Categories */
.sidebar-category-list {
    list-style: none;
}

.sidebar-cat-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    text-decoration: none;
    font-size: 0.875rem;
    color: var(--text-primary);
    transition: color 0.2s;
}

.sidebar-cat-link:hover {
    color: var(--emerald);
}

.sidebar-cat-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.sidebar-cat-name {
    flex: 1;
}

/* Sidebar: CTA */
.sidebar-cta {
    background: var(--night);
    border-color: transparent;
    text-align: center;
}

[data-theme="dark"] .sidebar-cta {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.sidebar-cta-icon {
    margin-bottom: 1rem;
}

.sidebar-cta-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

[data-theme="dark"] .sidebar-cta-title {
    color: var(--text-primary);
}

.sidebar-cta-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

[data-theme="dark"] .sidebar-cta-text {
    color: var(--text-secondary);
}

.sidebar-cta-btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--emerald);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.sidebar-cta-btn:hover {
    background: var(--emerald-dark);
}

/* ==========================================================
   BLOG RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
    .blog-article-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar-inner {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-search-input {
        min-width: auto;
    }
    .article-meta {
        gap: 0.375rem;
    }
    .share-buttons {
        flex-wrap: wrap;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-card-title {
        font-size: 1rem;
    }
    .article-title {
        font-size: 1.5rem;
    }
    .article-content {
        font-size: 1rem;
    }
    .article-content h2 {
        font-size: 1.375rem;
    }
    .article-content h3 {
        font-size: 1.125rem;
    }
}