/* =========================================
   STYLE.CSS — Advokátní kancelář Švarc
   Mikrostránka: smlouvynovyjicin.cz
   Premium Law Firm UI — Navy + Gold
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&display=swap');

/* ─── DESIGN TOKENS ─────────────────────── */
:root {
    /* Brand colours */
    --navy:           #1a365d;
    --navy-deep:      #0f2341;
    --navy-soft:      #2c5282;
    --gold:           #c9a84c;
    --gold-light:     #e8d08a;
    --gold-dark:      #a07c2d;
    --gold-glow:      rgba(201, 168, 76, 0.25);

    /* Neutrals */
    --text:           #334155;
    --text-muted:     #64748b;
    --heading:        #0f172a;
    --bg-white:       #ffffff;
    --bg-light:       #f8fafc;
    --bg-alt:         #f1f5f9;
    --border:         #e2e8f0;
    --border-dark:    #cbd5e1;

    /* Status */
    --success:        #059669;
    --warning:        #d97706;
    --danger:         #dc2626;

    /* Layout */
    --container:      1200px;
    --nav-h:          80px;
    --radius-sm:      8px;
    --radius:         12px;
    --radius-lg:      20px;

    /* Effects */
    --shadow-xs:  0 1px 2px rgba(0,0,0,0.06);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 20px 48px rgba(0,0,0,0.12);
    --shadow-xl:  0 32px 64px rgba(0,0,0,0.15);
    --glass:      rgba(255,255,255,0.75);
    --ease:       cubic-bezier(0.23, 1, 0.32, 1);
    --transition: all 0.35s var(--ease);
}

/* ─── RESET ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; margin-bottom: 1rem; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; }

/* Sticky heading fixes */
.content-main h2, .content-main h3 { margin-top: 2.5rem; }
.content-main h2:first-child, .content-main h3:first-child { margin-top: 0; }

.eyebrow {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

/* ─── LAYOUT ─────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-sm { max-width: 820px; margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-alt { background-color: var(--bg-light); }
.section-dark { background-color: var(--navy-deep); }
.text-center { text-align: center; }

/* ─── HEADER / NAV ───────────────────────── */
.site-header {
    height: var(--nav-h);
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.9rem; }
.brand-logo { height: 46px; width: auto; }
.brand-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.brand-text small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.top-nav { display: flex; gap: 1.75rem; align-items: center; }
.top-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
}
.top-nav a:hover { color: var(--navy); border-bottom-color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 1.25rem; }
.phone-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    white-space: nowrap;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    margin-top: 0.5rem; 
}
.btn-primary {
    background: var(--navy);
    color: #fff !important;
}
.btn-primary:hover {
    background: var(--navy-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff !important;
}
.btn-secondary {
    background: #fff;
    color: var(--navy) !important;
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}
.btn-gold {
    background: var(--gold);
    color: var(--navy-deep) !important;
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow);
}
.btn-outline-white {
    background: transparent;
    color: #fff !important;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

/* ─── HERO ───────────────────────────────── */
.hero {
    background: linear-gradient(140deg, #f0f6ff 0%, #e8f0fb 40%, #f8fafc 100%);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    right: -150px;
    top: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-copy .lead {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 2.25rem;
    max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.trust-pills span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.trust-pills span::before {
    content: '✓';
    color: var(--success);
    font-weight: 800;
    font-size: 0.9rem;
}
.hero-visual {
    position: relative;
}
.hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--navy);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    max-width: 220px;
    line-height: 1.4;
}
.hero-badge strong { display: block; font-size: 1.1rem; color: var(--gold-light); }

/* ─── INTENT CARDS ───────────────────────── */
.intent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
.intent-card {
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.intent-card.prepare {
    background: var(--navy);
    color: white;
}
.intent-card.review {
    background: var(--bg-light);
    border: 2px solid var(--border);
}
.intent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.intent-card .intent-icon {
    font-size: 2.5rem;
    line-height: 1;
}
.intent-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.intent-card.prepare h3 { color: var(--gold-light); }
.intent-card.review h3 { color: var(--navy); }
.intent-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}
.intent-card.prepare p { color: rgba(255,255,255,0.8); }

/* ─── SECTION HEADER ─────────────────────── */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ─── CONTRACT CARDS GRID ────────────────── */
.contracts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.contract-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.contract-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--navy);
}
.contract-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.contract-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}
.contract-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.contract-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; }
.contract-card .contract-list {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contract-card .contract-list li {
    font-size: 0.85rem;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text);
}
.contract-card .contract-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--success);
    font-weight: 700;
}
.contract-card .card-cta {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contract-card .card-cta::after { content: '→'; transition: var(--transition); }
.contract-card:hover .card-cta::after { transform: translateX(4px); }

/* Business cards get blue top border */
.contracts-grid.biz .contract-card { border-top-color: var(--navy-soft); }
.contracts-grid.biz .contract-card:hover { border-top-color: var(--gold); }

/* ─── REVIZNÍ BLOK ───────────────────────── */
.revize-block {
    background: var(--navy-deep);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.revize-block::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.revize-block h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.revize-block p { color: rgba(255,255,255,0.75); }
.revize-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.25rem 0;
}
.revize-list li {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}
.revize-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}
.revize-aside {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}
.revize-aside .revize-speed {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.5rem;
}
.revize-aside p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ─── HOW IT WORKS ───────────────────────── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    left: calc(16.67% + 1rem);
    right: calc(16.67% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-num {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── BENEFITS ───────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.benefit-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: rgba(201,168,76,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.benefit-icon svg { width: 1.5rem; height: 1.5rem; }
.benefit-item h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0; }
.benefit-item p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 0; }

/* ─── FAQ ────────────────────────────────── */
.faq-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-dark); }
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] { border-color: var(--gold); }
.faq-item[open] summary {
    border-bottom: 1px solid var(--border);
    background: var(--bg-light);
}
.faq-answer {
    padding: 1.25rem 1.5rem;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    border-left: 3px solid var(--gold);
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold-light);
    line-height: 1;
    opacity: 0.5;
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    margin: 1.5rem 0 1rem;
    line-height: 1.7;
}
.testimonial-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}
.testimonial-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* ─── CTA BAND ───────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.cta-band h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}
.cta-band p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── KEYWORD PILLS ──────────────────────── */
.kw-section {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}
.keyword-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.keyword-pills li {
    padding: 0.35rem 0.9rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.keyword-pills li:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* ─── BREADCRUMB ─────────────────────────── */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span + span::before { content: ' › '; }

/* ─── PAGE HERO (subpages) ───────────────── */
.page-hero {
    background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: 1rem; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 620px; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ─── CONTRACT SECTION (hub pages) ──────── */
.contract-section { padding: 4rem 0; }
.contract-section:nth-child(even) { background: var(--bg-light); }
.contract-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}
.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.checklist li {
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--success);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Info aside card */
.aside-card {
    background: var(--navy);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
}
.aside-card .aside-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}
.aside-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 1.25rem; }
.aside-card .aside-contact {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
}
.aside-card .aside-contact a { color: var(--gold-light); font-weight: 600; }

