﻿:root {
    --primary: #0284c7;
    --primary-dark: #075985;
    --accent: #22c55e;
    --accent-2: #8b5cf6;
    --dark: #0f172a;
    --light-bg: #f0f9ff;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.97);
    --shadow-card: 0 4px 24px -4px rgba(2, 132, 199, 0.08), 0 8px 16px -4px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px -12px rgba(2, 132, 199, 0.18), 0 12px 24px -8px rgba(0, 0, 0, 0.08);
    --gradient-hero: linear-gradient(145deg, #ecfeff 0%, #e0f2fe 38%, #f0fdf4 72%, #f8fafc 100%);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --section-padding-y: clamp(2.5rem, 6vw, 4rem);
    --container-px: clamp(1rem, 4vw, 1.5rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background-color: #f1f5f9;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14, 165, 233, 0.18), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(139, 92, 246, 0.08), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(34, 197, 94, 0.06), transparent);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.index-page { min-height: 100vh; display: flex; flex-direction: column; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; }

/* Header (musteri-header ile uyumlu) */
.sticky-top-wrapper { position: sticky; top: 0; z-index: 1000; width: 100%; }
.topnav {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}
.nav-link { font-weight: 600; color: #334155; margin: 0 6px; transition: 0.25s; position: relative; padding: 8px 0; }
@media (min-width: 992px) {
    .nav-link:hover { color: var(--primary); }
    .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background: var(--primary); transition: width 0.25s ease; }
    .nav-link:hover::after { width: 100%; }
}
.navbar-toggler { border: none; padding: 0.5rem; color: var(--dark); }
.navbar-toggler:focus { box-shadow: none; outline: 2px solid var(--primary); outline-offset: 2px; }
.announcement-bar {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    padding: 0.5rem var(--container-px);
    position: relative;
    z-index: 1001;
    text-align: center;
}
.pulse-icon { animation: pulse-animation 1.5s ease-in-out infinite; display: inline-block; }
@keyframes pulse-animation { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: 0.9; } }
@media (prefers-reduced-motion: reduce) { .pulse-icon { animation: none; } }

/* Buttons */
.btn-custom { padding: 0.75rem 1.5rem; border-radius: var(--radius-sm); font-weight: 700; transition: all 0.25s ease; border: none; }
.btn-primary-custom { background: var(--primary); color: white; box-shadow: 0 4px 14px -2px rgba(2, 132, 199, 0.4); }
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.45); }
.btn-outline-custom { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline-custom:hover { background: var(--primary); color: white; }
@media (max-width: 575.98px) {
    .btn-lg { padding: 0.7rem 1.25rem; font-size: 0.95rem; }
}

/* Hero â€” responsive + mesh */
.hero {
    padding: clamp(2rem, 8vw, 4rem) 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, black 20%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    animation: orb-float 14s ease-in-out infinite;
}
.hero-orbs span:nth-child(1) {
    width: min(320px, 55vw);
    height: min(320px, 55vw);
    background: rgba(14, 165, 233, 0.35);
    top: -8%;
    right: 5%;
    animation-delay: 0s;
}
.hero-orbs span:nth-child(2) {
    width: min(240px, 45vw);
    height: min(240px, 45vw);
    background: rgba(34, 197, 94, 0.22);
    bottom: 5%;
    left: -5%;
    animation-delay: -5s;
}
.hero-orbs span:nth-child(3) {
    width: min(180px, 35vw);
    height: min(180px, 35vw);
    background: rgba(139, 92, 246, 0.2);
    top: 40%;
    left: 35%;
    animation-delay: -8s;
}
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.98); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-orbs span { animation: none; opacity: 0.35; }
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    background: radial-gradient(circle, rgba(14,165,233,0.14) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: min(400px, 70vw);
    height: min(400px, 70vw);
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.hero-badge-pill {
    border: 1px solid rgba(2, 132, 199, 0.18);
    box-shadow: 0 8px 32px -8px rgba(2, 132, 199, 0.2);
    animation: hero-pill-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes hero-pill-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: clamp(1.85rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.text-gradient { background: linear-gradient(120deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { font-size: clamp(0.95rem, 1.8vw, 1.1rem); }
.hero-img-wrap { position: relative; z-index: 1; }
.hero-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px -20px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    background: var(--white);
    padding: 0.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (min-width: 768px) {
    .hero-img-box { transform: perspective(1000px) rotateY(-4deg) rotateX(1deg); }
    .hero-img-box:hover { transform: perspective(1000px) rotateY(0) rotateX(0); box-shadow: 0 28px 70px -20px rgba(0,0,0,0.18); }
}
.hero-img-box img { border-radius: var(--radius-md); width: 100%; height: auto; display: block; }
.hero-floating-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    margin: 0 auto;
    max-width: 200px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.15);
}
@media (max-width: 767.98px) { .hero-floating-badge { position: relative; bottom: auto; left: auto; right: auto; margin-top: 1rem; max-width: 100%; } }
.hero-trust-row { flex-wrap: wrap; gap: 0.75rem !important; font-size: 0.8rem; }
@media (max-width: 575.98px) { .hero-trust-row { flex-direction: column; align-items: flex-start !important; } }

/* Section spacing */
.index-section { padding-top: var(--section-padding-y); padding-bottom: var(--section-padding-y); }
.section-head { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.letter-spacing-2 { letter-spacing: 0.08em; }

/* Solution cards */
.solution-card {
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-md);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.35), rgba(34, 197, 94, 0.2), rgba(139, 92, 246, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.solution-card:hover::before { opacity: 1; }
.solution-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-hover); border-color: rgba(2, 132, 199, 0.25); }
.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: #f0f9ff;
    color: var(--primary);
    transition: all 0.25s ease;
}
.solution-card:hover .icon-wrapper { background: var(--primary); color: var(--white); }
.solution-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.solution-card p { font-size: 0.875rem; line-height: 1.55; }

/* Stats â€” responsive grid */
.stats-section {
    background: linear-gradient(155deg, #0c1222 0%, #1e293b 45%, #0f172a 100%);
    color: var(--white);
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    border-radius: var(--radius-xl);
    margin: clamp(1.5rem, 4vw, 2.5rem) 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.45), inset 0 1px 0 rgba(255,255,255,0.06);
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: min(360px, 60vw);
    height: min(360px, 60vw);
    background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 65%);
    pointer-events: none;
}
.stats-section .row { position: relative; z-index: 1; row-gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-item h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(120deg, #4ade80, #22c55e, #86efac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-item p { opacity: 0.85; margin: 0.25rem 0 0; font-size: clamp(0.8rem, 1.5vw, 0.95rem); }
@media (min-width: 768px) {
    .stats-section .col-md-3:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.12); }
}
@media (max-width: 767.98px) {
    .stats-section .col-md-3 { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
    .stats-section .col-md-3:last-child { border-bottom: none; padding-bottom: 0; }
}

/* Haberler bÃ¶lÃ¼mÃ¼ */
.news-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 45%, #eef2f7 100%);
    overflow: hidden;
}
.news-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    background: radial-gradient(circle, rgba(2, 132, 199, 0.09) 0%, transparent 68%);
    pointer-events: none;
}
.news-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: min(400px, 70vw);
    height: min(400px, 70vw);
    background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.news-section .container { position: relative; z-index: 1; }
