@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    --ink: #0F172A;
    --ink-soft: #1E293B;
    --blue: #0D9488;
    --blue-bright: #14B8A6;
    --blue-glow: rgba(20, 184, 166, 0.35);
    --blue-muted: #F0FDFA;
    --blue-line: #99F6E4;
    --paper: #F8FAF9;
    --paper-warm: #F0FDFA;
    --white: #FFFFFF;
    --red: #EA580C;
    --red-hover: #C2410C;
    --red-glow: rgba(234, 88, 12, 0.4);
    --danger: #EA580C;
    --green: #25D366;
    --text: #334155;
    --text-soft: #64748B;
    --border: rgba(13, 148, 136, 0.12);
    --brand-dark: #134E4A;
    --accent-light: #F97316;
    --hero-tint: #ECFDF5;
    --announce-bg: #0F172A;
    --announce-bg-end: #134E4A;
    --star: #FBBF24;
    --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 32px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
    --shadow-card: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --announce-h: 38px;
    --nav-h: 72px;
    --topbar-h: 38px;
    --page-top-offset: calc(var(--topbar-h) + var(--nav-h));
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
}

body.menu-open,
body.search-open { overflow: hidden; }

body:has(.site-header) {
    --page-top-offset: calc(var(--announce-h) + var(--nav-h));
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

:focus-visible {
    outline: 2px solid var(--blue-bright);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.page-offset { padding-top: var(--page-top-offset); }

.hide-mobile { display: none; }
.hide-tablet { display: none; }

@media (min-width: 640px) {
    .hide-mobile { display: revert; }
}

@media (min-width: 768px) {
    .container { padding-left: 32px; padding-right: 32px; }
}

@media (min-width: 1024px) {
    .hide-tablet { display: revert; }
}

.text-center { text-align: center; }

.display-font { font-family: var(--font-display); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), background 0.28s var(--ease-out), border-color 0.28s var(--ease-out), color 0.28s var(--ease-out);
    white-space: nowrap;
}

.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn-md { padding: 14px 26px; }
.btn-lg { padding: 17px 32px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1.5px solid var(--blue-line);
    background: var(--white);
    color: var(--ink);
}

.btn-icon:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-muted);
}

.btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border: 1.5px solid var(--blue-line);
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-muted);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue-muted);
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    color: #fff;
    box-shadow: 0 8px 24px var(--blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--blue-glow);
}

.btn-danger {
    background: linear-gradient(135deg, var(--red) 0%, var(--accent-light) 100%);
    color: #fff;
    box-shadow: 0 8px 24px var(--red-glow);
    animation: cta-pulse 2.4s ease-in-out infinite;
}

.btn-danger:hover {
    background: linear-gradient(135deg, var(--red-hover) 0%, var(--red) 100%);
    transform: translateY(-2px);
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 8px 24px var(--red-glow); }
    50% { box-shadow: 0 8px 24px var(--red-glow), 0 0 0 6px rgba(234, 88, 12, 0.12); }
}

.btn-whatsapp {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.btn-search {
    background: var(--blue-muted);
    color: var(--blue);
    border: 1.5px dashed var(--blue);
}

.btn-search:hover {
    background: var(--blue);
    color: #fff;
    border-style: solid;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--blue-line);
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
}

.icon-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-muted);
}

.icon-btn-search {
    background: var(--blue-muted);
    color: var(--blue);
    border-style: dashed;
}

/* ── Brand ── */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 20px var(--blue-glow);
    position: relative;
    overflow: hidden;
}

.brand-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: brand-shine 4s ease-in-out infinite;
}

@keyframes brand-shine {
    0%, 70%, 100% { transform: translateX(-100%); }
    85% { transform: translateX(100%); }
}

.brand-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.brand-text span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}

.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.brand-footer .brand-logo-img { height: 40px; }

/* ── Legacy header (minimal compat) ── */
body:has(.site-header) .topbar,
body:has(.site-header) .navbar { display: none !important; }

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: var(--topbar-h);
    background: var(--ink);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 500;
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar-item i { color: var(--blue-bright); font-size: 11px; }

.topbar-badge {
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.navbar {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: all 0.25s var(--ease-out);
}

.nav-link:hover {
    color: var(--blue);
    background: var(--blue-muted);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
}

@media (min-width: 1024px) {
    .nav-actions { display: flex; }
}

.nav-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .nav-mobile-toggle { display: none; }
}

