/* ============================================================
   INPREDKADRY — Design System
   Palette: Deep Navy  #0d1e36   Secondary Navy #16355f
            Gold       #c9a84c   Gold Dark      #9e7c2e
            BG light   #f4f6fa   Text           #14263d
   ============================================================ */

/* ── 1. TOKENS ── */
:root {
    --navy:          #2a4a78;
    --navy-mid:      #426796;
    --navy-light:    #638abc;
    --gold:          #d1b15a;
    --gold-light:    #e4c983;
    --gold-dark:     #aa8840;
    --gold-subtle:   rgba(201, 168, 76, 0.18);
    --gold-line:     rgba(201, 168, 76, 0.32);

    --text-head:     #2a4a78;
    --text-body:     #4a6789;
    --text-muted:    #7d96b6;
    --text-light:    rgba(230, 237, 250, 0.82);

    --bg-page:       #f7f9fc;
    --bg-white:      #ffffff;
    --bg-card:       #ffffff;
    --bg-faint:      #f1f5fa;

    --border:        rgba(13, 30, 54, 0.10);
    --border-gold:   rgba(201, 168, 76, 0.28);

    --shadow-sm:     0 4px 16px rgba(10, 22, 44, 0.07);
    --shadow-md:     0 12px 32px rgba(10, 22, 44, 0.10);
    --shadow-lg:     0 24px 56px rgba(32, 58, 95, 0.14);

    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-pill:   999px;

    --transition:    0.28s cubic-bezier(0.4, 0, 0.2, 1);

    --primary-navy:  var(--navy);
    --secondary-navy: var(--navy-mid);
    --accent-gold:  var(--gold);
    --bg-light:     var(--bg-faint);
    --text-primary: var(--text-body);
    --text-secondary: var(--text-muted);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-page);
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

body:not(.home-page) {
    padding-top: 88px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-head);
    line-height: 1.2;
}

a {
    transition: color var(--transition);
}

img { max-width: 100%; }

/* ── 3. HOMEPAGE SCROLL SNAP ── */
html.home-scroll,
body.home-page {
    scroll-padding-top: 88px;
    scroll-behavior: auto;
    scroll-snap-type: y mandatory;
}

body.home-page {
    height: auto;
}

body.home-page .home-section {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

body.home-page .home-section > .container {
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
}

.home-page .services.home-section > .container,
.home-page .news-section.home-section > .container {
    padding-top: 56px;
}

.home-page .services.home-section > .container {
    padding-top: 28px;
}

.home-page .services.home-section .section-title {
    margin-bottom: 0.75rem;
}

.home-page .services.home-section .section-subtitle {
    margin-bottom: 2rem;
}

.home-intro-section,
.home-outro-section {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.home-intro-section {
    align-items: stretch;
    justify-content: space-between;
}

/* Intro hero stays vertically centered */
body.home-page .home-intro-section > .hero {
    padding-top: 0;
    padding-bottom: 0;
}

body.home-page .home-outro-section.no-cta {
    min-height: auto;
    display: block;
}

/* Full-width children inside flex sections */
.home-intro-hero,
.home-intro-stats,
.home-outro-cta,
.home-outro-footer {
    width: 100%;
}

body.home-page .home-intro-hero {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

body.home-page .home-intro-stats {
    padding-top: 12px;
    padding-bottom: 36px;
}

body.home-page .home-outro-cta {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top center, rgba(201,168,76,0.14), transparent 38%),
        linear-gradient(180deg, #5078aa 0%, var(--navy) 45%, var(--navy-mid) 100%);
    padding: 56px 0 0;
}

body.home-page .home-outro-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(201, 168, 76, 0.18), transparent 34%),
        radial-gradient(circle at 82% 72%, rgba(201, 168, 76, 0.10), transparent 28%);
    pointer-events: none;
}

body.home-page .home-outro-cta .container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

body.home-page .home-outro-cta .cta-content {
    width: min(820px, 100%);
    padding: 2.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 72px rgba(5, 14, 30, 0.36);
    backdrop-filter: blur(10px);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

body.home-page .home-outro-cta .cta-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 38px 88px rgba(5, 14, 30, 0.44);
}

body.home-page .home-outro-cta .cta-title,
body.home-page .home-outro-cta .cta-text,
body.home-page .home-outro-cta .cta-note {
    color: rgba(230, 240, 255, 0.92);
}

body.home-page .home-outro-cta .cta-title {
    color: #ffffff;
    font-size: 2.25rem;
}

body.home-page .home-outro-footer {
    padding: 24px 0 28px;
}

body.home-page .footer.home-outro-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 24px;
}

