/* Mügesoft — Teal / Petrol UI */
:root {
    --white: #ffffff;
    --bg: #F7F6F2;
    --bg-alt: #EEF3F2;
    --bg-muted: #E4ECEA;
    --surface: #ffffff;
    --border: #D5E0DC;
    --border-strong: #B8C9C3;
    --text: #0B1F24;
    --text-secondary: #3D5559;
    --text-muted: #6B8084;
    --orange: #2A9D8F;
    --orange-light: #E6F5F2;
    --purple: #1A6B63;
    --purple-light: #D9F0EC;
    --blue: #2F6F8F;
    --blue-light: #E8F2F7;
    --green: #2A9D8F;
    --green-light: #E6F5F2;
    --pink: #C45C6A;
    --pink-light: #F8EBED;
    --teal: #2A9D8F;
    --teal-dark: #1A6B63;
    --petrol: #0B1F24;
    --cream: #F2EFE8;
    --gradient: linear-gradient(135deg, #1A6B63 0%, #2A9D8F 55%, #4DB6A8 100%);
    --shadow-xs: 0 1px 2px rgba(11, 31, 36, 0.04);
    --shadow-sm: 0 2px 8px rgba(11, 31, 36, 0.06);
    --shadow-md: 0 8px 24px rgba(11, 31, 36, 0.08);
    --shadow-lg: 0 16px 48px rgba(11, 31, 36, 0.12);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font: 'Manrope', system-ui, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --header-h: 72px;
    --topbar-h: 0px;
    --section-py: 88px;
    --section-py-sm: 48px;
    --section-header-mb: 48px;
    --gap-lg: 32px;
    --gap-md: 24px;
    --gap-sm: 16px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}
img, video, iframe, svg {
  max-width: 100%;
}
main#main-content,
.section,
.page-hero,
.hero {
  max-width: 100%;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* Lucide icons */
i[data-lucide], svg.lucide {
    display: inline-flex;
    vertical-align: middle;
    flex-shrink: 0;
    stroke-width: 2;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text);
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.05rem; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--orange-light);
    border: 1px solid rgba(42, 157, 143, 0.25);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
}

/* Icon color backgrounds */
.icon-bg-orange { background: var(--orange-light); color: var(--orange); }
.icon-bg-purple { background: var(--purple-light); color: var(--purple); }
.icon-bg-blue { background: var(--blue-light); color: var(--blue); }
.icon-bg-green { background: var(--green-light); color: var(--green); }
.icon-bg-pink { background: var(--pink-light); color: var(--pink); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 14px rgba(247, 87, 0, 0.25);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(103, 84, 233, 0.3);
}
.btn-outline {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border-strong);
    box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: var(--purple-light);
}
.btn-ghost {
    background: var(--bg-alt);
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-muted); }
.btn-ghost-light {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-top {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 24px;
    gap: 16px;
}
.header-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}
.header-stat-icon { color: var(--orange); }
.stat-value {
    font-weight: 700;
    color: var(--orange);
    font-family: var(--font-display);
}
.header-top-right { display: flex; gap: 20px; flex-wrap: wrap; }
.header-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-weight: 500;
}
.header-link:hover { color: var(--purple); }
.header-link-phone { color: var(--text); font-weight: 600; }

.navbar-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: var(--header-h);
    position: relative;
}
.logo img { height: 38px; width: auto; flex-shrink: 0; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--bg-alt); }
.nav-chevron { opacity: 0.5; transition: transform var(--transition); }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all var(--transition);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}
.dropdown-menu a:hover {
    background: var(--bg-alt);
    color: var(--purple);
}

/* Mega dropdown */
.nav-dropdown-mega { position: static; }
@media (min-width: 769px) {
    .navbar-bar { position: relative; }
    .nav-dropdown-mega { position: relative; }
    .nav-toggle { display: none; }
    .nav-menu {
        position: static;
        transform: none;
        visibility: visible;
        inset: auto;
        padding: 0;
        overflow: visible;
        flex: 1;
        justify-content: flex-end;
        background: transparent;
        z-index: auto;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .nav-dropdown-mega .dropdown-mega {
        left: auto;
        right: 0;
    }
}

.dropdown-mega {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: auto;
    width: min(660px, calc(100vw - 48px));
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    overflow: hidden;
    z-index: 1100;
}
.nav-dropdown-mega:hover .dropdown-mega,
.nav-dropdown-mega:focus-within .dropdown-mega,
.nav-dropdown-mega.open .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-mega-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 10px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}
.dropdown-mega-head strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}
.dropdown-mega-head span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dropdown-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 8px;
}
.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    min-height: 64px;
}
.mega-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 4px);
    justify-self: center;
    width: 100%;
}
.mega-item:hover {
    background: var(--bg-alt);
}
.mega-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.mega-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mega-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}
.mega-text small {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.35;
}
.mega-arrow {
    color: var(--text-muted);
    opacity: 0.35;
    flex-shrink: 0;
    transition: all var(--transition);
}
.mega-item:hover .mega-arrow {
    opacity: 1;
    color: var(--purple);
    transform: translateX(2px);
}
.mega-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    border-top: 1px solid var(--border);
    background: var(--white);
    transition: background var(--transition);
}
.mega-footer:hover { background: var(--purple-light); }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu-brand { display: none; }
.nav-menu-header,
.nav-menu-footer,
.nav-backdrop,
.mobile-submenu-label { display: none; }

/* Hero */
.hero {
    position: relative;
    padding-top: calc(var(--topbar-h) + var(--header-h) + 32px);
    overflow: hidden;
    min-height: auto;
}
.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: rgba(247, 87, 0, 0.15);
    top: -100px; right: -80px;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: rgba(103, 84, 233, 0.12);
    bottom: 80px; left: -100px;
}
.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #d5dbea 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--gap-lg);
    align-items: center;
    position: relative;
    z-index: 2;
    padding-bottom: var(--gap-lg);
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem;
    max-width: 500px;
}
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}
.hero-reach {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(103, 84, 233, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(103, 84, 233, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}
.hero-reach-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.hero-reach-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--purple);
}
.hero-reach-counter {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}
.hero-reach-display {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
}
.hero-reach-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}
.hero-reach-text {
    min-width: 0;
    flex: 1;
}
.hero-reach-phase {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.hero-reach-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.hero-reach-name.is-changing {
    opacity: 0;
    transform: translateY(8px);
}
.hero-reach-progress {
    height: 4px;
    margin-top: 14px;
    background: rgba(103, 84, 233, 0.12);
    border-radius: 100px;
    overflow: hidden;
}
.hero-reach-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--purple), var(--orange));
    border-radius: 100px;
    transition: width 0.35s ease;
}
.hero-reach-note {
    margin: 10px 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.trust-icon { color: var(--green); }

/* Hero showcase */
.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}
.showcase-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
}
.showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.25) 100%);
    pointer-events: none;
}
.showcase-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green);
    box-shadow: var(--shadow-sm);
}
.showcase-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    animation: floatBadge 5s ease-in-out infinite;
}
.showcase-float-1 { top: 8%; right: -4%; color: var(--purple); animation-delay: 0s; }
.showcase-float-2 { top: 42%; left: -8%; color: var(--orange); animation-delay: -1.5s; }
.showcase-float-3 { bottom: 12%; right: 0; color: var(--blue); animation-delay: -3s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero stats bar */
.hero-stats-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.hero-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Partners */
.partners-section {
    padding: 56px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.partners-section-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}
.partners-section-title { max-width: 420px; }
.partners-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.partners-section-title h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.partners-section-title p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}
.partners-logos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Certification logos — fixed equal heights */
.cert-logos-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cert-logos-row--about {
    margin: 1.25rem 0 1.5rem;
}
.cert-logos-row--partners {
    justify-content: flex-end;
    gap: 36px;
}
.cert-logos-row--header {
    gap: 10px;
}
.cert-logos-row--sidebar {
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.cert-logo,
.gpp-badge {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
}
.cert-logo img,
.gpp-badge img {
    display: block;
    width: auto;
    object-fit: contain;
}
.cert-h-32 img { height: 32px; }
.cert-h-36 img { height: 36px; }
.cert-h-40 img { height: 40px; }
.cert-h-44 img { height: 44px; }
.cert-h-48 img { height: 48px; }
.cert-h-52 img { height: 52px; }
.cert-h-56 img { height: 56px; }
.cert-h-64 img { height: 64px; }
.cert-h-72 img { height: 72px; }

.contact-partner-badges { margin-bottom: 1.5rem; }

/* legacy partners bar */
.partners-bar {
    padding: 28px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.partners-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partners-bar .partners-logos img {
    height: 44px;
    width: auto;
}

/* Sections */
.section { padding: var(--section-py) 0; }
.section-compact { padding: var(--section-py-sm) 0; }
.section-alt { background: var(--bg-alt); }
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--section-header-mb);
}
.section-header p {
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-size: 1.02rem;
}
.section-cta { text-align: center; margin-top: 40px; }

/* References */
.references-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.references-track {
    display: flex;
    gap: 20px;
    animation: marquee 45s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.reference-item {
    flex-shrink: 0;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: all var(--transition);
    box-shadow: var(--shadow-xs);
}
.reference-item:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}
.reference-item img {
    width: 180px;
    height: 72px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.9;
    transition: filter var(--transition), opacity var(--transition);
}
.reference-item:hover img { filter: grayscale(0%); opacity: 1; }

/* Service cards — homepage */
.services-grid-home { gap: 28px; }

.service-card-home {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.service-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--purple));
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.service-card-home:hover::before { transform: scaleX(1); }
.service-card-orange { --card-accent: var(--orange); }
.service-card-purple { --card-accent: var(--purple); }
.service-card-blue   { --card-accent: var(--blue); }
.service-card-green  { --card-accent: var(--green); }
.service-card-pink   { --card-accent: var(--pink); }

.service-card-home .service-card-image { aspect-ratio: 16 / 9; }
.service-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
}
.service-card-home .service-icon-badge {
    top: 14px;
    left: 14px;
    bottom: auto;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.9);
}
.service-stat-pill-float {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    font-size: 0.75rem;
    padding: 6px 12px;
}
.service-card-home .service-card-body {
    padding: 22px 24px 26px;
    gap: 0;
}
.service-card-home h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.service-card-home p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 18px;
    min-height: 4.35em;
}
.service-card-home .service-link {
    font-size: 0.9rem;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    width: 100%;
    justify-content: space-between;
}
.service-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--purple-light);
    color: var(--purple);
    transition: all var(--transition);
}
.service-card-home:hover .service-link-arrow {
    background: var(--gradient);
    color: #fff;
    transform: translateX(4px);
}
.service-card-home:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* About — homepage */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.about-home-content h2 { margin-bottom: 0.75rem; }
.about-home-content > p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.about-home-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.process-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.process-card-home {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}
.process-card-home:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.process-card-home-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}
.process-card-home .process-num {
    display: block;
    margin-bottom: 4px;
}
.process-card-home h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.process-card-home p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
}
.services-grid > * { min-width: 0; }

.services-grid-visual { grid-template-columns: repeat(3, 1fr); }

.service-card-visual {
    padding: 0;
    overflow: hidden;
}
.service-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.service-card-visual:hover .service-card-image img {
    transform: scale(1.06);
}
.service-icon-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    line-height: 0;
}
.service-icon-badge svg,
.service-icon-badge i {
    display: block;
    margin: 0;
    vertical-align: unset;
}
.service-card-visual .service-card-body {
    padding: 20px 22px 24px;
}
.service-card-visual .service-card-top {
    margin-bottom: 8px;
    align-items: center;
}
.service-card-visual h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
}
.service-card-visual p {
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.services-grid-full { grid-template-columns: repeat(2, 1fr); }
.services-grid-visual { grid-template-columns: repeat(3, 1fr); }
.services-grid-compact { grid-template-columns: repeat(3, 1fr); }

.service-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
    height: 100%;
}
.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 12px;
}
.service-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}
.service-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 16px;
    line-height: 1.6;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple);
    margin-top: auto;
}
.service-card:hover .service-link { color: var(--orange); }
.service-card-sm {
    text-align: center;
    padding: 24px;
}
.service-card-sm h3 { margin-bottom: 12px; }