.news-section-head .news-section-desc {
    color: #64748b;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    max-width: 36rem;
    line-height: 1.55;
    margin-top: 0.75rem;
}
.news-section .btn-news-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    border: 2px solid rgba(2, 132, 199, 0.35);
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.news-section .btn-news-all:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -12px rgba(2, 132, 199, 0.45);
}

.news-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255,255,255,0.8) inset;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px rgba(2, 132, 199, 0.18), 0 0 0 1px rgba(2, 132, 199, 0.12) inset;
    border-color: rgba(2, 132, 199, 0.22);
}
/* GÃ¶rsel kutusu: yÃ¼kseklik yÃ¼zdesi + flex ile bozulmasÄ±n diye absolute img */
.news-card__media {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #e2e8f0;
}
.news-card--featured .news-card__media {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.news-card__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover .news-card__img { transform: scale(1.04); }
.news-card__media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.55) 100%);
    opacity: 0.85;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.news-card:hover .news-card__media-overlay { opacity: 1; }
.news-card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.95), rgba(7, 89, 133, 0.9));
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.news-card__body {
    padding: clamp(1.15rem, 2.5vw, 1.65rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.65rem;
}
.news-card__date i { color: var(--primary); }
.news-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 0.65rem 0;
    letter-spacing: -0.02em;
}
.news-card__title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
.news-card__title a:hover { color: var(--primary); }
.news-card--featured .news-card__title { font-size: clamp(1.2rem, 2.2vw, 1.65rem); }
.news-card__excerpt {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 1rem 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card--compact .news-card__excerpt { -webkit-line-clamp: 2; font-size: 0.82rem; }
.news-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.2s ease;
}
.news-card__more i { font-size: 1rem; transition: transform 0.25s ease; }
.news-card__more:hover { color: var(--primary-dark); gap: 0.55rem; }
.news-card__more:hover i { transform: translate(3px, -3px); }