body.home-page .footer.home-outro-footer .footer-bottom {
    margin-top: 2rem;
}

.home-page .services.home-section,
.home-page .news-section.home-section {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--bg-page);
}

/* ── 4. NAVIGATION ── */
.navbar {
    background: linear-gradient(180deg, #355982 0%, #446b98 100%);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 24px rgba(34, 58, 92, 0.24);
    padding: 0.9rem 0;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(58, 93, 136, 0.96);
    box-shadow: 0 6px 32px rgba(40, 67, 105, 0.28);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.95rem, 1.4vw, 1.18rem);
    font-weight: 700;
    letter-spacing: 0;
    color: #f5edd8 !important;
    max-width: min(44vw, 460px);
    white-space: normal;
    line-height: 1.15;
    padding: 0;
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    color: rgba(220, 232, 248, 0.76) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 0.6rem 1.1rem !important;
    position: relative;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 65%;
}

.navbar-toggler {
    border-color: var(--border-gold);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.35rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.28);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(230,237,255,0.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.75rem 0 0.5rem;
        border-top: 1px solid rgba(201, 168, 76, 0.14);
    }
}

/* ── 5. HERO ── */
.hero {
    background:
        linear-gradient(125deg, rgba(56, 89, 130, 0.95) 0%, rgba(74, 111, 157, 0.91) 50%, rgba(102, 141, 191, 0.87) 100%),
        linear-gradient(180deg, #446a97 0%, #6288b8 100%);
    color: #ffffff;
    padding: 154px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(201, 168, 76, 0.15) 0%, transparent 38%),
        radial-gradient(ellipse at 85% 70%, rgba(201, 168, 76, 0.09) 0%, transparent 32%);
    pointer-events: none;
}

/* Decorative ruling lines */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.10;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    max-width: 15ch;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(218, 230, 250, 0.82);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

/* ── 6. BUTTONS ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border: 1px solid rgba(130, 96, 28, 0.24);
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 28px rgba(158, 124, 46, 0.28);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    cursor: pointer;
}

.btn-gold:hover {
    color: var(--navy);
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(158, 124, 46, 0.36);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #f0e8cc;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border: 1px solid rgba(201, 168, 76, 0.56);
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.14);
    color: #ffffff;
    border-color: var(--gold);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 0.95rem 2.8rem;
    border: 1px solid rgba(130, 96, 28, 0.24);
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 28px rgba(158, 124, 46, 0.26);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-submit:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(158, 124, 46, 0.34);
    color: var(--navy);
}

/* ── 7. SECTION COMMON ── */
.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
    text-align: center;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Section gold accent bar */
.section-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.2));
    margin: 0.9rem auto 0;
}

/* ── 8. STATS ── */
.stats {
    background: transparent;
    padding: 80px 0;
    border-bottom: none;
}

.stats-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.stats-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── 9. SERVICE CARDS (homepage grid) ── */
.services {
    padding: 100px 0;
    background: transparent;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid rgba(201, 168, 76, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--gold-light);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
    color: var(--navy);
}

.service-description {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.97rem;
}