/* About / Process */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: start;
}
.about-visual {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}
.about-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    aspect-ratio: 16 / 10;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content p {
    color: var(--text-secondary);
    margin: 1rem 0 1.5rem;
}
.about-features {
    margin-bottom: 1.75rem;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.check-icon { color: var(--green); }

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.process-step-card {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    align-items: flex-start;
}
.process-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--purple);
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
}
.process-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.process-step-body h4 { margin: 4px 0 6px; }
.process-step-body p { font-size: 0.88rem; color: var(--text-muted); }

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.process-grid-full { grid-template-columns: repeat(4, 1fr); }
.process-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}
.process-step {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--orange);
}

/* Why */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}
.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--border-strong);
}
.why-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}
.why-card h4 { margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-grid-full { grid-template-columns: repeat(2, 1fr); }

.blog-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.blog-card-visual {
    padding: 0;
    overflow: hidden;
}
.blog-card-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.blog-card-visual:hover .blog-card-thumb img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-visual .blog-card-icon { display: none; }
.blog-card-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.blog-card h3 {
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 14px;
    flex: 1;
}
.blog-card h3 a:hover { color: var(--purple); }
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: auto;
}
.blog-card-lg { padding: 32px; }

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}
.blog-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--gap-lg);
    aspect-ratio: 21 / 9;
    max-height: 420px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-article-full { grid-column: 1; }
.blog-article-content {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.8;
}
.blog-article-content h2 {
    color: var(--text);
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}
.blog-article-content p { margin-bottom: 1.2rem; }
.blog-article-cta {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.blog-sidebar {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-h) + var(--topbar-h) + 24px);
}
.blog-sidebar h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.sidebar-posts li { border-bottom: 1px solid var(--border); }
.sidebar-posts li:last-child { border: none; }
.sidebar-posts a { display: block; padding: 12px 0; }
.sidebar-posts time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.sidebar-posts span {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.sidebar-posts a:hover span { color: var(--purple); }

/* Blog — revize */
.blog-page-hero {
    position: relative;
    padding: calc(var(--header-h) + var(--topbar-h) + 48px) 0 56px;
    overflow: hidden;
}
.blog-page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 10% 0%, rgba(247, 87, 0, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 90% 100%, rgba(103, 84, 233, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.blog-page-hero-inner { position: relative; z-index: 1; }
.blog-page-hero-copy { max-width: 720px; }
.blog-page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin: 0.75rem 0 0.85rem;
}
.blog-page-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}
.blog-page-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}
.blog-page-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
}
.blog-page-section { padding-top: 0; }

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}
.blog-filter-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.blog-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.blog-filter-chip {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.blog-filter-chip:hover,
.blog-filter-chip.is-active {
    border-color: var(--purple);
    color: var(--purple);
    background: var(--purple-light);
}

.blog-topic-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(103, 84, 233, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.blog-topic-badge--sm {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
}
.blog-topic-badge--hero {
    margin-bottom: 0.85rem;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 0;
    margin-bottom: 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.blog-featured-media {
    position: relative;
    display: block;
    min-height: 280px;
}
.blog-featured-media img,
.blog-featured-media picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-featured-media .blog-topic-badge {
    position: absolute;
    left: 16px;
    top: 16px;
}
.blog-featured-body {
    padding: 2rem 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-body h2 {
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    line-height: 1.35;
    margin: 0.65rem 0 0.55rem;
}
.blog-featured-body h2 a {
    color: var(--text);
    text-decoration: none;
}
.blog-featured-body h2 a:hover { color: var(--purple); }
.blog-featured-body p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.92rem;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.blog-grid-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.blog-card-modern {
    padding: 0;
    overflow: hidden;
    height: 100%;
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(103, 84, 233, 0.22);
}
.blog-card-modern .blog-card-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
}
.blog-card-modern .blog-card-content {
    padding: 1rem 1.1rem 1.15rem;
    gap: 0;
}
.blog-card-modern h2 {
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 700;
    margin: 0 0 0.55rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-modern h2 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}
.blog-card-modern h2 a:hover { color: var(--purple); }
.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.86rem;
    line-height: 1.6;
    margin: 0 0 0.85rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-modern .blog-read-more {
    font-size: 0.8rem;
    margin-top: auto;
}
.blog-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3rem 1rem;
    color: var(--text-muted);
    text-align: center;
}
.blog-empty-state[hidden] { display: none !important; }
.blog-pagination {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
}
.blog-pagination nav {
    width: 100%;
    display: flex;
    justify-content: center;
}
.blog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.blog-pagination .pagination li {
    list-style: none;
    margin: 0;
}
.blog-pagination .pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.8rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.86rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-xs);
}
.blog-pagination .pagination li.active a,
.blog-pagination .pagination a:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: var(--purple-light);
}
.blog-pagination .pagination a[aria-label] {
    padding: 0 0.95rem;
    font-size: 0.8rem;
}

.blog-detail-page { background: var(--bg); }
.blog-detail-hero {
    position: relative;
    min-height: clamp(320px, 48vw, 520px);
    display: flex;
    align-items: flex-end;
    color: #fff;
}
.blog-detail-hero-media {
    position: absolute;
    inset: 0;
}
.blog-detail-hero-media img,
.blog-detail-hero-media picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.82) 78%);
}
.blog-detail-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: calc(var(--header-h) + var(--topbar-h) + 24px) 0 2.5rem;
    text-align: left;
}
.blog-detail-hero .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 0.85rem;
}
.blog-detail-hero h1 {
    font-size: clamp(1.5rem, 3.2vw, 2.35rem);
    line-height: 1.25;
    margin: 0.55rem 0 0.85rem;
    color: #fff;
    max-width: 780px;
}
.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
}
.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.breadcrumb--light a,
.breadcrumb--light span { color: rgba(255, 255, 255, 0.78); }
.breadcrumb--light a:hover { color: #fff; }

.blog-detail-progress {
    position: fixed;
    top: calc(var(--header-h) + var(--topbar-h));
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--orange), var(--purple));
    z-index: 90;
    transition: width 0.12s linear;
}
.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
}
.blog-detail-main {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-xs);
}
.blog-prose {
    font-size: 1.04rem;
    line-height: 1.85;
    color: var(--text-secondary);
}
.blog-prose > *:first-child { margin-top: 0; }
.blog-prose h2,
.blog-prose h3,
.blog-prose h4 {
    color: var(--text);
    margin: 2rem 0 0.85rem;
    line-height: 1.35;
}
.blog-prose h2 { font-size: 1.45rem; }
.blog-prose h3 { font-size: 1.2rem; }
.blog-prose p { margin-bottom: 1.1rem; }
.blog-prose ul,
.blog-prose ol {
    margin: 0 0 1.25rem 1.2rem;
    padding: 0;
}
.blog-prose li { margin-bottom: 0.45rem; }
.blog-prose a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.blog-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1.25rem 0;
}
.blog-prose blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--orange);
    background: var(--bg-alt);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text);
}

.blog-detail-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}
.blog-detail-cta h2 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.2rem;
    margin: 0 0 0.35rem;
}
.blog-detail-cta p {
    margin: 0;
    color: var(--text-secondary);
    max-width: 42ch;
}
.blog-detail-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: calc(var(--header-h) + var(--topbar-h) + 20px);
}
.blog-sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-xs);
}
.blog-sidebar-card h3 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
    margin: 0 0 0.85rem;
}
.blog-sidebar-card--cta {
    background: linear-gradient(145deg, var(--purple-light), var(--orange-light));
    border-color: rgba(103, 84, 233, 0.18);
}
.blog-sidebar-card--cta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.blog-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.blog-related-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}
.blog-related-thumb {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-alt);
}
.blog-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-related-text { display: flex; flex-direction: column; gap: 0.2rem; }
.blog-related-topic {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--purple);
}
.blog-related-title {
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--text);
    font-weight: 600;
}
.blog-related-item:hover .blog-related-title { color: var(--purple); }
.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.25rem 0;
}
.blog-back-link:hover { color: var(--purple); }

.home .blog-meta .blog-topic-badge--inline {
    background: var(--purple-light);
    color: var(--purple);
}
.home .blog-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* CTA */
.cta-section { padding: var(--section-py-sm) 0 var(--section-py); }
.cta-box {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 44px 48px;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--purple-light) 100%);
    border: 1px solid rgba(103, 84, 233, 0.15);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}
.cta-icon-wrap {
    width: 72px; height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--purple);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.cta-content { flex: 1; }
.cta-content h2 { margin-bottom: 6px; }
.cta-content p { color: var(--text-secondary); }
.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Page hero */
.page-hero {
    position: relative;
    padding: calc(var(--topbar-h) + var(--header-h) + 56px) 0 56px;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(103, 84, 233, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 90% 80%, rgba(247, 87, 0, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
    pointer-events: none;
}
.page-hero-inner {
    position: relative;
    z-index: 1;
}
.page-hero h1 { margin: 0.5rem 0 0.75rem; }
.page-hero p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb-light { color: rgba(255, 255, 255, 0.7); }
.breadcrumb-light a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb-light a:hover { color: #fff; }
.breadcrumb-light span { color: rgba(255, 255, 255, 0.5); }

/* Service detail hero banner */
.service-hero-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--topbar-h) + var(--header-h) + 48px) 0 56px;
    background: var(--text) center/cover no-repeat;
    background-image: var(--hero-img);
    overflow: hidden;
}
.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 50%, rgba(103, 84, 233, 0.4) 100%);
}
.service-hero-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
}
.service-hero-banner-content { max-width: 640px; }
.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.service-hero-banner h1 {
    color: #fff;
    margin-bottom: 0.75rem;
}
.service-hero-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.service-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.service-hero-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    flex-shrink: 0;
}
.service-hero-stat-card .stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.service-hero-stat-card .stat-txt {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    text-align: center;
}

.service-detail-section { padding-top: 64px; }
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.service-detail-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.service-detail-panel {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.panel-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.feature-item:last-child { border-bottom: none; }
.feature-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}
.related-services { margin-top: 8px; }

.service-hero-stat {
    margin-top: 1.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}
.service-hero-stat .stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
}
.service-hero-stat .stat-txt { font-size: 0.82rem; color: var(--text-muted); }