.news-card--compact {
    flex-direction: row;
    align-items: center;
    min-height: 0;
    border-radius: var(--radius-md);
}
.news-card--compact .news-card__media {
    width: 132px;
    height: 94px;
    flex: 0 0 132px;
}
.news-card--compact .news-card__body {
    padding: 0.8rem 0.9rem;
    justify-content: center;
    min-width: 0;
    flex: 1 1 auto;
}
.news-card--compact .news-card__title { font-size: 0.93rem; margin-bottom: 0.35rem; line-height: 1.25; }
.news-card--compact .news-card__tag { top: 0.65rem; left: 0.65rem; font-size: 0.58rem; padding: 0.3rem 0.55rem; }
.news-card--compact .news-card__date { margin-bottom: 0.35rem; font-size: 0.7rem; }
.news-card--compact .news-card__more { font-size: 0.78rem; }
.news-card--compact .news-card__excerpt { margin-bottom: 0.6rem; -webkit-line-clamp: 1; }
.news-right-list { display: flex; flex-direction: column; gap: 0.9rem; }
@media (min-width: 992px) {
    .news-right-list { height: 100%; justify-content: space-between; }
    .news-right-list .news-card--compact { min-height: 118px; }
}
@media (max-width: 575.98px) {
    .news-card--compact { flex-direction: column; align-items: stretch; }
    .news-card--compact .news-card__media {
        width: 100%;
        height: 0;
        flex: 0 0 auto;
        padding-bottom: 56.25%;
    }
}
@media (prefers-reduced-motion: reduce) {
    .news-card:hover .news-card__img { transform: none; }
    .news-card:hover { transform: translateY(-2px); }
}