/* Warning box */
.warning-box {
    background: rgba(220, 38, 38, 0.06);
    border-left: 4px solid var(--danger);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.warning-box p { font-size: 0.9rem; color: var(--text); margin-bottom: 0; }
.warning-box strong { color: var(--danger); }

/* Tip box */
.tip-box {
    background: rgba(5, 150, 105, 0.06);
    border-left: 4px solid var(--success);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}
.tip-box p { font-size: 0.9rem; color: var(--text); margin-bottom: 0; }

/* Section mini FAQ */
.mini-faq { margin-top: 2rem; }
.mini-faq h4 { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.site-footer h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.site-footer .address {
    font-size: 0.9rem;
    line-height: 1.7;
}
.site-footer .address strong { color: #fff; display: block; margin-bottom: 0.5rem; }
.footer-phone {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 1rem 0 0.5rem;
}
.footer-phone:hover { color: var(--gold-light); }
.footer-email { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-email:hover { color: var(--gold-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}
.footer-sisters { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-sisters a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-sisters a:hover { color: var(--gold-light); }

/* ─── STICKY MOBILE PHONE BUTTON ────────── */
.sticky-phone {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    background: var(--navy);
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    align-items: center;
    gap: 0.5rem;
}
.sticky-phone:hover { background: var(--navy-soft); color: #fff; transform: translateY(-2px); }

/* ─── STAT ROW ───────────────────────────── */
.stat-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 0;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
    .contracts-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .page-hero .lead { max-width: 100%; }
    .content-layout { grid-template-columns: 1fr; }
    .aside-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .revize-block { grid-template-columns: 1fr; text-align: center; }
    .revize-list { text-align: left; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    .hero { padding: 3.5rem 0 4.5rem; }
    .intent-grid { grid-template-columns: 1fr; }
    .contracts-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 1rem; }
    .top-nav { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 3.5rem 0; }
    .revize-block { padding: 2.25rem; }
    .stat-row { gap: 2.5rem; }
    .sticky-phone { display: flex; }
    .header-cta .phone-link { display: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .trust-pills { flex-direction: column; gap: 0.5rem; }
    .cta-band-actions { flex-direction: column; align-items: center; }
    .page-hero-actions { flex-direction: column; }
}