.service-hero-icon {
    width: 72px; height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.process-icon-inline {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

/* Service detail */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.service-detail-content h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.feature-list li svg, .feature-list li i { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.service-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

/* Contact */
.contact-section { padding-top: 64px; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
.contact-sidebar .panel-title { margin-bottom: 0.5rem; }
.contact-sidebar .panel-desc { margin-bottom: 1.75rem; }
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
}
.contact-card-link { cursor: pointer; }
.contact-card-link:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.contact-card h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16/9;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-hero .page-hero-inner { max-width: 760px; }
.contact-hero-actions .btn { min-width: 0; }

.contact-trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}
.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.contact-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--purple);
}
.contact-trust-item strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 2px;
}
.contact-trust-item span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.contact-layout--form-first {
    grid-template-columns: 1.25fr 1fr;
    gap: 40px;
}
.contact-form-panel {
    scroll-margin-top: 96px;
}
.contact-form-head { margin-bottom: 1.5rem; }
.contact-form-head .panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-form-head .panel-desc { margin-bottom: 0; }
.contact-submit-btn { margin-top: 0.25rem; }
.contact-form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 1rem;
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.contact-form-note a {
    color: var(--purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-sidebar-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    margin-bottom: 20px;
}
.contact-sidebar-card .panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.35rem;
}
.contact-sidebar-card .panel-desc {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}
.contact-channel-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    color: inherit;
}
.contact-channel:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}
.contact-channel-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.contact-channel-icon--whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #1fa855;
}
.contact-channel-text {
    flex: 1;
    min-width: 0;
}
.contact-channel-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
}
.contact-channel-text span {
    display: block;
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.contact-channel > svg:last-child {
    color: var(--text-muted);
    flex-shrink: 0;
}

.contact-cards--stack {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
}
.contact-partner-badges { margin-bottom: 20px; }

.contact-alt-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--white) 100%);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-lg);
}
.contact-alt-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--purple);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xs);
    flex-shrink: 0;
}
.contact-alt-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.contact-alt-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.form-panel {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-panel .panel-title { margin-bottom: 0.5rem; }
.form-panel .panel-desc { margin-bottom: 1.75rem; }

.contact-grid, .analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
/* legacy contact-card kept for analysis page */
.contact-form-wrap, .analysis-form-wrap {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.analysis-form-wrap h2,
.analysis-form-wrap .panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.analysis-form-wrap .panel-desc { margin-bottom: 1.5rem; }

.blog-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.career-stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.career-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 560px;
    margin: 0 auto;
}
.career-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.career-stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.career-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}
.career-stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.page-hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.career-positions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.career-position-card {
    --career-accent: var(--purple);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    animation-delay: var(--delay, 0s);
}
.career-position-card--orange { --career-accent: var(--orange); }
.career-position-card--purple { --career-accent: var(--purple); }
.career-position-card--green { --career-accent: var(--green); }
.career-position-card--pink { --career-accent: var(--pink); }
.career-position-card--blue { --career-accent: var(--blue); }
.career-position-card::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--career-accent), color-mix(in srgb, var(--career-accent) 55%, var(--purple)));
}
.career-position-card:hover {
    border-color: color-mix(in srgb, var(--career-accent) 35%, var(--border));
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.career-position-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 22px 0;
}
.career-position-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
}
.career-position-icon svg,
.career-position-icon i {
    display: block;
}
.career-position-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 0;
    text-align: right;
}
.career-position-type {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--career-accent);
    background: color-mix(in srgb, var(--career-accent) 12%, var(--white));
    border: 1px solid color-mix(in srgb, var(--career-accent) 22%, transparent);
    padding: 5px 10px;
    border-radius: 100px;
    line-height: 1.2;
    white-space: nowrap;
}
.career-position-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}
.career-position-body {
    flex: 1;
    padding: 18px 22px 0;
    min-height: 0;
}
.career-position-card h3 {
    font-size: 1.12rem;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text);
}
.career-position-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.career-position-footer {
    padding: 20px 22px 22px;
    margin-top: auto;
}
.career-position-apply {
    width: 100%;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-color: color-mix(in srgb, var(--career-accent) 30%, var(--border));
    color: var(--career-accent);
    background: color-mix(in srgb, var(--career-accent) 6%, var(--white));
}
.career-position-apply:hover {
    border-color: var(--career-accent);
    background: var(--career-accent);
    color: #fff;
    transform: none;
}
.career-position-apply svg,
.career-position-apply i {
    transition: transform var(--transition);
}
.career-position-apply:hover svg,
.career-position-apply:hover i {
    transform: translateX(3px);
}

.career-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}
.career-sidebar .panel-title { margin-bottom: 0.5rem; }
.career-sidebar .panel-desc { margin-bottom: 1.5rem; }
.career-cert-row { margin-bottom: 1.75rem; }

.career-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 1.75rem;
}
.career-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.career-benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.career-benefit-item h4 {
    font-size: 0.92rem;
    margin-bottom: 4px;
}
.career-benefit-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.career-email-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--bg-alt) 100%);
    border: 1px solid rgba(103, 84, 233, 0.2);
    border-radius: var(--radius-md);
}
.career-email-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.career-email-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.career-email-card a {
    font-weight: 600;
    color: var(--purple);
    font-size: 0.9rem;
}
.career-email-card a:hover { color: var(--orange); }

.career-form-panel { position: sticky; top: calc(var(--topbar-h) + var(--header-h) + 24px); }

.career-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.career-process-card {
    position: relative;
    padding: 28px 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    text-align: center;
}
.career-process-step {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.5;
}
.career-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    background: var(--purple-light);
    color: var(--purple);
    border-radius: var(--radius-md);
}
.career-process-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.career-process-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.career-faq { max-width: 800px; margin: 0 auto; }

.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: all var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group select:focus {
    outline: none;
    border-color: var(--purple);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(103, 84, 233, 0.12);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(103, 84, 233, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.radio-label:has(input:checked) {
    border-color: var(--purple);
    background: var(--purple-light);
    color: var(--text);
    font-weight: 500;
}
.radio-label input { width: auto; accent-color: var(--purple); }

.alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.alert-success {
    background: var(--green-light);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #047857;
}
.alert-error {
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #b91c1c;
}

/* Analysis */
.analysis-types { display: flex; flex-direction: column; gap: 16px; }
.analysis-type-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.analysis-type-card:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.analysis-icon-wrap {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.analysis-type-card h3 { margin-bottom: 6px; }
.analysis-type-card p { font-size: 0.88rem; color: var(--text-secondary); }

.about-image img { border-radius: var(--radius-lg); }

/* Footer */
.site-footer {
    background: #0c1222;
    color: rgba(255, 255, 255, 0.72);
    padding: 56px 0 0;
    margin-top: 0;
}

.footer-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 28px;
    background: linear-gradient(135deg, var(--orange) 0%, #8b45e8 55%, var(--purple) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
    box-shadow: 0 12px 40px rgba(103, 84, 233, 0.25);
}
.footer-cta-text {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    min-width: 0;
}
.footer-cta-icon {
    flex-shrink: 0;
    opacity: 0.95;
}
.footer-cta-text strong {
    display: block;
    font-size: 1.02rem;
    font-family: var(--font-display);
    margin-bottom: 2px;
}
.footer-cta-text span {
    display: block;
    font-size: 0.86rem;
    opacity: 0.92;
    line-height: 1.45;
}
.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-footer-cta:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px 32px;
    padding-bottom: 44px;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
    margin-bottom: 14px;
}
.footer-logo img {
    height: 34px;
    width: auto;
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    max-width: 300px;
    margin: 0 0 16px;
}
.footer-cert-logos {
    gap: 14px;
    margin-bottom: 18px;
}
.footer-social {
    display: flex;
    gap: 8px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.footer-heading {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
    font-family: var(--font);
    font-weight: 600;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.68);
    transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }
.footer-nav a svg,
.footer-nav a i { opacity: 0.55; flex-shrink: 0; }
.footer-nav a:hover svg,
.footer-nav a:hover i { opacity: 0.9; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.68);
}
.footer-contact-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 1px;
}
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.68);
    transition: color var(--transition);
}
.footer-contact-list a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.38);
}
.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-legal a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.38);
    transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255, 255, 255, 0.75); }

.container-narrow {
    max-width: 760px;
}

.section-legal {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.legal-section + .legal-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border, #e2e8f0);
}

.legal-related {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border, #e2e8f0);
}

.legal-related a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary, #6754E9);
    text-decoration: none;
}

.legal-related a:hover {
    text-decoration: underline;
}

.page-hero--compact .page-hero-inner {
    padding-bottom: 2.5rem;
}

/* Sticky callback (sol) & float actions (sağ) */
.sticky-callback {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 997;
}
.sticky-callback-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 11px;
    border: none;
    border-radius: 0 14px 14px 0;
    background: linear-gradient(180deg, var(--orange) 0%, #9b4fe8 55%, var(--purple) 100%);
    color: #fff;
    box-shadow: 4px 0 24px rgba(103, 84, 233, 0.35);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    font-family: var(--font);
}
.sticky-callback-tab:hover {
    transform: translateX(3px);
    box-shadow: 6px 0 28px rgba(103, 84, 233, 0.45);
}
.sticky-callback-tab-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}
.sticky-callback-panel {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translate(calc(-100% - 8px), -50%);
    width: min(340px, calc(100vw - 24px));
    z-index: 998;
    transition: transform 0.34s var(--ease);
    pointer-events: none;
}
.sticky-callback.is-open .sticky-callback-panel {
    transform: translate(52px, -50%);
    pointer-events: auto;
}
.sticky-callback-panel-inner {
    position: relative;
    padding: 22px 20px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.sticky-callback-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
}
.sticky-callback-close:hover {
    color: var(--text);
    border-color: var(--purple);
    background: var(--purple-light);
}
.sticky-callback-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding-right: 28px;
}
.sticky-callback-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--purple-light);
    color: var(--purple);
    flex-shrink: 0;
}
.sticky-callback-head h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.sticky-callback-head p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.sticky-callback-form .form-group {
    margin-bottom: 12px;
}
.sticky-callback-form .form-group label {
    font-size: 0.78rem;
    margin-bottom: 6px;
}
.sticky-callback-form input,
.sticky-callback-form textarea {
    padding: 11px 13px;
    font-size: 0.9rem;
}
.sticky-callback-form textarea {
    min-height: 72px;
}
.sticky-callback-submit {
    margin-top: 4px;
    padding: 12px 16px;
    font-size: 0.9rem;
}
.sticky-callback-foot {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 12px 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.sticky-callback-alert {
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    margin-bottom: 12px;
}
.sticky-callback-alert[hidden] {
    display: none !important;
}
.sticky-callback-alert:not([hidden]) {
    display: flex;
}
.sticky-callback-alert--success {
    background: var(--green-light);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #047857;
}
.sticky-callback-alert--error {
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #b91c1c;
}
.sticky-callback-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    z-index: 996;
    backdrop-filter: blur(2px);
}
body.sticky-callback-open { overflow: hidden; }
body.nav-open .sticky-callback,
body.nav-open .float-actions { opacity: 0; pointer-events: none; }