.finance-service-group + .finance-service-group {
    margin-top: 3.25rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.finance-service-subtitle {
    color: var(--navy);
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 0.85rem;
}

.finance-list-title {
    color: var(--navy);
    font-size: 0.94rem;
    font-weight: 700;
    margin: 1.5rem 0 0;
}

.finance-service-note {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.75;
    margin: 1.5rem 0 0;
}

/* ── 10. NEWS CARDS ── */
.news-section {
    padding: 100px 0;
    background: transparent;
}

.news-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 2.5rem;
    overflow: hidden;
}

.news-image-link {
    text-decoration: none;
}

.news-image-link:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
}

.news-content {
    padding: 1.75rem;
}

.news-date {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.news-title {
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
    color: var(--navy);
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: var(--gold-dark);
}

.news-summary {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-filter-bar {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, 220px) auto;
    gap: 1rem;
    align-items: end;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.news-filter-bar .form-label {
    color: var(--navy);
    margin-bottom: 0.45rem;
}

.news-filter-actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.read-more {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition), color var(--transition);
}

.read-more:hover {
    gap: 0.9rem;
    color: var(--gold-dark);
}

/* ── 11. CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.14), transparent 52%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    order: 1;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(220, 232, 250, 0.85);
    margin-bottom: 2.25rem;
    order: 2;
    max-width: 640px;
}

.cta-content .btn {
    order: 3;
}

.cta-note {
    max-width: 740px;
    margin: 1.25rem auto 0;
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(210, 224, 248, 0.72);
    order: 4;
}

/* ── 12. FOOTER ── */
.footer {
    background: linear-gradient(180deg, #365a84 0%, #4a709e 100%);
    color: rgba(220, 232, 250, 0.8);
    padding: 72px 0 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.16);
}

.footer h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(210, 224, 248, 0.68);
    font-size: 0.93rem;
    line-height: 1.75;
}

.footer-link {
    color: rgba(210, 224, 248, 0.72);
    font-size: 0.93rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color var(--transition);
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    margin-top: 3rem;
    padding-top: 1.75rem;
    text-align: center;
    color: rgba(180, 200, 235, 0.48);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
    color: rgba(210, 224, 248, 0.72);
    font-size: 0.93rem;
}

