/* =====================================================================
   Monitoro.NET — public/marketing CSS
   Shared by: index.html, contact.html, terms.html, privacy.html, cookies.html, about.html
   ===================================================================== */

:root {
    --ink:        #0f172a;
    --ink-soft:   #334155;
    --muted:      #64748b;
    --line:       #e2e8f0;
    --line-soft:  #f1f5f9;
    --bg:         #ffffff;
    --bg-soft:    #f8fafc;
    --primary:    #0f172a;     /* black-ish, matches login.html aesthetic */
    --primary-2:  #1e293b;
    --accent:     #3b82f6;
    --radius:     12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow:
        0 1px 0 rgba(15,23,42,0.04),
        0 8px 24px -16px rgba(15,23,42,0.18);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.8px;
    text-decoration: none;
    line-height: 1;
}
.brand:hover { text-decoration: none; }
.site-header .brand::before {
    content: 'M';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #3b82f6 100%);
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    border-radius: 10px;
    letter-spacing: 0;
    box-shadow:
        0 6px 16px -4px rgba(15,23,42,0.35),
        inset 0 1px 0 rgba(255,255,255,0.18);
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.brand-mark { font-weight: 700; }
.brand-dot {
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.site-nav a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .15s;
}
.site-nav a:hover { color: var(--ink); }
.nav-lang :is(button, .lang-btn) { font-size: 12px; }

/* Header login button: solid, prominent */
.site-nav .btn-primary {
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px -4px rgba(15,23,42,0.35);
}
.site-nav .btn-primary:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px -4px rgba(15,23,42,0.45);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 6px 10px;
}

@media (max-width: 768px) {
    .site-header-inner { height: 68px; }
    .site-header .brand::before { width: 36px; height: 36px; font-size: 20px; }
    .brand { font-size: 22px; }
    .site-nav {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        padding: 16px 24px;
        gap: 12px;
        align-items: flex-start;
        box-shadow: 0 10px 24px -12px rgba(15,23,42,0.18);
    }
    .site-nav.open { display: flex; }
    .nav-toggle { display: inline-block; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    font-family: inherit;
}
.btn:hover { text-decoration: none; }
.btn-primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn-ghost:hover {
    background: var(--bg-soft);
    border-color: var(--ink-soft);
}
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    isolation: isolate;
    padding: 96px 0 88px;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.08) 0%, rgba(59,130,246,0) 50%),
        radial-gradient(ellipse at 100% 100%, rgba(34,211,238,0.06) 0%, rgba(34,211,238,0) 50%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}