.float-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 997;
}
.float-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}
.float-action:hover {
    transform: translateY(-3px) scale(1.04);
}
.float-action--whatsapp {
    background: linear-gradient(145deg, #25d366, #128c7e);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}
.float-action--whatsapp:hover {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}
.float-action--phone {
    background: linear-gradient(145deg, var(--purple), #7c3aed);
    box-shadow: 0 6px 24px rgba(103, 84, 233, 0.35);
}
.float-action--phone:hover {
    box-shadow: 0 10px 28px rgba(103, 84, 233, 0.45);
}
.float-action-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 12px;
    background: #0f172a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    box-shadow: var(--shadow-md);
}
.float-action-label::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #0f172a;
}
.float-action:hover .float-action-label,
.float-action:focus-visible .float-action-label {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 210px;
    right: 22px;
    width: 48px; height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 1095;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}

/* Animations — visible by default; hidden only when JS is active */
[data-animate] {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    transition-delay: var(--delay, 0s);
}

html.js [data-animate]:not(.visible) {
    opacity: 0;
    transform: translateY(20px);
}

html.js [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid,
    .services-grid-visual { grid-template-columns: repeat(2, 1fr); }
    .services-grid-full { grid-template-columns: repeat(2, 1fr); }
    .career-positions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .nav-link { padding: 8px 10px; font-size: 0.84rem; }
    .dropdown-mega {
        width: min(600px, calc(100vw - 32px));
    }
}

@media (max-width: 1024px) {
    .header-top-inner { padding: 8px 16px; }
    .header-top-right { gap: 12px; }
    .header-top-right .header-link:not(.header-link-phone) { display: none; }
    .header-stat .stat-label { display: none; }
    .navbar-bar.container { padding: 0 16px; }
}

@media (max-width: 900px) {
    :root { --section-py: 64px; --section-py-sm: 40px; --section-header-mb: 36px; }
    .hero-inner { grid-template-columns: 1fr; text-align: left; gap: var(--gap-md); }
    .hero-desc { margin-left: 0; margin-right: 0; }
    .hero-actions, .hero-trust { justify-content: flex-start; }
    .page-hero .hero-actions,
    .page-hero--apple .hero-actions,
    .page-hero--split .hero-actions,
    .hero-actions--start {
        justify-content: flex-start !important;
        align-items: flex-start;
    }
    .hero-visual { margin-top: 8px; width: 100%; }
    .hero-reach { max-width: 100%; }
    .showcase-float { display: none; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .service-hero-banner-inner { grid-template-columns: 1fr; }
    .service-hero-stat-card {
        flex-direction: row;
        gap: 16px;
        width: fit-content;
    }
    .service-detail-layout, .contact-layout, .career-layout,
    .service-detail-grid, .contact-grid, .analysis-grid, .blog-detail-grid,
    .blog-detail-layout, .blog-featured-card {
        grid-template-columns: 1fr;
    }
    .blog-grid-page { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-detail-sidebar { position: static; }
    .career-form-panel { position: static; }
    .career-positions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .career-stats { grid-template-columns: repeat(2, 1fr); }
    .career-process-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-trust-grid { grid-template-columns: 1fr; }
    .contact-hero-actions { flex-direction: column; align-items: stretch; }
    .contact-hero-actions .btn { width: 100%; justify-content: center; }
    .form-panel { padding: 24px; }
    .partners-section-inner { grid-template-columns: 1fr; text-align: center; }
    .partners-section-title { max-width: none; margin: 0 auto; }
    .partners-logos { justify-content: center; }
    .cert-logos-row--partners { justify-content: center; gap: 28px; }
    .about-home { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-cta-bar { flex-direction: column; text-align: center; padding: 20px; }
    .footer-cta-text { flex-direction: column; align-items: center; }
    .btn-footer-cta { width: 100%; justify-content: center; }
    .cta-box { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .blog-sidebar { position: static; }
    .process-grid-full { grid-template-columns: repeat(2, 1fr); }
    .services-grid,
    .services-grid-full,
    .services-grid-visual,
    .services-grid-compact,
    .services-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 980px) {
    :root {
        --topbar-h: 36px;
        --header-h: 56px;
        --section-py: 56px;
        --section-py-sm: 36px;
        --section-header-mb: 28px;
    }

    .container { padding: 0 16px; max-width: 100%; }

    .header-top {
        display: block;
        font-size: 0.78rem;
    }
    .header-top-inner {
        padding: 7px 16px;
        justify-content: center;
    }
    .header-stat,
    .header-partner-badges,
    .header-top-right .header-link:not(.header-link-phone) {
        display: none;
    }
    .header-top-right {
        width: 100%;
        justify-content: center;
    }
    .header-link-phone { font-size: 0.85rem; }

    .navbar-bar {
        height: var(--header-h);
    }

    .header-nav,
    .header-actions {
        display: none !important;
    }

    .nav-toggle {
        display: inline-flex !important;
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
        z-index: 10002;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        cursor: pointer;
        position: relative;
    }

    .logo { order: 1; }

    .nav-menu,
    body > .nav-menu {
        order: 3;
        display: flex !important;
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(360px, 100%);
        max-width: 100%;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin: 0;
        background: var(--white);
        box-shadow: -8px 0 40px rgba(15, 23, 42, 0.12);
        transform: translateX(110%);
        transition: transform 0.32s var(--ease), visibility 0.32s;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        z-index: 10001;
        visibility: hidden;
        pointer-events: none;
    }
    .nav-menu.open,
    body > .nav-menu.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-backdrop,
    body > .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.45);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.32s var(--ease), visibility 0.32s;
        border: none;
        padding: 0;
        cursor: pointer;
    }
    .nav-backdrop:not([hidden]),
    body > .nav-backdrop:not([hidden]) {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden !important;
        touch-action: none;
    }
    body.nav-open::before { display: none; }

    .nav-menu-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-shrink: 0;
        padding: 16px 18px;
        border-bottom: 1px solid var(--border);
        background: var(--white);
    }
    .nav-menu-logo {
        display: inline-flex;
        align-items: center;
    }
    .nav-menu-logo img {
        height: 32px;
        width: auto;
    }
    .nav-menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--bg-alt);
        color: var(--text);
        cursor: pointer;
        flex-shrink: 0;
        transition: background var(--transition), border-color var(--transition);
    }
    .nav-menu-close:hover {
        background: var(--bg-muted);
        border-color: var(--border-strong);
    }

    .nav-menu-main {
        flex-shrink: 0;
    }

    .nav-menu-accordion {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .nav-menu-accordion-trigger {
        width: calc(100% - 24px);
        margin: 0 12px;
        border: 1px solid transparent;
        background: var(--white);
        cursor: pointer;
        font: inherit;
        justify-content: space-between !important;
    }
    .nav-menu-accordion-trigger .nav-chevron {
        margin-left: auto;
        opacity: 0.55;
        transition: transform 0.2s ease;
        flex-shrink: 0;
    }
    .nav-menu-accordion.is-open > .nav-menu-accordion-trigger {
        background: var(--bg-alt);
        border-color: var(--border);
        color: var(--green-900, var(--text));
    }
    .nav-menu-accordion.is-open > .nav-menu-accordion-trigger .nav-chevron {
        transform: rotate(180deg);
    }
    .nav-menu-accordion-panel {
        list-style: none;
        margin: 0;
        padding: 4px 0 8px;
        display: none;
        flex-direction: column;
        gap: 2px;
    }
    .nav-menu-accordion.is-open > .nav-menu-accordion-panel {
        display: flex;
    }
    .nav-menu-accordion-panel[hidden] {
        display: none !important;
    }
    .nav-menu-sub-link {
        margin-left: 28px !important;
        width: calc(100% - 40px) !important;
        padding: 11px 14px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: var(--text-secondary) !important;
    }
    .nav-menu-sub-link--all {
        font-weight: 600 !important;
        color: var(--green-800, var(--purple)) !important;
    }

    .nav-cta-desktop { display: none; }

    .nav-menu > li.nav-menu-main,
    .nav-menu > li.nav-dropdown.nav-menu-main {
        width: 100%;
    }

    .nav-link {
        justify-content: flex-start;
        gap: 12px;
        margin: 0 12px;
        width: calc(100% - 24px);
        padding: 13px 14px;
        font-size: 0.98rem;
        font-weight: 600;
        white-space: normal;
        text-align: left;
        color: var(--text);
        background: var(--white);
        border: 1px solid transparent;
        border-radius: var(--radius-sm);
        transition: background var(--transition), border-color var(--transition), color var(--transition);
    }
    .nav-link:hover {
        background: var(--bg-alt);
        color: var(--text);
    }
    .nav-dropdown.open > .nav-link {
        background: var(--purple-light);
        border-color: rgba(103, 84, 233, 0.15);
        color: var(--purple);
    }
    .nav-dropdown > .nav-link {
        justify-content: space-between;
    }
    .nav-link svg.lucide,
    .nav-link i[data-lucide] {
        color: var(--purple);
        opacity: 0.85;
    }

    .nav-dropdown { width: 100%; }

    .nav-dropdown .nav-chevron {
        margin-left: auto;
        color: var(--text-muted);
        transition: transform var(--transition);
    }
    .nav-dropdown.open .nav-chevron {
        transform: rotate(180deg);
        color: var(--purple);
    }

    .mobile-submenu-label {
        display: block;
        margin: 4px 12px 8px;
        padding: 0 4px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .dropdown-menu,
    .dropdown-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: auto;
        max-width: none;
        box-shadow: none;
        border: none;
        padding: 0 12px 8px;
        display: none;
        background: transparent;
        margin: 0;
        overflow: hidden;
    }

    .nav-dropdown.open .dropdown-menu,
    .nav-dropdown.open .dropdown-mega {
        display: block;
        animation: mobileSubmenuIn 0.25s var(--ease);
    }

    @keyframes mobileSubmenuIn {
        from { opacity: 0; transform: translateY(-6px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown-mega-head { display: none; }

    .dropdown-mega-grid {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 0;
        background: transparent;
    }

    .mega-item {
        min-height: auto;
        padding: 10px 12px;
        background: var(--bg-alt);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        gap: 10px;
    }
    .mega-item:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }
    .mega-icon {
        width: 36px;
        height: 36px;
    }
    .mega-text strong {
        font-size: 0.88rem;
    }
    .mega-text small {
        font-size: 0.72rem;
        -webkit-line-clamp: 1;
    }
    .mega-arrow { opacity: 0.45; }

    .mega-footer {
        margin: 8px 0 4px;
        padding: 11px 12px;
        border-radius: var(--radius-sm);
        border: 1px dashed var(--border-strong);
        background: var(--white);
        justify-content: center;
        font-size: 0.85rem;
    }

    .dropdown-menu {
        padding: 0 12px 8px;
        background: transparent;
    }
    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 12px;
        margin-bottom: 6px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--text-secondary);
        background: var(--bg-alt);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }
    .dropdown-menu li:last-child a { margin-bottom: 0; }

    .nav-menu-footer {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        flex-shrink: 0;
        margin-top: auto;
        padding: 16px 18px calc(18px + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid var(--border);
        background: var(--bg-alt);
    }
    .nav-menu-phone {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        color: var(--text);
        transition: border-color var(--transition), box-shadow var(--transition);
    }
    .nav-menu-phone:hover {
        border-color: var(--purple);
        box-shadow: var(--shadow-xs);
    }
    .nav-menu-phone-icon {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: var(--green-light);
        color: var(--green);
        flex-shrink: 0;
    }
    .nav-menu-phone-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }
    .nav-menu-phone-text small {
        font-size: 0.72rem;
        color: var(--text-muted);
        font-weight: 500;
    }
    .nav-menu-phone-text strong {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--text);
    }
    .nav-menu-cta {
        padding: 14px 18px;
        font-size: 0.95rem;
        box-shadow: 0 4px 14px rgba(247, 87, 0, 0.22);
    }

    /* Scrollable nav links area */
    .nav-menu {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu-footer {
        position: sticky;
        bottom: 0;
        z-index: 2;
    }

    .hero { padding-top: calc(var(--topbar-h) + var(--header-h) + 20px); }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    .hero-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
    .hero-desc { font-size: 0.95rem; }

    .services-grid, .services-grid-full, .services-grid-compact,
    .services-grid-visual, .services-grid-home,
    .blog-grid, .blog-grid-full, .blog-grid-page, .why-grid, .process-grid, .process-grid-full,
    .process-grid-home {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-detail-main { padding: 1.35rem 1.15rem; }
    .blog-detail-cta { flex-direction: column; align-items: stretch; }
    .blog-featured-body { padding: 1.35rem; }

    .service-card.service-card-visual {
        padding: 0;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    .service-card.service-card-visual:hover {
        transform: none;
    }
    .service-card-visual .service-card-image {
        aspect-ratio: 16 / 9;
    }
    .service-card-visual .service-card-body {
        padding: 16px 16px 18px;
    }
    .service-card-visual .service-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
    }
    .service-card-visual h3 {
        font-size: 1.05rem;
        width: 100%;
    }
    .service-card-visual p {
        font-size: 0.875rem;
        -webkit-line-clamp: 3;
        margin-bottom: 12px;
    }
    .service-stat-pill {
        font-size: 0.7rem;
        padding: 4px 9px;
    }
    .service-link {
        font-size: 0.875rem;
        padding-top: 4px;
    }

    /* Anasayfa hizmet kartları */
    .services-grid-home { gap: 16px; }
    .service-card-home {
        border-radius: var(--radius-lg);
        width: 100%;
        max-width: 100%;
    }
    .service-card-home:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    .service-card-home .service-card-image {
        aspect-ratio: 16 / 9;
    }
    .service-card-home .service-icon-badge {
        top: 10px;
        left: 10px;
        width: 38px;
        height: 38px;
    }
    .service-stat-pill-float {
        top: 10px;
        right: 10px;
        font-size: 0.68rem;
        padding: 5px 10px;
    }
    .service-card-home .service-card-body {
        padding: 16px 16px 18px;
    }
    .service-card-home h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
        line-height: 1.35;
    }
    .service-card-home p {
        min-height: 0;
        font-size: 0.875rem;
        line-height: 1.6;
        -webkit-line-clamp: 3;
        margin-bottom: 14px;
    }
    .service-card-home .service-link {
        padding-top: 12px;
        font-size: 0.875rem;
    }
    .service-link-arrow {
        width: 28px;
        height: 28px;
    }

    .section { padding: var(--section-py) 0; }
    .section-compact { padding: var(--section-py-sm) 0; }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-stat {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
        padding: 14px 6px;
        border-right: 1px solid var(--border);
        border-bottom: none;
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-icon {
        width: 36px;
        height: 36px;
    }
    .hero-stat-icon svg,
    .hero-stat-icon i {
        width: 18px !important;
        height: 18px !important;
    }
    .hero-stat-value {
        font-size: clamp(0.85rem, 3.2vw, 1.1rem);
    }
    .hero-stat-label {
        font-size: 0.62rem;
        line-height: 1.25;
        max-width: 9em;
    }

    .nav-menu-brand { display: none; }

    .form-panel { padding: 20px 16px; }
    .cta-box { padding: 28px 20px; }
    .float-actions {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }
    .float-action {
        width: 50px;
        height: 50px;
    }
    .float-action-label { display: none; }
    .back-to-top { bottom: 148px; right: 16px; width: 44px; height: 44px; }
    .sticky-callback-tab {
        padding: 12px 9px;
        border-radius: 0 12px 12px 0;
    }
    .sticky-callback-tab-text { font-size: 0.7rem; }
    .sticky-callback.is-open .sticky-callback-panel {
        transform: translateY(0) !important;
    }
    .sticky-callback-panel {
        width: min(320px, calc(100vw - 20px));
    }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
    .site-footer { padding-top: 40px; }
    .service-page-grid { grid-template-columns: 1fr; }
    .service-page-header-aside { flex-direction: column; }
    .service-page-header-actions { flex-direction: column; }
    .service-page-header-actions .btn { width: 100%; }
    .service-page-header { padding-top: calc(var(--topbar-h) + var(--header-h) + 20px); }
    .page-hero { padding-top: calc(var(--topbar-h) + var(--header-h) + 24px); }
    .partners-section-inner { gap: 20px; }
    .cert-logos-row--partners { gap: 16px; }
    .about-home-visual { order: -1; }
    .contact-form-wrap { padding: 20px 16px; }
    .analysis-form-wrap { padding: 20px 16px; }
    .btn { white-space: normal; }
    .btn-lg { padding: 13px 20px; }
    .career-positions-grid { grid-template-columns: 1fr; gap: 16px; }
    .career-position-top {
        padding: 18px 18px 0;
    }
    .career-position-body { padding: 16px 18px 0; }
    .career-position-footer { padding: 16px 18px 18px; }
    .career-position-icon { width: 48px; height: 48px; }
    .career-position-type {
        font-size: 0.64rem;
        padding: 4px 9px;
        white-space: normal;
        text-align: center;
    }
    .career-position-card h3 { font-size: 1.05rem; }
    .career-position-card p { -webkit-line-clamp: 4; }
    .career-stats { grid-template-columns: 1fr 1fr; }
    .career-process-grid { grid-template-columns: 1fr; }
    .page-hero-actions { flex-direction: column; width: 100%; }
    .page-hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero-stat {
        padding: 12px 4px;
    }
    .hero-stat-label {
        font-size: 0.58rem;
    }
    .service-card-home h3 {
        font-size: 1rem;
    }
    .service-card-home .service-card-body {
        padding: 14px 14px 16px;
    }
    .service-card-home p {
        -webkit-line-clamp: 2;
    }
    .service-related-card { flex-direction: row; }
    .footer-cta-bar { padding: 16px; }
    .section-header h2 { font-size: 1.45rem; }
    .mega-item { gap: 10px; }
    .mega-icon { width: 38px; height: 38px; }
}

/* Service detail — compact */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.service-page-header {
    padding: calc(var(--topbar-h) + var(--header-h) + 28px) 0 28px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.service-page-header .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 16px;
}
.service-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
    align-items: start;
}
.service-page-header-grid {
    align-items: center;
}
.service-page-title-block { min-width: 0; }
.service-page-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-page-header h1 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin-bottom: 10px;
    line-height: 1.2;
}
.service-page-lead {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 640px;
    margin: 0;
}
.service-page-header-aside {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
}
.service-page-stat {
    text-align: center;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}
