:root {
    --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --bg: #f8fafc;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-soft: #eef2ff;
    --primary-mid: #6366f1;
    --nav-bg: #1e1b4b;
    --shadow-card: 0 12px 40px rgba(79, 70, 229, 0.07);
    --shadow-header: 0 4px 24px rgba(15, 23, 42, 0.07);
    --header-surface: #ffffff;
    --header-text: #0f172a;
    --header-muted: #64748b;
    --topbar-gradient: linear-gradient(90deg, #312e81 0%, #4f46e5 48%, #6366f1 100%);
}

* { box-sizing: border-box; }

html {
    font-family: var(--font-sans);
    overflow-x: hidden;
    max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
}

::placeholder {
    font-family: inherit;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.65;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #eef2ff 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: min(1180px, 100%);
    margin: 0 auto;
    padding-left: clamp(12px, 4vw, 20px);
    padding-right: clamp(12px, 4vw, 20px);
    width: 100%;
}

.site-header,
.site-footer { background: var(--header-surface); color: var(--header-text); }
.admin-header { background: var(--nav-bg); color: #fff; }

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    min-height: 74px;
}
.header-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 1;
}
.mobile-search-wrap { display: none; }

.logo-link {
    text-decoration: none;
    color: var(--header-text);
    font-size: 22px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.logo-text-group {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-text-group strong {
    font-size: clamp(18px, 1.35vw, 24px);
    color: inherit;
    letter-spacing: -.01em;
}
.logo-text-group small {
    font-size: clamp(9px, .7vw, 11px);
    color: var(--header-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 45%, #4f46e5 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.site-nav,
.admin-nav { display: flex; gap: 14px; flex-wrap: wrap; }

.site-nav a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    padding: 6px 8px;
}
.admin-nav a {
    color: #e7e5e4;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    padding: 6px 8px;
}

.site-nav a:hover { color: var(--primary); }
.admin-nav a:hover { color: #fff; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: var(--shadow-header);
}
.header-cta {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}
.header-cta:hover { background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%); }
.header-search {
    position: relative;
    width: min(320px, 100%);
}
.header-search input {
    margin: 0;
    padding-right: 40px;
    border-radius: 12px;
    border-color: #c7d2fe;
}
.search-icon-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    padding: 0;
    background: #e2e8f0;
    color: #334155;
}
.search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .16);
    overflow: hidden;
    z-index: 65;
}
.search-results.show { display: block; }
.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0f172a;
    padding: 10px 12px;
    border-bottom: 1px solid #eef2ff;
    font-weight: 600;
}
.search-result-item:hover { background: #eef2ff; }
.search-result-item small {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}
.search-empty {
    margin: 0;
    padding: 10px 12px;
    color: #64748b;
    font-size: 13px;
}
.site-header-modern {
    background: var(--header-surface);
    color: var(--header-text);
    border-bottom: 1px solid #e0e7ff;
}
.header-trust-strip {
    background: #0b1220;
    color: #cbd5e1;
    font-size: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, .2);
}
.header-trust-inner {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding: 8px 0 6px;
    font-weight: 700;
}
.modern-shell {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 10px 12px;
    min-height: auto;
    margin-top: 6px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
}
.modern-shell .logo-link { color: #0f172a; }
.modern-shell .logo-mark {
    background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%);
}
.modern-shell .nav-toggle {
    border-color: #cbd5e1;
    background: #fff;
}
.modern-shell .nav-toggle span { background: #334155; }
.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.head-link-btn,
.head-primary-btn {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
}
.head-link-btn {
    color: #334155;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}
.head-link-btn--muted {
    font-weight: 600;
    border-style: dashed;
    opacity: 0.95;
}
.head-primary-btn {
    color: #fff;
    border: 1px solid #4f46e5;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}
.header-nav-row {
    padding: 10px 0 12px;
}
.header-nav-row .site-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.header-nav-row .site-nav a {
    color: #475569;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}
.modern-search { width: min(360px, 100%); }
.modern-search .search-icon-btn {
    background: #e2e8f0;
    color: #334155;
}
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #e7e5e4;
    border-radius: 10px;
    background: #fafaf9;
    padding: 9px 8px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #44403c;
    margin: 4px 0;
    border-radius: 3px;
}
.mobile-menu-overlay,
.mobile-menu-panel { display: none; }

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 55;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 12px 24px rgba(22, 163, 74, .35);
    font-weight: 700;
    font-size: 14px;
}
.wa-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    display: inline-grid;
    place-items: center;
}
.wa-icon-svg {
    width: 16px;
    height: 16px;
    color: #fff;
}
.whatsapp-float:hover { filter: brightness(1.05); }
.mobile-bottom-nav { display: none; }

@media (prefers-color-scheme: dark) {
    .whatsapp-float {
        background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        box-shadow: 0 12px 26px rgba(8, 47, 23, .58);
        border: 1px solid rgba(134, 239, 172, .28);
    }
    .wa-icon { background: rgba(255, 255, 255, .2); }
}

.hero,
.card {
    background: var(--surface);
    border-radius: 14px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.hero { background: linear-gradient(120deg, #ffffff 0%, #eef2ff 100%); }
.hero-minimal h1 { max-width: 900px; font-size: 40px; line-height: 1.2; }
.hero-minimal p { max-width: 800px; }
.hero-media {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}
.hero-badge {
    display: inline-block;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #c7d2fe;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 14px; }
.text-link { color: var(--primary); text-decoration: none; font-weight: 700; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.category-card { margin: 0; }
.category-card a { color: var(--primary); font-weight: 700; text-decoration: none; }
.category-card a:hover { text-decoration: underline; }
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 18px;
    margin-bottom: 16px;
}
.about-layout img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
}

input, textarea, select {
    width: 100%;
    padding: 11px 12px;
    margin: 6px 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, .32);
}

button {
    background: var(--primary);
    color: #fff;
    padding: 11px 18px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

button:hover { background: var(--primary-dark); }

.alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid transparent;
}

.breadcrumb {
    margin-top: 16px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--muted);
    margin: 0 8px;
}

.success { background: #dcfce7; color: #166534; border-color: #86efac; }
.error { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
h1, h2, h3 { margin-top: 0; }

.site-footer-inner { padding: 20px 0; }
.site-footer-inner p { margin: 0; color: #64748b; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
}
.footer-grid h3 { margin: 0 0 8px; color: #0f172a; font-size: 16px; }
.footer-grid a { color: var(--primary); text-decoration: none; }
.footer-grid a:hover { color: var(--primary-dark); }
.footer-grid p { margin-bottom: 10px; line-height: 1.7; }
.footer-mobile-note {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-mobile-note span {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #3730a3;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.cta-card {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #a5b4fc;
}

.scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 300px);
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
}
.scroller-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    scroll-snap-align: start;
}
.scroller-item h3 { margin-bottom: 8px; }
.scroller-item a { color: var(--primary); font-weight: 700; text-decoration: none; }
.post-cover {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 12px;
}
.landing-cover {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 14px;
}
.blog-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 14px 0;
    border: 1px solid var(--line);
}
.blog-content p { color: #334155; font-size: 17px; line-height: 1.75; }
.blog-content h2, .blog-content h3 { margin-top: 24px; }

.blog-hero h1 { max-width: 920px; }
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.blog-list-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 12px;
}
.blog-list-cover-wrap { display: block; }
.blog-list-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
}
.blog-list-meta {
    margin: 4px 0 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}
.blog-list-body h2 { margin: 0 0 8px; font-size: 29px; line-height: 1.25; }
.blog-list-body h2 a { color: var(--text); text-decoration: none; }
.blog-list-body h2 a:hover { color: var(--primary); }
.blog-list-body p { margin: 0 0 10px; }

.blog-detail-card { max-width: 920px; margin-left: auto; margin-right: auto; }
.blog-detail-cover {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 14px;
}
.blog-related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-related-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 12px 14px;
}
.blog-related-item h3 {
    margin: 0 0 4px;
    font-size: 20px;
}