.hero-blob-1 {
    width: 480px; height: 480px;
    top: -120px; right: -80px;
    background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, rgba(59,130,246,0) 70%);
}
.hero-blob-2 {
    width: 380px; height: 380px;
    bottom: -120px; left: -60px;
    background: radial-gradient(circle, rgba(34,211,238,0.18) 0%, rgba(34,211,238,0) 70%);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.eyebrow-pill {
    background: linear-gradient(135deg, rgba(59,130,246,0.14), rgba(34,211,238,0.10));
    border: 1px solid rgba(59,130,246,0.32);
    color: #1d4ed8;
    padding: 9px 18px 9px 14px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eyebrow-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.18);
    flex-shrink: 0;
}
.hero h1,
.hero-title {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 22px;
}
.hero-title span { display: block; }
.grad-text {
    background: linear-gradient(95deg, #3b82f6 0%, #22d3ee 50%, #3b82f6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: grad-pan 6s linear infinite;
}
@keyframes grad-pan {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@media (max-width: 900px) { .hero h1, .hero-title { font-size: 48px; } }
@media (max-width: 600px) { .hero h1, .hero-title { font-size: 38px; letter-spacing: -1px; } }
.lead {
    font-size: 19px;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 560px;
    line-height: 1.55;
}
.hero-promise {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(34,211,238,0.10), rgba(59,130,246,0.10));
    border: 1px solid rgba(59,130,246,0.30);
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    max-width: 560px;
}
.hero-promise-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #22d3ee);
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px -2px rgba(59,130,246,0.45);
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.hero-cta .btn-primary {
    box-shadow: 0 10px 24px -8px rgba(15,23,42,0.4);
}
.hero-note {
    font-size: 13px;
    color: var(--muted);
}

/* ---------- HERO PRICE CARD ---------- */
.hero-art { display: flex; justify-content: center; }
.price-hero {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 30px 28px;
    text-align: center;
    box-shadow:
        0 30px 60px -20px rgba(15,23,42,0.30),
        0 0 0 1px var(--line);
    overflow: hidden;
}
.price-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6, #22d3ee, #3b82f6);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.price-hero-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent);
    background: rgba(59,130,246,0.10);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.price-hero-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 4px;
}
.price-hero-now {
    font-size: 78px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(135deg, var(--ink) 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-hero-period {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}
.price-hero-divider {
    height: 1px;
    background: var(--line);
    margin: 0 -10px 18px;
}
.price-hero-list {
    list-style: none;
    text-align: left;
    margin-bottom: 18px;
}
.price-hero-list li {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-hero-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 800;
    font-size: 14px;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
    background: var(--ink);
    color: #fff;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
@media (max-width: 700px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
.stat-num {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}
.stat-lbl {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ---------- PRICE-WAR SECTION ---------- */
.section-pricewar {
    background: var(--bg-soft);
}
.section-pricewar h2 {
    font-size: 40px;
    letter-spacing: -1.2px;
}
@media (max-width: 700px) { .section-pricewar h2 { font-size: 28px; } }
.pw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 28px;
}
@media (max-width: 900px) { .pw-grid { grid-template-columns: 1fr; } }
.pw-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 26px;
    position: relative;
}
.pw-card-clean {
    box-shadow: 0 6px 16px -10px rgba(15,23,42,0.18);
}
.pw-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--bg-soft);
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 18px;
}
.pw-card-price {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1;
}
.pw-card-price span {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0;
}
.pw-card ul {
    list-style: none;
}
.pw-card ul li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Default (used by "never ask for" card): muted ✕ — reads as "no, we don't" */
.pw-card ul li::before {
    content: '✕';
    color: var(--muted);
    font-weight: 700;
    opacity: 0.7;
    font-size: 13px;
}
/* Clean list (cost card): green ✓ — factual, positive */
.pw-list-clean li::before {
    content: '✓';
    color: #22c55e;
    font-size: 13px;
    font-weight: 800;
    opacity: 1;
}
.pw-card-winner {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    border-color: transparent;
    color: #fff;
    opacity: 1;
    transform: translateY(-8px);
    box-shadow:
        0 24px 60px -20px rgba(15,23,42,0.55),
        0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
}
.pw-card-winner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(135deg, #3b82f6, #22d3ee, #3b82f6);
    z-index: -1;
    opacity: 0.6;
}
.pw-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #22d3ee);
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 18px;
}
.pw-card-winner .pw-card-price {
    color: #fff;
    font-size: 56px;
}
.pw-card-winner .pw-card-price span {
    color: rgba(255,255,255,0.55);
}
.pw-card-winner ul li {
    color: rgba(255,255,255,0.85);
}
.pw-card-winner ul li::before {
    content: '✓';
    color: #4ade80;
    opacity: 1;
}
.pw-card-saved {
    margin-top: 18px;
    padding: 10px 12px;
    background: rgba(34,211,238,0.12);
    border: 1px solid rgba(34,211,238,0.30);
    border-radius: 8px;
    color: #67e8f9;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.pw-punch {
    text-align: center;
    font-size: 18px;
    color: var(--ink-soft);
    font-weight: 500;
}


