:root {
    --navy: #0f2744;
    --navy-mid: #1e3a5f;
    --blue: #2563eb;
    --blue-soft: #60a5fa;
    --blue-pale: #e8f0fe;
    --bg: #f4f7fb;
    --surface: #ffffff;
    --text: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15, 39, 68, 0.06);
    --shadow-lg: 0 12px 40px rgba(15, 39, 68, 0.1);
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Top bar — ISS uyarısı */
.iss-top-bar {
    background: #0c1929;
    color: #e2e8f0;
    padding: 10px 0;
    border-bottom: 2px solid #f59e0b;
}
.top-bar-inner { text-align: center; }
.top-bar-title {
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.top-bar-disclaimer {
    display: block;
    font-size: 12px;
    line-height: 1.55;
    color: #cbd5e1;
    max-width: 960px;
    margin: 0 auto;
}

/* ISS bilgi kutusu */
.iss-notice {
    display: flex;
    gap: 14px;
    background: #fffbeb;
    border: 2px solid #f59e0b;
    border-radius: var(--radius);
    padding: 16px 18px;
    margin: 20px 0 0;
    text-align: left;
    max-width: 100%;
}
.hero .iss-notice {
    background: rgba(255, 251, 235, 0.95);
    margin-top: 24px;
}
.iss-notice-icon { font-size: 22px; flex-shrink: 0; line-height: 1.2; }
.iss-notice-body { font-size: 13px; color: #78350f; line-height: 1.6; }
.iss-notice-title {
    font-weight: 700;
    color: #92400e;
    font-size: 14px;
    margin-bottom: 8px;
}
.iss-notice-body p { margin-bottom: 8px; }
.iss-notice-list {
    margin: 10px 0 0 18px;
    font-size: 12px;
}
.iss-notice-list li { margin-bottom: 4px; }

.footer-iss-block {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
    text-align: left;
    font-size: 13px;
    line-height: 1.65;
    color: #cbd5e1;
}
.footer-iss-title {
    color: #fbbf24;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}
.footer-iss-block p { margin-bottom: 10px; }
.footer-iss-block strong { color: #fde68a; }

/* Header */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(15,39,68,0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    min-height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    list-style: none;
}
.main-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
}
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 20px;
    cursor: pointer;
    color: var(--navy);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
}
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--navy-mid);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-secondary {
    background: var(--navy-mid);
    color: #fff;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #2d4a6f 100%);
    color: #fff;
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 85% 20%, rgba(96, 165, 250, 0.15), transparent);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(96, 165, 250, 0.2);
    color: var(--blue-soft);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(96, 165, 250, 0.3);
}
.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.hero-lead {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 540px;
    margin-bottom: 14px;
}
.hero-sub {
    font-size: 0.95rem;
    color: #94a3b8;
    max-width: 540px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.hero-hours {
    margin-top: 20px;
    font-size: 13px;
    color: #94a3b8;
}
.iss-notice--info {
    background: #f0f9ff;
    border-color: #7dd3fc;
}
.iss-notice--info .iss-notice-body { color: #0c4a6e; }
.iss-notice--info .iss-notice-title { color: #0369a1; }
.iss-notice-foot {
    margin-top: 12px;
    font-size: 13px;
    color: #475569;
}
.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.hero-keywords span {
    font-size: 12px;
    background: rgba(255,255,255,0.08);
    padding: 6px 12px;
    border-radius: 6px;
    color: #e2e8f0;
}
.hero-visual {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.hero-stat {
    background: rgba(255,255,255,0.06);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
}
.hero-stat strong { display: block; font-size: 1.5rem; color: var(--blue-soft); }
.hero-stat span { font-size: 12px; color: #94a3b8; }
.hero-compact { text-align: center; padding: 56px 0 64px; }
.hero-compact h1 { margin-bottom: 12px; }
.hero-compact p { color: #cbd5e1; max-width: 640px; margin: 0 auto; }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--surface); }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}
.section-header p { color: var(--text-muted); }

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-icon {
    width: 48px;
    height: 48px;
    background: var(--blue-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.service-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); }
.service-card a {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s;
}
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-category {
    position: absolute;
    margin: 12px;
    z-index: 1;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}
.product-card { position: relative; }
.product-card-img {
    height: 200px;
    background: #fafbfc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid var(--border);
}
.product-card-img img { max-height: 160px; object-fit: contain; }
.product-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.product-card-body > p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.product-features {
    list-style: none;
    font-size: 13px;
    margin-bottom: 12px;
}
.product-features li::before { content: '✓ '; color: var(--blue); font-weight: 700; }
.spec-details { margin-bottom: 12px; font-size: 13px; }
.spec-details summary { cursor: pointer; color: var(--blue); font-weight: 600; }
.spec-table {
    width: 100%;
    margin-top: 8px;
    border-collapse: collapse;
    font-size: 12px;
}
.spec-table th, .spec-table td {
    padding: 6px 8px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.spec-table th { color: var(--text-muted); font-weight: 500; width: 45%; }
.product-shipping { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.product-card-footer { margin-top: auto; }
.product-price { margin-bottom: 14px; }
.price-label { font-size: 11px; color: var(--text-muted); display: block; }
.product-price strong { font-size: 1.35rem; color: var(--navy); }
.price-note { font-size: 10px; color: var(--text-muted); display: block; margin-top: 2px; }

/* Category tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
}
.category-tabs a {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
}
.category-tabs a:hover, .category-tabs a.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.blog-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: inherit;
}
.blog-card-img {
    height: 140px;
    background: linear-gradient(135deg, var(--navy-mid), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}
.blog-card-body { padding: 22px; flex: 1; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { font-size: 14px; color: var(--text-muted); }
.blog-read { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--blue); }

/* Trust */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.trust-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.trust-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.trust-card p, .trust-card li { font-size: 14px; color: var(--text-muted); }
.trust-card ul { list-style: none; margin-top: 8px; }
.trust-card li { margin-bottom: 6px; }
.trust-card li strong { color: var(--navy); }

/* Comparison table */
.compare-table-wrap { overflow-x: auto; margin-top: 24px; }
.compare-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.compare-table th, .compare-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    font-size: 14px;
}
.compare-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}
.compare-table tbody th { color: var(--text-muted); font-weight: 500; width: 28%; }

/* Content page */
.content-panel {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    margin: -40px auto 80px;
    max-width: 900px;
}
.content-panel h2 { color: var(--navy); margin: 28px 0 12px; font-size: 1.25rem; }
.content-panel h2:first-child { margin-top: 0; }
.content-panel p, .content-panel li { color: var(--text); margin-bottom: 12px; }
.content-panel ul, .content-panel ol { margin-left: 20px; margin-bottom: 16px; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: -40px auto 80px;
}
.contact-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-card h2 { color: var(--navy); margin-bottom: 20px; }
.contact-item { margin-bottom: 20px; }
.contact-item label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 4px; }
.contact-item a, .contact-item p { color: var(--navy); font-weight: 500; text-decoration: none; }
.contact-secondary { font-size: 14px; color: var(--text-muted); margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
form input, form select, form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 14px;
    font-family: inherit;
    font-size: 15px;
    background: var(--bg);
}
form input:focus, form textarea:focus, form select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: #94a3b8;
    padding: 64px 0 24px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 48px;
}
.footer-logo { color: #fff; font-size: 1.1rem; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
    font-size: 11px;
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 6px;
    color: #cbd5e1;
}
.footer-heading { color: #fff; font-size: 14px; margin-bottom: 16px; font-weight: 600; }
.footer-links, .footer-contact { list-style: none; font-size: 13px; }
.footer-links li, .footer-contact li { margin-bottom: 8px; }
.footer-links a, .footer-contact a { color: #94a3b8; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
}
.footer-disclaimer { margin-bottom: 12px; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Cookie */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: #e2e8f0;
    padding: 14px 0;
    z-index: 9000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cookie-inner p { font-size: 13px; margin: 0; }
.cookie-inner a { color: var(--blue-soft); }

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

.blog-article h2 {
    color: var(--navy);
    font-size: 1.15rem;
    margin: 28px 0 10px;
}
.blog-article p, .blog-article li { margin-bottom: 12px; }
.blog-article ul { margin-left: 20px; }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
    }
    .main-nav.is-open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 10px 0; }
    .site-header .container { position: relative; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: left; }
    .content-panel, .contact-card { padding: 24px; }
    .section { padding: 48px 0; }
    .products-grid { grid-template-columns: 1fr; }
}

/* Açılış arama pop-up (yalnızca mobil) */
body.call-enter-modal-is-open .cookie-banner,
body.call-enter-modal-is-open .site-header,
body.call-enter-modal-is-open .iss-top-bar,
body.call-enter-modal-is-open .page-main,
body.call-enter-modal-is-open .site-footer {
    visibility: hidden !important;
    pointer-events: none !important;
}

#call-enter-modal[hidden] { display: none !important; }
#call-enter-modal {
    position: fixed; inset: 0; z-index: 2147483646;
    display: flex; align-items: center; justify-content: center;
    padding: 16px; font-family: var(--font);
}
.call-enter-modal__backdrop {
    position: absolute; inset: 0;
    background: rgba(15, 39, 68, 0.75);
    backdrop-filter: blur(6px);
}
.call-enter-modal__sheet {
    position: relative; z-index: 1; width: 100%; max-width: 440px;
    max-height: min(92vh, 720px); background: var(--surface); border-radius: 24px;
    overflow: hidden; display: flex; flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    animation: call-modal-in 0.35s ease;
}
@keyframes call-modal-in {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.call-enter-modal__hero-visual {
    position: relative; height: 108px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.call-enter-modal__fiber {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(96, 165, 250, 0.35) 8px, rgba(96, 165, 250, 0.35) 10px);
    animation: call-fiber-move 3s linear infinite;
}
@keyframes call-fiber-move { from { transform: translateX(0); } to { transform: translateX(20px); } }
.call-enter-modal__stat--hero {
    position: relative; z-index: 1; text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px; padding: 8px 16px 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); min-width: 140px;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-wait-counter {
    display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 2px;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-wait-num {
    font-size: 1.5rem; font-weight: 800; color: var(--blue); font-variant-numeric: tabular-nums;
}
.call-enter-modal__stat--hero .call-enter-modal__stat-wait-unit { font-size: 0.75rem; font-weight: 700; color: var(--navy); }
.call-enter-modal__stat--hero .call-enter-modal__stat-title { font-size: 11px; margin: 0 0 1px; font-weight: 800; color: var(--navy); }
.call-enter-modal__stat--hero .call-enter-modal__stat-sub { font-size: 9px; color: var(--text-muted); margin: 0; }
.call-enter-modal__brand {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 10px;
}
.call-enter-modal__hook {
    display: flex; gap: 12px; align-items: center; text-align: left;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 2px solid #fdba74; border-radius: 14px; padding: 12px 14px;
    margin-bottom: 16px;
}
.call-enter-modal__hook-icon { font-size: 26px; flex-shrink: 0; line-height: 1; align-self: flex-start; margin-top: 2px; }
.call-enter-modal__hook-body { flex: 1; min-width: 0; }
.call-enter-modal__hook-title {
    display: block; color: #9a3412; font-size: 15px; font-weight: 700;
    margin: 0 0 4px; line-height: 1.3;
}
.call-enter-modal__hook p { margin: 0; font-size: 13px; color: #c2410c; line-height: 1.5; }
.call-enter-modal__inner {
    flex: 1; overflow-y: auto; padding: 24px 24px 80px; text-align: center;
}
.call-enter-modal__h1 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
.call-enter-modal__lead { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.call-enter-modal__lead strong { color: var(--blue); }
.call-enter-modal__tel {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    width: 100%; padding: 16px 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff !important; text-decoration: none; border-radius: 16px;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35); margin-bottom: 16px;
}
.btn-pulse { animation: call-btn-pulse 2s ease-in-out infinite; }
@keyframes call-btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}
.call-enter-modal__tel-label { font-size: 12px; font-weight: 600; opacity: 0.9; }
.call-enter-modal__tel-num { font-size: 1.35rem; font-weight: 800; letter-spacing: 0.02em; }
.call-enter-modal__benefits {
    list-style: none; text-align: left; margin: 0 0 14px; padding: 14px 16px;
    background: var(--blue-pale); border-radius: 12px; border: 1px solid #bfdbfe;
}
.call-enter-modal__benefits li {
    font-size: 13px; color: var(--navy-mid); margin-bottom: 6px; padding-left: 22px; position: relative;
}
.call-enter-modal__benefits li::before {
    content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 800;
}
.call-enter-modal__benefits li:last-child { margin-bottom: 0; }
.call-enter-modal__hint--legal { font-size: 10px; color: var(--text-muted); line-height: 1.45; margin-bottom: 0; }
.call-enter-modal__x {
    position: absolute; top: 12px; right: 12px; z-index: 5;
    width: 36px; height: 36px; border: 0; background: rgba(255,255,255,0.9);
    color: var(--text-muted); cursor: pointer; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.call-enter-modal__dock {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff !important; text-decoration: none; font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    #call-enter-modal { padding: 0; align-items: stretch; }
    .call-enter-modal__sheet {
        max-width: none; max-height: none; height: 100%; border-radius: 0;
    }
    .call-enter-modal__inner { padding-bottom: 72px; }
}

/* ===== v20 Kurumsal dönüşüm ===== */
.disclaimer-bar {
    background: #0f1c30;
    color: #94a3b8;
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.disclaimer-bar__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
    flex-shrink: 0;
}
.disclaimer-bar__text { letter-spacing: 0.01em; }
.disclaimer-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    text-align: center;
}
.disclaimer-bar strong { color: #e2e8f0; font-weight: 700; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1rem; color: var(--navy); }
.logo-text small { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }
.header-phone {
    display: none;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
}
@media (min-width: 900px) { .header-phone { display: inline; } }

.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    padding: 56px 0 64px;
    text-align: center;
}
.page-hero__inner { max-width: 720px; margin: 0 auto; }
.page-hero__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 12px;
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); margin-bottom: 12px; }
.page-hero p { color: #cbd5e1; font-size: 1.05rem; }

.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}
.section-compact { padding: 32px 0; }

.hero--premium { padding: 80px 0 96px; }
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15,39,68,0.94) 0%, rgba(30,58,95,0.9) 45%, rgba(15,39,68,0.88) 100%);
    pointer-events: none;
}
.hero__bg--mesh {
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(56,189,248,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(99,102,241,0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15,39,68,0.96) 0%, rgba(30,58,95,0.92) 50%, rgba(15,39,68,0.9) 100%);
}
.hero__bg--mesh::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2338bdf8' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}
.hero--premium .hero-grid { position: relative; z-index: 1; }
.text-gradient {
    background: linear-gradient(90deg, #38bdf8, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-trust-strip {
    margin: 20px 0;
    padding: 12px 16px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 10px;
}
.hero-trust-strip__warn { font-size: 13px; font-weight: 600; color: #fde68a; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-pills span {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e2e8f0;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #fff; }

.hero-visual--premium { background: transparent; border: none; padding: 0; backdrop-filter: none; }
.hero-card-stack { display: flex; flex-direction: column; gap: 16px; }
.hero-float-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    backdrop-filter: blur(12px);
}
.hero-float-card--accent { border-color: rgba(56, 189, 248, 0.4); background: rgba(56, 189, 248, 0.08); }
.hero-float-card__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: #94a3b8; }
.hero-float-card strong { display: block; font-size: 1.2rem; margin: 6px 0; color: #fff; }
.hero-float-card p { font-size: 13px; color: #cbd5e1; margin: 0; }

.services-grid--premium { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.service-card--premium {
    padding: 28px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.service-card--premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-pale);
    margin-bottom: 16px;
    position: relative;
}
.service-card__icon::after {
    content: '';
    position: absolute;
    inset: 12px;
    background: var(--blue);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
.service-card__icon--modem::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 8h16v10H4zM7 18v2M12 18v2M17 18v2M8 4h8v4H8z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M4 8h16v10H4zM7 18v2M12 18v2M17 18v2M8 4h8v4H8z'/%3E%3C/svg%3E"); }
.service-card__icon--wifi::after { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 18a2 2 0 100-4 2 2 0 000 4zm-5-3a7 7 0 019.9 0M5 9a12 12 0 0114 0' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 18a2 2 0 100-4 2 2 0 000 4zm-5-3a7 7 0 019.9 0M5 9a12 12 0 0114 0' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E"); }
.service-card__icon--fiber::after,
.service-card__icon--home-internet::after,
.service-card__icon--sim::after,
.service-card__icon--router::after,
.service-card__icon--mesh::after,
.service-card__icon--network::after {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E");
}
.service-card__link { font-size: 14px; font-weight: 600; text-decoration: none; }

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
.why-list { margin: 20px 0 28px; padding-left: 20px; }
.why-list li { margin-bottom: 12px; }
.why-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}
.why-panel--dark {
    background: var(--navy);
    color: #e2e8f0;
    border-color: transparent;
}
.why-panel--dark h3 { color: #fff; }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    color: var(--navy);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
    padding: 0 20px 18px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-answer a { color: var(--blue); }

.trust-grid--corporate { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.trust-card--premium {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: box-shadow 0.2s;
}
.trust-card--premium:hover { box-shadow: var(--shadow); }
.trust-card__icon { font-size: 28px; margin-bottom: 12px; }
.trust-card__link { font-size: 14px; font-weight: 600; }

.cta-band {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
    padding: 0;
}
.cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 56px 24px;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #cbd5e1; max-width: 560px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.content-panel { max-width: 820px; margin: 0 auto; }
.content-panel h2 { color: var(--navy); margin: 32px 0 12px; font-size: 1.25rem; }
.content-panel p, .content-list { margin-bottom: 16px; line-height: 1.75; }
.content-list { padding-left: 22px; }
.legal-panel h2 { margin-top: 28px; }
.legal-panel h3 { color: var(--navy); margin: 22px 0 10px; font-size: 1.05rem; }
.legal-panel--cookies { max-width: 960px; }
.legal-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.legal-signoff { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 14px; }
.cookie-table-wrap { overflow-x: auto; margin: 16px 0 28px; -webkit-overflow-scrolling: touch; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 13.5px; line-height: 1.5; min-width: 640px; }
.cookie-table th, .cookie-table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; vertical-align: top; }
.cookie-table th { background: var(--surface-alt, #f1f5f9); color: var(--navy); font-weight: 700; }
.cookie-table td code { font-size: 12px; word-break: break-all; }
.legal-note { font-size: 13px; color: var(--text-muted); background: #f8fafc; border-left: 3px solid var(--blue, #2563eb); padding: 12px 14px; margin: 16px 0; line-height: 1.6; }
.legal-notice-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.65;
}
.legal-hub-list { list-style: none; }
.legal-hub-list li { margin-bottom: 10px; }
.legal-hub-list a { font-weight: 600; font-size: 16px; }

.service-detail-card {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card h2 { font-size: 1.35rem; color: var(--navy); margin-bottom: 10px; }

.form-lead, .contact-note { font-size: 13px; color: var(--text-muted); }
.form-success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.footer-legal-bar {
    background: #e8ecf1;
    border-top: 1px solid #d1d5db;
    padding: 20px 0 24px;
    font-size: 13px;
}
.footer-legal-bar__inner { display: flex; flex-direction: column; gap: 16px; }
.footer-legal-bar__copy { font-weight: 600; color: #1f2937; margin: 0; }
.footer-legal-bar__phone { margin: 4px 0 0; color: #4b5563; }
.footer-legal-bar__phone a { color: #1f2937; text-decoration: underline; }
.footer-legal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.footer-legal-grid a {
    color: #1f2937;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}
.footer-legal-grid a:hover { color: var(--blue); }

.fixed-call-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
}
.call-widget-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 100px;
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
    font-size: 12px;
    transition: transform 0.2s;
}
.call-widget-btn:hover { transform: translateY(-2px); color: #fff; }
.call-widget-text strong { font-size: 14px; display: block; }
.call-widget-scope { display: block; font-size: 10px; font-weight: 500; opacity: .85; margin-top: 2px; line-height: 1.2; }
.page-impressum .fixed-call-widget { display: none; }

.impressum {
    max-width: 880px;
    margin: 0 auto;
    padding: 56px 20px 80px;
    font-size: 16px;
    line-height: 1.65;
    color: #000;
}
.impressum h1 { font-size: 2rem; font-weight: 700; margin: 0 0 32px; }
.impressum h2 { font-size: 1rem; font-weight: 700; margin: 32px 0 12px; }
.impressum-company, .impressum-names { margin: 0 0 32px; }
.impressum-block { margin-bottom: 32px; }
.impressum-line { margin: 0 0 6px; }
.impressum a { color: inherit; text-decoration: underline; }
.page-impressum .page-main { background: #fff; }

.mt-4 { margin-top: 24px; }
.text-center { text-align: center; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual--premium { order: -1; }
    .why-grid { grid-template-columns: 1fr; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .cta-band__actions { justify-content: center; }
    .fixed-call-widget { bottom: 16px; right: 16px; }
    .call-widget-text { display: none; }
    .call-widget-btn { padding: 16px; border-radius: 50%; }
}

/* ===== v22 Premium 2026 ===== */
.glass-card {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(15,39,68,0.06);
}
.glass-card--hero {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
}
.hero--v22 { position: relative; overflow: hidden; }
.btn-ghost-light { color: #e2e8f0; border: 1px solid rgba(255,255,255,0.2); background: transparent; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cta-band__legal { font-size: 12px; color: #94a3b8; margin-top: 12px; max-width: 560px; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--step-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Tabs */
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.tabs-nav--pills .tabs-nav__btn {
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.tabs-nav--pills .tabs-nav__btn.is-active,
.tabs-nav--pills .tabs-nav__btn:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.tabs-panel { display: none; }
.tabs-panel.is-active { display: block; }
.tabs-panel h3 { color: var(--navy); margin-bottom: 12px; }
.transparency-lead { line-height: 1.75; color: var(--text-muted); margin-bottom: 16px; }
.transparency-list { padding-left: 20px; line-height: 1.8; }
.transparency-list li { margin-bottom: 8px; }
.transparency-operator { padding: 28px; margin-top: 28px; }
.transparency-operator h3 { margin-bottom: 12px; }

/* Process timeline */
.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 900px; margin: 0 auto; }
.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
}
.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), transparent);
}
.process-step__num {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800;
    color: var(--blue);
    background: var(--blue-pale);
    border-radius: 16px;
    border: 2px solid rgba(37,99,235,0.2);
}
.process-step__body { padding: 20px 24px; }
.process-step__body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.process-step__body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.process-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* Why cards */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.why-card { padding: 28px; transition: transform 0.25s, box-shadow 0.25s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card h3 { font-size: 1.05rem; margin: 12px 0 8px; color: var(--navy); }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.why-card__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-pale), #e0f2fe);
    position: relative;
}
.why-card__icon::after {
    content: '';
    position: absolute; inset: 10px;
    background: var(--blue);
    border-radius: 4px;
    opacity: 0.85;
}
.why-cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Trust hub */
.trust-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: start;
}
.trust-hub-info { padding: 28px; }
.trust-hub-info h3 { margin-bottom: 16px; color: var(--navy); }
.trust-dl div { display: grid; grid-template-columns: 140px 1fr; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.trust-dl dt { font-weight: 600; color: var(--navy); }
.trust-dl dd { margin: 0; color: var(--text-muted); }
.principle-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.principle-card {
    padding: 16px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}
.principle-card:hover { border-color: var(--blue); }
.principle-card h4 { font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.principle-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* Service full blocks */
.services-full-list { display: flex; flex-direction: column; gap: 64px; }
.service-full-block {
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}
.service-full-block:last-child { border-bottom: none; padding-bottom: 0; }
.service-full-block__header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.service-full-lead { font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 720px; }
.service-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}
.service-full-col h3 { font-size: 1rem; color: var(--navy); margin: 0 0 12px; }
.service-full-col h3:not(:first-child) { margin-top: 28px; }
.check-list { list-style: none; padding: 0; margin: 0 0 16px; }
.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}
.check-list li::before {
    content: '✓';
    position: absolute; left: 0;
    color: #22c55e; font-weight: 800;
}
.check-list--blue li::before { color: var(--blue); }
.process-ol { list-style: none; padding: 0; margin: 0; }
.process-ol li {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 14px; font-size: 14px; color: var(--text-muted); line-height: 1.6;
}
.process-ol__num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); color: #fff;
    border-radius: 8px; font-size: 12px; font-weight: 700;
}
.scenario-cards { display: flex; flex-direction: column; gap: 12px; }
.scenario-card { padding: 16px 18px; }
.scenario-card h4 { font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.scenario-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.compare-table--service { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table--service th,
.compare-table--service td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.compare-table--service th { background: var(--navy); color: #fff; }
.compare-table--service tbody tr:nth-child(even) { background: #f8fafc; }
.service-full-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.service-faq { margin-top: 28px; }
.service-faq h3 { margin-bottom: 16px; }
.tabs-panels--service-nav .tabs-panel--mini { padding: 16px 0; }
.tabs-panels--service-nav p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }

/* Blog premium */
.blog-grid--premium { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 28px; }
.blog-card--premium { padding: 24px; transition: transform 0.25s; }
.blog-card--premium:hover { transform: translateY(-4px); }
.blog-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--blue); }
.blog-card--premium h3 { font-size: 1.05rem; margin: 10px 0; }
.blog-card--premium h3 a { color: var(--navy); text-decoration: none; }
.blog-card--premium h3 a:hover { color: var(--blue); }
.blog-card--premium p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.blog-card__link { font-size: 14px; font-weight: 600; }
.blog-categories { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.blog-cat-pill {
    flex: 1; min-width: 200px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.blog-cat-pill strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.blog-cat-pill span { font-size: 12px; color: var(--text-muted); }
.blog-preview-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 40px; align-items: start; }
.about-main h2 { color: var(--navy); margin: 32px 0 12px; font-size: 1.35rem; }
.about-main h2:first-child { margin-top: 0; }
.about-main p { line-height: 1.75; color: var(--text-muted); margin-bottom: 14px; }
.about-sidebar-card { padding: 24px; margin-bottom: 16px; }
.about-sidebar-card h3 { margin-bottom: 12px; color: var(--navy); }
.about-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.content-panel--wide { max-width: 960px; }
.cta-inline { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Footer badges */
.badge--icon {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
}
.faq-list--page { max-width: 900px; margin: 24px auto 0; }
.faq-panels .tabs-panel { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 900px) {
    .trust-hub-grid,
    .service-full-grid,
    .about-grid { grid-template-columns: 1fr; }
    .service-full-block__header { flex-direction: column; }
    .trust-dl div { grid-template-columns: 1fr; gap: 2px; }
    .tabs-nav { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .process-step { grid-template-columns: 48px 1fr; }
    .process-step__num { width: 48px; height: 48px; font-size: 12px; }
    .process-step:not(:last-child)::before { left: 23px; }
}

/* ===== v23 Ana sayfa platform ===== */
.top-bar--brand {
    background: linear-gradient(90deg, #0f2744, #1e3a5f);
    color: #94a3b8;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.top-bar__hours { color: #38bdf8; font-weight: 600; }
.page-home .disclaimer-bar { display: none; }

/* Hero platform */
.hero--platform {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 80px;
    color: #fff;
    overflow: hidden;
}
.hero--platform .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero--platform > .container {
    position: relative;
    z-index: 2;
}
.hero--platform .hero-platform-content {
    animation: heroFadeIn 0.8s ease forwards;
}
.hero--platform .hero-platform-visual {
    animation: heroFadeIn 0.8s ease 0.15s forwards;
    opacity: 0;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero__bg--animated {
    background: linear-gradient(160deg, #0a1628 0%, #0f2744 40%, #1a365d 100%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--1 { width: 400px; height: 400px; background: rgba(56,189,248,0.15); top: -10%; right: 10%; }
.hero-orb--2 { width: 300px; height: 300px; background: rgba(99,102,241,0.12); bottom: 10%; left: -5%; animation-delay: -4s; }
.hero-orb--3 { width: 200px; height: 200px; background: rgba(34,211,238,0.1); top: 40%; left: 30%; animation-delay: -8s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56,189,248,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56,189,248,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
}
.hero-platform-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero--platform h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-badge--glow {
    background: rgba(56,189,248,0.12);
    border: 1px solid rgba(56,189,248,0.3);
    box-shadow: 0 0 24px rgba(56,189,248,0.15);
}
.hero-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 32px;
}
.hero-feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 13px;
    color: #cbd5e1;
    transition: background 0.2s, border-color 0.2s;
}
.hero-feature-chip:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(56,189,248,0.3);
}
.hero-feature-chip strong { display: block; color: #fff; font-size: 12px; }
.hero-feature-chip__icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    flex-shrink: 0;
}
.hero-feature-chip__icon--sim { background: linear-gradient(135deg, #34d399, #059669); }
.hero-feature-chip__icon--support { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.hero-device-scene {
    position: relative;
    min-height: 380px;
}
.hero-device-card {
    position: relative;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 24px;
    color: #fff;
}
.hero-device-card--main {
    width: 72%;
    margin: 0 auto;
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite;
}
.hero-device-card__glow {
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(56,189,248,0.4), transparent, rgba(99,102,241,0.3));
    z-index: -1;
    opacity: 0.5;
}
.hero-device-card__tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #38bdf8;
    font-weight: 700;
}
.hero-device-card strong { display: block; font-size: 1.25rem; margin: 8px 0 4px; }
.hero-device-card p { font-size: 13px; color: #94a3b8; margin: 0 0 12px; }
.hero-device-card__price {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(56,189,248,0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #38bdf8;
}
.hero-device-card--float {
    position: absolute;
    width: 42%;
    padding: 16px;
    animation: cardFloat 5s ease-in-out infinite;
}
.hero-device-card--sim { top: 0; right: 0; animation-delay: -2s; }
.hero-device-card--mesh { bottom: 20px; left: 0; animation-delay: -3.5s; }
.hero-device-card--float strong { font-size: 14px; }
@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-network-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}
.hero-line-animate { animation: dashMove 20s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -100; } }
.hero-pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; r: 4; } 50% { opacity: 0.6; r: 6; } }
.hero-scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #64748b;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Home services */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.home-service-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.home-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15,39,68,0.1);
    border-color: rgba(37,99,235,0.2);
}
.home-service-card:hover::before { transform: scaleX(1); }
.home-service-card h3 { font-size: 1.15rem; margin: 16px 0 10px; color: var(--navy); }
.home-service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.home-service-card__features {
    list-style: none;
    padding: 16px 0 0;
    margin: 16px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.home-service-card__features li {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 100px;
}
.home-service-card__cta {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s;
}
.home-service-card__cta:hover { color: var(--blue); }

/* Why home */
.why-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}
.why-split h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 16px; }
.why-split p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.why-visual-block {
    display: grid;
    gap: 16px;
}
.why-visual-metric {
    padding: 24px 28px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    color: #fff;
    border-radius: var(--radius-lg);
    transition: transform 0.25s;
}
.why-visual-metric:hover { transform: translateX(8px); }
.why-visual-metric--accent {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.why-visual-metric strong { display: block; font-size: 1.5rem; margin-bottom: 4px; }
.why-visual-metric span { font-size: 13px; color: rgba(255,255,255,0.8); }
.why-cards-grid--home { margin-bottom: 0; }
.why-card--home { background: var(--surface); border: 1px solid var(--border); }
.why-card__icon--expert::after { border-radius: 50%; }
.why-card__icon--speed::after { border-radius: 2px; width: 60%; margin: auto; }
.why-card__icon--remote::after { border-radius: 2px; height: 40%; top: 30%; }
.why-card__icon--corp::after { border-radius: 2px; }

/* Interactive process */
.process-interactive__nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.process-interactive__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s;
}
.process-interactive__btn:hover,
.process-interactive__btn.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.process-interactive__num {
    font-size: 11px;
    font-weight: 800;
    opacity: 0.7;
}
.process-interactive__title {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}
.process-interactive__track {
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}
.process-interactive__progress {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), #6366f1);
    border-radius: 4px;
    transition: width 0.4s ease;
}
.process-interactive__panel {
    padding: 32px;
    animation: fadeIn 0.35s ease;
}
.process-interactive__step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--blue);
}
.process-interactive__panel h3 { font-size: 1.35rem; color: var(--navy); margin: 8px 0 12px; }
.process-interactive__panel p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* Product showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 28px;
    align-items: start;
}
.showcase-products { display: flex; flex-direction: column; gap: 16px; }
.showcase-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.25s, box-shadow 0.25s;
}
.showcase-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37,99,235,0.15);
}
.showcase-card__img {
    background: #f8fafc;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.showcase-card__img img { max-width: 100%; max-height: 100px; object-fit: contain; }
.showcase-card__cat { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; }
.showcase-card h3 { font-size: 1rem; margin: 6px 0; color: var(--navy); }
.showcase-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.showcase-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.showcase-card__footer strong { font-size: 1.1rem; color: var(--navy); }
.showcase-compare { padding: 28px; position: sticky; top: 100px; }
.showcase-compare h3 { color: var(--navy); margin-bottom: 8px; }
.showcase-compare__lead { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.compare-table--compact { font-size: 13px; margin-bottom: 20px; }
.compare-table--compact th,
.compare-table--compact td { padding: 10px 12px; }
.showcase-compare__actions { display: flex; flex-direction: column; gap: 10px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* Stats */
.section-stats { padding: 0; }
.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.stat-item {
    background: var(--surface);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s;
}
.stats-band.is-animated .stat-item {
    animation: statPop 0.5s ease backwards;
    animation-delay: calc(var(--step-delay, 0s) + 0.1s);
}
@keyframes statPop {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
.stat-item:hover { background: var(--blue-pale); }
.stat-item__value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item__label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.stat-item__sub { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.trust-signal__dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34,197,94,0.5);
}

/* Contact CTA */
.section-contact-cta { background: linear-gradient(180deg, var(--bg) 0%, #e8eef5 100%); }
.contact-cta-card {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(15,39,68,0.08);
}
.contact-cta-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 12px; }
.contact-cta-card p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.contact-cta-card__channels { display: flex; flex-wrap: wrap; gap: 16px; }
.contact-channel {
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}
.contact-channel:hover { border-color: var(--blue); transform: translateY(-2px); }
.contact-channel strong { display: block; font-size: 14px; color: var(--navy); }
.contact-channel span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.btn-ghost-dark {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    margin-top: 10px;
}
.btn-ghost-dark:hover { border-color: var(--navy); color: var(--navy); }

@media (max-width: 900px) {
    .hero-platform-grid,
    .home-services-grid,
    .why-split,
    .showcase-grid,
    .contact-cta-card { grid-template-columns: 1fr; }
    .hero--platform { min-height: auto; padding: 80px 0 60px; }
    .hero-device-scene { min-height: 280px; margin-top: 32px; }
    .process-interactive__nav { grid-template-columns: repeat(2, 1fr); }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .showcase-card { grid-template-columns: 1fr; }
    .showcase-compare { position: static; }
    .hero-scroll-hint { display: none; }
}