.contact-info i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── 13. PAGE HEADERS (inner pages) ── */
.page-header {
    background:
        linear-gradient(115deg, rgba(42, 74, 120, 0.08) 0%, rgba(247, 249, 252, 0.76) 42%, rgba(209, 177, 90, 0.10) 100%),
        linear-gradient(180deg, #f8fafd 0%, #f3f6fb 100%);
    color: var(--text-body);
    margin-top: -88px;
    padding: 128px 0 46px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(42, 74, 120, 0.08);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 88px 0 0;
    background:
        linear-gradient(90deg, rgba(42, 74, 120, 0.04), transparent 36%),
        radial-gradient(circle at 86% 28%, rgba(209, 177, 90, 0.14), transparent 28%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 24%, rgba(209, 177, 90, 0.42) 52%, transparent 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-grid {
    display: grid;
    grid-template-columns: minmax(0, 840px);
    gap: 1rem;
    align-items: end;
}

.page-header-kicker {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.page-title {
    font-size: clamp(2.35rem, 4.6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 0.8rem;
    color: var(--navy);
    max-width: 760px;
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    max-width: 680px;
}

/* ── 14. CONTENT CARDS (about, services inner) ── */
.content-section,
.service-section {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3rem;
    margin-bottom: 1.75rem;
    scroll-margin-top: 130px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-section:nth-of-type(even) {
    background: var(--bg-faint);
}

.services-anchor-nav {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: -1rem 0 1.75rem;
    padding: 1rem;
    position: sticky;
    top: 86px;
    z-index: 10;
}

.services-anchor-nav a {
    align-items: center;
    border: 1px solid rgba(201, 168, 76, 0.32);
    border-radius: 999px;
    color: var(--navy);
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 700;
    gap: 0.45rem;
    padding: 0.65rem 0.95rem;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.services-anchor-nav a:hover,
.services-anchor-nav a:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: #111827;
}

.content-section:hover,
.service-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.text-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ── 15. ADVANTAGE CARDS (about) ── */
.advantage-card {
    background: var(--bg-faint);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.advantage-card h4 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.advantage-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.75;
    font-size: 0.97rem;
}

/* About page Mission / Vision card overrides */
div[style*="background: linear-gradient(135deg, var(--primary-navy)"],
div[style*="background: var(--bg-light); border-radius: 8px; height: 100%; border: 2px solid var(--accent-gold)"] {
    background: var(--bg-white) !important;
    color: var(--text-body) !important;
    border: 1px solid var(--border) !important;
    border-top: 3px solid var(--gold) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 2rem !important;
    height: 100% !important;
}

/* ── 16. TIMELINE (about) ── */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    padding-bottom: 2.75rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    position: absolute;
    left: 0.55rem;
    top: 0;
    width: 1.4rem;
    height: 1.4rem;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--bg-page);
    box-shadow: 0 0 0 2px var(--border-gold);
}

.timeline-year {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

/* ── 17. SERVICE PAGE (inner) ── */
.service-icon-large {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--gold-light);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.97rem;
    color: var(--text-body);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border: 1px solid rgba(201, 168, 76, 0.20);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    color: rgba(220, 232, 250, 0.9);
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-box h4 {
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
    color: rgba(210, 224, 248, 0.88);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── 18. CONTACT PAGE ── */
.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--gold-light);
}

.contact-card a {
    color: var(--text-body);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--gold-dark);
}

.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin: -1.5rem 0 3rem;
}

.form-section {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.75rem;
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    color: var(--text-body);
    margin-bottom: 0.4rem;
}

.form-control,
.form-select {
    background: var(--bg-faint);
    border: 1px solid rgba(13, 30, 54, 0.14);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-size: 0.97rem;
    color: var(--text-body);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-white);
    border-color: rgba(201, 168, 76, 0.60);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    outline: none;
}

.form-control::placeholder {
    color: rgba(91, 112, 147, 0.56);
    font-size: 0.93rem;
}

.map-container {
    height: 480px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.75rem;
}

.info-card h4 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.external-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: 1.15rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-body);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.external-link-card:hover {
    color: var(--navy);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.external-link-card strong,
.external-link-card small {
    display: block;
}

.external-link-card strong {
    color: var(--navy);
    line-height: 1.25;
}

.external-link-card small {
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.external-link-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--gold-light);
}

.external-link-card > i:last-child {
    margin-left: auto;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.info-item {
    margin-bottom: 1rem;
}

.info-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.info-item a {
    color: var(--text-body);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--gold-dark);
}

/* ── 19. NEWS ARCHIVE ── */
.pagination {
    margin-top: 3rem;
    gap: 0.35rem;
}

.page-link {
    color: var(--navy);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill) !important;
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.page-link:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

.empty-state {
    text-align: center;
    padding: 5rem 0;
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: block;
}

/* ── 20. NEWS DETAIL ── */
.breadcrumb {
    background: none;
    padding: 1.5rem 0 0.5rem;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
}

.breadcrumb-item a:hover {
    color: var(--gold-dark);
}

.breadcrumb-item.active {
    color: var(--navy);
    font-size: 0.88rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.article-header {
    background: transparent;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0 2.25rem;
    margin-bottom: 2rem;
}

.article-title {
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.meta-item i {
    color: var(--gold);
    font-size: 0.95rem;
}

.article-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 3rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--text-body);
    box-shadow: var(--shadow-sm);
}

.article-content::after {
    clear: both;
    content: "";
    display: block;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content .news-text-small {
    font-size: 0.9em;
}

.article-content .news-text-large {
    font-size: 1.18em;
}

.article-content .news-text-xlarge {
    display: inline-block;
    font-size: 1.42em;
    line-height: 1.45;
}

.article-content h2,
.article-content h3 {
    margin: 2rem 0 1rem;
}

.news-inline-image {
    margin: 2rem auto;
}

.news-inline-image--left {
    margin-left: 0;
    margin-right: auto;
}

.news-inline-image--center {
    margin-left: auto;
    margin-right: auto;
}

.news-inline-image--right {
    margin-left: auto;
    margin-right: 0;
}

.news-inline-image--wrap.news-inline-image--left {
    float: left;
    margin: 0.35rem 1.75rem 1rem 0;
}

.news-inline-image--wrap.news-inline-image--right {
    float: right;
    margin: 0.35rem 0 1rem 1.75rem;
}

.news-inline-image img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: block;
    height: auto;
    width: 100%;
}