/* ---------- Sections ---------- */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
}
.section h2 {
    font-size: 36px;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 12px;
}
@media (max-width: 600px) { .section h2 { font-size: 28px; } }
.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 56px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform .15s, box-shadow .15s;
}
.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -14px rgba(15,23,42,0.18);
}
.feature-icon {
    font-size: 32px;
    margin-bottom: 14px;
}
.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--ink);
}
.feature p {
    font-size: 14px;
    color: var(--ink-soft);
}

/* Pricing */
.section-pricing { background: var(--bg-soft); }

/* Segmented toggle Monthly ↔ Annual */
.price-toggle {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    margin: 0 auto 32px;
    box-shadow: 0 4px 12px -8px rgba(15,23,42,0.18);
}
.price-toggle-wrap { display: flex; justify-content: center; }
.section-pricing .container { display: flex; flex-direction: column; align-items: center; }
.section-pricing h2,
.section-pricing .section-sub { width: 100%; }
.price-toggle-btn {
    appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.price-toggle-btn:hover { color: var(--ink); }
.price-toggle-btn.is-active {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 4px 10px -4px rgba(15,23,42,0.4);
}
.price-save-pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
}
.price-toggle-btn.is-active .price-save-pill {
    background: #fff;
    color: var(--accent);
}

.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 14px 28px -18px rgba(15,23,42,0.18);
}
.price-card-featured {
    border-color: var(--ink);
    box-shadow: 0 18px 36px -16px rgba(15,23,42,0.25);
}
.price-tag {
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.price-amount {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--ink);
    line-height: 1;
    transition: opacity .15s;
}
.price-period {
    color: var(--muted);
    font-size: 15px;
}
.price-sub {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 26px;
}
.price-list {
    list-style: none;
    margin-bottom: 26px;
    text-align: left;
}
.price-list li {
    padding: 9px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--ink-soft);
    font-size: 14px;
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 10px;
    font-weight: 700;
}

/* CTA band */
.cta-band {
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
    color: #fff;
    padding: 72px 0;
    overflow: hidden;
}
.cta-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,211,238,0.20) 0%, rgba(34,211,238,0) 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-inner h2 {
    font-size: 36px;
    color: #fff;
    letter-spacing: -0.8px;
    margin: 0 0 8px;
    line-height: 1.15;
    max-width: 640px;
}
.cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin: 0;
}
.cta-band .btn-primary {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.45);
}
.cta-band .btn-primary:hover {
    background: var(--bg-soft);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px -8px rgba(0,0,0,0.55);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-soft);
    padding: 56px 0 24px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
@media (max-width: 700px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
}
.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ink-soft);
    margin-bottom: 14px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 8px;
}
.footer-col a {
    color: var(--ink-soft);
    font-size: 14px;
    text-decoration: none;
}
.footer-col a:hover { color: var(--ink); }
.footer-brand .brand { font-size: 22px; }
.footer-brand .muted { font-size: 14px; margin-top: 8px; max-width: 320px; }

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.muted { color: var(--muted); }
.small { font-size: 12px; }

/* ---------- Static content pages (terms / privacy / contact / about) ---------- */
.page-header {
    padding: 72px 0 32px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-soft);
}
.page-header h1 {
    font-size: 40px;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.page-header .muted {
    font-size: 15px;
}
.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    color: var(--ink-soft);
}
.page-content h2 {
    color: var(--ink);
    font-size: 22px;
    margin: 36px 0 12px;
    letter-spacing: -0.3px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
    color: var(--ink);
    font-size: 17px;
    margin: 24px 0 8px;
}
.page-content p,
.page-content li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.page-content ul,
.page-content ol {
    margin: 0 0 16px 22px;
}
.page-content a { color: var(--accent); text-decoration: underline; }
.page-content strong { color: var(--ink); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 24px;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}
.contact-card strong { display: block; color: var(--ink); margin-bottom: 6px; font-size: 16px; }
.contact-card a { color: var(--accent); }