/* ── Site announce bar ── */
.site-announce {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 62;
    height: var(--announce-h);
    background: linear-gradient(90deg, var(--announce-bg) 0%, var(--announce-bg-end) 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-announce-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-announce-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(20, 184, 166, 0.18);
    border: 1px solid rgba(153, 246, 228, 0.35);
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 11px;
}

.site-announce-pill i { color: var(--blue-bright); }

.site-announce-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    color: #fff;
    transition: color 0.2s;
}

.site-announce-link:hover { color: var(--blue-bright); }

.site-announce-meta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.75);
}

.site-announce-meta i { color: var(--blue-bright); font-size: 11px; }

/* ── Site header ── */
.site-header {
    position: fixed;
    top: var(--announce-h);
    left: 0;
    right: 0;
    z-index: 61;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s var(--ease-out), background 0.3s;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.site-header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 1024px) {
    .site-nav { display: flex; }
}

.site-nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: all 0.25s var(--ease-out);
}

.site-nav-link:hover {
    color: var(--blue);
    background: var(--blue-muted);
}

.site-nav-link-accent {
    color: var(--blue);
    background: var(--blue-muted);
    border: 1px solid var(--blue-line);
}

.site-nav-link-accent:hover {
    background: var(--blue);
    color: #fff;
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-menu-toggle { display: flex; }

@media (min-width: 1024px) {
    .site-menu-toggle { display: none; }
}

.site-header-actions .btn-outline,
.site-header-actions .btn-primary { display: none; }

@media (min-width: 768px) {
    .site-header-actions .btn-primary { display: inline-flex; }
}

@media (min-width: 1024px) {
    .site-header-actions .btn-outline { display: inline-flex; }
}

/* ── Mobile menu ── */
.mobile-menu,
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 70;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.open,
.mobile-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-backdrop,
.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
}

.mobile-menu.open .mobile-menu-backdrop,
.mobile-drawer.open .mobile-drawer-backdrop { opacity: 1; }

.mobile-menu-panel,
.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100%;
    background: var(--white);
    box-shadow: -12px 0 48px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s var(--ease-out);
    overflow-y: auto;
}

.mobile-menu.open .mobile-menu-panel,
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }

.mobile-menu-head,
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.mobile-menu-nav,
.mobile-drawer-body {
    flex: 1;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu-link,
.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-soft);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.mobile-menu-link:hover,
.mobile-nav-link:hover {
    background: var(--blue-muted);
    color: var(--blue);
    padding-left: 28px;
}

.mobile-menu-search {
    color: var(--blue);
    border-top: 1px dashed var(--blue-line);
    margin-top: 8px;
}

.mobile-menu-cta {
    padding: 20px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
    background: var(--paper-warm);
}

/* ── Search overlay ── */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-panel,
.search-box {
    width: 100%;
    max-width: 640px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: translateY(-16px) scale(0.98);
    transition: transform 0.35s var(--ease-out);
    border: 1px solid var(--border);
}

.search-overlay.open .search-panel,
.search-overlay.open .search-box {
    transform: translateY(0) scale(1);
}

.search-panel-head,
.search-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--paper-warm);
}

.search-panel-head i,
.search-box-header i {
    color: var(--blue);
    font-size: 18px;
}

.search-panel-head input,
.search-box-header input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    outline: none;
}

.search-panel-head kbd {
    display: none;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--blue-muted);
    border: 1px solid var(--blue-line);
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
}

@media (min-width: 640px) {
    .search-panel-head kbd { display: inline-block; }
}

.search-panel-results,
.search-results {
    max-height: min(420px, 55vh);
    overflow-y: auto;
    padding: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--ink);
    transition: background 0.2s;
}

.search-result-item:hover { background: var(--blue-muted); }

.search-tag {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-tag-hizmet {
    background: var(--blue-muted);
    color: var(--blue);
    border: 1px solid var(--blue-line);
}

.search-tag-ilce {
    background: rgba(234, 88, 12, 0.1);
    color: var(--red);
    border: 1px solid rgba(234, 88, 12, 0.25);
}

.custom-scrollbar::-webkit-scrollbar { width: 6px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--blue-line);
    border-radius: 999px;
}