.news-inline-image figcaption {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.5;
    margin-top: 0.65rem;
    text-align: center;
}

.news-inline-image--wrap figcaption {
    text-align: left;
}

.news-inline-image--small {
    max-width: 320px;
}

.news-inline-image--medium {
    max-width: 560px;
}

.news-inline-image--large {
    max-width: 760px;
}

.news-inline-image--full {
    max-width: 100%;
}

.share-section {
    background: var(--bg-faint);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.share-title {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.share-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.related-news {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border-top: 1px solid var(--border);
}

.related-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--navy);
}

.related-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-card-date {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.related-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.related-card-title a {
    color: var(--navy);
    text-decoration: none;
}

.related-card-title a:hover {
    color: var(--gold-dark);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color var(--transition), gap var(--transition);
}

.back-btn:hover {
    color: var(--gold-dark);
    gap: 0.9rem;
}

/* ── 21. ALERTS ── */
.alert {
    border-radius: var(--radius-sm);
    border: none;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(16, 66, 47, 0.08);
    color: #0a3d25;
    border-left: 3px solid #2a9d5c;
}

.alert-danger {
    background: rgba(90, 15, 15, 0.07);
    color: #5a1010;
    border-left: 3px solid #c84a4a;
}

/* ── 22. SECTION SCROLL INDICATORS ── */
.section-indicators {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(13, 30, 54, 0.22);
    border: 1px solid rgba(13, 30, 54, 0.12);
    cursor: pointer;
    transition: all 0.28s ease;
    position: relative;
}

.section-indicator:hover {
    background: rgba(201, 168, 76, 0.52);
    transform: scale(1.3);
}

.section-indicator.active {
    background: var(--gold);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.28);
}

.section-indicator::after {
    content: attr(data-title);
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(8, 18, 36, 0.92);
    color: rgba(220, 232, 250, 0.9);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    border: 1px solid rgba(201, 168, 76, 0.18);
}

.section-indicator:hover::after {
    opacity: 1;
}

/* ── 23. ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ── 24. UTILITIES ── */
.about-page .cta-section,
.services-page .cta-section {
    display: none;
}

/* ── 25. RESPONSIVE ── */
@media (max-width: 991px) {
    body:not(.home-page) {
        padding-top: 80px;
    }

    .page-header {
        margin-top: -80px;
        padding: 112px 0 38px;
    }

    .page-header::before {
        inset: 80px 0 0;
    }

    .page-header-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .content-section,
    .service-section {
        padding: 2.25rem;
    }

    .news-filter-bar {
        grid-template-columns: 1fr;
    }

    .services-anchor-nav {
        position: static;
    }

    .section-indicators {
        display: none;
    }
}

