:root {
    --ink: #0B1D33;
    --ink-soft: #1A3358;
    --blue: #1D4ED8;
    --blue-bright: #3B82F6;
    --blue-glow: rgba(59, 130, 246, 0.35);
    --blue-muted: #EFF6FF;
    --blue-line: #BFDBFE;
    --paper: #FAFCFF;
    --paper-warm: #F4F7FB;
    --white: #FFFFFF;
    --red: #DC2626;
    --red-hover: #B91C1C;
    --red-glow: rgba(220, 38, 38, 0.4);
    --green: #25D366;
    --text: #334155;
    --text-soft: #64748B;
    --border: rgba(29, 78, 216, 0.12);
    --shadow-sm: 0 2px 8px rgba(11, 29, 51, 0.06);
    --shadow-md: 0 8px 30px rgba(11, 29, 51, 0.1);
    --shadow-lg: 0 24px 60px rgba(11, 29, 51, 0.14);
    --shadow-card: 0 20px 50px rgba(11, 29, 51, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --nav-h: 76px;
    --topbar-h: 38px;
}

*, *::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; }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 768px) {
    .container { padding-left: 32px; padding-right: 32px; }
}

.display-font { font-family: var(--font-display); }

.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.85);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.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: 20px;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
}

.topbar-item:hover { color: #fff; }

.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;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.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), background 0.3s;
}

.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;
}

.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.25) 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);
}

.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);
    position: relative;
}

.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; }
}

.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: all 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-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-primary {
    background: linear-gradient(135deg, var(--blue) 0%, #2563EB 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%, #EF4444 100%);
    color: #fff;
    box-shadow: 0 8px 24px var(--red-glow);
    animation: cta-pulse 2.2s 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(220, 38, 38, 0.15); }
}

.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.5);
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.nav-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .nav-mobile-toggle { display: none; }
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--blue-line);
    background: #fff;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.25s;
}

.icon-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-muted);
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 70;
    pointer-events: none;
    visibility: hidden;
}

.mobile-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 51, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s;
}

.mobile-drawer.open .mobile-drawer-backdrop { opacity: 1; }

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 380px);
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(11,29,51,0.15);
}

.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }

.mobile-drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--blue); }

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--topbar-h) + var(--nav-h) + 24px) 20px 20px;
    background: rgba(11, 29, 51, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-box {
    width: 100%;
    max-width: 580px;
    background: #fff;
    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(--blue-line);
}

.search-overlay.open .search-box {
    transform: translateY(0) scale(1);
}

.search-box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}

.search-box-header i { color: var(--blue); font-size: 18px; }

.search-box-header input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--ink);
}

.search-box-header kbd {
    display: none;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--paper-warm);
    color: var(--text-soft);
    border: 1px solid var(--border);
}

@media (min-width: 640px) {
    .search-box-header kbd { display: inline-block; }
}

.search-results {
    max-height: 360px;
    overflow-y: auto;
    padding: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.search-result-item:hover { background: var(--blue-muted); }

.search-result-item span:first-child {
    font-weight: 600;
    color: var(--ink);
}

.search-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

.search-tag-hizmet { background: rgba(29, 78, 216, 0.1); color: var(--blue); }
.search-tag-il { background: var(--paper-warm); color: var(--ink-soft); }

.page-offset { padding-top: calc(var(--topbar-h) + var(--nav-h)); }

.home-main .hero {
    margin-top: calc(-1 * (var(--topbar-h) + var(--nav-h)));
    padding-top: calc(var(--topbar-h) + var(--nav-h) + 48px);
}

@media (min-width: 1024px) {
    .home-main .hero {
        padding-top: calc(var(--topbar-h) + var(--nav-h) + 72px);
    }
}

.full-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.topbar,
.navbar,
.hero,
.trust-strip,
.site-footer,
.cta-banner {
    width: 100%;
    max-width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
    overflow-x: auto;
    white-space: nowrap;
    padding: 14px 0;
    scrollbar-width: none;
}

.breadcrumb::-webkit-scrollbar { display: none; }

.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--ink); }

.hero {
    position: relative;
    padding: 48px 0 72px;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-layout.container { max-width: 1360px; }
    .hero-layout { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
    .hero { padding: 72px 0 96px; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    animation: dot-blink 1.8s ease-in-out infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: #93C5FD;
}

.hero-lead {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.hero-visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 320px;
    perspective: 1200px;
}

.card-mock {
    position: absolute;
    width: 280px;
    height: 168px;
    border-radius: 12px;
    background: linear-gradient(145deg, #fff 0%, #E2E8F0 100%);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 20px;
    transition: transform 0.6s var(--ease-out);
}

.card-mock::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(29, 78, 216, 0.2);
    border-radius: 8px;
    pointer-events: none;
}

.card-mock-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-60%) rotate(-8deg) rotateY(8deg);
    z-index: 1;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.card-mock-2 {
    top: 50px;
    left: 50%;
    transform: translateX(-45%) rotate(4deg) rotateY(-5deg);
    z-index: 2;
}

.card-mock-3 {
    top: 80px;
    left: 50%;
    transform: translateX(-35%) rotate(-2deg);
    z-index: 3;
    background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
}

.card-stack:hover .card-mock-1 { transform: translateX(-65%) rotate(-12deg) translateY(-8px); }
.card-stack:hover .card-mock-2 { transform: translateX(-42%) rotate(6deg) translateY(-4px); }
.card-stack:hover .card-mock-3 { transform: translateX(-30%) rotate(0deg) translateY(-12px); }

.card-mock-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 10px;
}