.image-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 14px 0 6px;
}
.image-band img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.chip-scroller {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0;
}
.chip {
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #3730a3;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 20px;
}

.contact-meta {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 16px;
}

.phone-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.phone-list a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
}

.phone-list li + li { margin-top: 8px; }

.contact-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
    margin: 20px 0;
    padding: 22px;
    border: 1px solid #c7d2fe;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
}
.contact-hero-copy h1 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.16;
}
.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.contact-quick-actions a {
    text-decoration: none;
    color: #4338ca;
    background: #fff;
    border: 1px solid #c7d2fe;
    border-radius: 10px;
    padding: 9px 12px;
    font-weight: 700;
}
.contact-hero-media .hero-media {
    margin: 0;
    height: 330px;
}
.modern-contact-grid { align-items: start; }
.modern-contact-meta {
    border: 1px solid #c7d2fe;
    background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
}
.contact-info-list p {
    margin: 0 0 8px;
    color: #334155;
}
.contact-form-card form { margin-top: 10px; }
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-marquee {
    overflow: hidden;
    border: 1px solid #e0e7ff;
    background: linear-gradient(90deg, #ffffff 0%, #eef2ff 100%);
    padding: 12px 0;
}
.contact-marquee-track {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    width: max-content;
    animation: contactMarquee 28s linear infinite;
}
.contact-marquee-track span {
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #4338ca;
    border-radius: 8px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
}
.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.contact-trust-grid .card {
    margin: 0;
    border-color: #dbe3ef;
}

@keyframes contactMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .contact-marquee-track { animation: none; }
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.admin-header {
    padding: 16px 0;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .25);
}

.admin-main .card { box-shadow: 0 10px 24px rgba(15, 23, 42, .05); }
.admin-thumb {
    width: 100%;
    max-width: 360px;
    height: 180px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin: 4px 0 14px;
}
.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.editor-toolbar button {
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 13px;
}
.rich-editor {
    min-height: 220px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    padding: 12px;
    margin: 6px 0 10px;
}
.rich-editor:focus {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(147, 197, 253, .35);
}
.editor-source {
    min-height: 120px;
    font-family: Consolas, "Courier New", monospace;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.95fr);
    gap: clamp(14px, 2.5vw, 24px);
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
    border: 1px solid #e0e7ff;
    border-radius: clamp(14px, 2vw, 20px);
    padding: clamp(18px, 3vw, 28px);
    margin: clamp(12px, 2vw, 20px) 0;
}
.home-hero-copy h1 { margin: 0 0 10px; line-height: 1.14; }
.home-hero-copy p { margin: 0 0 10px; }
.home-mini-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.home-mini-metrics span {
    background: #fff;
    border: 1px solid #c7d2fe;
    color: #4338ca;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 14px;
}
.home-hero-media {
    position: relative;
    min-width: 0;
}
.home-hero-media .hero-media {
    margin: 0;
    width: 100%;
    height: auto;
    max-height: min(400px, 42vh);
    min-height: 200px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}
.home-hero-float {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, .82);
    color: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    max-width: 260px;
}
.home-hero-float p { margin: 4px 0 0; color: #e2e8f0; font-size: 14px; line-height: 1.45; }

.home-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 1.8vw, 16px);
    align-items: stretch;
}
.home-value-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: clamp(14px, 2.2vw, 20px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.home-value-item h2 { line-height: 1.25; margin-bottom: 6px; }

.home-dark-showcase {
    margin: clamp(12px, 2vw, 20px) 0;
    padding: clamp(16px, 2.5vw, 26px);
    border-radius: clamp(12px, 1.5vw, 16px);
    border: 1px solid #312e81;
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 48%, #4338ca 100%);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: clamp(12px, 2vw, 20px);
    align-items: stretch;
}
.home-dark-showcase h2 { line-height: 1.2; max-width: 820px; margin-bottom: 8px; }
.home-dark-showcase p { color: #e2e8f0; font-size: 16px; line-height: 1.65; }
.home-dark-showcase .hero-badge {
    background: rgba(96, 165, 250, .12);
    color: #dbeafe;
}
.showcase-head { display: flex; flex-direction: column; }
.showcase-metrics {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.showcase-metrics article {
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 8px;
    background: rgba(148, 163, 184, .08);
    padding: 10px;
}
.showcase-metrics strong {
    display: block;
    font-size: 17px;
    color: #fff;
}
.showcase-metrics span {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}
.showcase-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(8px, 1.2vw, 12px);
    min-width: 0;
}
.showcase-media-grid img {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: min(200px, 22vh);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(191, 219, 254, .3);
}
.showcase-media-grid img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 9;
    max-height: min(240px, 26vh);
    min-height: 140px;
}

.home-categories,
.home-city-network { border-radius: 18px; }

.home-benefits {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.88fr);
    gap: clamp(12px, 2vw, 18px);
    align-items: start;
}
.home-side-note ul {
    margin: 0 0 12px 18px;
    padding: 0;
}
.home-side-note li { margin-bottom: 8px; }