@media (max-width: 768px) {
    html.home-scroll,
    body.home-page {
        scroll-snap-type: y proximity;
    }

    body.home-page .home-section {
        min-height: auto;
        display: block;
    }

    .page-header {
        padding: 106px 0 32px;
        margin-bottom: 34px;
    }

    .page-title {
        font-size: clamp(2rem, 11vw, 2.65rem);
    }

    .page-subtitle {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    body.home-page .home-outro-cta {
        padding: 48px 0 0;
    }

    body.home-page .home-outro-cta .cta-content {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }

    body.home-page .home-outro-cta .cta-title {
        font-size: 1.75rem;
    }

    .home-page .stats.home-section,
    .home-page .services.home-section,
    .home-page .news-section.home-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .content-section,
    .service-section {
        padding: 1.75rem;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .news-inline-image,
    .news-inline-image--wrap.news-inline-image--left,
    .news-inline-image--wrap.news-inline-image--right {
        float: none;
        margin: 1.5rem auto;
        max-width: 100%;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .contact-quick-actions .btn,
    .news-filter-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .share-btn,
    .btn-gold,
    .btn-outline-gold,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .share-buttons {
        flex-direction: column;
    }

    .article-meta {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .navbar-brand {
        font-size: 0.95rem;
        max-width: calc(100vw - 96px);
    }
}

/* Classic corporate homepage */
html:has(body.classic-homepage),
body.classic-homepage {
    scroll-snap-type: none !important;
    scroll-padding-top: 0 !important;
}

body.classic-homepage {
    padding-top: 88px;
}

body.classic-homepage .home-section {
    min-height: auto;
    display: block;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
}

body.classic-homepage .home-section > .container {
    padding-top: 0;
    padding-bottom: 0;
}

body.classic-homepage .classic-home-section {
    padding: 80px 0;
}

body.classic-homepage .classic-hero-section {
    padding: 34px 0 44px;
    background:
        linear-gradient(115deg, rgba(42, 74, 120, 0.08) 0%, rgba(247, 249, 252, 0.72) 36%, rgba(209, 177, 90, 0.10) 100%),
        linear-gradient(180deg, #f8fafd 0%, #f3f6fb 100%);
}

body.classic-homepage .classic-hero-shell {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 248, 253, 0.42) 100%);
    border: 1px solid rgba(42, 74, 120, 0.08);
    border-radius: 18px;
    box-shadow: none;
    padding: 2.35rem 2.4rem;
    margin-bottom: 1.35rem;
    overflow: hidden;
    position: relative;
}

body.classic-homepage .classic-hero-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(99, 138, 188, 0.08), transparent 44%);
    opacity: 0.08;
    pointer-events: none;
}

body.classic-homepage .classic-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: clamp(1.4rem, 3vw, 2.6rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

body.classic-homepage .classic-hero-brand {
    display: flex;
    align-items: flex-start;
    gap: 1.35rem;
    margin-bottom: 1.2rem;
}

body.classic-homepage .classic-hero-logo {
    width: 82px;
    height: 82px;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 18px rgba(66, 103, 150, 0.12));
}

body.classic-homepage .classic-hero-eyebrow,
body.classic-homepage .classic-section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

body.classic-homepage .classic-hero-copy h1 {
    font-size: clamp(2.25rem, 4.1vw, 3.35rem);
    line-height: 1.04;
    color: var(--navy);
    margin-bottom: 0.9rem;
    max-width: 15ch;
}

body.classic-homepage .classic-hero-lead {
    font-size: 1.03rem;
    line-height: 1.72;
    color: var(--text-body);
    max-width: 620px;
    margin-bottom: 1.15rem;
}

body.classic-homepage .classic-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

body.classic-homepage .classic-hero-panel {
    background: linear-gradient(180deg, #31547f 0%, #456d9d 100%);
    border: 1px solid rgba(209, 177, 90, 0.20);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(42, 74, 120, 0.16);
    color: rgba(239, 244, 252, 0.88);
    padding: 1.35rem;
    font-size: 0.94rem;
}

body.classic-homepage .classic-panel-block + .classic-panel-block {
    margin-top: 0.8rem;
}

body.classic-homepage .classic-panel-label {
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

body.classic-homepage .classic-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.classic-homepage .classic-panel-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.44rem;
    line-height: 1.42;
}

body.classic-homepage .classic-panel-list li::before {
    content: '';
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light);
}

body.classic-homepage .classic-panel-text {
    margin: 0;
    line-height: 1.5;
    color: rgba(239, 244, 252, 0.82);
}

body.classic-homepage .classic-panel-contact {
    margin-top: 0.8rem;
    padding-top: 0.78rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.classic-homepage .classic-panel-contact-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(228, 201, 131, 0.86);
    margin-bottom: 0.45rem;
}

body.classic-homepage .classic-panel-contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.52rem 0.9rem;
    margin-top: 0.15rem;
    border: 1px solid rgba(228, 201, 131, 0.34);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
}