/* ── Reveal animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero ── */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 10vw, 96px);
    background: linear-gradient(160deg, var(--paper-warm) 0%, var(--paper) 45%, var(--hero-tint) 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(234, 88, 12, 0.08) 0%, transparent 35%),
        linear-gradient(rgba(13, 148, 136, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 148, 136, 0.04) 1px, transparent 1px);
    background-size: auto, auto, auto, 48px 48px, 48px 48px;
    mask-image: linear-gradient(180deg, #000 60%, transparent 100%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: min(560px, 70vw);
    height: min(560px, 70vw);
    background: radial-gradient(circle, rgba(20, 184, 166, 0.22) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    animation: hero-float 8s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 16px); }
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-layout { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: var(--white);
    border: 1px solid var(--blue-line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-bright);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0); }
}

.hero-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0 0 20px;
}

.hero-text em {
    font-style: normal;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 540px;
    margin: 0 0 28px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 480px;
}

.hero-stat {
    padding: 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

/* Hero showcase (new visual) */
.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.hero-showcase-card {
    position: absolute;
    inset: 12%;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.hero-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-showcase-badge {
    position: absolute;
    top: 8%;
    left: -4%;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-showcase-badge i { color: var(--blue); }

.hero-showcase-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(20, 184, 166, 0.35);
    animation: ring-spin 20s linear infinite;
}

.hero-showcase-ring-2 {
    inset: 8%;
    border-color: rgba(234, 88, 12, 0.2);
    animation-direction: reverse;
    animation-duration: 28s;
}

.hero-showcase-ring::before {
    content: '';
    position: absolute;
    top: 8%;
    right: 12%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff 0%, var(--blue-bright) 100%);
    box-shadow: 0 0 20px var(--blue-glow);
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Legacy card-stack hero visual */
.card-stack {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 320px;
    margin: 0 auto;
}

.card-mock {
    position: absolute;
    width: 72%;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.card-mock-1 { top: 0; left: 0; transform: rotate(-6deg); z-index: 3; }
.card-mock-2 { top: 18%; right: 0; transform: rotate(4deg); z-index: 2; opacity: 0.85; }
.card-mock-3 { bottom: 0; left: 12%; transform: rotate(-2deg); z-index: 1; opacity: 0.7; }

.card-mock-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    margin-bottom: 16px;
}

.card-mock-line {
    height: 10px;
    border-radius: 999px;
    background: var(--blue-muted);
    margin-bottom: 10px;
}

.card-mock-line.short { width: 70%; }
.card-mock-line.shorter { width: 45%; }
.card-mock-line.dark { background: var(--blue-line); }

/* ── Trust strip ── */
.trust-strip {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

@media (min-width: 768px) {
    .trust-strip-inner { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.trust-item i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.15);
    color: var(--blue-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Sections ── */
.section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.section-alt {
    background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
}

.section-header { margin-bottom: 40px; }

.section-header.center {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue-bright);
    border-radius: 999px;
}

.section-header.center .section-label::before { display: none; }

.section-label-light { color: rgba(255, 255, 255, 0.85); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0;
}

.center { text-align: center; }

.mt-section-cta { margin-top: 40px; }

/* ── About ── */
.about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1.05fr; gap: 56px; }
}

.about-visual { position: relative; }

.about-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
    position: relative;
}

.about-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px var(--border);
    pointer-events: none;
}

.about-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-accent-card {
    position: absolute;
    bottom: -20px;
    right: -8px;
    max-width: 260px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--blue);
}

.about-accent-card p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--ink-soft);
    line-height: 1.5;
}

.about-prose {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

.about-prose p { margin: 0 0 16px; }

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.info-card {
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.info-card small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.info-card strong {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--ink);
}

/* ── Services bento ── */
.services-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .services-bento { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-bento { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 3px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-top-color 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--blue);
}

.service-card.featured {
    grid-column: span 1;
    border-top-color: var(--blue);
}

@media (min-width: 640px) {
    .service-card.featured { grid-column: span 2; }
}

.service-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-warm);
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-card-media img { transform: scale(1.06); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.35) 100%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.service-card:hover .service-card-overlay { opacity: 0.75; }

.service-card-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.service-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.service-card-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0 0 14px;
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    margin-top: auto;
}

.service-card-link i { transition: transform 0.25s; }
.service-card:hover .service-card-link i { transform: translateX(4px); }

/* ── Content panels ── */
.content-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.content-panel-pad { padding: clamp(24px, 4vw, 36px); }

.article-prose {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.article-prose h2,
.article-prose h3,
.article-prose h4 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 1.6em 0 0.6em;
    line-height: 1.25;
}