/* CTA block â€” iletiÅŸim / bÃ¼yÃ¼me */
.cta-block {
    padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px -24px rgba(15, 23, 42, 0.45);
}
.cta-block--premium {
    background: linear-gradient(145deg, #0b1220 0%, #1e293b 42%, #0f172a 100%);
    text-align: center;
}
.cta-block__glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
    opacity: 0.5;
}
.cta-block__glow--1 {
    width: min(380px, 70vw);
    height: min(380px, 70vw);
    background: rgba(2, 132, 199, 0.35);
    top: -25%;
    right: -10%;
}
.cta-block__glow--2 {
    width: min(280px, 55vw);
    height: min(280px, 55vw);
    background: rgba(34, 197, 94, 0.18);
    bottom: -20%;
    left: -5%;
}
.cta-block__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 15%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 15%, transparent 75%);
    pointer-events: none;
}
.cta-block__inner { position: relative; z-index: 3; max-width: 44rem; margin: 0 auto; }
.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bae6fd;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(125, 211, 252, 0.25);
    margin-bottom: 1.25rem;
}
.cta-block__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.65rem, 4.2vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 1rem 0;
    color: #f8fafc;
}
.cta-block__accent {
    background: linear-gradient(120deg, #38bdf8, #22d3ee, #4ade80);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-block__lead {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.88);
    margin: 0 auto 1.75rem;
    max-width: 36rem;
}
.cta-block__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
}
.cta-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.75rem 1.35rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-family: inherit;
}
.cta-block__btn:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 3px;
}
.cta-block__btn--primary {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.35);
}
.cta-block__btn--primary:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.4);
}
.cta-block__btn--glass {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.cta-block__btn--glass:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-2px);
}
.cta-block__btn--outline {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid rgba(148, 163, 184, 0.45);
}
.cta-block__btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 575.98px) {
    .cta-block__actions { flex-direction: column; }
    .cta-block__btn { width: 100%; }
}
.cta-block .btn { min-height: 48px; padding: 0.65rem 1.25rem; }
@media (max-width: 575.98px) {
    .cta-block .d-flex { flex-direction: column; gap: 0.75rem !important; }
    .cta-block .btn { width: 100%; justify-content: center; }
}

/* SektÃ¶rel kartlar */
.sektor-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: clamp(0.875rem, 2vw, 1.25rem);
    min-height: 120px;
    height: 100%;
    transition: all 0.25s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.sektor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(2, 132, 199, 0.35); }
