/* Bienta Sigorta — Marka renkleri: koyu zümrüt yeşili + altın */

:root {
    --green-900: #0a2e22;
    --green-800: #0f3d2e;
    --green-700: #14503c;
    --green-600: #1c6a4f;
    --green-500: #2a8c6a;
    --green-50: #e8f3ee;
    --gold-500: #c9a961;
    --gold-400: #d4b87a;
    --gold-300: #e0c894;
    --gold-100: #f5ecd4;
    --white: #ffffff;
    --bg: #fbfbf8;
    --surface: #ffffff;
    --text: #1a1f1c;
    --muted: #5a6760;
    --line: #e6e3d8;
    --danger: #b13a3a;
    --success: #2a8c6a;
    --warn: #d4a017;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 6px rgba(15, 61, 46, 0.06);
    --shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
    --shadow-lg: 0 20px 48px rgba(15, 61, 46, 0.12);
    --font: 'IBM Plex Sans', 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
    --font-serif: 'IBM Plex Sans', 'Segoe UI', system-ui, sans-serif;
    --font-brand: 'Playfair Display', Georgia, serif;
    --container: 1180px;
    --header-h: 78px;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter');
    font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
}
img, svg, video, iframe { max-width: 100%; }
table { max-width: 100%; }
pre, code { white-space: pre-wrap; word-break: break-word; }
.prose img, .prose iframe { width: 100%; height: auto; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--gold-500); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 880px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 560px) {
    .container, .container-sm { padding: 0 16px; }
}

h1, h2, h3, h4 {
    font-family: var(--font);
    color: var(--green-900);
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 600;
    letter-spacing: -0.015em;
}
h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 2.4vw, 24px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 14px; }
.lead { font-size: 18px; color: var(--muted); }

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--green-900);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.site-header .top-bar {
    background: var(--green-800);
    border-bottom: 1px solid rgba(201,169,97,0.18);
    font-size: 13px;
    padding: 8px 0;
    color: rgba(255,255,255,0.85);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.site-header .top-bar .container {
    display: flex; gap: 24px; align-items: center; justify-content: flex-end; flex-wrap: wrap;
}
.site-header .top-bar a { color: var(--gold-300); }
.site-header .top-bar a:hover { color: var(--gold-500); }
.site-header .top-bar .sep { opacity: 0.4; }

.site-header .main-bar { padding: 14px 0; }
.site-header .main-bar .container {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--white); text-decoration: none; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .brand-name {
    font-family: var(--font-brand);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-400);
    letter-spacing: 0.5px;
    font-style: italic;
    white-space: nowrap;
}
@media (max-width: 400px) {
    .brand img { height: 44px !important; width: 44px !important; }
    .brand-text .brand-name { font-size: 20px; }
    .brand-text .brand-sub { font-size: 10px; letter-spacing: 1px; }
}
.brand-text .brand-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-main {
    display: flex; align-items: center; gap: 4px;
}
.nav-main a {
    color: rgba(255,255,255,0.92);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.15s ease;
}
.nav-main a:hover, .nav-main a.active {
    background: rgba(201,169,97,0.15);
    color: var(--gold-400);
}
.nav-main .has-sub { position: relative; }
.nav-main .has-sub > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.7;
}
.nav-main .submenu {
    position: absolute; top: 100%; left: 0;
    background: var(--white);
    color: var(--text);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 8px;
    display: none;
    border: 1px solid var(--line);
}
.nav-main .submenu a {
    display: block;
    color: var(--green-900);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}
.nav-main .submenu a:hover {
    background: var(--green-50);
    color: var(--green-800);
}
.nav-main .has-sub:hover .submenu { display: block; }

.btn-cta {
    background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
    color: var(--green-900) !important;
    font-weight: 700;
    padding: 12px 22px !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 18px rgba(201,169,97,0.35);
}
.btn-cta:hover { transform: translateY(-1px); background: linear-gradient(180deg, var(--gold-300), var(--gold-400)) !important; }

.hamburger { display: none; background: none; border: 0; color: var(--white); font-size: 28px; cursor: pointer; padding: 4px 8px; }