.service-page-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}
.service-page-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.service-page-header-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-page-body {
    padding: 40px 0 48px;
}
.service-page-main { min-width: 0; }
.service-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text);
}
.service-intro-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.service-prose {
    margin-bottom: 32px;
}
.service-prose h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.service-prose p {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--text-secondary);
}
.service-features-block {
    margin-bottom: 32px;
    padding: 20px 22px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.service-features-list li svg,
.service-features-list li i {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-faq { margin-bottom: 8px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    overflow: hidden;
}
.faq-item summary {
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.1rem;
    color: var(--text-muted);
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
    padding: 0 16px 14px;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.service-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.sidebar-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.sidebar-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-card-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}
.sidebar-card-links { padding: 16px; }
.sidebar-card-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}
.sidebar-card-links ul { display: flex; flex-direction: column; gap: 4px; }
.sidebar-card-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.sidebar-card-links a:hover {
    background: var(--bg-alt);
    color: var(--purple);
}
.sidebar-link-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
    line-height: 0;
}
.sidebar-link-icon svg,
.sidebar-link-icon i {
    display: block;
    width: 14px !important;
    height: 14px !important;
    margin: 0;
    vertical-align: unset;
    flex-shrink: 0;
}
.sidebar-card-links a > svg.lucide,
.sidebar-card-links a > i:last-child {
    margin-left: auto;
    opacity: 0.4;
    flex-shrink: 0;
}

.service-related { padding-top: 0; }
.service-related-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.service-related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.service-related-card:hover {
    border-color: var(--purple);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.service-related-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    line-height: 0;
}
.service-related-icon svg,
.service-related-icon i {
    display: block;
    margin: 0;
    vertical-align: unset;
}
.service-related-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.service-related-text strong {
    font-size: 0.9rem;
    color: var(--text);
}
.service-related-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.service-related-card > svg,
.service-related-card > i {
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Service topic sub-pages */
.service-topics-block {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.service-topics-desc {
    margin: 0 0 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.service-topics-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-topics-card:hover {
    border-color: rgba(103, 84, 233, 0.25);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.service-topics-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.service-topics-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.service-topics-text strong {
    font-size: 0.92rem;
    color: var(--text);
}
.service-topics-text small {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
}
.service-topics-card > svg,
.service-topics-card > i:last-child {
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 4px;
}
.service-topics-count {
    margin: 14px 0 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.service-topic-parent-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--purple);
    text-decoration: none;
}
.service-topic-parent-link:hover { text-decoration: underline; }
.service-topic-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.service-topic-highlight-card {
    padding: 18px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.service-topic-highlight-card h3 {
    margin: 10px 0 6px;
    font-size: 0.95rem;
}
.service-topic-highlight-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--text-secondary);
}
.service-topic-highlight-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}
.sidebar-card-links a.is-active {
    color: var(--purple);
    font-weight: 600;
}
.sidebar-more-topics {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--purple);
    text-decoration: none;
}
.sidebar-more-topics:hover { text-decoration: underline; }

/* Service topic page — mobile nav, FAQ, layout */
.service-topic-nav-wrap {
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
    padding: 12px 0;
    position: sticky;
    top: calc(var(--topbar-h) + var(--header-h));
    z-index: 20;
}
.service-topic-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.service-topic-nav::-webkit-scrollbar { display: none; }
.service-topic-nav-chip {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.service-topic-nav-chip:hover,
.service-topic-nav-chip.is-active {
    color: var(--purple);
    border-color: rgba(103, 84, 233, 0.35);
    background: rgba(103, 84, 233, 0.06);
}
.service-topic-body { align-items: start; }
.section-alt-inner {
    margin-top: 2rem;
    padding: 1.75rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.service-topic-faq-wrap {
    display: grid;
    grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
    gap: 28px;
    align-items: start;
}
.service-topic-faq-intro p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}
.service-topic-faq-item { margin-bottom: 10px; }
.service-topic-faq-item summary {
    font-size: 0.95rem;
    line-height: 1.45;
    padding-right: 8px;
}
.service-topic-faq-item p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}
.service-topic-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-topic-sidebar-list .sidebar-link-label {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}
.sidebar-card-sticky {
    position: sticky;
    top: calc(var(--topbar-h) + var(--header-h) + 64px);
}
.sidebar-card-cta .sidebar-card-cta-text {
    margin: 0 0 14px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
}
.sidebar-card-cta .btn-block + .btn-block { margin-top: 8px; }
.service-topic-cta .cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.service-topic-cta .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.service-topic-related { padding-top: 0; }

@media (min-width: 901px) {
    .service-topic-nav-wrap { display: none; }
}