.article-prose p { margin: 0 0 1em; }

.article-prose ul,
.article-prose ol {
    margin: 0 0 1em;
    padding-left: 1.4em;
}

.article-panel .article-prose { max-width: none; }

.cta-inline-box {
    margin-top: 32px;
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--blue-muted) 0%, var(--paper-warm) 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--blue-line);
}

.cta-inline-box p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--ink-soft);
    margin: 0 0 16px;
}

.cta-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ── Process track ── */
.process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}

@media (min-width: 768px) {
    .process-track {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .process-track::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--blue-line) 0%, var(--blue) 50%, var(--blue-line) 100%);
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.process-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue);
    box-shadow: 0 0 0 6px var(--blue-muted);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
}

.process-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0;
}

/* ── Features grid ── */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-line);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue-muted) 0%, rgba(20, 184, 166, 0.15) 100%);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
    margin: 0;
}

/* ── Homepage pricing preview ── */
.hp-pricing-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.hp-pricing-chip {
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
}

.hp-pricing-chip:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
}

.hp-pricing-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 8px;
}

.hp-pricing-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 4px;
}

.hp-pricing-unit {
    display: block;
    font-size: 12px;
    color: var(--text-soft);
}

/* ── Homepage blog grid ── */
.hp-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .hp-blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.hp-blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hp-blog-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-warm);
}

.hp-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
}

.hp-blog-card:hover .hp-blog-media img { transform: scale(1.05); }

.hp-blog-body {
    padding: 20px 22px 24px;
}

.hp-blog-body time {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.hp-blog-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.35;
}

.hp-blog-body h3 a { color: var(--ink); transition: color 0.2s; }
.hp-blog-body h3 a:hover { color: var(--blue); }

.hp-blog-body p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-soft);
    margin: 0;
}

/* ── CTA banner ── */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 8vw, 88px) 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--brand-dark) 50%, var(--blue) 100%);
    color: #fff;
    text-align: center;
}

.cta-banner-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(20, 184, 166, 0.2) 0%, transparent 35%);
    pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
}

.cta-banner p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 28px;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── Detail / service pages ── */
.detail-layout {
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr 340px;
        align-items: start;
    }

    .detail-main { min-width: 0; }

    .detail-sidebar {
        position: sticky;
        top: calc(var(--page-top-offset) + 24px);
    }
}

.detail-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.detail-hero img {
    width: 100%;
    height: clamp(220px, 40vw, 420px);
    object-fit: cover;
    display: block;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.78) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 32px;
    pointer-events: none;
}

.detail-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.detail-hero-overlay h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    max-width: 560px;
    margin: 0;
}

.detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin: 0 0 20px;
}

.detail-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.1);
    gap: 10px;
}

.detail-sticky-bar .btn {
    flex: 1;
    justify-content: center;
    font-size: 13px;
    padding: 12px 16px;
}

@media (max-width: 1023px) {
    .detail-sticky-bar { display: flex; }
    body:has(.detail-sticky-bar) .float-actions { bottom: 76px; }
    body:has(.detail-sticky-bar) { padding-bottom: 72px; }
}

.gap-stack { display: flex; flex-direction: column; gap: 16px; }
.gap-stack-lg { display: flex; flex-direction: column; gap: 24px; }

/* ── Breadcrumb ── */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px 0 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
}

.breadcrumb a {
    color: var(--blue);
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--blue-bright); }

.breadcrumb-sep { opacity: 0.4; }

.breadcrumb-current {
    color: var(--ink);
    font-weight: 600;
}

.breadcrumb-light { color: rgba(255, 255, 255, 0.75); }
.breadcrumb-light a { color: rgba(255, 255, 255, 0.95); }
.breadcrumb-light .breadcrumb-current { color: #fff; }

/* ── Sidebar panels ── */
.sidebar-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-panel-head {
    padding: 16px 20px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    background: var(--paper-warm);
    border-bottom: 1px solid var(--border);
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 8px;
}

.sidebar-list-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    transition: background 0.2s, color 0.2s;
}

.sidebar-list-item a:hover,
.sidebar-list-item a.active {
    background: var(--blue-muted);
    color: var(--blue);
}

.contact-panel {
    padding: 24px;
    background: linear-gradient(160deg, var(--ink) 0%, var(--brand-dark) 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    margin-bottom: 20px;
}

.contact-panel h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px;
}

