/* ArmoConnect marketing sitesi — vanilla CSS.
   Renkler logodan: koyu lacivert #2B3744 + turuncu #E87425. */

:root {
    /* Marka */
    --navy:        #2B3744;
    --navy-700:    #243039;
    --navy-900:    #1A232B;
    --navy-100:    #eef1f3;
    --orange:      #E87425;
    --orange-600:  #cf6315;
    --orange-50:   #fdf1e8;

    /* Nötr */
    --ink:         #1a2027;
    --body:        #424a52;
    --muted:       #6b747c;
    --line:        #e4e7ea;
    --line-soft:   #eef0f2;
    --bg:          #ffffff;
    --bg-soft:     #f7f8f9;
    --bg-navy:     #2B3744;

    /* Anlamsal */
    --green:       #1a9d6e;
    --green-bg:    #e7f6ef;

    /* Ölçü */
    --maxw:        1140px;
    --radius:      14px;
    --radius-sm:   10px;
    --radius-lg:   22px;
    --shadow-sm:   0 1px 2px rgba(26,35,43,.06), 0 1px 3px rgba(26,35,43,.04);
    --shadow:      0 4px 16px rgba(26,35,43,.08), 0 2px 6px rgba(26,35,43,.05);
    --shadow-lg:   0 24px 60px rgba(26,35,43,.16), 0 8px 24px rgba(26,35,43,.10);
    --font:        system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --mono:        "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Code", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--body);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;   /* mobilde yatay taşmaya karşı güvenlik */
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--orange-600); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
strong { color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
    position: absolute; left: -9999px; top: 8px; z-index: 200;
    background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: .98rem;
    border: 1.5px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(232,116,37,.28); }