.card-mock-line.dark { background: rgba(11,29,51,0.12); }
.card-mock-line.short { width: 60%; }
.card-mock-line.shorter { width: 40%; }

.card-mock-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 16px;
}

.floating-badge {
    position: absolute;
    background: #fff;
    color: var(--ink);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-y 4s ease-in-out infinite;
}

.floating-badge i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue-muted);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-1 { bottom: 20px; left: 0; animation-delay: 0s; }
.floating-badge-2 { top: 10px; right: 0; animation-delay: 1s; }

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink-soft);
}

.trust-item i {
    color: var(--blue);
    font-size: 16px;
}

.section { padding: 88px 0; }

.section-alt { background: var(--paper-warm); }

.section-header {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section-header.center .section-label::before { display: none; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-soft);
}

.about-grid {
    display: grid;
    gap: 56px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-visual {
    position: relative;
}

.about-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    aspect-ratio: 4/5;
    background: var(--blue-muted);
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-card {
    position: absolute;
    bottom: -24px;
    right: -16px;
    max-width: 260px;
    background: var(--ink);
    color: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-accent-card p {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    line-height: 1.45;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 18px;
}

.about-content p strong { color: var(--ink); }

.info-cards {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .info-cards { grid-template-columns: 1fr 1fr; }
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.info-card small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.info-card strong {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
}

.services-bento {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@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 {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: all 0.35s var(--ease-out);
    group: service-card;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(29, 78, 216, 0.25);
}

.service-card.featured {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .service-card.featured {
        grid-column: span 2;
        grid-row: span 2;
    }
    .service-card.featured .service-card-media { min-height: 280px; }
}

.service-card-media {
    position: relative;
    min-height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-soft) 0%, var(--blue) 100%);
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 160px;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card-media img { transform: scale(1.06); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,29,51,0.75) 0%, transparent 55%);
}

.service-card-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.service-card-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

.service-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card.featured .service-card-body h3 { font-size: 28px; }

.service-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
    flex: 1;
    margin-bottom: 18px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.02em;
}

.service-card-link i { transition: transform 0.25s; }
.service-card:hover .service-card-link i { transform: translateX(4px); }

.process-track {
    position: relative;
    display: grid;
    gap: 24px;
}

@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), var(--blue), var(--blue-line));
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.process-step:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.process-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px var(--blue-glow);
}

.process-step h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-soft);
}

.features-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--blue);
    transition: height 0.35s var(--ease-out);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-card:hover::before { height: 100%; }

.feature-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: 20px;
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
}

.article-prose {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
}

.article-prose h2,
.article-prose h3,
.article-prose h4,
.article-prose h5,
.article-prose h6 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.25;
}

.article-prose h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; }
.article-prose h3 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.article-prose h4 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.article-prose p { margin-bottom: 1.1rem; }
.article-prose ul { margin: 1rem 0; padding-left: 1.25rem; }
.article-prose li { margin-bottom: 0.5rem; }
.article-prose a { color: var(--blue); font-weight: 600; }
.article-prose a:hover { text-decoration: underline; }
.article-prose a.btn-primary,
.article-prose a.btn-danger,
.article-prose a.btn-whatsapp,
.cta-inline-box a.btn-primary,
.cta-inline-box a.btn-danger,
.cta-inline-box a.btn-whatsapp,
.article-cta-block a.btn-primary,
.article-cta-block a.btn-danger,
.article-cta-block a.btn-whatsapp,
.cta-inline-actions a.btn-primary,
.cta-inline-actions a.btn-danger,
.cta-inline-actions a.btn-whatsapp {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
}
.article-prose a.btn-primary:hover,
.article-prose a.btn-danger:hover,
.article-prose a.btn-whatsapp:hover,
.cta-inline-box a.btn-primary:hover,
.cta-inline-box a.btn-danger:hover,
.cta-inline-box a.btn-whatsapp:hover,
.article-cta-block a.btn-primary:hover,
.article-cta-block a.btn-danger:hover,
.article-cta-block a.btn-whatsapp:hover,
.cta-inline-actions a.btn-primary:hover,
.cta-inline-actions a.btn-danger:hover,
.cta-inline-actions a.btn-whatsapp:hover {
    color: #fff !important;
    text-decoration: none !important;
}
.article-prose strong { color: var(--ink); }

.cta-banner {
    position: relative;
    padding: 80px 0;
    background: var(--ink);
    overflow: hidden;
    text-align: center;
}