.contact-panel p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0 0 20px;
    line-height: 1.6;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: background 0.25s;
}

.contact-action:last-child { margin-bottom: 0; }
.contact-action:hover { background: rgba(255, 255, 255, 0.14); }

.contact-action-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-action-icon.phone {
    background: rgba(20, 184, 166, 0.2);
    color: var(--blue-bright);
}

.contact-action-icon.wa {
    background: rgba(37, 211, 102, 0.2);
    color: var(--green);
}

.contact-action small {
    display: block;
    font-size: 11px;
    opacity: 0.75;
    margin-bottom: 2px;
}

.contact-action strong {
    font-size: 14px;
    font-weight: 700;
}

/* ── Tags, FAQ, Reviews ── */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--blue-muted);
    border: 1px solid var(--blue-line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-soft);
}

.tag i { color: var(--blue); font-size: 10px; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--white);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--blue-muted); }

.faq-item summary i {
    color: var(--blue);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] summary i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 22px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
}

.review-card {
    padding: 20px 22px;
    background: var(--paper-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review-meta strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
}

.review-meta span {
    font-size: 12px;
    color: var(--text-soft);
}

.review-stars {
    color: var(--star);
    font-size: 13px;
    margin: 10px 0;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
    font-style: italic;
    margin: 0;
}

/* ── Content sidebar ── */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .content-sidebar {
        position: sticky;
        top: calc(var(--page-top-offset) + 24px);
        align-self: start;
    }
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
}

.sidebar-card-title i { color: var(--blue); }

.sidebar-link-list,
.sidebar-post-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-link-list li { margin-bottom: 4px; }

.sidebar-link-list a {
    display: block;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    transition: background 0.2s, color 0.2s;
}

.sidebar-link-list a:hover {
    background: var(--blue-muted);
    color: var(--blue);
}

.sidebar-post-list li {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.sidebar-post-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-post-list a strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    line-height: 1.35;
    transition: color 0.2s;
}

.sidebar-post-list a:hover strong { color: var(--blue); }

.sidebar-post-list a span {
    font-size: 12px;
    color: var(--text-soft);
}

.sidebar-cta p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0 0 14px;
}

.sidebar-cta-wa {
    background: linear-gradient(160deg, var(--paper-warm) 0%, var(--blue-muted) 100%);
    border-color: var(--blue-line);
}

.sidebar-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.sidebar-more-link i { transition: transform 0.25s; }
.sidebar-more-link:hover i { transform: translateX(4px); }

.w-100 { width: 100%; }
.mt-2 { margin-top: 8px; }

/* ── Blog ── */
.blog-main { background: var(--paper); }

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 6vw, 72px) 0;
    background: linear-gradient(160deg, var(--ink) 0%, var(--brand-dark) 60%, var(--blue) 100%);
    color: #fff;
}

.blog-hero-post { padding-bottom: 0; }

.blog-hero-inner {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .blog-hero-inner:not(.blog-hero-list) {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.blog-hero-list { max-width: 720px; }

.blog-hero-copy { position: relative; z-index: 1; }

.blog-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.blog-hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

.blog-hero-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.blog-hero-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 16px;
}

.blog-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.blog-layout {
    display: grid;
    gap: 32px;
    padding: 40px 0 80px;
}

@media (min-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }
}

.blog-layout-list { padding-top: 32px; }

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1280px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-warm);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease-out);
}

.blog-card:hover .blog-card-media img { transform: scale(1.05); }

.blog-card-body { padding: 20px 22px 24px; }

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.35;
}

.blog-card-title a { color: var(--ink); transition: color 0.2s; }
.blog-card-title a:hover { color: var(--blue); }

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
    margin: 0 0 14px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.blog-article { max-width: none; }

.blog-prose { max-width: 72ch; }

.blog-article-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-soft);
}

.blog-share a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue-muted);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.blog-share a:hover {
    background: var(--blue);
    color: #fff;
}

/* ── Pricing page ── */
.pricing-main { background: var(--paper); }

.pricing-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 7vw, 80px) 0;
    background: linear-gradient(160deg, var(--ink) 0%, var(--brand-dark) 55%, var(--blue) 100%);
    color: #fff;
}

.pricing-hero-glow {
    position: absolute;
    top: -30%;
    right: -15%;
    width: min(500px, 60vw);
    height: min(500px, 60vw);
    background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
}

.pricing-hero-inner { position: relative; z-index: 1; }

.pricing-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 16px;
}