.btn-primary:hover { background: var(--orange-600); color: #fff; box-shadow: 0 10px 22px rgba(232,116,37,.34); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #f1f3f5; color: var(--navy); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { border-radius: 8px; }
.brand-name { font-size: 1.2rem; color: var(--navy); font-weight: 600; letter-spacing: -.02em; }
.brand-name strong { color: var(--orange); font-weight: 700; }
.main-nav { display: flex; gap: 6px; margin-left: 12px; flex: 1; }
.main-nav a { color: var(--body); font-weight: 500; padding: 8px 14px; border-radius: 8px; font-size: .97rem; }
.main-nav a:hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.header-cta { display: flex; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-nav a { padding: 12px; color: var(--ink); font-weight: 500; border-radius: 8px; }
.mobile-nav a:hover { background: var(--bg-soft); text-decoration: none; }
.mobile-nav .btn { margin-top: 8px; }

@media (max-width: 900px) {
    .main-nav, .header-cta { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .mobile-nav[hidden] { display: none; }
    .mobile-nav { display: flex; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #cdd4da; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin: 0; }
.section-navy .section-head p { color: #aeb8c0; }
.eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--orange-600); background: var(--orange-50); padding: 6px 13px; border-radius: 999px; margin-bottom: 16px;
}
.section-navy .eyebrow { background: rgba(232,116,37,.16); color: #f7a463; }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1100px 520px at 82% -8%, rgba(232,116,37,.10), transparent 60%),
        radial-gradient(900px 500px at 0% 0%, rgba(43,55,68,.06), transparent 55%);
    padding: 72px 0 88px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600;
    color: var(--green); background: var(--green-bg); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(26,157,110,.18); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: 1.22rem; color: var(--body); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .92rem; color: var(--muted); margin: 18px 0 0; }
.hero-note strong { color: var(--ink); }
.hero-shot { position: relative; }
.hero-shot img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-shot::after {
    content: ""; position: absolute; inset: auto -18px -18px auto; width: 60%; height: 60%;
    background: radial-gradient(circle at 70% 70%, rgba(232,116,37,.18), transparent 70%); z-index: -1;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-shot { order: -1; }
}

/* ---------- Trust strip ---------- */
.trust { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 600; font-size: .95rem; }
.trust-item svg { color: var(--orange); flex: none; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d7dce0; }
.card .ico {
    width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
    background: var(--orange-50); color: var(--orange-600); margin-bottom: 16px;
}
.card .ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split + .split { margin-top: 96px; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }
.split ul.checks { list-style: none; padding: 0; margin: 20px 0 0; }
.split ul.checks li { position: relative; padding: 8px 0 8px 32px; color: var(--body); }
.split ul.checks li::before {
    content: "✓"; position: absolute; left: 0; top: 8px; width: 21px; height: 21px; border-radius: 50%;
    background: var(--green-bg); color: var(--green); display: grid; place-items: center; font-size: .72rem; font-weight: 800;
}
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split.reverse .split-media { order: 0; }
    .split + .split { margin-top: 56px; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat .num .u { color: var(--orange); }
.stat .lbl { color: #aeb8c0; font-size: .95rem; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; } }

/* ---------- Pricing ---------- */
.price-toggle { display: inline-flex; gap: 4px; background: var(--bg-soft); border: 1px solid var(--line); padding: 5px; border-radius: 12px; margin: 0 auto 40px; }
.price-toggle button { border: 0; background: none; padding: 9px 20px; border-radius: 8px; font-weight: 600; color: var(--muted); cursor: pointer; font-size: .95rem; }
.price-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.price-toggle .save { color: var(--green); font-size: .78rem; font-weight: 700; margin-left: 5px; }

.pricing { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; max-width: 820px; margin: 0 auto; align-items: stretch; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; }
.plan.featured { border: 2px solid var(--orange); box-shadow: var(--shadow-lg); position: relative; }
.plan.featured .ribbon {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .04em;
    padding: 5px 16px; border-radius: 999px; text-transform: uppercase;
}
.plan h3 { font-size: 1.35rem; margin-bottom: 4px; }
.plan .plan-tag { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price .amt { font-size: 2.8rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.plan .price .per { color: var(--muted); font-size: .95rem; }
.plan .price-note { color: var(--muted); font-size: .85rem; min-height: 1.2em; margin-bottom: 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.plan ul li { position: relative; padding: 9px 0 9px 30px; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.plan ul li:last-child { border-bottom: 0; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--green); font-weight: 800; }
.plan ul li.off { color: var(--muted); }
.plan ul li.off::before { content: "–"; color: var(--line); }

/* ---------- Download cards ---------- */
.dl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 820px) { .dl-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.dl-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; }
.dl-card .os-ico { width: 54px; height: 54px; margin: 0 auto 14px; color: var(--navy); }
.dl-card h3 { margin-bottom: 2px; }
.dl-card .meta { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.dl-card .alt { display: block; margin-top: 12px; font-size: .88rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .n { counter-increment: step; width: 38px; height: 38px; border-radius: 10px; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; margin-bottom: 14px; }
.step .n::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; border-radius: var(--radius-lg); padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: -40% -10% auto auto; width: 480px; height: 480px; background: radial-gradient(circle, rgba(232,116,37,.22), transparent 65%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: #b9c2c9; max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq summary { padding: 18px 22px; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.4rem; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; max-width: 460px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: .92rem; }
.field input[type=email], .field input[type=text], .field select {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,116,37,.14); }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.check-row input { margin-top: 3px; }
.form-msg { padding: 12px 14px; border-radius: 10px; font-size: .92rem; margin-bottom: 16px; }
.form-msg.ok { background: var(--green-bg); color: #0f6e51; }
.form-msg.err { background: #fdecec; color: #b3261e; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin-top: 2em; }
.prose h3 { font-size: 1.1rem; margin-top: 1.6em; }
.prose p, .prose li { color: var(--body); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2em; }
.prose a { text-decoration: underline; }
.page-head { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 56px 0; text-align: center; }
.page-head h1 { margin: 0 0 8px; }
.page-head p { color: var(--muted); margin: 0; font-size: 1.08rem; }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 1.5px solid var(--line);
    color: var(--ink); padding: 9px 12px; border-radius: 10px; font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer;
}
.lang-btn:hover { border-color: var(--navy); }
.lang-menu {
    position: absolute; top: calc(100% + 8px); inset-inline-end: 0; min-width: 168px; background: #fff;
    border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 6px;
    display: none; z-index: 120;
}
.lang-switch.open .lang-menu { display: block; }
.lang-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--body); font-size: .94rem; }
.lang-menu a:hover { background: var(--bg-soft); text-decoration: none; color: var(--ink); }
.lang-menu a.active { color: var(--orange-600); font-weight: 700; }
.mobile-langs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.mobile-langs a { padding: 7px 11px; border: 1px solid var(--line); border-radius: 8px; font-size: .82rem; font-weight: 700; color: var(--body); }
.mobile-langs a.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* RTL (Arabic) ince ayarlar */
[dir="rtl"] .hero-sub, [dir="rtl"] .section-head { text-align: start; }
[dir="rtl"] .split ul.checks li { padding: 8px 32px 8px 0; }
[dir="rtl"] .split ul.checks li::before { left: auto; right: 0; }
[dir="rtl"] .plan ul li { padding: 9px 30px 9px 0; }
[dir="rtl"] .plan ul li::before { left: auto; right: 0; }
[dir="rtl"] .prose ul, [dir="rtl"] .prose ol { padding-left: 0; padding-right: 1.3em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #aeb8c0; padding: 64px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name strong { color: var(--orange); }
.footer-tag { color: #93a0aa; font-size: .95rem; max-width: 320px; margin: 0 0 14px; }
.footer-tag a { color: #cdd5db; text-decoration: underline; }
.footer-encrypt { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: #7fd6b5; margin: 0; }
.footer-col h3 { color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a { display: block; color: #aeb8c0; padding: 6px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
    border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px;
}
.footer-bottom p { margin: 0; font-size: .85rem; color: #7e8b95; }
.footer-legal-links a { color: #aeb8c0; }
.footer-legal-links a:hover { color: #fff; }
@media (max-width: 820px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Misc ---------- */
.copy-chip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); background: var(--bg-soft); border: 1px solid var(--line); padding: 6px 10px; border-radius: 8px; font-size: .9rem; cursor: pointer; }
.copy-chip:hover { border-color: var(--orange); }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
.center { text-align: center; }
/* Dikey uygulama penceresi ekran görüntüleri: ortala ve makul genişlikte tut. */
/* Dikey uygulama penceresi görüntüleri: kapsayıcıyı doldur ama 430px'i aşma,
   dar ekranda da taşmasın (width:100% + max-width birlikte). */
.hero-shot img, .split-media img { width: 100%; max-width: 430px; height: auto; margin-inline: auto; }
.mt-40 { margin-top: 40px; }
.badge-soft { display:inline-block; background: var(--navy-100); color: var(--navy); font-size:.78rem; font-weight:700; padding:3px 9px; border-radius:6px; }

/* ---------- Mobil ince ayarlar (taşma önleme) ---------- */
@media (max-width: 620px) {
    /* Karşılaştırma tablosu dar ekranda sıkışmadan sığsın (satır içi padding'i ez). */
    .prose table { font-size: .8rem; }
    .prose th, .prose td { padding: 8px 4px !important; }
    /* Uzun URL/kod/kelimeler kutudan taşmasın. */
    .prose, .card p, .hero-sub, .faq details p { overflow-wrap: anywhere; }
    /* CTA bandı ve sayfa başlığı kenar boşlukları küçülsün. */
    .cta-band { padding: 36px 22px; }
    .page-head { padding: 44px 0; }
    section { padding: 60px 0; }
}