.home-final-cta {
    margin: clamp(12px, 2vw, 20px) 0;
    border-radius: clamp(14px, 2vw, 20px);
    border: 1px solid #a5b4fc;
    background: linear-gradient(120deg, #4338ca 0%, #4f46e5 45%, #6366f1 100%);
    color: #fff;
    padding: clamp(16px, 2.5vw, 24px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(14px, 2vw, 22px);
    flex-wrap: wrap;
}
.home-final-cta h2 { margin: 0 0 8px; line-height: 1.18; max-width: 700px; }
.home-final-cta p { margin: 0; color: #f1f5f9; font-size: 16px; line-height: 1.65; }
.home-final-cta .text-link { color: #fff; }
.home-final-cta button {
    background: #fff;
    color: var(--primary);
}
.home-final-cta button:hover { background: #eef2ff; }

@media (max-width: 1024px) {
    .home-dark-showcase {
        grid-template-columns: 1fr;
    }
    .showcase-media-grid {
        max-width: min(640px, 100%);
        margin-inline: auto;
    }
}

@media (min-width: 1200px) {
    .home-hero-copy {
        max-width: 560px;
    }
}

table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { border: 1px solid var(--line); padding: 10px; text-align: left; vertical-align: top; }
th { background: #f8fafc; }

.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.login-error { color: #b91c1c; margin-bottom: 10px; }

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-hero { grid-template-columns: 1fr; }
    .contact-hero-copy h1 { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-minimal h1 { font-size: 30px; }
    .image-band { grid-template-columns: 1fr; }
    .image-band img { height: 230px; }
    .about-layout { grid-template-columns: 1fr; }
    .blog-list-item { grid-template-columns: 1fr; }
    .blog-list-cover { height: 230px; }
    .blog-detail-cover { height: 260px; }
    .home-hero,
    .home-benefits { grid-template-columns: 1fr; }
    .home-value-grid { grid-template-columns: 1fr; }
    .home-dark-showcase {
        grid-template-columns: 1fr;
    }
    .showcase-metrics { grid-template-columns: 1fr 1fr 1fr; }
    .showcase-media-grid img,
    .showcase-media-grid img:first-child { height: 200px; }
    .home-final-cta { flex-direction: column; align-items: flex-start; }
    .contact-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 14px; }
    .hero, .card { padding: 18px; margin: 14px 0; }
    body { font-size: 15px; }
    main.container { padding-bottom: 90px; }
    .site-header-modern {
        background: #0f172a;
    }
    .header-trust-inner { display: none; }
    .site-header-inner { min-height: auto; padding: 8px 0; }
    .header-right,
    .header-actions,
    .header-nav-row,
    .desktop-search,
    .site-nav { display: none; }
    .mobile-search-wrap { display: block; margin-top: 10px; }
    .mobile-search-wrap .header-search { width: 100%; }
    .mobile-search-wrap .header-search input {
        border: 1px solid #d1d5db;
        border-radius: 12px;
        background: #fff;
    }
    .modern-shell {
        border-radius: 12px;
        padding: 8px 10px;
    }
    .nav-toggle { display: inline-block; }
    .nav-toggle {
        border-color: rgba(30, 58, 138, .35);
        background: rgba(255, 255, 255, .1);
    }
    .nav-toggle span { background: #bfdbfe; }
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, .58);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease;
        z-index: 60;
    }
    .mobile-menu-panel {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(340px, 92vw);
        height: 100vh;
        background: #f8fafc;
        box-shadow: -12px 0 30px rgba(15, 23, 42, .28);
        transform: translateX(102%);
        transition: transform .24s ease;
        z-index: 61;
        overflow-y: auto;
    }
    .mobile-menu-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-menu-panel.is-open { transform: translateX(0); }
    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 16px;
        background: #0f172a;
        color: #fff;
    }
    .mobile-menu-close {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        border: 1px solid rgba(255, 255, 255, .35);
        background: rgba(255, 255, 255, .18);
        color: #fff;
        font-size: 24px;
        line-height: 1;
        padding: 0;
    }
    .mobile-menu-nav {
        display: grid;
        gap: 2px;
        background: #e5e7eb;
    }
    .mobile-menu-nav a {
        background: #fff;
        text-decoration: none;
        color: #1e293b;
        font-weight: 600;
        padding: 14px 16px;
    }
    .mobile-menu-actions {
        margin-top: 14px;
        padding: 14px;
        display: grid;
        gap: 10px;
    }
    .mobile-light-btn,
    .mobile-primary-btn {
        text-decoration: none;
        text-align: center;
        font-weight: 700;
        border-radius: 12px;
        padding: 11px 12px;
    }
    .mobile-light-btn {
        color: #334155;
        border: 1px solid #cbd5e1;
        background: #fff;
    }
    .mobile-primary-btn {
        color: #fff;
        border: 1px solid #4f46e5;
        background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    }
    body.mobile-menu-open { overflow: hidden; }
    .admin-nav { gap: 10px; }
    .logo-link { font-size: 20px; }
    .breadcrumb { font-size: 13px; padding: 8px 10px; }
    .hero-minimal h1 { font-size: 27px; }
    .hero-media { height: 220px; }
    .header-cta { width: 100%; text-align: center; display: inline-block; }
    .blog-list-body h2 { font-size: 24px; }
    .home-hero { padding: 18px; border-radius: 16px; }
    .home-hero-copy h1 { font-size: 28px; }
    .home-dark-showcase,
    .home-final-cta { border-radius: 16px; padding: 18px; }
    .showcase-metrics { grid-template-columns: 1fr; }
    .showcase-media-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .showcase-media-grid img,
    .showcase-media-grid img:first-child {
        grid-column: auto;
        height: 200px;
    }
    .whatsapp-float {
        right: 12px;
        bottom: 78px;
        padding: 10px 12px;
        font-size: 13px;
    }
    .mobile-bottom-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 58;
        background: rgba(15, 23, 42, .96);
        border-top: 1px solid rgba(191, 219, 254, .28);
        backdrop-filter: blur(6px);
    }
    .mobile-bottom-nav a {
        text-decoration: none;
        text-align: center;
        color: #dbeafe;
        font-size: 12px;
        font-weight: 700;
        padding: 10px 4px 12px;
    }
    .mobile-bottom-nav a:hover { color: #fff; }
    .site-footer-inner { padding-bottom: 84px; }
    .footer-grid { gap: 8px; }
    .footer-links-col p,
    .footer-contact-col p { margin: 0 0 6px; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-hero { padding: 16px; border-radius: 14px; }
    .contact-hero-copy h1 { font-size: 27px; }
}

/* ===== Site app: indigo + slate tema ===== */
.site-app {
    --fx-bg: #f8fafc;
    --fx-surface: #ffffff;
    --fx-text: #0f172a;
    --fx-muted: #64748b;
    --fx-line: #e0e7ff;
    --fx-primary: #4f46e5;
    --fx-primary-dark: #4338ca;
    --fx-accent: #6366f1;
    --fx-header: #ffffff;
    font-family: var(--font-sans);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #eef2ff 100%);
    color: var(--fx-text);
    letter-spacing: 0.01em;
}
.site-app .site-main {
    padding-top: 8px;
    padding-bottom: 24px;
    min-width: 0;
    max-width: 100%;
}
.site-app .site-header {
    background: var(--fx-header);
    border-bottom: 1px solid #e0e7ff;
    box-shadow: var(--shadow-header);
}
.site-app .site-header-modern {
    background: var(--fx-header);
    max-width: 100%;
    overflow-x: clip;
}
.site-app .header-brand-row {
    min-width: 0;
    max-width: 100%;
}
.site-app .header-trust-strip {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.site-app .header-trust-inner {
    justify-content: center;
    gap: 18px;
    color: #64748b;
    font-weight: 600;
}
.site-app .modern-shell {
    margin-top: 6px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.06);
    padding: 8px 10px;
}
.site-app .header-nav-row {
    padding: 4px 0 8px;
}
.site-app .header-nav-row .site-nav a {
    border-radius: 999px;
    padding: 4px 10px;
    border-color: #e2e8f0;
    color: #334155;
    background: #f8fafc;
}
.site-app .header-nav-row .site-nav a:hover {
    background: #eef2ff;
    border-color: #a5b4fc;
    color: var(--fx-primary-dark);
}
.site-app .head-link-btn,
.site-app .head-primary-btn,
.site-app .header-cta,
.site-app button {
    border-radius: 10px;
}
.site-app .head-primary-btn,
.site-app .header-cta {
    background: linear-gradient(135deg, var(--fx-accent) 0%, var(--fx-primary) 100%);
    border-color: var(--fx-primary);
    color: #fff;
}
.site-app .head-primary-btn:hover,
.site-app .header-cta:hover,
.site-app button:hover {
    background: var(--fx-primary-dark);
    border-color: var(--fx-primary-dark);
}
.site-app .header-search input,
.site-app input,
.site-app select,
.site-app textarea {
    border: 1px solid var(--fx-line);
    border-radius: 12px;
}
.site-app .header-search input:focus,
.site-app input:focus,
.site-app select:focus,
.site-app textarea:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.28);
}
.site-app .hero,
.site-app .card {
    background: var(--fx-surface);
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}
.site-app .card h1,
.site-app .card h2,
.site-app .card h3,
.site-app .hero h1,
.site-app .hero h2,
.site-app .hero h3 {
    color: var(--fx-text);
}
.site-app .card p,
.site-app .hero p {
    color: #334155;
}
.site-app .breadcrumb {
    background: #fff;
    border: 1px solid var(--fx-line);
    border-radius: 12px;
}
.site-app .site-footer {
    margin-top: 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    color: var(--fx-text);
}
.site-app .footer-grid h3 {
    font-size: var(--fs-h3);
    letter-spacing: 0.02em;
}
.site-app .footer-grid a {
    color: var(--fx-primary);
    font-size: var(--fs-small);
    line-height: 1.55;
}
.site-app .footer-grid p {
    font-size: var(--fs-small);
    line-height: 1.6;
    color: #64748b;
}
.site-app .footer-mobile-note span {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #3730a3;
    font-size: var(--fs-small);
}
.site-app .mobile-menu-panel {
    background: #ffffff;
}
.site-app .mobile-menu-head {
    background: linear-gradient(90deg, #eef2ff 0%, #ffffff 100%);
    border-bottom: 1px solid #e0e7ff;
    color: #0f172a;
}
.site-app .mobile-menu-nav a {
    font-weight: 600;
    color: #334155;
}
.site-app .mobile-bottom-nav {
    background: #ffffff;
    border-top: 1px solid #e0e7ff;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
}
.site-app .whatsapp-float {
    border-radius: 999px;
}

@media (max-width: 640px) {
    .site-app .site-main {
        padding-top: 8px;
    }
    .site-app .modern-shell {
        border-radius: 12px;
        padding: 10px;
    }
    .site-app .header-trust-strip {
        display: none;
    }
    .site-app .logo-link {
        font-size: 19px;
    }
    .site-app .hero,
    .site-app .card {
        border-radius: 14px;
        padding: 16px;
    }
    .site-app .mobile-menu-panel {
        width: min(360px, 94vw);
    }
}

/* Dark surface text contrast fixes */
.site-app .home-dark-showcase h2,
.site-app .home-dark-showcase h3,
.site-app .home-dark-showcase strong {
    color: #f8fafc;
}
.site-app .home-dark-showcase p,
.site-app .home-dark-showcase li,
.site-app .showcase-metrics span {
    color: #cbd5e1;
}
.site-app .home-dark-showcase .hero-badge {
    color: #e0e7ff;
    border: 1px solid rgba(199, 210, 254, 0.45);
    background: rgba(238, 242, 255, 0.12);
}
.site-app .home-hero-float strong,
.site-app .home-hero__note-title {
    color: #f8fafc;
}
.site-app .home-hero-float p,
.site-app .home-hero__note-text {
    color: #cbd5e1;
}

/* ----- Homepage + footer: compact (minimal) ----- */
.site-app .site-main:has(.home-hero) {
    --fs-hero: clamp(25px, 2vw, 32px);
    --fs-h2: clamp(18px, 1.4vw, 24px);
    --fs-h3: clamp(16px, 1.05vw, 19px);
    --fs-body: clamp(15px, 0.28vw + 14.5px, 16px);
    --fs-small: clamp(11px, 0.6vw, 13px);
    --home-section-y: clamp(12px, 2.2vw, 20px);
}
.site-app main.site-main.home-page,
.site-app main.site-main:has(.home-hero) {
    width: 100%;
    max-width: min(1280px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(14px, 3.2vw, 28px);
    padding-right: clamp(14px, 3.2vw, 28px);
    padding-bottom: clamp(24px, 4vw, 40px);
}
.site-app .site-main:has(.home-hero) > section,
.site-app .site-main:has(.home-hero) > article {
    margin-top: var(--home-section-y);
    margin-bottom: var(--home-section-y);
}
.site-app .home-hero {
    margin: clamp(8px, 1.5vw, 14px) 0;
}
.site-app .home-hero-copy h1,
.site-app .home-hero__title {
    margin: 0 0 8px;
}
.site-app .home-hero-copy p,
.site-app .home-hero__lead {
    margin: 0 0 8px;
}
.site-app .home-hero-media .hero-media {
    width: 100%;
    height: auto;
    min-height: min(200px, 32vh);
    max-height: min(380px, 46vh);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}
.site-app .home-hero-float {
    bottom: 10px;
    left: 10px;
    padding: 8px 10px;
    max-width: 220px;
    border-radius: 10px;
}
.site-app .home-hero-float p {
    font-size: 13px;
}
.site-app .home-mini-metrics {
    gap: 6px;
    margin-top: 8px;
}
.site-app .home-mini-metrics span {
    padding: 5px 10px;
    font-size: 12px;
}
.site-app .home-hero .hero-actions {
    margin-top: 10px;
    gap: 10px;
}
.site-app .home-hero .hero-actions button,
.site-app .home-hero__cta {
    padding: 7px 14px;
    font-size: clamp(12px, 0.8vw, 14px);
}
.site-app .home-value-grid {
    gap: 10px;
}
.site-app .home-value-item {
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}
.site-app .home-dark-showcase {
    margin: 10px 0;
    padding: 14px 16px;
    gap: 12px;
    border-radius: 12px;
}
.site-app .home-dark-showcase h2 {
    margin-bottom: 6px;
}
.site-app .showcase-metrics {
    margin-top: 8px;
    gap: 6px;
}
.site-app .showcase-metrics article {
    padding: 8px;
    border-radius: 6px;
}
.site-app .showcase-media-grid {
    gap: 8px;
}
.site-app .showcase-media-grid img {
    width: 100%;
    height: auto;
    min-height: 110px;
    max-height: min(190px, 22vh);
    aspect-ratio: 16 / 10;
}
.site-app .showcase-media-grid img:first-child {
    aspect-ratio: 21 / 9;
    max-height: min(230px, 28vh);
    min-height: 130px;
}
.site-app .site-main section.card.home-categories,
.site-app .site-main section.card.home-city-network {
    padding: 16px 18px;
    margin: 10px 0;
    border-radius: 14px;
}
.site-app .chip-scroller {
    gap: 8px;
}
.site-app .site-main .chip-scroller .chip {
    padding: 6px 11px;
    font-size: clamp(11px, 0.75vw, 13px);
}
.site-app .site-main.home-page .scroller,
.site-app .site-main:has(.home-hero) .scroller {
    gap: clamp(10px, 1.5vw, 14px);
    grid-auto-columns: minmax(240px, min(300px, 82vw));
    scroll-padding-inline: 4px;
}
.site-app .site-main .scroller-item {
    padding: 12px;
    border-radius: 10px;
}
.site-app .home-benefits {
    gap: 10px;
}
.site-app .home-benefits > .card,
.site-app .home-benefits .category-card {
    padding: 14px 16px;
}
.site-app .home-side-note ul {
    margin: 0 0 8px 16px;
}
.site-app .home-side-note li {
    margin-bottom: 6px;
}
.site-app .home-final-cta {
    margin: 10px 0;
    padding: 14px 16px;
    gap: 12px;
    border-radius: 14px;
}
.site-app .home-final-cta h2 {
    margin: 0 0 6px;
}
.site-app .home-final-cta .hero-actions {
    margin-top: 0;
    gap: 10px;
}
.site-app .home-final-cta button {
    padding: 7px 14px;
    font-size: clamp(12px, 0.8vw, 14px);
}
.site-app .site-main .cta-card {
    padding: 16px 18px;
    margin: 10px 0;
    border-radius: 14px;
}
.site-app .site-main .cta-card h2 {
    margin-bottom: 6px;
}
.site-app .site-main .home-faq-section.card {
    padding: 16px 18px;
    margin: 10px 0;
}
.site-app .home-faq-section .faq-q {
    margin: 14px 0 6px;
    font-size: clamp(15px, 1.1vw, 18px);
}
.site-app .home-faq-section .faq-q:first-child {
    margin-top: 0;
}
.site-app .home-faq-section .faq-a {
    padding: 0 0 12px;
}

.site-app .site-footer {
    margin-top: 14px;
}
.site-app .site-footer-inner {
    padding: 12px 0 14px;
}
.site-app .footer-grid {
    gap: 10px;
}
.site-app .footer-grid h3 {
    margin: 0 0 5px;
    font-size: clamp(13px, 0.95vw, 15px);
}
.site-app .footer-grid a {
    font-size: clamp(11px, 0.72vw, 13px);
    line-height: 1.45;
}
.site-app .footer-grid p {
    font-size: clamp(11px, 0.72vw, 13px);
    line-height: 1.5;
    margin-bottom: 6px;
}
.site-app .footer-mobile-note {
    margin-top: 10px;
    padding-top: 8px;
    gap: 8px;
}
.site-app .footer-mobile-note span {
    padding: 5px 9px;
    font-size: clamp(10px, 0.65vw, 12px);
}
.site-app .whatsapp-float {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
}
.site-app .whatsapp-float .wa-icon {
    width: 22px;
    height: 22px;
}

@media (max-width: 640px) {
    .site-app .site-main:has(.home-hero) > section,
    .site-app .site-main:has(.home-hero) > article {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .site-app .home-hero {
        padding: 12px 14px;
    }
    .site-app .home-dark-showcase,
    .site-app .home-final-cta {
        padding: 12px 14px;
    }
    .site-app .whatsapp-float {
        padding: 7px 10px;
        font-size: 11px;
        bottom: 70px;
    }
    .site-app .site-footer-inner {
        padding: 10px 0 76px;
    }
}

/* Header V3 — beyaz yüzey + indigo üst şerit */
.site-app .site-header-modern {
    background: #ffffff;
    border-bottom: 1px solid #e0e7ff;
}
.site-app .header-topbar {
    background: linear-gradient(90deg, #312e81 0%, #4f46e5 48%, #6366f1 100%);
    border-bottom: none;
    max-width: 100%;
    overflow-x: clip;
}
.site-app .topbar-marquee {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    font-weight: 600;
}
.site-app .topbar-marquee span::before {
    content: "•";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.75);
}
.site-app .header-core {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 6px 0;
    min-width: 0;
}
.site-app .site-header-modern .container {
    padding-left: clamp(12px, 2vw, 20px);
    padding-right: clamp(12px, 2vw, 20px);
}
.site-app .desktop-account-row {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.site-app .mobile-head-quick {
    display: none;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
    border-radius: 6px;
    line-height: 1;
}
.site-app .mobile-whatsapp-btn {
    border-color: #15803d;
    background: #16a34a;
    color: #fff;
}
.site-app .header-main-actions {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.site-app .header-core .header-search {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.site-app .header-nav-row {
    padding-top: 0;
}
.site-app .mobile-quick-row {
    display: none;
}

@media (max-width: 920px) {
    .site-app .header-core {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .site-app .desktop-account-row .head-link-btn {
        display: none;
    }
    .site-app .header-main-actions {
        justify-content: space-between;
    }
}

@media (max-width: 640px) {
    .site-app .header-core {
        display: grid;
        grid-template-columns: 1fr;
        padding: 8px 0;
    }
    .site-app .header-brand-row {
        width: 100%;
    }
    .site-app .desktop-account-row .head-link-btn {
        display: none;
    }
    .site-app .header-main-actions {
        display: none;
    }
    .site-app .header-nav-row {
        display: none;
    }
    .site-app .mobile-quick-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding-bottom: 10px;
    }
    .site-app .mobile-quick-row a {
        text-decoration: none;
        text-align: center;
        color: #3730a3;
        border: 1px solid #c7d2fe;
        background: #eef2ff;
        border-radius: 10px;
        padding: 8px 6px;
        font-size: 12px;
        font-weight: 700;
    }
    .site-app .header-core .header-search {
        order: 3;
    }
    .site-app .nav-toggle {
        display: inline-block;
    }
}

/* Header Minimal Tune */
.site-app .site-header-modern {
    border-bottom: 1px solid #e0e7ff;
    box-shadow: 0 3px 16px rgba(79, 70, 229, 0.08);
}
.site-app .topbar-marquee {
    gap: 10px;
    padding: 3px 0;
    font-size: clamp(10px, .72vw, 11px);
}
.site-app .header-core {
    gap: 8px;
    padding: clamp(4px, .55vw, 8px) 0;
}
.site-app .logo-mark {
    border-radius: 6px;
    width: clamp(22px, 1.9vw, 28px);
    height: clamp(22px, 1.9vw, 28px);
    font-size: 10px;
}
.site-app .logo-link {
    gap: 6px;
    font-size: clamp(15px, 1.15vw, 19px);
}
.site-app .header-search input {
    border-radius: 8px;
    min-height: clamp(32px, 2.6vw, 36px);
    padding: 6px 34px 6px 10px;
    font-size: clamp(12px, .85vw, 14px);
}
.site-app .search-icon-btn {
    border-radius: 6px;
    width: clamp(24px, 2vw, 28px);
    height: clamp(24px, 2vw, 28px);
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    font-size: 14px;
    line-height: 1;
}
.site-app .search-results {
    border-radius: 8px;
}
.site-app .head-link-btn,
.site-app .head-primary-btn,
.site-app .header-cta {
    border-radius: 6px;
    padding: clamp(4px, .5vw, 6px) clamp(7px, .85vw, 10px);
    font-size: clamp(11px, .78vw, 12px);
    line-height: 1.25;
}
.site-app .head-link-btn:hover,
.site-app .head-primary-btn:hover,
.site-app .header-cta:hover {
    filter: none;
    background-image: none;
}
.site-app .header-nav-row {
    padding: clamp(3px, .5vw, 6px) 0 clamp(5px, .75vw, 8px);
}
.site-app .header-nav-row .site-nav {
    gap: 4px;
}
.site-app .header-nav-row .site-nav a {
    border-radius: 6px;
    padding: clamp(4px, .45vw, 6px) clamp(7px, .85vw, 11px);
    font-size: clamp(11px, .82vw, 13px);
}
.site-app .header-nav-row .site-nav a:hover {
    background: #eef2ff;
    border-color: #a5b4fc;
}
.site-app .nav-toggle {
    border-radius: 6px;
    width: clamp(32px, 2.5vw, 36px);
    height: clamp(32px, 2.5vw, 36px);
    padding: 5px 5px 3px;
}
.site-app .nav-toggle span {
    margin: 3px 0;
}
.site-app .nav-toggle em {
    display: block;
    font-style: normal;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    color: #64748b;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.site-app .mobile-menu-panel {
    border-left: 1px solid #e0e7ff;
}
.site-app .mobile-menu-head {
    padding: 10px 12px;
}
.site-app .mobile-menu-close {
    border-radius: 6px;
    width: 32px;
    height: 32px;
}
.site-app .mobile-menu-nav a,
.site-app .mobile-light-btn,
.site-app .mobile-primary-btn,
.site-app .mobile-quick-row a {
    border-radius: 6px;
}

@media (max-width: 640px) {
    .site-app .header-core {
        padding: 6px 0;
        gap: 8px;
    }
    .site-app .site-header-modern .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .site-app .logo-link {
        font-size: 16px;
        gap: 6px;
    }
    .site-app .logo-mark {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    .site-app .logo-text-group strong {
        font-size: 16px;
    }
    .site-app .logo-text-group small {
        font-size: 8px;
    }
    .site-app .header-search input {
        min-height: 38px;
    }
    .site-app .desktop-account-row {
        gap: 6px;
    }
    .site-app .mobile-head-quick {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .site-app .nav-toggle {
        width: 36px;
        height: 36px;
        padding: 4px 4px 3px;
    }
    .site-app .mobile-quick-row {
        gap: 6px;
        padding-bottom: 8px;
    }
}

/* Cross-device optimization pass */
.site-app .site-header {
    isolation: isolate;
}
.site-app .header-core,
.site-app .header-nav-row,
.site-app .mobile-quick-row {
    width: 100%;
}
.site-app .header-search input {
    width: 100%;
    text-overflow: ellipsis;
}
.site-app .mobile-bottom-nav a,
.site-app .mobile-quick-row a,
.site-app .head-link-btn,
.site-app .head-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-app .head-link-btn,
.site-app .head-primary-btn {
    min-height: 32px;
}
.site-app .mobile-bottom-nav a,
.site-app .mobile-quick-row a {
    min-height: 34px;
}

@media (max-width: 1024px) {
    .site-app .header-core {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .site-app .desktop-account-row .head-link-btn {
        display: none;
    }
    .site-app .header-main-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .site-app .header-nav-row .site-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }
    .site-app .header-nav-row .site-nav a {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .site-app .site-main {
        padding-top: 6px;
    }
    .site-app .logo-text-group strong {
        font-size: 15px;
        line-height: 1.15;
    }
    .site-app .logo-text-group small {
        font-size: 8px;
        letter-spacing: .03em;
    }
    .site-app .header-search input {
        min-height: 36px;
        font-size: 13px;
    }
    .site-app .search-results {
        max-height: 55vh;
        overflow-y: auto;
    }
}

@media (max-width: 420px) {
    .site-app .site-header-modern .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .site-app .logo-mark {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    .site-app .logo-text-group strong {
        font-size: 14px;
    }
    .site-app .logo-text-group small {
        font-size: 7px;
    }
    .site-app .mobile-head-quick {
        font-size: 10px;
        padding: 5px 6px;
    }
    .site-app .mobile-quick-row a {
        font-size: 11px;
        padding: 7px 4px;
    }
    .site-app .mobile-bottom-nav a {
        font-size: 11px;
        padding: 8px 3px 10px;
    }
}

/* Homepage typography optimization */
.site-app .home-hero-copy h1,
.site-app .home-hero__title {
    font-size: var(--fs-hero);
    line-height: 1.14;
}
.site-app .home-hero-copy p,
.site-app .home-hero__lead {
    font-size: var(--fs-body);
    color: #334155;
}
.site-app .home-mini-metrics span {
    font-size: var(--fs-small);
    padding: 7px 11px;
}
.site-app .home-value-item h2 {
    font-size: var(--fs-h2);
    line-height: 1.22;
}
.site-app .home-value-item p {
    font-size: var(--fs-body);
}
.site-app .home-dark-showcase h2 {
    font-size: var(--fs-h2);
    line-height: 1.16;
}
.site-app .home-dark-showcase p {
    font-size: var(--fs-body);
    color: #e2e8f0;
}
.site-app .showcase-metrics strong {
    font-size: clamp(14px, 0.95vw, 17px);
}
.site-app .showcase-metrics span {
    font-size: var(--fs-small);
}
.site-app .home-final-cta h2 {
    font-size: var(--fs-h2);
    line-height: 1.16;
}
.site-app .home-final-cta p {
    font-size: var(--fs-body);
}

@media (max-width: 640px) {
    .site-app .home-hero-copy h1,
    .site-app .home-hero__title {
        font-size: var(--fs-hero);
    }
    .site-app .home-hero-copy p,
    .site-app .home-hero__lead,
    .site-app .home-value-item p,
    .site-app .home-dark-showcase p,
    .site-app .home-final-cta p {
        font-size: var(--fs-body);
    }
    .site-app .home-value-item h2 {
        font-size: var(--fs-h2);
    }
    .site-app .home-dark-showcase h2,
    .site-app .home-final-cta h2 {
        font-size: var(--fs-h2);
    }
}

/* Global Typography Optimization */
.site-app {
    --fs-hero: clamp(28px, 2.35vw, 36px);
    --fs-h1: clamp(24px, 2vw, 30px);
    --fs-h2: clamp(20px, 1.55vw, 26px);
    --fs-h3: clamp(17px, 1.2vw, 20px);
    --fs-body: clamp(16px, 0.35vw + 15px, 17px);
    --fs-small: clamp(13px, 0.28vw + 12px, 14px);
    --fs-nav: clamp(14px, 0.4vw + 13px, 15px);
    --fs-btn: clamp(14px, 0.35vw + 13px, 15px);
}

body.site-app,
.site-app .site-main,
.site-app p,
.site-app li,
.site-app td,
.site-app th,
.site-app input,
.site-app textarea,
.site-app select {
    font-size: var(--fs-body);
}

.site-app h1,
.site-app .site-main h1,
.site-app .hero h1,
.site-app .home-hero-copy h1,
.site-app .home-hero__title,
.site-app .contact-hero-copy h1 {
    font-size: var(--fs-hero);
    line-height: 1.16;
}

.site-app h2,
.site-app .site-main h2,
.site-app .hero h2,
.site-app .home-dark-showcase h2,
.site-app .home-final-cta h2,
.site-app .home-value-item h2 {
    font-size: var(--fs-h2);
    line-height: 1.22;
}

.site-app h3,
.site-app .site-main h3,
.site-app .card h3 {
    font-size: var(--fs-h3);
    line-height: 1.28;
}

.site-app .logo-text-group strong {
    font-size: clamp(16px, 1.2vw, 20px);
}
.site-app .site-header .logo-text-group strong {
    font-size: clamp(14px, 1.05vw, 17px);
}
.site-app .site-header .logo-text-group small {
    font-size: clamp(8px, 0.55vw, 10px);
}
.site-app .logo-text-group small,
.site-app .hero-badge,
.site-app .blog-list-meta,
.site-app .showcase-metrics span,
.site-app .search-result-item small,
.site-app .footer-mobile-note span {
    font-size: var(--fs-small);
}

.site-app .mobile-bottom-nav a,
.site-app .mobile-menu-nav a,
.site-app .mobile-quick-row a {
    font-size: var(--fs-nav);
}

.site-app .site-main button,
.site-app .mobile-light-btn,
.site-app .mobile-primary-btn {
    font-size: var(--fs-btn);
}

@media (max-width: 640px) {
    .site-app {
        --fs-hero: 26px;
        --fs-h1: 23px;
        --fs-h2: 20px;
        --fs-h3: 17px;
        --fs-body: 15px;
        --fs-small: 13px;
        --fs-nav: 13px;
        --fs-btn: 14px;
    }
}

/* Unified Frontend Design System */
.site-app .site-main > section,
.site-app .site-main > article {
    margin-top: 16px;
    margin-bottom: 16px;
}
.site-app .site-main p,
.site-app .site-main li {
    color: #334155;
    line-height: 1.7;
}
.site-app .site-main .grid {
    gap: 14px;
}
.site-app .site-main .grid .card {
    margin: 0;
}
.site-app .site-main .card {
    border-radius: 14px;
    border: 1px solid var(--fx-line);
    box-shadow: var(--shadow-card);
}
.site-app .site-main .hero {
    border-radius: 16px;
}
.site-app .site-main .chip {
    border-color: #c7d2fe;
    background: #eef2ff;
    color: var(--fx-primary-dark);
    font-size: var(--fs-small);
    padding: 9px 14px;
}
.site-app .site-main .scroller-item {
    border-color: #e0e7ff;
}
.site-app .site-main .text-link {
    color: var(--fx-primary);
}
.site-app .site-main .text-link:hover {
    color: var(--fx-primary-dark);
}
.site-app .site-main button,
.site-app .site-main .mobile-primary-btn,
.site-app .site-main .head-primary-btn {
    font-weight: 700;
}
.site-app .site-main img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}
.site-app .site-main .blog-list-item,
.site-app .site-main .blog-related-item {
    border-color: #dbe3ef;
}
.site-app .site-main form {
    display: block;
}
.site-app .site-main label {
    font-weight: 600;
    color: #334155;
}

.site-app .faq-list {
    margin: 8px 0 0;
    padding: 0;
}
.site-app .faq-q {
    margin: 20px 0 8px;
    font-size: var(--fs-h3);
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}
.site-app .faq-q:first-child {
    margin-top: 0;
}
.site-app .faq-a {
    margin: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--fx-line);
    font-size: var(--fs-body);
    line-height: 1.65;
    color: #334155;
}
.site-app .faq-list .faq-a:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 640px) {
    .site-app .site-main > section,
    .site-app .site-main > article {
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .site-app .site-main .card,
    .site-app .site-main .hero {
        border-radius: 12px;
    }
    .site-app .site-main .grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Footer modern (indigo) ===== */
.site-app .site-footer-modern {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
    position: relative;
}
.site-app .footer-accent-line {
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #4f46e5 40%, #818cf8 100%);
    border-radius: 0 0 3px 3px;
}
.site-app .site-footer-modern .site-footer-inner {
    padding: 28px 0 20px;
}
.site-app .footer-grid-modern {
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 28px 24px;
    align-items: start;
}
.site-app .footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 800;
    font-size: clamp(18px, 1.4vw, 22px);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.site-app .footer-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #818cf8 0%, #4f46e5 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}
.site-app .footer-lead {
    margin: 0;
    max-width: 320px;
    font-size: clamp(13px, 0.9vw, 14px);
    line-height: 1.55;
    color: #64748b;
}
.site-app .footer-heading {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4338ca;
}
.site-app .footer-link-list,
.site-app .footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-app .footer-link-list li,
.site-app .footer-contact-list li {
    margin: 0 0 8px;
}
.site-app .footer-link-list a,
.site-app .footer-contact-list a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.15s ease;
}
.site-app .footer-link-list a:hover,
.site-app .footer-contact-list a:hover {
    color: var(--fx-primary);
}
.site-app .footer-contact-list a.footer-wa {
    color: #15803d;
}
.site-app .footer-contact-list a.footer-wa:hover {
    color: #166534;
}
.site-app .footer-pills {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed #e7e5e4;
    justify-content: flex-start;
}
.site-app .footer-pills span {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    color: #3730a3;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
}
.site-app .footer-copy {
    margin: 20px 0 0;
    padding-top: 16px;
    border-top: 1px solid #e7e5e4;
    font-size: 12px;
    color: #a8a29e;
    text-align: center;
}

.site-app .mobile-bottom-nav a {
    color: #64748b;
    font-weight: 700;
}
.site-app .mobile-bottom-nav a:hover {
    color: var(--fx-primary);
}

@media (max-width: 860px) {
    .site-app .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width: 640px) {
    .site-app .site-header-modern {
        background: #ffffff;
    }
    .site-app .nav-toggle {
        border-color: #e2e8f0;
        background: #f8fafc;
    }
    .site-app .nav-toggle span {
        background: #334155;
    }
    .site-app .mobile-menu-panel {
        background: #ffffff;
        box-shadow: -12px 0 36px rgba(79, 70, 229, 0.12);
    }
    .site-app .mobile-menu-head {
        background: linear-gradient(90deg, #eef2ff 0%, #ffffff 100%);
        color: #0f172a;
    }
    .site-app .mobile-menu-panel .mobile-primary-btn {
        border-color: #4f46e5;
        background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    }
    .site-app .mobile-menu-panel .mobile-light-btn {
        border-color: #e2e8f0;
        color: #334155;
    }
}

/* ===== Footer — Apple tarzı çok sütun ===== */
.site-app .site-footer-apple {
    background: #f5f5f7;
    border-top: 1px solid #d2d2d7;
    color: #424245;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 100%;
    overflow-x: clip;
}
.site-app .footer-apple-inner.container {
    max-width: 1024px;
}
.site-app .footer-apple-disclaimer p {
    font-size: 11px;
    line-height: 1.429;
    color: #6e6e73;
    margin: 0 0 9px;
    max-width: 100%;
}
.site-app .footer-apple-rule {
    border: 0;
    border-top: 1px solid #d2d2d7;
    margin: 17px 0;
    opacity: 1;
}
.site-app .footer-apple-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px 22px;
    align-items: start;
    min-width: 0;
}
.site-app .footer-apple-heading {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.site-app .footer-apple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-app .footer-apple-list li {
    margin: 0 0 7px;
}
.site-app .footer-apple-link {
    font-size: 12px;
    line-height: 1.33337;
    color: #424245;
    text-decoration: none;
    display: inline-block;
}
.site-app .footer-apple-link:hover {
    color: #1d1d1f;
    text-decoration: underline;
}
.site-app .footer-apple-more {
    font-size: 11px;
    line-height: 1.45;
    color: #6e6e73;
    margin: 0;
}
.site-app .footer-apple-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px 24px;
}
.site-app .footer-apple-bottom-main {
    flex: 1 1 300px;
    min-width: 0;
}
.site-app .footer-apple-copyright {
    font-size: 11px;
    color: #6e6e73;
    margin: 0 0 8px;
}
.site-app .footer-apple-legal {
    font-size: 11px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 6px;
}
.site-app .footer-apple-legal a {
    color: #424245;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
}
.site-app .footer-apple-legal a:hover {
    color: #1d1d1f;
    text-decoration: underline;
}
.site-app .footer-apple-sep {
    color: #d2d2d7;
    user-select: none;
    font-weight: 300;
}
.site-app .footer-apple-region {
    font-size: 11px;
    color: #6e6e73;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
}
.site-app .footer-apple-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 11px 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: left;
    cursor: pointer;
}
.site-app .footer-apple-toggle__icon {
    width: 12px;
    height: 12px;
    position: relative;
    flex-shrink: 0;
    margin-left: 10px;
}
.site-app .footer-apple-toggle__icon::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #6e6e73;
    border-bottom: 1.5px solid #6e6e73;
    transform: rotate(45deg);
    margin: 0 auto;
    transition: transform 0.2s ease;
}
.site-app .footer-apple-toggle[aria-expanded='true'] .footer-apple-toggle__icon::after {
    transform: rotate(225deg);
}
@media (max-width: 767.98px) {
    .site-app .footer-apple-inner {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }
    .site-app .footer-apple-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .site-app .footer-apple-col {
        border-bottom: 1px solid #d2d2d7;
    }
    .site-app .footer-apple-col:last-of-type {
        border-bottom: 0;
    }
    .site-app .footer-apple-toggle {
        display: flex;
    }
    .site-app .footer-apple-collapse {
        padding-bottom: 12px;
    }
    .site-app .footer-apple-bottom {
        flex-direction: column;
        align-items: stretch;
    }
    .site-app .footer-apple-region {
        align-self: flex-end;
    }
}
@media (min-width: 768px) {
    .site-app .footer-apple-inner {
        padding-top: 18px;
        padding-bottom: 20px;
    }
}

/* Müşteri profili — kapak + avatar (Facebook tarzı çizgi) */
.site-app .customer-fb-profile.card {
    overflow-x: clip;
    max-width: 100%;
}
.site-app .customer-fb-cover {
    min-height: 220px;
    background-size: cover;
    background-position: center center;
    background-color: #e4e6eb;
}
.site-app .customer-fb-cover--empty {
    background-image: linear-gradient(135deg, #6366f1 0%, #312e81 55%, #1e1b4b 100%);
}
.site-app .customer-fb-head {
    margin-top: -76px;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .site-app .customer-fb-head {
        margin-top: -84px;
    }
}
.site-app .customer-fb-avatar-shell {
    flex-shrink: 0;
}
.site-app .customer-fb-avatar-img,
.site-app .customer-fb-avatar-fallback {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.15);
    object-fit: cover;
    background: #f1f5f9;
}
@media (min-width: 768px) {
    .site-app .customer-fb-avatar-img,
    .site-app .customer-fb-avatar-fallback {
        width: 168px;
        height: 168px;
    }
}
.site-app .customer-fb-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #4338ca;
    letter-spacing: -0.02em;
}
.site-app .customer-fb-name {
    color: #0f172a;
}
.site-app .customer-fb-strip {
    background: #fff;
    border-color: var(--line) !important;
    row-gap: 0.5rem;
}
.site-app .customer-fb-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid var(--line);
    transition: background 0.15s ease, border-color 0.15s ease;
}
.site-app .customer-fb-chip:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #312e81;
}
.site-app .customer-fb-chip--static {
    cursor: default;
}
.site-app .customer-fb-chip--accent {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #c7d2fe;
    color: #3730a3;
}
.site-app .customer-fb-chip-icon {
    font-size: 1rem;
    line-height: 1;
}
.site-app .customer-fb-settings label {
    display: block;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: #475569;
}
.site-app .customer-fb-settings input[type="text"],
.site-app .customer-fb-settings input[type="url"],
.site-app .customer-fb-settings textarea {
    width: 100%;
    max-width: 520px;
}