.pricing-hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 0 24px;
}

.pricing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pricing-layout {
    display: grid;
    gap: 32px;
    padding: 48px 0 80px;
}

@media (min-width: 1024px) {
    .pricing-layout {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1280px) {
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
    position: relative;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-line);
}

.pricing-card-featured {
    border-color: var(--blue);
    border-width: 2px;
    background: linear-gradient(180deg, var(--blue-muted) 0%, var(--white) 40%);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
}

.pricing-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue-muted);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.pricing-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 6px;
}

.pricing-card-sub {
    font-size: 13px;
    color: var(--text-soft);
    margin: 0 0 16px;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.pricing-unit {
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 600;
}

.pricing-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
    margin: 0 0 16px;
}

.pricing-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.pricing-note {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.6;
}

.pricing-note-box {
    padding: 20px 24px;
    background: var(--paper-warm);
    border: 1px dashed var(--blue-line);
    border-radius: var(--radius-md);
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
}

/* ── Footer ── */
.site-footer {
    position: relative;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0;
}

/* Dalga: üst alan beyaz, dalga şekli footer rengiyle birebir */
.site-footer-wave {
    position: relative;
    height: 80px;
    background: var(--white);
    overflow: hidden;
}

.site-footer-wave::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background-color: var(--ink);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,20 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,20 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.site-footer-main {
    padding: 48px 0 40px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 640px) {
    .site-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .site-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.site-footer-brand .brand { margin-bottom: 16px; }

.site-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0 0 20px;
    max-width: 320px;
}

.site-footer-social {
    display: flex;
    gap: 10px;
}

.site-footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: background 0.25s, transform 0.25s;
}

.site-footer-social-btn:hover {
    background: rgba(20, 184, 166, 0.25);
    transform: translateY(-2px);
}

.site-footer-social-btn.wa:hover { background: rgba(37, 211, 102, 0.25); }

.site-footer-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
}

.site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-links li { margin-bottom: 10px; }

.site-footer-links a {
    font-size: 14px;
    opacity: 0.78;
    transition: opacity 0.2s, color 0.2s;
}

.site-footer-links a:hover {
    opacity: 1;
    color: var(--blue-bright);
}

.site-footer-contact-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.site-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.85;
}

.site-footer-contact-list i {
    color: var(--blue-bright);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.site-footer-cta { margin-top: 4px; }

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.site-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    opacity: 0.7;
}

.site-footer-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.6;
    margin: 0;
}

/* Legacy footer compat */
.footer-grid,
.footer-brand,
.footer-title,
.footer-links,
.footer-bottom {
    /* mapped via site-footer when partial used; legacy index footer still works */
}

.site-footer .footer-grid,
footer.site-footer .container.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 40px;
}

@media (min-width: 640px) {
    .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

.site-footer .footer-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.site-footer .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer .footer-links li { margin-bottom: 10px; }

.site-footer .footer-links a {
    font-size: 14px;
    opacity: 0.78;
    transition: opacity 0.2s, color 0.2s;
}

.site-footer .footer-links a:hover {
    opacity: 1;
    color: var(--blue-bright);
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 13px;
    opacity: 0.7;
}

/* ── Float actions ── */
.float-actions {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 44;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform 0.28s var(--ease-out), box-shadow 0.28s;
}

.float-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-lg);
}

.float-btn-phone {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
}

.float-btn-wa {
    background: var(--green);
    animation: wa-bounce 3s ease-in-out infinite;
}

@keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.float-btn-wa:hover { animation: none; }

.float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 14px;
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, visibility 0.25s;
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--ink);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 640px) {
    .float-tooltip { display: none; }
}

/* ── Not found ── */
.not-found {
    text-align: center;
    padding: 80px 20px 120px;
    max-width: 520px;
    margin: 0 auto;
}

.not-found h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 16px;
}

.not-found p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0 0 28px;
}

/* ── Home main ── */
.home-main { background: var(--paper); }

/* ── Responsive refinements ── */
@media (max-width: 767px) {
    .process-track::before { display: none; }

    .hero-stats { grid-template-columns: 1fr; max-width: none; }

    .about-accent-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        max-width: none;
    }

    .cta-banner-actions .btn { width: 100%; }
}

@media (max-width: 639px) {
    .site-announce-inner {
        justify-content: space-between;
        font-size: 11px;
    }

    .float-actions {
        bottom: 16px;
        right: 16px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