.sektor-card .sektor-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: #f0f9ff;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.sektor-card:hover .sektor-icon { background: var(--primary); color: var(--white); }
.sektor-card .sektor-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0; overflow: hidden; }
.sektor-card .sektor-title { font-weight: 700; font-size: clamp(0.8rem, 1.5vw, 0.95rem); line-height: 1.3; margin: 0 0 0.5rem 0; color: var(--dark); text-align: left; }
.sektor-card .sektor-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem; margin-top: auto; }
.sektor-card .sektor-links a { color: var(--primary); font-weight: 600; font-size: 0.8rem; text-decoration: none; line-height: 1.4; }
.sektor-card .sektor-links a:hover { text-decoration: underline; }
.sektor-card .sektor-links a.btn-modal { background: none; border: none; padding: 0; cursor: pointer; text-align: left; color: #b91c1c !important; font-weight: 700; }
.sektor-card .sektor-links a.btn-modal:hover { color: #991b1b !important; text-decoration: underline; }
@media (max-width: 400px) {
    .sektor-card { min-height: 100px; padding: 0.75rem; }
    .sektor-card .sektor-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1.1rem; }
}

/* Instagram */
.instagram-section {
    background: #f1f5f9;
    padding: clamp(2rem, 5vw, 3rem) 0;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
}
.instagram-section h2 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; margin-bottom: 1.25rem; text-align: center; }
.instagram-section a.instagram-outer { color: inherit; text-decoration: none; }
.instagram-marquee-wrap { overflow: hidden; width: 100%; margin: 0 -0.5rem; }
.instagram-track { display: flex; gap: 0.75rem; width: max-content; animation: instagram-slide 45s linear infinite; }
.instagram-track:hover { animation-play-state: paused; }
@keyframes instagram-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .instagram-track { animation: none; } }
.instagram-item { flex: 0 0 auto; width: clamp(140px, 22vw, 200px); height: clamp(140px, 22vw, 200px); border-radius: var(--radius-sm); overflow: hidden; background: #e2e8f0; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.instagram-item.placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f09333 0%, #e1306c 50%, #405de6 100%); color: #fff; font-size: 1.75rem; }

/* YouTube kanal daveti (footer Ã¼stÃ¼) */
.youtube-cta-section { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); color: #fff; padding: 1.5rem 0; border-top: 1px solid #e2e8f0; }
.youtube-cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem 1.5rem; }
.youtube-cta-icon { width: 56px; height: 56px; border-radius: 12px; background: #ff0000; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; }
.youtube-cta-text { text-align: center; text-align: left; }
.youtube-cta-name { font-weight: 800; font-size: 1.25rem; margin-bottom: 0.15rem; }
.youtube-cta-handle { font-size: 0.9rem; color: #aaa; margin-bottom: 0.35rem; }
.youtube-cta-meta { font-size: 0.8rem; color: #888; margin-bottom: 0.25rem; }
.youtube-cta-desc { font-size: 0.8rem; color: #b0b0b0; max-width: 320px; }
.youtube-cta-desc a { color: #fff; text-decoration: underline; }
.youtube-cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #ff0000; color: #fff; font-weight: 700; padding: 0.6rem 1.25rem; border-radius: 999px; text-decoration: none; font-size: 0.95rem; transition: background 0.2s; }
.youtube-cta-btn:hover { background: #cc0000; color: #fff; }
@media (max-width: 575.98px) { .youtube-cta-text { text-align: center; } .youtube-cta-desc { margin-left: auto; margin-right: auto; } }

footer.footer { margin-top: auto !important; border-top: 1px solid #e2e8f0; }

/* Sizi ArayalÄ±m butonu (saÄŸ alt) */
.callme-fab {
    position: fixed;
    right: 18px;
    bottom: 90px;
    z-index: 1050;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #f9fafb;
    border: none;
    box-shadow: 0 18px 40px -16px rgba(22,163,74,0.8);
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.callme-fab i { font-size: 1.1rem; }
.callme-fab:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #f9fafb;
    transform: translateY(-1px);
}
.callme-fab:focus {
    outline: 2px solid #bbf7d0;
    outline-offset: 2px;
}
@media (max-width: 575.98px) {
    .callme-fab {
        right: 12px;
        bottom: 80px;
        padding: 9px 14px;
        font-size: 0.8rem;
    }
    .callme-fab span {
        display: none;
    }
}

/* Destek Talebinde Bulun butonu (Sizi ArayalÄ±m Ã¼stÃ¼nde) */
.destek-fab {
    position: fixed;
    right: 18px;
    bottom: 155px;
    z-index: 1050;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #f9fafb;
    border: none;
    box-shadow: 0 18px 40px -16px rgba(79, 70, 229, 0.6);
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.destek-fab i { font-size: 1.1rem; }
.destek-fab:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    color: #f9fafb;
    transform: translateY(-1px);
}
.destek-fab:focus {
    outline: 2px solid #c7d2fe;
    outline-offset: 2px;
}
@media (max-width: 575.98px) {
    .destek-fab {
        right: 12px;
        bottom: 145px;
        padding: 9px 14px;
        font-size: 0.8rem;
    }
    .destek-fab span {
        display: none;
    }
}

/* E-Fatura Sorgulama CTA */
.efatura-cta-block {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.efatura-cta-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.35) !important;
    color: #fff;
}
.efatura-cta-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
}
.efatura-cta-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    margin: 0;
    color: #fff;
}
.efatura-cta-desc {
    font-size: 1rem;
    opacity: 0.95;
    color: rgba(255,255,255,0.95);
}
.efatura-cta-desc strong { color: #fff; }
.efatura-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0f766e;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.efatura-cta-block:hover .efatura-cta-btn {
    background: #ccfbf1;
    color: #0f766e;
}

/* EÄŸitim videolarÄ± kayan ÅŸerit (Instagram kutu boyutu) */
.video-strip-section { background: #f8fafc; border-top: 1px solid #e2e8f0; }
.video-strip-wrap { margin: 0 -0.5rem; overflow: hidden; }
.video-strip-track {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    animation: videoStripScroll 50s linear infinite;
}
.video-strip-track:hover { animation-play-state: paused; }
.video-strip-item {
    flex-shrink: 0;
    width: clamp(200px, 28vw, 280px);
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-strip-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.video-strip-thumb {
    width: 100%;
    height: clamp(200px, 28vw, 280px);
    position: relative;
    background: #e2e8f0;
    overflow: hidden;
}
.video-strip-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-strip-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 2rem;
    opacity: 0.9;
}
.video-strip-item:hover .video-strip-play { background: rgba(220, 38, 38, 0.7); }
.video-strip-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: #fff;
    font-size: 2rem;
}
.video-strip-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    padding: 0.65rem 0.75rem 0.85rem;
    text-align: center;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.video-strip-item:hover .video-strip-title { color: #0f172a; }
@keyframes videoStripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Referans kayan ÅŸerit */
.ref-strip-section { background: #f1f5f9; }
.ref-strip-wrap { margin: 0 -15px; }
.ref-strip-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: refStripScroll 40s linear infinite;
}
.ref-strip-track:hover { animation-play-state: paused; }
.ref-strip-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    min-height: 72px;
    padding: 8px 10px 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ref-strip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.ref-strip-item img {
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
    filter: grayscale(0.4);
    opacity: 0.85;
}
.ref-strip-item:hover img { filter: grayscale(0); opacity: 1; }
.ref-strip-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 6px;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ref-strip-item:hover .ref-strip-name { color: #0f172a; }
@keyframes refStripScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HÄ±zlÄ± eriÅŸim ÅŸeridi */
.quick-actions-bar {
    position: relative;
    z-index: 3;
    margin-top: -1.25rem;
    padding-bottom: 0.5rem;
}
.quick-actions-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 999px;
    box-shadow: 0 12px 40px -18px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(255,255,255,0.6) inset;
}
.quick-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.quick-action-link i { font-size: 1rem; color: var(--primary); }
.quick-action-link:hover {
    color: var(--primary-dark);
    background: #f0f9ff;
    border-color: rgba(2, 132, 199, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -10px rgba(2, 132, 199, 0.35);
}
@media (max-width: 575.98px) {
    .quick-actions-bar { margin-top: 0; padding: 0 0 0.5rem; }
    .quick-actions-inner { border-radius: var(--radius-md); justify-content: flex-start; }
    .quick-action-link { flex: 1 1 auto; justify-content: center; min-width: calc(50% - 0.35rem); }
}

/* Scroll reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.row .reveal-item:nth-child(1) { transition-delay: 0.03s; }
.row .reveal-item:nth-child(2) { transition-delay: 0.08s; }
.row .reveal-item:nth-child(3) { transition-delay: 0.13s; }
.row .reveal-item:nth-child(4) { transition-delay: 0.18s; }
.row .reveal-item:nth-child(5) { transition-delay: 0.23s; }
.row .reveal-item:nth-child(6) { transition-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) {
    .reveal-item { opacity: 1; transform: none; transition: none; }
    .row .reveal-item { transition-delay: 0s !important; }
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1), rgba(34, 197, 94, 0.08));
    border: 1px solid rgba(2, 132, 199, 0.15);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--primary-dark);
}
button.quick-action-link {
    cursor: pointer;
    font: inherit;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.07) 45%, transparent 70%);
    background-size: 200% 100%;
    animation: cta-shine 8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes cta-shine {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
    .cta-block::before { animation: none; opacity: 0.5; }
}

/* v3 — Toast bildirimi */
.idx-toast {
    position: fixed; top: 88px; right: 16px; z-index: 9999;
    display: flex; align-items: center; gap: 10px;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 16px; border-radius: 14px;
    background: #fff; border: 1px solid #a7f3d0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
    color: #065f46; font-weight: 600; font-size: 0.88rem;
    animation: idx-toast-in 0.35s ease;
}
.idx-toast i.bi-check-circle-fill { color: #10b981; font-size: 1.2rem; flex-shrink: 0; }
.idx-toast__close {
    margin-left: auto; border: none; background: #f1f5f9; width: 28px; height: 28px;
    border-radius: 8px; cursor: pointer; color: #64748b; display: flex; align-items: center; justify-content: center;
}
@keyframes idx-toast-in {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* v3 — SEO intro (görünür, okunaklı) */
.seo-intro {
    padding: 28px 0; background: #f8fafc; border-top: 1px solid #e2e8f0;
}
.seo-intro p {
    margin: 0; font-size: 0.88rem; line-height: 1.7; color: #475569; text-align: center; max-width: 820px; margin-inline: auto;
}
.seo-intro a { color: var(--primary); font-weight: 700; text-decoration: none; }
.seo-intro a:hover { text-decoration: underline; }

/* v3 — Bölüm ritmi: alternatif arka plan */
.index-section:nth-of-type(even) { background: #fff; }
.index-section { background: transparent; }

/* v3 — Çözüm kartları kontrast */
.solution-card {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
}
.solution-card h4 { color: #0f172a !important; }
.solution-card p { color: #64748b !important; }

/* v3 — İstatistik bandı */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: var(--radius-lg) !important;
}

/* v3 — Hızlı aksiyon şeridi */
.quick-actions-bar {
    background: #fff !important;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.quick-actions-bar a { color: #334155 !important; font-weight: 700; }
.quick-actions-bar a:hover { color: var(--primary) !important; }

/* v3 — İletişim şeridi okunaklılık */
.contact-strip { background: #0f172a !important; }
.contact-strip-item, .contact-strip-item a { color: #e2e8f0 !important; }
.contact-strip-item a:hover { color: #fff !important; }
.idx-toast--error { border-color: #fecaca; color: #991b1b; }
.idx-toast--error i.bi-exclamation-circle-fill { color: #ef4444; }
.idx-toast--warning { border-color: #fde68a; color: #92400e; }
.idx-toast--warning i.bi-exclamation-triangle-fill { color: #f59e0b; }

.index-section--white { background: #fff; }

/* Ä°letiÅŸim / Telefon ÅŸeridi */
.contact-strip {
    background: linear-gradient(90deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
    color: #cbd5e1;
    padding: 0.55rem 0;
    font-size: 0.78rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-strip a { color: #7dd3fc; text-decoration: none; transition: color 0.2s; }
.contact-strip a:hover { color: #fff; }
.contact-strip-inner {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 0.4rem 1.25rem;
}
.contact-strip-item { display: inline-flex; align-items: center; gap: 0.35rem; }
.contact-strip-item i { font-size: 0.85rem; }
.contact-strip-sep { color: rgba(255,255,255,0.2); }
@media (max-width: 575.98px) {
    .contact-strip { display: none; }
}

/* Neden Bilensoft */
.why-section { background: linear-gradient(180deg, #fff 0%, #f0f9ff 100%); }
.why-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(2,132,199,0.25); }
.why-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.25s;
}
.why-card:hover .why-icon { transform: scale(1.1); }
.why-card h5 { font-weight: 800; font-size: 0.95rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.825rem; color: #64748b; line-height: 1.6; margin: 0; }

/* E-imza CTA */
.eimza-cta {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #6d28d9 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    overflow: hidden;
}
.eimza-cta::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.eimza-cta::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(196,181,253,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.eimza-inner { position: relative; z-index: 2; }
.eimza-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.7rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #e9d5ff;
    margin-bottom: 1rem;
}
.eimza-cta h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 800; margin-bottom: 0.6rem; color: #fff; }
.eimza-cta p { font-size: 0.9rem; opacity: 0.9; margin: 0; color: rgba(255,255,255,0.9); }
.eimza-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #fff; color: #4f46e5;
    font-weight: 800; font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.eimza-btn:hover { background: #f5f3ff; color: #4f46e5; transform: translateY(-2px); }
.eimza-features { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-top: 1rem; }
.eimza-feat { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; opacity: 0.9; }

/* FAQ */
.faq-section { background: #f8fafc; }
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    margin-bottom: 0.65rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-q {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    color: var(--dark);
    border: none; background: none;
    width: 100%; text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-q i { font-size: 1rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-q.open { color: var(--primary); }
.faq-a {
    padding: 0 1.25rem 1rem;
    font-size: 0.855rem; color: #64748b;
    line-height: 1.7;
    display: none;
}
.faq-a.show { display: block; }