/* MOBILE NAV */
@media (max-width: 960px) {
    .nav-main { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--green-900); flex-direction: column; padding: 12px 16px 20px; border-top: 1px solid rgba(201,169,97,0.15); }
    .nav-main.open { display: flex; }
    .nav-main a { padding: 14px 16px; }
    .nav-main .submenu { position: static; box-shadow: none; background: transparent; color: var(--white); margin: 4px 0 8px 16px; border: 0; padding: 0; display: block; }
    .nav-main .submenu a { color: rgba(255,255,255,0.85); padding: 10px 16px; }
    .hamburger { display: inline-flex; }
    .site-header .top-bar .container { justify-content: center; gap: 12px; font-size: 12px; }
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 0; cursor: pointer;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease;
    line-height: 1;
}
.btn-primary { background: var(--green-800); color: var(--white); }
.btn-primary:hover { background: var(--green-700); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold { background: linear-gradient(180deg, var(--gold-400), var(--gold-500)); color: var(--green-900); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,169,97,0.4); color: var(--green-900); }
.btn-outline { background: transparent; color: var(--green-800); border: 1.5px solid var(--green-800); padding: 12px 22px; }
.btn-outline:hover { background: var(--green-800); color: var(--white); }
.btn-ghost { background: transparent; color: var(--green-700); padding: 10px 16px; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* HERO */
.hero {
    background:
        radial-gradient(ellipse at top right, rgba(201,169,97,0.15), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(42,140,106,0.18), transparent 50%),
        linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--green-700) 100%);
    color: var(--white);
    padding: 64px 0 80px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 560px) {
    .hero { padding: 36px 0 48px; }
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><path d="M0 60 L60 0 L120 60 L60 120 Z" fill="none" stroke="%23c9a961" stroke-opacity="0.05" stroke-width="1"/></svg>');
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 { color: var(--white); font-weight: 700; }
.hero h1 .accent { color: var(--gold-400); font-family: var(--font-brand); font-style: italic; font-weight: 700; }
.hero p.lead { color: rgba(255,255,255,0.88); font-size: 19px; }
.hero-values { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; }
.hero-value { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.95); }
.hero-value .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 12px rgba(201,169,97,0.6); }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.quick-form {
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--gold-500);
}
.quick-form h3 { margin-top: 4px; margin-bottom: 8px; font-size: 22px; }
.quick-form .sub { color: var(--muted); margin-bottom: 18px; font-size: 14px; }
.quick-form .brans-pills {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px;
}
.brans-pill {
    border: 1.5px solid var(--line);
    background: var(--bg);
    color: var(--green-900);
    padding: 12px 6px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.brans-pill:hover { border-color: var(--gold-500); }
.brans-pill.active { background: var(--green-800); color: var(--white); border-color: var(--green-800); }
.brans-pill .ico { font-size: 22px; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 560px) {
    .hero-grid { gap: 20px; }
    .quick-form { padding: 20px 16px; border-radius: 14px; }
    .quick-form h3 { font-size: 18px; }
    .quick-form .brans-pills { grid-template-columns: repeat(2, 1fr); }
    .brans-pill .ico { font-size: 18px; }
    .brans-pill { padding: 10px 4px; font-size: 12px; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { width: 100%; }
    .hero-values { gap: 14px; }
    .hero-value { font-size: 14px; }
}

/* FORM */
.form-row { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--green-900); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--text);
    padding: 13px 14px;
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font);
    outline: none;
    transition: all 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.18);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row .hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-row .err { font-size: 13px; color: var(--danger); margin-top: 4px; display: none; }
.form-row.invalid input, .form-row.invalid select { border-color: var(--danger); }
.form-row.invalid .err { display: block; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; } }

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 13px; color: var(--muted); }
.checkbox-row input[type=checkbox] { margin-top: 3px; accent-color: var(--green-700); transform: scale(1.15); }
.checkbox-row a { color: var(--green-700); text-decoration: underline; }

/* SECTIONS */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
@media (max-width: 560px) {
    .section { padding: 44px 0; }
    .section-tight { padding: 32px 0; }
    .section-head { margin-bottom: 28px; }
}
.section-alt { background: var(--white); }
.section-dark { background: var(--green-900); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--gold-400); }
.section-gold { background: linear-gradient(180deg, var(--gold-100), var(--bg)); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .eyebrow {
    display: inline-block;
    color: var(--gold-500);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(201,169,97,0.12);
    border-radius: 4px;
}

/* BRANCH GRID */
.brans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .brans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .brans-grid { grid-template-columns: 1fr; } }
.brans-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    position: relative;
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
}
.brans-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}
.brans-card:hover {
    border-color: var(--gold-500);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    color: var(--text);
}
.brans-card:hover::before { opacity: 1; }
.brans-card .icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-50), var(--gold-100));
    color: var(--green-800);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
}
.brans-card h3 { margin: 4px 0; font-size: 18px; color: var(--green-900); }
.brans-card .ozet { font-size: 14px; color: var(--muted); margin: 0; }
.brans-card .cta { color: var(--gold-500); font-weight: 700; font-size: 14px; margin-top: 4px; }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 380px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item .num { word-break: break-word; }
.trust-item { padding: 24px 16px; }
.trust-item .num { font-family: var(--font); font-size: 48px; font-weight: 700; color: var(--gold-400); display: block; line-height: 1; letter-spacing: -0.03em; }
.trust-item .lbl { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 8px; display: block; }