body.classic-homepage .classic-panel-contact-link:hover {
    color: var(--gold-light);
}

body.classic-homepage .classic-stats-grid {
    margin-top: 0;
    margin-bottom: 0;
}

body.classic-homepage .classic-stats-grid .stats-card {
    border-top: 0;
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    padding: 1.35rem 1.2rem;
    text-align: left;
    box-shadow: none;
}

body.classic-homepage .classic-stats-grid .stat-number {
    font-size: clamp(2.2rem, 4vw, 2.85rem);
}

body.classic-homepage .home-intro-stats,
body.classic-homepage .stats {
    padding: 0;
}

body.classic-homepage .classic-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 1.5rem 2rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

body.classic-homepage .classic-section-heading .section-title {
    text-align: left;
    margin-bottom: 0;
}

body.classic-homepage .classic-section-heading .section-title::after {
    margin-left: 0;
}

body.classic-homepage .classic-section-heading .section-subtitle {
    text-align: left;
    max-width: none;
}

body.classic-homepage .classic-section-footer {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

body.classic-homepage .service-card,
body.classic-homepage .news-card {
    height: 100%;
    border-radius: 12px;
    box-shadow: none;
}

body.classic-homepage .service-card {
    padding: 2rem 1.75rem;
}

body.classic-homepage .service-card:hover,
body.classic-homepage .news-card:hover,
body.classic-homepage .stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(37, 61, 97, 0.10);
}

body.classic-homepage .service-card-accent {
    background: linear-gradient(180deg, rgba(250, 247, 238, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

body.classic-homepage .classic-cta-section {
    padding-top: 0;
}

body.classic-homepage .home-outro-cta {
    padding: 0;
    background: none;
}

body.classic-homepage .home-outro-cta::before {
    display: none;
}

body.classic-homepage .home-outro-cta .cta-content {
    width: 100%;
    max-width: none;
    border-radius: 16px !important;
}

body.classic-homepage .home-outro-footer {
    padding-top: 0;
}

@media (max-width: 991px) {
    body.classic-homepage .classic-hero-grid,
    body.classic-homepage .classic-section-heading {
        grid-template-columns: 1fr;
    }

    body.classic-homepage .classic-hero-shell {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    body.classic-homepage {
        padding-top: 84px;
    }

    body.classic-homepage .classic-home-section {
        padding: 48px 0;
    }

    body.classic-homepage .classic-hero-section {
        padding: 26px 0 34px;
    }

    body.classic-homepage .classic-hero-shell {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    body.classic-homepage .classic-hero-logo {
        width: 60px;
        height: 60px;
    }

    body.classic-homepage .classic-hero-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.09em;
        margin-bottom: 0.55rem;
    }

    body.classic-homepage .classic-hero-brand {
        flex-direction: column;
        gap: 1rem;
    }

    body.classic-homepage .classic-hero-copy h1 {
        max-width: none;
        font-size: clamp(1.86rem, 9.2vw, 2.24rem);
        line-height: 1.06;
        margin-bottom: 0.75rem;
    }

    body.classic-homepage .classic-hero-lead {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 0.85rem;
    }

    body.classic-homepage .classic-hero-actions {
        flex-direction: column;
    }

    body.classic-homepage .classic-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.classic-homepage .classic-hero-panel {
        padding: 1rem;
        border-radius: 14px;
    }

    body.classic-homepage .classic-hero-panel .classic-panel-block:nth-of-type(2) {
        display: none;
    }

    body.classic-homepage .classic-panel-list li {
        margin-bottom: 0.34rem;
        line-height: 1.34;
        font-size: 0.88rem;
    }

    body.classic-homepage .classic-panel-contact {
        display: none;
    }

    body.classic-homepage .classic-stats-grid .stats-card {
        padding: 1rem;
        min-height: 120px;
    }
}