.cta-banner-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    position: relative;
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-banner-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.content-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.content-panel-pad { padding: 32px; }

@media (min-width: 768px) {
    .content-panel-pad { padding: 40px 48px; }
}

.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(--topbar-h) + var(--nav-h) + 24px); }
}

.detail-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    background: var(--paper-warm);
}

.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(11,29,51,0.05) 0%, rgba(11,29,51,0.75) 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;
}

.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.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(11,29,51,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; }
}

.detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 20px;
}

.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: #fff;
}

.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 18px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-soft);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: box-shadow 0.3s;
}

.review-card:hover { box-shadow: var(--shadow-sm); }

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-muted), var(--blue-line));
    color: var(--blue);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.review-meta strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
}

.review-meta span {
    font-size: 12px;
    color: var(--text-soft);
}

.review-stars { color: #FBBF24; font-size: 13px; margin-bottom: 10px; }

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.sidebar-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-panel-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.sidebar-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px;
}

.sidebar-list-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s;
}

.sidebar-list-item a:hover,
.sidebar-list-item a.active {
    background: var(--blue-muted);
    color: var(--blue);
}

.contact-panel {
    background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.contact-panel::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(59,130,246,0.15);
}

.contact-panel h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.contact-panel > p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
}

.contact-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: background 0.25s;
    position: relative;
}

.contact-action:hover { background: rgba(255,255,255,0.12); }

.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(220,38,38,0.2); color: #FCA5A5; }
.contact-action-icon.wa { background: rgba(37,211,102,0.2); color: var(--green); }

.contact-action small {
    display: block;
    font-size: 11px;
    opacity: 0.65;
    margin-bottom: 2px;
}

.contact-action strong { font-size: 14px; }

.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    padding-top: 72px;
    padding-bottom: 32px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 56px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin: 20px 0 24px;
    max-width: 280px;
}

.footer-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 13px;
}

.float-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: transform 0.3s;
}

.float-btn:hover { transform: scale(1.08); }

.float-btn-phone {
    background: linear-gradient(135deg, var(--red) 0%, #EF4444 100%);
    animation: float-pulse-red 2s ease-in-out infinite;
}

.float-btn-wa {
    width: 62px;
    height: 62px;
    font-size: 28px;
    background: var(--green);
    animation: float-pulse-green 2s ease-in-out infinite;
}

@keyframes float-pulse-red {
    0%, 100% { box-shadow: 0 8px 30px var(--red-glow); }
    50% { box-shadow: 0 8px 30px var(--red-glow), 0 0 0 8px rgba(220,38,38,0.2); }
}

@keyframes float-pulse-green {
    0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 8px 30px rgba(37,211,102,0.45), 0 0 0 8px rgba(37,211,102,0.2); }
}

.float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.float-btn:hover .float-tooltip { opacity: 1; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible,
.article-panel {
    opacity: 1;
    transform: translateY(0);
}

.custom-scrollbar::-webkit-scrollbar { width: 5px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--blue-line); border-radius: 10px; }

.text-center { text-align: center; }
.mt-section-cta { margin-top: 48px; }

.hide-mobile { display: none; }

@media (min-width: 768px) {
    .hide-mobile { display: inline-flex; }
    div.hide-mobile { display: flex; }
}
.gap-stack { display: flex; flex-direction: column; gap: 24px; }
.gap-stack-lg { display: flex; flex-direction: column; gap: 32px; }

.cta-inline-box {
    margin-top: 40px;
    padding: 32px;
    background: var(--blue-muted);
    border: 1px solid var(--blue-line);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-inline-box p {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 24px;
}

.cta-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.article-cta-block {
    margin: 36px 0;
    padding: 28px 24px;
    background: var(--blue-muted);
    border: 1px solid var(--blue-line);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta-block p {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 20px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .article-cta-block {
        padding: 32px 40px;
    }
    .article-cta-block p {
        font-size: 22px;
    }
}

.not-found {
    text-align: center;
    padding: 100px 0;
}

.not-found h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--ink);
    margin-bottom: 16px;
}

.article-prose .lead {
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-prose ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.article-prose ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
}

.article-prose .internal-links {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--blue-line);
}

.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text span { color: rgba(255,255,255,0.55); }

@media (max-width: 1023px) {
    .hero-visual { min-height: 280px; margin-top: 16px; }
    .card-stack { height: 260px; max-width: 320px; }
    .card-mock { width: 220px; height: 132px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .hero-stat strong { font-size: 22px; }
    .about-accent-card { position: relative; bottom: auto; right: auto; margin-top: 20px; max-width: 100%; }
    .detail-sidebar { position: static; }
}

@media (max-width: 639px) {
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn { width: 100%; }
    .cta-inline-actions { flex-direction: column; }
    .cta-inline-actions .btn { width: 100%; }
    .cta-banner-actions { flex-direction: column; align-items: stretch; }
    .cta-banner-actions .btn { width: 100%; }
    .process-track::before { display: none; }
}

.not-found p {
    color: var(--text-soft);
    margin-bottom: 32px;
    font-size: 16px;
}