/* DEĞERLER */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--line);
    text-align: center;
}
.value-card .ico {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--green-900);
    color: var(--gold-400);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--green-900);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
}
.faq-item summary::after { content: '+'; font-size: 26px; color: var(--gold-500); font-weight: 300; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .answer { padding: 0 24px 20px; color: var(--muted); }

/* FOOTER */
.site-footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.78);
    padding: 60px 0 0;
    margin-top: 80px;
    overflow-x: hidden;
}
@media (max-width: 560px) {
    .site-footer { padding: 40px 0 0; margin-top: 56px; }
    .footer-grid { gap: 24px; padding-bottom: 28px; }
    .footer-bottom { padding: 16px 0; font-size: 12px; text-align: center; }
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--gold-400); font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.78); font-size: 14px; }
.footer-col a:hover { color: var(--gold-400); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; }
.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,169,97,0.15); color: var(--gold-400); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.social-row a:hover { background: var(--gold-500); color: var(--green-900); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px 22px;
    z-index: 999;
    border: 1px solid var(--line);
    display: none;
    max-width: 720px;
    margin: 0 auto;
}
@media (max-width: 560px) {
    .cookie-banner { padding: 16px 14px; bottom: 8px; left: 8px; right: 8px; }
    .cookie-banner h4 { font-size: 15px; }
    .cookie-banner p { font-size: 12px; }
    .cookie-banner .actions { flex-direction: column; }
    .cookie-banner .actions .btn { width: 100%; justify-content: center; }
}
.cookie-banner.show { display: block; animation: cookieIn 0.3s ease; }
@keyframes cookieIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner h4 { margin: 0 0 8px; font-family: var(--font); font-size: 16px; color: var(--green-900); }
.cookie-banner p { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .opts { display: none; margin: 12px 0; }
.cookie-banner .opts.show { display: block; }
.cookie-opt { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--line); }
.cookie-opt label { font-size: 13px; color: var(--text); font-weight: 600; }
.cookie-opt small { display: block; color: var(--muted); font-weight: 400; font-size: 12px; margin-top: 2px; }
.cookie-opt input { accent-color: var(--green-700); margin-top: 2px; }

/* WHATSAPP STICKY (desktop) */
.wa-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 50;
    background: #25d366; color: white;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    text-decoration: none;
    font-size: 28px;
}
.wa-fab:hover { transform: scale(1.05); color: white; }

/* MOBILE ACTION BAR (Ara + WhatsApp) */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--green-900);
    border-top: 1px solid rgba(201,169,97,0.25);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-action-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    color: white;
    transition: background 0.15s;
}
.mobile-action-bar a:active { transform: scale(0.98); }
.mobile-action-bar .mab-call {
    background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
    color: var(--green-900) !important;
}
.mobile-action-bar .mab-call:hover { background: linear-gradient(180deg, var(--gold-300), var(--gold-400)); }
.mobile-action-bar .mab-wa {
    background: #25d366;
    color: #ffffff !important;
}
.mobile-action-bar .mab-wa:hover { background: #1ebe57; }
.mobile-action-bar svg { flex-shrink: 0; }

@media (max-width: 760px) {
    .mobile-action-bar { display: flex; }
    .wa-fab { display: none; }
    body { padding-bottom: 68px; }
}
@media (max-width: 380px) {
    .mobile-action-bar a { font-size: 14px; padding: 14px 6px; gap: 8px; }
    .mobile-action-bar svg { width: 20px; height: 20px; }
}
.wa-fab:hover { transform: scale(1.05); color: white; }

/* ALERT */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; }
.alert-success { background: rgba(42,140,106,0.1); color: var(--green-700); border: 1px solid var(--green-500); }
.alert-error { background: rgba(177,58,58,0.1); color: var(--danger); border: 1px solid var(--danger); }
.alert-info { background: var(--gold-100); color: var(--green-900); border: 1px solid var(--gold-300); }

/* PAGE HEADER (inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: var(--white);
    padding: 56px 0 48px;
    text-align: center;
    position: relative;
}
@media (max-width: 560px) {
    .page-header { padding: 36px 0 32px; }
    .page-header h1 { font-size: 26px; }
}
.page-header h1 { color: var(--white); margin-bottom: 8px; }
.page-header .breadcrumb { color: rgba(255,255,255,0.7); font-size: 14px; }
.page-header .breadcrumb a { color: var(--gold-400); }

/* CONTENT */
.prose { max-width: 820px; margin: 0 auto; font-size: 16px; line-height: 1.75; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 28px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 6px; }

/* CARDS */
.card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); word-wrap: break-word; }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .card-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
    .card { padding: 20px 18px; border-radius: 14px; }
}

/* HELPER */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.mb-0 { margin-bottom: 0 !important; }
.gold { color: var(--gold-500); }
.muted { color: var(--muted); }
.bold { font-weight: 700; }