@media (max-width: 900px) {
    .service-features-list { grid-template-columns: 1fr; }
    .service-related-grid { grid-template-columns: 1fr; }
    .service-topics-grid { grid-template-columns: 1fr; }
    .service-topic-highlight-grid { grid-template-columns: 1fr; }
    .service-topic-faq-wrap { grid-template-columns: 1fr; gap: 20px; }
    .section-alt-inner { padding: 1.25rem; }
    .service-topic-sidebar { display: none; }
    .service-page-sidebar { position: static; }
    .service-topic-cta .cta-box { flex-direction: column; align-items: stretch; text-align: center; }
    .service-topic-cta .cta-actions { flex-direction: column; }
    .service-topic-cta .cta-actions .btn { width: 100%; }
    .service-page-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 900px) {
    .service-page-header-aside {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    .service-page-header-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .service-page-header {
        padding: calc(var(--topbar-h) + var(--header-h) + 14px) 0 18px;
    }
    .service-page-header .breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        font-size: 0.76rem;
        gap: 6px;
        margin-bottom: 12px;
        padding-bottom: 2px;
    }
    .service-page-header .breadcrumb::-webkit-scrollbar { display: none; }
    .service-page-header-grid {
        gap: 18px;
    }
    .service-page-header h1 {
        font-size: clamp(1.35rem, 5.5vw, 1.65rem);
        margin-bottom: 8px;
    }
    .service-page-lead {
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: none;
    }
    .service-page-tag {
        font-size: 0.72rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    .service-page-header-aside {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .service-page-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        text-align: left;
        padding: 12px 14px;
    }
    .service-page-stat-value {
        font-size: 1.25rem;
    }
    .service-page-stat-label {
        font-size: 0.7rem;
        text-align: right;
        max-width: 9em;
    }
    .service-page-header-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .service-page-header-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .service-page-body {
        padding: 22px 0 28px;
    }
    .service-page-grid {
        gap: 20px;
    }
    .service-block-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .service-intro-text {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .service-features-block {
        padding: 14px 16px;
        margin-bottom: 22px;
    }
    .service-features-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .service-features-list li {
        font-size: 0.85rem;
    }
    .service-prose {
        margin-bottom: 22px;
    }
    .service-prose h2 {
        font-size: 1.05rem;
    }
    .service-prose p {
        font-size: 0.9rem;
    }
    .faq-item summary {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    .faq-item p {
        padding: 0 14px 12px;
        font-size: 0.85rem;
    }

    .service-page-sidebar {
        position: static;
        gap: 12px;
    }
    .sidebar-card-body {
        padding: 14px;
    }
    .sidebar-card-links {
        padding: 14px;
    }
    .sidebar-card-links a {
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .service-related {
        padding-top: 0;
    }
    .service-related-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    .service-related-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .service-related-card {
        padding: 12px 14px;
    }
}

/* Topic city links */
.service-topic-cities {
    padding-top: 0;
}
.service-topic-cities .section-header {
    margin-bottom: 20px;
}
.service-topic-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.service-topic-city-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: inherit;
    text-decoration: none;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-topic-city-card:hover {
    border-color: rgba(103, 84, 233, 0.35);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.service-topic-city-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    line-height: 0;
}
.service-topic-city-icon svg,
.service-topic-city-icon i[data-lucide] {
    display: block;
}
.service-topic-city-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.service-topic-city-text strong {
    font-size: 0.95rem;
    color: var(--text);
}
.service-topic-city-text small {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.35;
}
.service-topic-city-card > svg,
.service-topic-city-card > i[data-lucide] {
    flex-shrink: 0;
    color: var(--purple);
    opacity: 0.55;
}
.service-topic-cities-more {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.service-topic-cities-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
}
.service-topic-cities-more-link:hover {
    color: var(--purple-dark, #5645d4);
}
.service-topic-cities-more-link i[data-lucide],
.service-topic-cities-more-link svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .service-topic-cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-topic-cities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-page-header h1 {
        font-size: 1.3rem;
    }
    .service-page-stat {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .service-page-stat-label {
        text-align: left;
        max-width: none;
    }
}

/* —— Mügesoft brand & hero —— */
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--petrol);
  line-height: 1;
}
.brand-mark--sm { font-size: 1.15rem; }
.brand-mark--footer { font-size: 1.5rem; color: var(--cream); }
.brand-mark--hero {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(18px);
  animation: mugesoft-rise 0.9s var(--ease) 0.1s forwards;
}
.site-header {
  background: rgba(247, 246, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled,
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-top { display: none !important; }
.logo { text-decoration: none; }
.logo img { display: none; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-primary {
  background: var(--gradient);
  border: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(42, 157, 143, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(42, 157, 143, 0.36); }
.icon-bg-teal { background: var(--orange-light); color: var(--teal-dark); }
.hero--mugesoft {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--petrol);
  color: var(--cream);
  padding: calc(var(--header-h) + 48px) 0 72px;
}
.hero--mugesoft .hero-title { color: var(--cream); opacity: 0; transform: translateY(18px); animation: mugesoft-rise 0.9s var(--ease) 0.25s forwards; }
.hero--mugesoft .hero-desc { color: rgba(242, 239, 232, 0.78); max-width: 36rem; margin-inline: auto; opacity: 0; transform: translateY(18px); animation: mugesoft-rise 0.9s var(--ease) 0.4s forwards; }
.hero--mugesoft .hero-actions { justify-content: center; opacity: 0; transform: translateY(18px); animation: mugesoft-rise 0.9s var(--ease) 0.55s forwards; }
.hero--mugesoft .btn-outline { border-color: rgba(242,239,232,0.35); color: var(--cream); }
.hero--mugesoft .btn-outline:hover { background: rgba(242,239,232,0.08); }
.hero-inner--solo { width: 100%; }
.hero-content--center { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.hero-atmosphere {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(42,157,143,0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 75%, rgba(26,107,99,0.4), transparent 50%),
    linear-gradient(160deg, #071618 0%, #0B1F24 45%, #12333A 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.14;
  background-image:
    linear-gradient(rgba(242,239,232,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,239,232,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero--mugesoft .hero-blob { opacity: 0.45; filter: blur(40px); }
.footer-grid--compact { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) {
  .footer-grid--compact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid--compact { grid-template-columns: 1fr; }
}
.about-home--simple { align-items: start; }
@keyframes mugesoft-rise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-mark--hero, .hero--mugesoft .hero-title, .hero--mugesoft .hero-desc, .hero--mugesoft .hero-actions {
    animation: none; opacity: 1; transform: none;
  }
}

/* —— Apple-compact Mügesoft —— */
:root {
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --bg-muted: #ebebed;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.12);
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-muted: #86868b;
  --petrol: #1d1d1f;
  --cream: #f5f5f7;
  --teal: #0071e3;
  --teal-dark: #0077ed;
  --orange: #0071e3;
  --orange-light: #e8f1fc;
  --purple: #1d1d1f;
  --purple-light: #f5f5f7;
  --gradient: linear-gradient(180deg, #0071e3 0%, #0077ed 100%);
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 52px;
  --section-py: 56px;
  --section-py-sm: 36px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
}
body { background: var(--bg); color: var(--text); font-size: 15px; letter-spacing: -0.01em; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.03em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
.container { max-width: 980px; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 22px; }
.section--tight { padding: 48px 0; }
.section-alt { background: var(--bg-alt); }
.section-header--compact { display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom: 24px; text-align:left; }
.section-header--compact h2 { margin:0; }
.section-header--compact p { margin: 6px 0 0; color: var(--text-secondary); font-size: 0.95rem; }
.section-tag { display:none; }
.site-header { height: var(--header-h); background: rgba(245,245,247,0.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid transparent; }
.site-header.scrolled, .site-header.is-scrolled { border-bottom-color: var(--border); }
.navbar-bar { height: var(--header-h); display:flex; align-items:center; justify-content:space-between; gap: 16px; }
.brand-mark { font-family: var(--font); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.04em; color: var(--text); }
.brand-mark--hero { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--text-secondary); font-weight: 600; margin-bottom: 12px; animation: none; opacity:1; transform:none; }
.brand-mark--footer { color: var(--text-secondary); font-size: 1rem; }
.header-top { display:none !important; }
.nav-link { font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); }
.nav-link:hover { color: var(--text); }
.header-phone { font-size: 0.78rem; color: var(--text-secondary); margin-right: 10px; }
.btn { border-radius: 980px; font-weight: 600; font-size: 0.875rem; padding: 10px 18px; letter-spacing: -0.01em; }
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-lg { padding: 12px 22px; }
.btn-primary { background: #0071e3; background-image: none; box-shadow: none; color:#fff; }
.btn-primary:hover { background:#0077ed; transform:none; box-shadow:none; }
.btn-quiet, .btn-outline { background: transparent; border: none; color: #0071e3; box-shadow:none; }
.btn-quiet:hover, .btn-outline:hover { background: rgba(0,113,227,0.08); color:#0071e3; }
.btn-ghost { border-radius: 980px; }
.hero--apple, .hero--mugesoft {
  min-height: auto; padding: calc(var(--header-h) + 64px) 0 56px;
  background: var(--bg); color: var(--text);
}
.hero--apple .hero-bg, .hero--mugesoft .hero-bg, .hero-atmosphere, .hero-grid-pattern, .hero-blob { display:none !important; }
.hero--apple .hero-title, .hero--mugesoft .hero-title { color: var(--text); animation:none; opacity:1; transform:none; font-weight:600; }
.hero--apple .hero-desc, .hero--mugesoft .hero-desc { color: var(--text-secondary); animation:none; opacity:1; transform:none; max-width: 34rem; }
.hero--apple .hero-actions, .hero--mugesoft .hero-actions { animation:none; opacity:1; transform:none; justify-content:flex-start; gap: 10px; }
.hero-actions--start { justify-content: flex-start !important; }
.page-hero--apple { padding: calc(var(--header-h) + 28px) 0 24px; background: var(--bg); text-align:left; }
.page-hero--apple h1 { margin-bottom: 10px; }
.page-hero--apple p, .page-hero-desc { color: var(--text-secondary); max-width: 36rem; font-size: 1.05rem; }
.page-hero-bg { display:none; }
.breadcrumb--quiet { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 16px; display:flex; gap:6px; flex-wrap:wrap; }
.breadcrumb--quiet a { color: var(--text-secondary); }
.service-list { display:flex; flex-direction:column; border-top: 1px solid var(--border); }
.service-row { display:flex; align-items:center; gap: 14px; padding: 16px 4px; border-bottom: 1px solid var(--border); color: inherit; transition: background .2s ease; }
.service-row:hover { background: rgba(0,0,0,0.02); }
.service-row-icon { width: 36px; height:36px; border-radius: 10px; display:inline-flex; align-items:center; justify-content:center; background: var(--bg-muted); color: var(--text); flex-shrink:0; }
.service-row-text { flex:1; display:flex; flex-direction:column; gap:2px; min-width:0; }
.service-row-text strong { font-size: 0.95rem; font-weight: 600; }
.service-row-text small { color: var(--text-secondary); font-size: 0.8rem; }
.service-row-arrow { color: var(--text-muted); }
.service-row--compact { padding: 12px 2px; }
.service-catalog { display:flex; flex-direction:column; gap: 28px; }
.service-catalog-item { display:grid; grid-template-columns: 1.1fr 1fr; gap: 22px; align-items:center; color:inherit; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.service-catalog-item:last-child { border-bottom:0; padding-bottom:0; }
.service-catalog-media { border-radius: 18px; overflow:hidden; background:#e8e8ed; aspect-ratio: 16/10; }
.service-catalog-media img, .service-catalog-media picture { width:100%; height:100%; object-fit:cover; display:block; }
.service-catalog-body h2 { font-size: 1.35rem; margin-bottom: 6px; }
.service-catalog-body p { color: var(--text-secondary); margin-bottom: 12px; font-size: 0.95rem; }
.text-link { color:#0071e3; font-weight:600; font-size:0.875rem; display:inline-flex; align-items:center; gap:4px; }
.service-media { margin: 8px auto 36px; }
.service-hero-img, .service-media img, .service-media picture { width:100%; border-radius: 20px; overflow:hidden; display:block; }
.service-apple-body { padding-bottom: 24px; }
.service-apple-body h2 { font-size: 1.25rem; margin: 28px 0 12px; }
.service-intro-text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }
.feature-chips { display:flex; flex-wrap:wrap; gap:8px; list-style:none; padding:0; margin:0; }
.feature-chips li { background: #fff; border: 1px solid var(--border); border-radius: 980px; padding: 8px 14px; font-size: 0.8rem; color: var(--text-secondary); }
.faq-list--compact .faq-item { border-radius: 14px; background:#fff; border:1px solid var(--border); margin-bottom:8px; padding: 4px 14px; }
.split-block { display:grid; gap: 28px; }
.split-block--media { grid-template-columns: 1.05fr 1fr; align-items:center; }
@media (max-width: 800px) {
  .service-catalog-item, .split-block--media { grid-template-columns: 1fr; }
}
.quiet-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:16px; }
.quiet-list li { display:flex; flex-direction:column; gap:4px; padding-bottom:16px; border-bottom:1px solid var(--border); }
.quiet-list li:last-child { border-bottom:0; }
.quiet-list strong { font-size: 0.95rem; }
.quiet-list span, .lead-muted { color: var(--text-secondary); font-size: 0.9rem; }
.process-steps { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:18px; }
.process-steps li { display:flex; gap:14px; align-items:flex-start; }
.process-steps-num { font-size:0.75rem; font-weight:700; color: var(--text-muted); min-width: 28px; padding-top:3px; }
.process-steps p { margin:4px 0 0; color: var(--text-secondary); font-size:0.9rem; }
.blog-list { display:flex; flex-direction:column; border-top:1px solid var(--border); }
.blog-row { display:grid; grid-template-columns: 120px 1fr; gap:16px; padding:14px 2px; border-bottom:1px solid var(--border); color:inherit; }
.blog-row time { color: var(--text-muted); font-size:0.8rem; }
.blog-row strong { font-size:0.95rem; font-weight:600; }
.cta-band { text-align:center; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--text-secondary); margin-bottom: 18px; }
.site-footer { background: #f5f5f7; color: var(--text-secondary); border-top: 1px solid var(--border); padding-top: 40px; }
.footer-grid--apple { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
.footer-heading { color: var(--text); font-size: 0.75rem; text-transform: none; letter-spacing:0; margin-bottom: 10px; }
.footer-nav a, .footer-contact-list a { font-size: 0.8rem; color: var(--text-secondary); }
.footer-desc { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 28px; padding-top: 16px; font-size: 0.75rem; }
.footer-cta-bar, .cert-logos-row, .partners-section, .hero-stats-bar, .references-strip { display:none !important; }
.dropdown-mega { border-radius: 16px; border:1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.mega-item { padding: 10px 12px; border-radius: 10px; }
.mega-icon { display:none; }
.section-title-sm { font-size: 1.1rem; margin-bottom: 12px; }
.about-photo--rounded { border-radius: 20px; overflow:hidden; }
.about-photo--rounded img { width:100%; display:block; }
.float-actions { gap: 8px; }
.float-action { border-radius: 980px; }
@media (max-width: 700px) {
  .footer-grid--apple { grid-template-columns: 1fr 1fr; }
  .blog-row { grid-template-columns: 1fr; gap:4px; }
}

/* —— Layout balance v2: wider + symmetric —— */
:root {
  --header-h: 56px;
  --section-py: 72px;
}
.container {
  max-width: 1120px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}
.container--narrow {
  max-width: 1120px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}
.page-hero-center {
  text-align: left;
  max-width: none;
  margin: 0;
}
.page-hero-center .page-hero-desc,
.page-hero-center p {
  margin-left: 0;
  margin-right: 0;
  max-width: 40rem;
}
.breadcrumb--center {
  justify-content: flex-start;
  text-align: left;
}
.section-header--center {
  text-align: center;
  margin-bottom: 36px;
  display: block;
}
.section-header--center h2 { margin: 0 0 8px; }
.section-header--center p {
  margin: 0 auto;
  max-width: 480px;
  color: var(--text-secondary);
}
.hero-content--center,
.hero--apple .hero-content,
.cta-band {
  text-align: center;
}
.hero--apple .hero-desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
}
.hero-actions--start { justify-content: flex-start !important; }

.service-grid-apple {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-grid-apple--sm {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.service-tile-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8e8ed;
}
.service-tile-media img,
.service-tile-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-tile-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.service-tile-body h2,
.service-tile-body h3 {
  font-size: 1.15rem;
  margin: 0;
}
.service-tile-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.service-tile--sm .service-tile-body { padding: 14px; }
.service-tile--sm .service-tile-body h3 { font-size: 0.95rem; }

.why-grid-apple {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.why-grid-apple--stack {
  grid-template-columns: 1fr;
  margin-top: 20px;
}
.why-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.why-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.why-tile p,
.why-tile a {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-balanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-balanced-copy h2 { margin-top: 0; }
.process-grid-apple {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}
.process-tile p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.content-stack {
  max-width: 800px;
  margin: 0 auto 48px;
}
.content-stack h2 {
  text-align: center;
  margin: 36px 0 16px;
}
.content-stack .service-intro-text,
.content-stack .service-prose p {
  text-align: left;
}
.service-media--wide {
  margin: 8px auto 40px;
  max-width: 960px;
}
.feature-chips--center {
  justify-content: center;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.topic-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: inherit;
}
.topic-tile strong { font-size: 0.9rem; }
.related-block {
  margin: 24px 0 8px;
}
.related-block > h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-balanced {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.7fr);
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-head {
  text-align: center;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.footer-grid--balanced {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.dropdown-mega-grid--balanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}
.mega-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
}
.mega-item small { color: var(--text-secondary); font-size: 0.75rem; }

.service-page-grid,
.service-topic-body,
.blog-detail-layout,
.contact-layout,
.split-block,
.service-catalog-item {
  display: block !important;
}
.service-page-sidebar { display: none !important; }

.service-topic-highlight-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.service-topic-faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .service-grid-apple,
  .why-grid-apple,
  .about-balanced,
  .topic-grid,
  .contact-balanced,
  .service-topic-faq-wrap,
  .service-topic-highlight-grid {
    grid-template-columns: 1fr;
  }
  .service-grid-apple--sm,
  .process-grid-apple,
  .footer-grid--balanced {
    grid-template-columns: 1fr 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .service-grid-apple--sm,
  .process-grid-apple,
  .footer-grid--balanced,
  .dropdown-mega-grid--balanced {
    grid-template-columns: 1fr;
  }
  .container, .container--narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* —— Icon services + polish v3 —— */
.container, .container--narrow { max-width: 1180px !important; }
.sticky-callback, .float-actions, .back-to-top { display: none !important; }
.service-grid-apple {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
@media (max-width: 1000px) {
  .service-grid-apple { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px) {
  .service-grid-apple { grid-template-columns: 1fr !important; }
}
.service-tile--icon {
  min-height: 168px;
  padding: 22px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.service-tile--icon:hover {
  border-color: rgba(0,113,227,0.35);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.service-tile-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #eef5ff; color: #0071e3;
}
.service-tile--icon h2, .service-tile--icon h3 {
  margin: 0; font-size: 1.05rem; font-weight: 600;
}
.service-tile--icon p {
  margin: 0; color: #6e6e73; font-size: 0.84rem; line-height: 1.45;
  flex: 1;
}
.service-hero-icon {
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 18px; background: #eef5ff; color: #0071e3;
  display: flex; align-items: center; justify-content: center;
}
.service-media, .service-media--wide, .service-tile-media { display: none !important; }
.about-balanced { align-items: center !important; }
.about-balanced-copy { display: flex; flex-direction: column; justify-content: center; }
.page-hero--apple { padding: calc(var(--header-h) + 28px) 0 24px !important; }
.page-hero-center { max-width: 780px !important; }
@media (min-width: 981px) {
  .navbar-bar {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
  }
  .nav-menu {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    justify-self: center;
  }
  .nav-cta-desktop { justify-self: end; display: flex; align-items: center; gap: 12px; }
}
.contact-balanced { max-width: 1080px !important; }
.icon-bg-teal { background: #e6f5f2; color: #1a6b63; }

/* —— Dark green + white theme + header + sidebar v4 —— */
:root {
  --bg: #ffffff !important;
  --bg-alt: #f3f7f5 !important;
  --bg-muted: #e7efeb !important;
  --surface: #ffffff !important;
  --text: #0b241c !important;
  --text-secondary: #3d5a4e !important;
  --text-muted: #6b857a !important;
  --border: rgba(11, 61, 46, 0.12) !important;
  --border-strong: rgba(11, 61, 46, 0.2) !important;
  --green-900: #0b3d2e;
  --green-800: #0f4a38;
  --green-700: #145c45;
  --green-100: #e8f2ed;
  --teal: #145c45 !important;
  --teal-dark: #0b3d2e !important;
  --orange: #145c45 !important;
  --orange-light: #e8f2ed !important;
  --purple: #0f4a38 !important;
  --purple-light: #e8f2ed !important;
  --gradient: linear-gradient(180deg, #145c45 0%, #0b3d2e 100%) !important;
  --header-h: 64px !important;
}
body { background: var(--bg); color: var(--text); }
.container, .container--narrow { max-width: 1180px !important; }

/* Header */
.site-header--solid {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  overflow: visible;
}
.site-header--solid.scrolled {
  box-shadow: 0 4px 20px rgba(11, 61, 46, 0.06);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.header-inner .logo { flex-shrink: 0; }
.brand-mark {
  color: var(--green-900) !important;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}
.header-nav {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.header-actions {
  display: none;
  align-items: center;
  gap: 14px;
  margin-left: 8px;
}
.header-phone {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green-800);
  white-space: nowrap;
}
.header-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
}
.header-nav .nav-link:hover { background: var(--green-100); color: var(--green-900); }
.nav-toggle { margin-left: auto; }
@media (min-width: 981px) {
  .header-nav, .header-actions { display: flex; }
  .nav-toggle { display: none !important; }
  .site-header--solid > .nav-menu { display: none !important; }
}
.mega-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
}
.mega-item-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--green-100); color: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Buttons dark green */
.btn-primary {
  background: var(--green-800) !important;
  background-image: none !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
.btn-primary:hover { background: var(--green-900) !important; transform: none !important; }
.btn-quiet, .btn-outline, .text-link { color: var(--green-800) !important; }
.btn-quiet:hover, .btn-outline:hover { background: var(--green-100) !important; color: var(--green-900) !important; }
.btn-outline {
  border: 1px solid var(--border-strong) !important;
  background: #fff !important;
}

/* Kill forced centering */
.page-hero-center,
.breadcrumb--center,
.section-header--center,
.content-stack h2,
.feature-chips--center,
.related-block > h2,
.cta-band,
.hero-content--center,
.contact-form-head {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  justify-content: flex-start !important;
}
.hero--apple .hero-content,
.hero--apple .hero-desc,
.hero--apple .hero-actions {
  text-align: left !important;
  margin-left: 0 !important;
  justify-content: flex-start !important;
  max-width: 640px !important;
}
.hero-actions--start { justify-content: flex-start !important; }
.page-hero--apple, .page-hero--split {
  padding: calc(var(--header-h) + 28px) 0 24px !important;
  text-align: left !important;
}
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
.page-hero-split h1 { margin: 0; }
.page-hero-desc { max-width: 40rem; color: var(--text-secondary); }

/* Service left + sidebar right */
.service-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 64px;
}
.service-main { min-width: 0; text-align: left; }
.service-main-hero { margin-bottom: 28px; }
.service-main-hero h1 { margin: 12px 0 10px; }
.service-hero-icon--left {
  margin: 0 0 12px !important;
  width: 52px !important;
  height: 52px !important;
  background: var(--green-100) !important;
  color: var(--green-800) !important;
}
.service-main h2 {
  text-align: left !important;
  margin: 32px 0 14px;
  font-size: 1.25rem;
}
.feature-chips { justify-content: flex-start !important; }
.feature-chips li {
  background: var(--green-100) !important;
  border-color: transparent !important;
  color: var(--green-900) !important;
}
.service-sidebar { display: block !important; }
.service-page-sidebar { display: block !important; }
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-card--sticky, .sidebar-card-sticky {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.sidebar-card h3 { margin: 0 0 8px; font-size: 1rem; color: var(--green-900); }
.sidebar-card p { margin: 0 0 14px; color: var(--text-secondary); font-size: 0.88rem; }
.sidebar-card .btn { margin-bottom: 8px; }
.sidebar-card .btn:last-child { margin-bottom: 0; }
.sidebar-link-list { list-style: none; padding: 0; margin: 0; }
.sidebar-link-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}
.sidebar-link-list a.is-active { color: var(--green-800); }
.sidebar-link-list li:last-child a { border-bottom: 0; }
.sidebar-link-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--green-100); color: var(--green-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.sidebar-link-list a > :last-child { margin-left: auto; color: var(--text-muted); }

.content-stack { max-width: none !important; margin: 0 !important; }

/* Icon tiles green */
.service-tile-icon, .service-hero-icon {
  background: var(--green-100) !important;
  color: var(--green-800) !important;
}
.service-tile--icon:hover {
  border-color: rgba(20, 92, 69, 0.35) !important;
}
.section-alt { background: var(--bg-alt) !important; }
.site-footer {
  background: var(--green-900) !important;
  color: rgba(255,255,255,0.78) !important;
  border-top: none !important;
}
.site-footer .brand-mark--footer,
.site-footer .footer-heading { color: #fff !important; }
.site-footer a { color: rgba(255,255,255,0.78) !important; }
.site-footer a:hover { color: #fff !important; }
.footer-bottom { border-top-color: rgba(255,255,255,0.12) !important; }

/* Beni Arayın — sağ alt sticky (en altta) */
.sticky-callback,
.float-actions {
  display: block !important;
}
.back-to-top {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
  right: 22px !important;
  bottom: 210px !important;
  width: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #1d1d1f !important;
  box-shadow: 0 8px 24px rgba(28, 28, 40, 0.14) !important;
  z-index: 1095 !important;
  line-height: 0 !important;
}
.back-to-top svg.lucide,
.back-to-top i[data-lucide] {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  flex-shrink: 0;
}
.sticky-callback {
  position: fixed;
  left: auto;
  right: 18px;
  top: auto;
  bottom: 22px;
  transform: none;
  z-index: 1100;
  overflow: visible;
}
.float-actions {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 1090;
  max-width: calc(100vw - 36px);
}
.float-action {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(28, 28, 40, 0.18);
}
.float-action--whatsapp { background: #25d366 !important; }
.float-action--phone { background: #5b4bdb !important; }
.float-action-label { display: none; }
.sticky-callback-tab {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  writing-mode: horizontal-tb !important;
  transform: none !important;
  background: #5b4bdb !important;
  color: #fff !important;
  border: none;
  border-radius: 999px !important;
  padding: 12px 16px !important;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(91, 75, 219, 0.28);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.sticky-callback-tab:hover {
  transform: translateY(-2px) !important;
}
.sticky-callback-tab-text {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed;
  transform: none !important;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
.sticky-callback-panel {
  position: fixed !important;
  left: auto !important;
  right: 18px !important;
  top: auto !important;
  bottom: 78px !important;
  transform: translateY(10px) !important;
  width: min(340px, calc(100vw - 36px)) !important;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1101 !important;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}
.sticky-callback.is-open .sticky-callback-panel {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.sticky-callback-backdrop {
  z-index: 1095 !important;
}
.sticky-callback.is-open .sticky-callback-backdrop {
  display: block;
}

/* Page headers + breadcrumbs: tek kolon, sola hizalı */
.page-hero,
.page-hero--apple,
.page-hero--split {
  text-align: left !important;
}
.page-hero-split {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
  grid-template-columns: none !important;
}
.page-hero-split h1 {
  margin: 0 !important;
  max-width: 40rem;
}
.page-hero-split > p,
.page-hero-split .page-hero-desc {
  margin: 0 !important;
  max-width: 40rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.page-hero-split .hero-actions {
  margin: 0 !important;
  gap: 14px !important;
}
.page-hero p {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 40rem !important;
}
.breadcrumb,
.breadcrumb--quiet,
.breadcrumb--center,
.breadcrumb--light {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex-wrap: wrap;
  gap: 6px;
}
.page-hero-center {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}
.page-hero-center .page-hero-desc,
.page-hero-center p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.page-hero .hero-actions,
.page-hero--apple .hero-actions,
.page-hero--split .hero-actions,
.page-hero-center .hero-actions,
.page-hero-split .hero-actions,
.hero-actions--start,
.page-hero-actions {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 1.1rem !important;
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 40rem;
  gap: 12px !important;
}
.page-hero .container > h1,
.page-hero--apple .container > h1 {
  margin: 0 0 10px !important;
  max-width: 40rem;
}
.page-hero .container > .page-hero-desc,
.page-hero--apple .container > .page-hero-desc {
  margin: 0 0 0 !important;
  max-width: 40rem;
}
.page-hero .landing-topic-parent {
  margin: 10px 0 0 !important;
}
.page-hero .breadcrumb {
  margin-bottom: 14px !important;
}
.cta-band {
  text-align: left !important;
  background: var(--bg-alt);
  padding: 48px 0 !important;
}
.cta-band .container { text-align: left; }
.cta-band .btn,
.cta-band .hero-actions {
  justify-content: flex-start !important;
}
.section-header--center {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  margin-bottom: 24px !important;
}
.section-header--center p {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 40rem !important;
}
.section--tight { padding: 44px 0 !important; }

@media (max-width: 980px) {
  .service-layout, .contact-balanced {
    grid-template-columns: 1fr !important;
  }
  .sidebar-card--sticky { position: static; }
  .sticky-callback {
    display: block !important;
    right: 16px;
    bottom: 18px;
  }
  .float-actions {
    right: 16px;
    bottom: 74px;
  }
  .back-to-top {
    right: 20px !important;
    bottom: 196px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .sticky-callback-tab {
    padding: 11px 14px !important;
    font-size: 0.8rem;
  }
  .page-hero .hero-actions,
  .page-hero--apple .hero-actions,
  .page-hero--split .hero-actions {
    flex-direction: column;
    align-items: stretch !important;
  }
  .page-hero .hero-actions .btn,
  .page-hero--apple .hero-actions .btn,
  .page-hero--split .hero-actions .btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }
  .sticky-callback-panel {
    right: 16px !important;
    bottom: 74px !important;
    width: min(320px, calc(100vw - 32px)) !important;
  }
}
@media (max-width: 480px) {
  .sticky-callback {
    right: 16px;
    left: auto;
    bottom: 18px;
  }
  .float-actions {
    bottom: 74px;
  }
  .sticky-callback-tab {
    width: auto;
  }
  .sticky-callback-panel {
    right: 16px !important;
    left: auto !important;
    bottom: 74px !important;
    width: min(320px, calc(100vw - 32px)) !important;
  }
}


/* —— Vertical Hizmetler dropdown —— */
.header-nav .nav-dropdown {
  position: relative;
}
.header-nav .dropdown-menu--services {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  max-height: min(70vh, 480px);
  overflow-y: auto;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(11, 61, 46, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(11, 61, 46, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}
.header-nav .nav-dropdown:hover .dropdown-menu--services,
.header-nav .nav-dropdown:focus-within .dropdown-menu--services {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-nav .dropdown-menu--services a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c1c28;
  border-radius: 8px;
  white-space: nowrap;
}
.header-nav .dropdown-menu--services a:hover {
  background: #f3f1fc;
  color: #3d348b;
}
.header-nav .dropdown-menu--services .dropdown-menu-footer {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(91, 75, 219, 0.12);
}
.header-nav .dropdown-menu--services .dropdown-menu-footer a {
  color: #5b4bdb;
  font-weight: 700;
}

/* —— Soft purple accent v5 (not purple-flooded) —— */
:root {
  --green-900: #3d348b !important;
  --green-800: #5b4bdb !important;
  --green-700: #6b5ce7 !important;
  --green-100: #f3f1fc !important;
  --teal: #5b4bdb !important;
  --teal-dark: #3d348b !important;
  --orange: #5b4bdb !important;
  --orange-light: #f3f1fc !important;
  --purple: #5b4bdb !important;
  --purple-light: #f3f1fc !important;
  --gradient: linear-gradient(180deg, #6b5ce7 0%, #5b4bdb 100%) !important;
  --bg: #ffffff !important;
  --bg-alt: #f7f7fa !important;
  --bg-muted: #efeff4 !important;
  --text: #1c1c28 !important;
  --text-secondary: #5c5c6e !important;
  --text-muted: #8a8a9a !important;
  --border: rgba(28, 28, 40, 0.1) !important;
  --border-strong: rgba(91, 75, 219, 0.28) !important;
}
.brand-mark { color: #1c1c28 !important; }
.header-phone { color: #5c5c6e !important; }
.header-nav .nav-link:hover {
  background: #f3f1fc !important;
  color: #3d348b !important;
}
.btn-primary {
  background: #5b4bdb !important;
  background-image: none !important;
}
.btn-primary:hover { background: #4a3bc7 !important; }
.btn-quiet, .btn-outline, .text-link { color: #5b4bdb !important; }
.btn-quiet:hover, .btn-outline:hover {
  background: #f3f1fc !important;
  color: #3d348b !important;
}
.service-tile-icon,
.service-hero-icon,
.service-hero-icon--left,
.mega-item-icon,
.sidebar-link-icon {
  background: #f3f1fc !important;
  color: #5b4bdb !important;
}
.feature-chips li {
  background: #f3f1fc !important;
  color: #3d348b !important;
}
.service-tile--icon:hover {
  border-color: rgba(91, 75, 219, 0.35) !important;
}
.sidebar-card h3 { color: #1c1c28 !important; }
.sidebar-link-list a.is-active { color: #5b4bdb !important; }

/* Footer: dark slate, purple accents only — not purple wash */
.site-footer {
  background: #16161f !important;
  color: rgba(255,255,255,0.72) !important;
}
.site-footer .brand-mark--footer,
.site-footer .footer-heading { color: #fff !important; }
.site-footer a { color: rgba(255,255,255,0.72) !important; }
.site-footer a:hover { color: #c4bdf5 !important; }
.footer-bottom { border-top-color: rgba(255,255,255,0.1) !important; }

.float-action--phone { background: #5b4bdb !important; }
.sticky-callback-tab { background: #5b4bdb !important; }

.header-nav .dropdown-menu--services a:hover {
  background: #f3f1fc !important;
  color: #3d348b !important;
}
.header-nav .dropdown-menu--services .dropdown-menu-footer a {
  color: #5b4bdb !important;
}
.section-alt { background: #f7f7fa !important; }

/* —— Home hero studio v7 —— */
.hero--studio {
  position: relative;
  min-height: min(88vh, 760px);
  min-height: min(88dvh, 760px);
  display: flex;
  align-items: center;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  background: #f3f2f7;
  color: #1c1c28;
}
.hero--studio .hero-studio-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero--studio .hero-studio-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f3f2f7 0%, #f3f2f7 36%, rgba(243, 242, 247, 0.82) 52%, rgba(243, 242, 247, 0.25) 72%, transparent 88%),
    linear-gradient(180deg, rgba(243, 242, 247, 0.35) 0%, transparent 28%, rgba(243, 242, 247, 0.55) 100%);
}
.hero--studio .hero-studio-img,
.hero--studio .hero-studio-visual picture,
.hero--studio .hero-studio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 40%;
  display: block;
  transform: scale(1.04);
  animation: hero-ken 16s ease-out forwards;
  filter: saturate(0.92) contrast(1.02);
}
.hero--studio .hero-studio-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: clamp(56px, 9vh, 96px);
}
.hero--studio .hero-content--studio {
  max-width: 32rem;
}
.hero--studio .brand-mark--studio {
  font-family: 'Syne', var(--font-display), sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #1c1c28;
  margin: 0 0 12px;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}
.hero--studio .hero-title {
  font-family: 'Syne', var(--font-display), sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #1c1c28 !important;
  margin: 0 0 16px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}
.hero--studio .hero-desc {
  color: #5c5c6e !important;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.55;
  max-width: 28rem;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
.hero--studio .hero-actions {
  margin-bottom: 0;
  gap: 8px 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}
.hero--studio .btn-primary,
.hero--studio .btn-quiet {
  border-radius: 12px !important;
}
@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-ken {
  to { transform: scale(1); }
}
@media (max-width: 860px) {
  .hero--studio {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
  }
  .hero--studio .hero-studio-visual {
    position: relative;
    height: min(42vh, 320px);
  }
  .hero--studio .hero-studio-visual::after {
    background:
      linear-gradient(180deg, transparent 40%, #f3f2f7 100%);
  }
  .hero--studio .hero-studio-img,
  .hero--studio .hero-studio-visual img {
    object-position: 65% 35%;
  }
  .hero--studio .hero-studio-inner {
    padding-top: 28px;
    padding-bottom: 48px;
    margin-top: -36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero--studio .brand-mark--studio,
  .hero--studio .hero-title,
  .hero--studio .hero-desc,
  .hero--studio .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero--studio .hero-studio-img,
  .hero--studio .hero-studio-visual img {
    animation: none;
    transform: none;
  }
}

/* —— Lucide icon density (sitewide) —— */
.nav-link,
.header-phone,
.btn,
.footer-heading,
.footer-nav a,
.footer-contact-list a,
.footer-legal a,
.section-header h2,
.page-hero h1,
.panel-title,
.cta-band h2,
.contact-form label {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.section-header h2,
.page-hero h1,
.cta-band h2,
.panel-title {
  display: flex;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
}
.btn svg.lucide,
.btn i[data-lucide],
.nav-link svg.lucide,
.nav-link i[data-lucide],
.header-phone svg.lucide,
.header-phone i[data-lucide] {
  flex-shrink: 0;
}
.why-tile-icon,
.process-tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef5ff;
  color: #0071e3;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.why-tile-icon--sm {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.process-tile .process-tile-icon {
  margin-bottom: 10px;
}
.process-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.process-steps .process-tile-icon {
  margin-bottom: 0;
}
.feature-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.feature-chips li svg.lucide,
.feature-chips li i[data-lucide] {
  color: #0071e3;
  flex-shrink: 0;
}
.quiet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: start;
}
.quiet-list li .why-tile-icon {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}
.quiet-list li strong {
  grid-column: 2;
}
.quiet-list li > span:not(.why-tile-icon) {
  grid-column: 2;
  color: var(--text-secondary);
  font-size: 0.88rem;
}
.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.footer-nav a,
.footer-contact-list a,
.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
