:root {
    --navy: #041c1c;
    --petrol: #3f6564;
    --green: #e2c997;
    --slate: #4a5568;
    --muted: #e2e2e2;
    --soft: #f9f9f7;
    --white: #ffffff;
    --ink: #1a1c1c;
    --deep: #001d1d;
    --deep-soft: #083333;
    --gold-light: #e2c997;
    --gold-dark: #94763c;
    --shadow: 0 28px 80px rgba(4, 28, 28, 0.16);
    --shadow-soft: 0 18px 42px rgba(63, 101, 100, 0.12);
    --radius: 28px;
    --radius-sm: 18px;
    --max: 1220px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Public Sans', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(63, 101, 100, 0.1), transparent 20%),
        linear-gradient(180deg, #f9f9f8 0%, #f4f4f3 32%, #eeeeed 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 56px), var(--max));
    margin: 0 auto;
}

.section {
    padding: 84px 0;
}

.eyebrow,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
}

.eyebrow {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(63, 101, 100, 0.12);
    color: var(--petrol);
}

.card-kicker {
    color: var(--petrol);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 40px;
}

.section-heading h2,
.cta-panel h2,
.admin-shell h1,
.privacy-content h2,
.landing-copy h1,
.login-card h2 {
    margin: 16px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 2.7rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
    color: var(--navy);
}

.hero-copy h1 {
    margin: 16px 0 18px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.45rem, 4vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
    color: var(--white);
}

.section-heading p,
.hero-copy p,
.lead,
.privacy-content p,
.privacy-content li,
.landing-copy p,
.service-card p,
.method-card p,
.authority-card p,
.pain-card p,
.result-card p,
.review-card p,
.contact-copy p,
.cta-panel p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.72;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
    font-weight: 800;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.button-primary {
    color: var(--navy);
    border-color: rgba(148, 118, 60, 0.26);
    background: linear-gradient(135deg, #f1ddaf, var(--gold-light) 58%, #c7a668 100%);
    box-shadow: 0 20px 36px rgba(148, 118, 60, 0.18);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.button-header-secondary {
    color: var(--petrol);
    border-color: rgba(63, 101, 100, 0.18);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 24px rgba(63, 101, 100, 0.08);
}

.button-maturity {
    position: relative;
}

.button-maturity::before {
    content: "Diagnóstico inicial";
    position: absolute;
    inset: -10px auto auto 18px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(4, 28, 28, 0.96);
    color: var(--white);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 10px 18px rgba(10, 18, 30, 0.16);
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--gold-dark);
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(249, 249, 248, 0.96), rgba(244, 244, 243, 0.92));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(63, 101, 100, 0.12);
}

body.nav-open {
    overflow: hidden;
}

.nav-shell,
.site-nav,
.hero-actions,
.trust-row,
.admin-stats,
.cta-actions,
.review-topline,
.table-meta {
    display: flex;
    align-items: center;
}

.nav-shell {
    justify-content: space-between;
    gap: 12px;
}

.brand-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-logo {
    width: clamp(165px, 21vw, 238px);
    filter: drop-shadow(0 10px 22px rgba(63, 101, 100, 0.12));
}

.site-nav {
    gap: 12px;
}

.site-nav > a:not(.button) {
    color: rgba(4, 28, 28, 0.78);
    font-weight: 700;
    font-size: 0.94rem;
    white-space: nowrap;
}

.site-nav > .button {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.site-nav > .button.button-primary {
    box-shadow: 0 14px 24px rgba(148, 118, 60, 0.14);
}

.site-nav > .button.button-header-secondary {
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 18px rgba(63, 101, 100, 0.07);
}

.site-nav > a:not(.button):hover {
    color: var(--navy);
}

.site-nav > a.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(4, 28, 28, 0.96), rgba(39, 77, 77, 0.94) 62%, rgba(148, 118, 60, 0.88));
    border: 1px solid rgba(226, 201, 151, 0.28);
    box-shadow: 0 14px 30px rgba(10, 18, 30, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.site-nav > a.social-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(10, 18, 30, 0.16);
    border-color: rgba(226, 201, 151, 0.44);
}

.site-nav > a.social-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-nav > .button.button-maturity::before {
    inset: -8px auto auto 14px;
    padding: 3px 8px;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-premium {
    padding: 44px 0 24px;
    background:
        radial-gradient(circle at 80% 15%, rgba(226, 201, 151, 0.16), transparent 18%),
        radial-gradient(circle at 70% 50%, rgba(63, 101, 100, 0.16), transparent 24%),
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.08), transparent 20%),
        linear-gradient(180deg, var(--deep) 0%, var(--deep-soft) 56%, #274d4d 100%);
}

.hero-maturity-note {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    max-width: 580px;
}

.hero-maturity-note strong {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.5;
}

.button-maturity-hero {
    min-width: 260px;
}

.hero-shell,
.authority-grid,
.contact-shell,
.landing-shell,
.admin-grid,
.map-shell,
.privacy-grid,
.process-grid,
.pain-grid,
.reviews-grid,
.cards-grid {
    display: grid;
    gap: 24px;
}

.hero-shell,
.landing-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: 34px;
}

.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow,
.landing-copy h1,
.landing-copy .lead,
.landing-copy .eyebrow {
    color: var(--white);
}

.hero-copy .lead,
.landing-copy .lead {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.proof-item,
.hero-panel,
.hero-note,
.pain-card,
.service-card,
.method-card,
.authority-card,
.review-card,
.result-card,
.contact-form,
.map-panel,
.cta-panel,
.admin-panel,
.login-card,
.faq-card {
    border-radius: var(--radius);
    border: 1px solid rgba(63, 101, 100, 0.12);
    box-shadow: var(--shadow);
}

.proof-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-color: rgba(255, 255, 255, 0.08);
}

.proof-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1rem;
}

.proof-item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    line-height: 1.65;
}

.hero-showcase {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-card {
    align-self: stretch;
}

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 201, 151, 0.22), transparent 62%);
    pointer-events: none;
    animation: heroAuraPulse 8s ease-in-out infinite;
}

.hero-showcase::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 20%, rgba(226, 201, 151, 0.4) 50%, rgba(255, 255, 255, 0.18) 80%, transparent 100%);
    opacity: 0.85;
    pointer-events: none;
}

.hero-showcase:hover {
    transform: translateY(-4px);
    border-color: rgba(226, 201, 151, 0.24);
    box-shadow: 0 26px 60px rgba(4, 10, 18, 0.34);
}

.hero-showcase .card-kicker {
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(226, 201, 151, 0.14);
    color: var(--gold-light);
    position: relative;
    z-index: 1;
}

.hero-card-title {
    margin: 0 0 22px;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.38rem, 2vw, 1.92rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.hero-panel {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
    column-gap: 16px;
    min-height: 84px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(226, 201, 151, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08));
}

.hero-panel small {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    margin: 0;
    padding: 0 12px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(226, 201, 151, 0.96);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-align: right;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-panel strong,
.hero-note p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
}

.hero-panel strong {
    display: block;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.45;
}

.hero-note {
    margin-top: 14px;
    padding: 18px 20px;
    background: rgba(0, 29, 29, 0.42);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    position: relative;
    z-index: 1;
}

@keyframes heroAuraPulse {
    0%,
    100% {
        opacity: 0.22;
        transform: scale(0.94);
    }
    50% {
        opacity: 0.38;
        transform: scale(1.04);
    }
}

.section-overview {
    padding-top: 58px;
}

.overview-intro {
    max-width: 100%;
    margin-bottom: 30px;
}

.overview-intro h2,
.overview-intro p {
    max-width: 100%;
}

.overview-intro h2 {
    max-width: 1140px;
}

.overview-intro p {
    max-width: 1100px;
}

.overview-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 34px;
    align-items: stretch;
    margin-bottom: 42px;
}

.overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 247, 0.98));
    border: 1px solid rgba(63, 101, 100, 0.12);
    box-shadow: 0 24px 52px rgba(63, 101, 100, 0.07);
}

.overview-copy .card-kicker {
    color: var(--petrol);
    margin-bottom: 18px;
}

.overview-signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.overview-signal {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 100%;
    padding: 18px 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 244, 243, 0.96), rgba(249, 249, 248, 0.98));
    border: 1px solid rgba(63, 101, 100, 0.1);
    box-shadow: none;
}

.overview-signal span {
    width: 12px;
    height: 12px;
    margin-top: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--petrol), var(--gold-light));
    box-shadow: 0 0 0 5px rgba(63, 101, 100, 0.1);
}

.overview-signal-body {
    display: grid;
    gap: 6px;
}

.overview-signal strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.35;
}

.overview-signal p {
    margin: 0;
    color: var(--slate);
    line-height: 1.65;
}

.overview-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #041c1c 0%, #274d4d 100%);
    border: 1px solid rgba(226, 201, 151, 0.18);
    box-shadow: 0 28px 60px rgba(10, 18, 30, 0.18);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: "";
    position: absolute;
    inset: auto -90px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 201, 151, 0.22), transparent 68%);
    pointer-events: none;
}

.overview-card .card-kicker {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(226, 201, 151, 0.14);
    color: var(--gold-light);
}

.overview-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
    flex: 1 1 auto;
}

.overview-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.overview-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.overview-item small {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(226, 201, 151, 0.18);
    color: var(--gold-light);
    border: 1px solid rgba(226, 201, 151, 0.24);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-top: 2px;
}

.overview-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.overview-item h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.3;
}

.overview-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.62;
}

.risk-shell {
    margin-top: 28px;
    padding: 42px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(226, 201, 151, 0.16), transparent 24%),
        linear-gradient(180deg, #f4f4f3 0%, #f9f9f8 100%);
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 24px 60px rgba(63, 101, 100, 0.08);
    position: relative;
    overflow: hidden;
}

.risk-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--petrol) 100%);
}

.risk-heading {
    max-width: 100%;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.risk-heading .eyebrow {
    color: var(--petrol);
}

.risk-heading h2,
.risk-heading p {
    max-width: 100%;
}

.risk-heading p {
    max-width: 1120px;
}

.risk-grid {
    gap: 18px;
    position: relative;
    z-index: 1;
}

.risk-card {
    min-height: 100%;
    padding: 30px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 247, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 18px 34px rgba(63, 101, 100, 0.06);
    position: relative;
    overflow: hidden;
}

.risk-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--petrol) 100%);
}

.risk-card .card-kicker {
    color: var(--petrol);
}

.risk-card h3 {
    color: var(--navy);
    line-height: 1.22;
}

.risk-card p {
    color: var(--slate);
    line-height: 1.7;
}

.team-shell {
    margin-top: 8px;
    padding: 42px;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(226, 201, 151, 0.16), transparent 24%),
        linear-gradient(180deg, #f4f4f3 0%, #f9f9f8 100%);
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 24px 60px rgba(63, 101, 100, 0.08);
    position: relative;
    overflow: hidden;
}

.team-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--petrol) 100%);
}

.team-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.team-heading {
    max-width: 100%;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.team-heading .eyebrow {
    color: var(--petrol);
}

.team-heading h2,
.team-heading p {
    max-width: 100%;
}

.team-heading h2 {
    max-width: 640px;
}

.team-signals {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.team-signal {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(63, 101, 100, 0.12);
}

.team-signal:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.team-signal span {
    width: 12px;
    height: 12px;
    margin-top: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--petrol), var(--gold-light));
    box-shadow: 0 0 0 5px rgba(63, 101, 100, 0.1);
}

.team-signal p {
    margin: 0;
    color: var(--slate);
    line-height: 1.68;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 1;
}

.team-card {
    min-height: 100%;
    padding: 30px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 247, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: 0 18px 34px rgba(63, 101, 100, 0.06);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--petrol) 100%);
}

.team-card h3 {
    margin: 12px 0 10px;
    color: var(--navy);
    font-size: 1.08rem;
    line-height: 1.34;
}

.team-card p {
    margin: 0;
    color: var(--slate);
    line-height: 1.72;
}

.team-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding: 24px 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(4, 28, 28, 0.96), rgba(39, 77, 77, 0.94) 62%, rgba(148, 118, 60, 0.88));
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-band::before {
    content: "";
    position: absolute;
    inset: auto -70px -70px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
    pointer-events: none;
}

.team-band-copy {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.team-band-copy .card-kicker {
    color: rgba(255, 255, 255, 0.74);
}

.team-band-copy strong {
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.1rem, 1.55vw, 1.32rem);
    line-height: 1.34;
    letter-spacing: -0.02em;
}

.reviews-google-button {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    min-width: 220px;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.reviews-google-button:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.pain-grid,
.cards-grid,
.authority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pain-card,
.service-card,
.method-card,
.authority-card,
.review-card,
.result-card,
.admin-panel,
.login-card,
.faq-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pain-card h3,
.service-card h3,
.method-card h3,
.authority-card h3,
.result-card h4,
.faq-card h3,
.review-card strong,
.admin-panel h2 {
    margin: 10px 0 12px;
    color: var(--navy);
}

.pain-card:hover,
.service-card:hover,
.authority-card:hover,
.review-card:hover,
.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(63, 101, 100, 0.12);
    border-color: rgba(226, 201, 151, 0.2);
}

.section-dark {
    background: linear-gradient(180deg, rgba(0, 29, 29, 0.98), rgba(8, 51, 51, 0.96));
    color: var(--white);
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .service-card h3,
.section-dark .service-card p,
.section-dark .card-kicker {
    color: var(--white);
}

.section-dark .eyebrow {
    background: rgba(226, 201, 151, 0.14);
    color: var(--gold-light);
}

.section-dark .eyebrow::before {
    background: linear-gradient(90deg, var(--gold-light), rgba(255, 255, 255, 0.14));
}

.section-dark .service-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.services-shell {
    display: block;
}

.services-heading {
    max-width: 100%;
    margin-bottom: 28px;
}

.services-heading h2,
.services-heading p {
    max-width: 100%;
}

.services-heading h2 {
    max-width: 1120px;
}

.services-heading p {
    max-width: 1100px;
}

.services-grid {
    gap: 20px;
    align-items: stretch;
}

.service-card-refined {
    min-height: 100%;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid rgba(226, 201, 151, 0.9);
}

.service-card-top {
    margin-bottom: 12px;
}

.services-foundation {
    margin-top: 34px;
    padding: 34px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-foundation-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 24px;
    align-items: stretch;
}

.services-foundation-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.services-foundation-copy h3 {
    margin: 16px 0 0;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 2.12rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.services-foundation-copy p {
    margin: 18px 0 0;
    max-width: 36ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.74;
}

.services-foundation-copy p:last-of-type {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-strip {
    height: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.authority-card-compact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.08);
    border-top: 3px solid rgba(226, 201, 151, 0.85);
    box-shadow: none;
}

.authority-card-top {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-card-compact h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 1.08rem;
    line-height: 1.32;
    letter-spacing: -0.02em;
}

.authority-card-compact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.72;
}

.process-shell .section-heading {
    max-width: 100%;
    margin-bottom: 28px;
}

.process-shell .section-heading h2,
.process-shell .section-heading p {
    max-width: 100%;
}

.process-shell .section-heading h2 {
    max-width: 1120px;
}

.process-shell .section-heading p {
    max-width: 1100px;
}

.process-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    gap: 22px;
}

.process-list {
    display: grid;
    height: 100%;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.method-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 100%;
}

.method-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-card .card-kicker {
    margin-bottom: 4px;
}

.method-card h3 {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.42;
}

.step-index {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy), var(--petrol));
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
}

.results-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #041c1c, #274d4d);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.results-panel::before {
    content: "";
    position: absolute;
    inset: auto -80px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 201, 151, 0.24), transparent 66%);
    pointer-events: none;
}

.section-trainpro {
    background:
        radial-gradient(circle at 12% 18%, rgba(226, 201, 151, 0.12), transparent 22%),
        radial-gradient(circle at 88% 14%, rgba(63, 101, 100, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(246, 244, 239, 0.98), rgba(239, 244, 243, 0.98));
}

.trainpro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 28px;
    align-items: stretch;
}

.trainpro-copy {
    display: flex;
    flex-direction: column;
}

.trainpro-copy h2 {
    margin: 16px 0 16px;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.95rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.trainpro-copy > p {
    margin: 0;
    color: var(--slate);
    font-size: 1.02rem;
    line-height: 1.78;
}

.trainpro-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.trainpro-point {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(63, 101, 100, 0.1);
    box-shadow: 0 18px 34px rgba(63, 101, 100, 0.06);
}

.trainpro-point:last-child {
    grid-column: 1 / -1;
}

.trainpro-point h3 {
    margin: 12px 0 10px;
    color: var(--navy);
    font-size: 1.06rem;
    line-height: 1.36;
}

.trainpro-point p {
    margin: 0;
    color: var(--slate);
    line-height: 1.72;
}

.trainpro-actions {
    margin-top: 28px;
}

.trainpro-actions .button-header-secondary {
    background: rgba(255, 255, 255, 0.92);
}

.trainpro-stage {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 100%;
}

.trainpro-screen,
.trainpro-video-card,
.trainpro-module-list {
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(14, 33, 36, 0.12);
}

.trainpro-screen {
    position: relative;
    overflow: hidden;
    padding: 18px;
    background: linear-gradient(180deg, #041c1c, #103636 62%, #214d4d 100%);
    border: 1px solid rgba(226, 201, 151, 0.18);
}

.trainpro-screen::before {
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 201, 151, 0.2), transparent 66%);
    pointer-events: none;
}

.trainpro-screen-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
}

.trainpro-screen-dots {
    display: inline-flex;
    gap: 6px;
}

.trainpro-screen-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.trainpro-screen-dots span:first-child {
    background: rgba(255, 255, 255, 0.46);
}

.trainpro-screen-bar strong {
    color: var(--white);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trainpro-screen-status {
    justify-self: end;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trainpro-screen-media {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 520px;
}

.trainpro-carousel-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: trainproSlide 26s linear infinite;
}

.trainpro-carousel-card {
    position: relative;
    flex: 0 0 390px;
    height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trainpro-carousel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 28, 28, 0.06) 0%, rgba(4, 28, 28, 0.16) 38%, rgba(4, 28, 28, 0.82) 100%);
    pointer-events: none;
}

.trainpro-carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainpro-carousel-card figcaption {
    position: absolute;
    inset: auto 18px 18px 18px;
    padding: 20px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(4, 28, 28, 0.78), rgba(4, 28, 28, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(10, 18, 30, 0.24);
    backdrop-filter: blur(14px);
    z-index: 1;
}

.trainpro-carousel-card figcaption .card-kicker {
    color: #f1ddaf;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.trainpro-carousel-card figcaption strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1.3;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.34);
}

.trainpro-carousel-card figcaption p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.62;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.trainpro-stage-bottom {
    display: grid;
    grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1.14fr);
    gap: 18px;
}

.trainpro-video-card {
    position: relative;
    padding: 24px;
    background: linear-gradient(180deg, rgba(4, 28, 28, 0.96), rgba(39, 77, 77, 0.94));
    border: 1px solid rgba(226, 201, 151, 0.18);
    color: var(--white);
    overflow: hidden;
}

.trainpro-video-card::before {
    content: "";
    position: absolute;
    inset: auto auto -60px -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 201, 151, 0.2), transparent 65%);
    pointer-events: none;
}

.trainpro-video-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trainpro-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f1ddaf;
    box-shadow: 0 0 0 rgba(241, 221, 175, 0.4);
    animation: trainproPulse 1.8s infinite;
}

.trainpro-video-card strong {
    display: block;
    margin-top: 18px;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    line-height: 1.34;
}

.trainpro-video-media {
    position: relative;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trainpro-video-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 28, 28, 0.04), rgba(4, 28, 28, 0.3));
    pointer-events: none;
}

.trainpro-video-media .trainpro-carousel-track {
    height: 100%;
    padding: 14px;
    gap: 14px;
    animation-duration: 22s;
}

.trainpro-carousel-track-secondary {
    animation-direction: reverse;
}

.trainpro-carousel-card-lesson {
    flex-basis: 280px;
    height: 100%;
    border-radius: 18px;
}

.trainpro-carousel-card-lesson figcaption {
    inset: auto 12px 12px 12px;
    padding: 16px 18px;
    border-radius: 18px;
}

.trainpro-carousel-card-lesson figcaption strong {
    font-size: 1rem;
}

.trainpro-carousel-card-lesson figcaption p {
    font-size: 0.92rem;
    line-height: 1.58;
}

.trainpro-video-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.72;
}

.trainpro-progress {
    margin-top: 22px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.trainpro-progress span {
    display: block;
    height: 100%;
    width: 42%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f1ddaf, #d3b273);
    animation: trainproProgress 4.8s ease-in-out infinite;
}

.trainpro-module-list {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(63, 101, 100, 0.1);
}

.trainpro-module-item {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(244, 246, 245, 0.9);
    border: 1px solid rgba(63, 101, 100, 0.08);
}

.trainpro-module-item span {
    width: 14px;
    height: 14px;
    margin-top: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), #c7a668);
    box-shadow: 0 0 0 5px rgba(226, 201, 151, 0.16);
}

.trainpro-module-item strong {
    color: var(--navy);
    font-size: 0.98rem;
    line-height: 1.52;
}

.trainpro-page-hero {
    padding-bottom: 54px;
}

.trainpro-page-hero-shell,
.trainpro-operations-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
    gap: 28px;
    align-items: stretch;
}

.trainpro-page-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.trainpro-page-copy h1,
.trainpro-page-copy .lead {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
}

.trainpro-page-copy h1 {
    margin: 16px 0 18px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.35rem, 4vw, 4.2rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
}

.trainpro-page-copy .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trainpro-page-intro-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.trainpro-page-intro-points .hero-note {
    min-height: 100%;
}

.trainpro-page-intro-points .hero-note strong {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.trainpro-summary-section {
    padding-top: 34px;
    padding-bottom: 36px;
}

.trainpro-summary-grid,
.trainpro-offers-grid,
.trainpro-pricing-grid,
.trainpro-lesson-grid,
.faq-grid {
    display: grid;
    gap: 20px;
}

.trainpro-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trainpro-summary-card,
.trainpro-offer-card,
.trainpro-pricing-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(63, 101, 100, 0.1);
    box-shadow: 0 18px 34px rgba(63, 101, 100, 0.07);
    min-width: 0;
    overflow: hidden;
}

.trainpro-summary-card h2,
.trainpro-pricing-card h3,
.trainpro-offer-card h3 {
    margin: 14px 0 12px;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    line-height: 1.16;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
}

.trainpro-summary-card h2 {
    font-size: 1.36rem;
}

.trainpro-summary-card strong,
.trainpro-offer-meta strong {
    display: block;
    color: var(--gold-dark);
    font-size: 1.6rem;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.04em;
}

.trainpro-summary-card p,
.trainpro-offer-card p,
.trainpro-pricing-card p {
    margin: 0;
    color: var(--slate);
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.trainpro-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trainpro-offer-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trainpro-offer-card-featured {
    background: linear-gradient(180deg, rgba(4, 28, 28, 0.98), rgba(39, 77, 77, 0.96));
    border-color: rgba(226, 201, 151, 0.18);
    box-shadow: 0 28px 56px rgba(4, 28, 28, 0.2);
}

.trainpro-offer-card-featured .card-kicker,
.trainpro-offer-card-featured h3,
.trainpro-offer-card-featured p,
.trainpro-offer-card-featured li,
.trainpro-offer-card-featured .trainpro-offer-meta span,
.trainpro-offer-card-featured .trainpro-offer-note {
    color: rgba(255, 255, 255, 0.82);
}

.trainpro-offer-card-featured .card-kicker {
    color: var(--gold-light);
}

.trainpro-offer-card-featured .trainpro-offer-meta strong {
    color: var(--gold-light);
}

.trainpro-offer-meta {
    display: grid;
    gap: 4px;
    padding: 16px 0;
    border-top: 1px solid rgba(63, 101, 100, 0.12);
    border-bottom: 1px solid rgba(63, 101, 100, 0.12);
}

.trainpro-offer-card-featured .trainpro-offer-meta {
    border-color: rgba(255, 255, 255, 0.12);
}

.trainpro-offer-meta span {
    color: var(--slate);
    font-size: 0.95rem;
}

.trainpro-offer-audience,
.trainpro-offer-note {
    font-size: 0.95rem;
}

.trainpro-bullet-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: var(--slate);
}

.trainpro-bullet-list li {
    line-height: 1.68;
    overflow-wrap: anywhere;
}

.trainpro-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trainpro-pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.trainpro-pricing-card h3 {
    color: var(--white);
    font-size: 1.28rem;
}

.trainpro-pricing-card p,
.trainpro-pricing-card .card-kicker {
    color: rgba(255, 255, 255, 0.76);
}

.trainpro-price-table {
    display: grid;
    gap: 10px;
    margin: 8px 0 16px;
}

.trainpro-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.trainpro-price-row span,
.trainpro-price-row strong {
    color: var(--white);
    overflow-wrap: anywhere;
}

.trainpro-price-row strong {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.trainpro-compare-table {
    overflow-x: auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(63, 101, 100, 0.1);
    box-shadow: 0 20px 36px rgba(63, 101, 100, 0.07);
}

.trainpro-compare-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.trainpro-compare-table th,
.trainpro-compare-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(63, 101, 100, 0.1);
    text-align: left;
    vertical-align: top;
    line-height: 1.58;
    overflow-wrap: anywhere;
}

.trainpro-compare-table thead th {
    background: linear-gradient(180deg, rgba(4, 28, 28, 0.98), rgba(39, 77, 77, 0.96));
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.trainpro-compare-table tbody th {
    width: 29%;
    color: var(--navy);
    font-weight: 700;
    background: rgba(226, 201, 151, 0.08);
}

.trainpro-compare-table tbody td {
    color: var(--slate);
    background: rgba(255, 255, 255, 0.66);
}

.trainpro-credit-panel h2,
.trainpro-credit-panel p {
    color: rgba(255, 255, 255, 0.9);
}

.trainpro-credit-panel .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-light);
}

.trainpro-credit-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.trainpro-credit-list li {
    line-height: 1.68;
}

.trainpro-credit-highlight {
    display: inline-grid;
    gap: 4px;
    margin: 22px 0 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trainpro-credit-highlight strong {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trainpro-credit-highlight span {
    color: var(--gold-light);
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.trainpro-credit-footnote {
    margin-top: 0;
}

.trainpro-lesson-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trainpro-lesson-card {
    overflow: hidden;
}

.trainpro-lesson-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px;
}

.faq-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.trainpro-summary-card,
.trainpro-offer-card,
.trainpro-pricing-card,
.trainpro-lesson-card,
.faq-card,
.trainpro-credit-highlight {
    overflow-wrap: anywhere;
}

.trainpro-final-cta {
    padding-bottom: 40px;
}

@keyframes trainproSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 9px));
    }
}

@keyframes trainproProgress {
    0% {
        width: 22%;
    }
    50% {
        width: 78%;
    }
    100% {
        width: 36%;
    }
}

@keyframes trainproPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 221, 175, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(241, 221, 175, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(241, 221, 175, 0);
    }
}

.results-panel .eyebrow {
    background: rgba(226, 201, 151, 0.14);
    color: var(--gold-light);
}

.results-panel .eyebrow::before {
    background: linear-gradient(90deg, var(--gold-light), rgba(255, 255, 255, 0.14));
}

.results-panel h2,
.results-panel h3 {
    margin: 14px 0 20px;
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 1.55rem;
    line-height: 1.18;
}

.results-list {
    display: grid;
    gap: 16px;
}

.result-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.result-card h4,
.result-card p {
    color: var(--white);
}

.contact-shell,
.map-shell,
.privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.map-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.contact-form,
.map-panel,
.cta-panel {
    padding: 28px;
    background: rgba(255, 255, 255, 0.96);
}

.map-panel,
.cta-panel {
    height: 100%;
}

.contact-copy {
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #041c1c, #274d4d);
    box-shadow: var(--shadow);
}

.contact-copy .eyebrow,
.contact-copy h2,
.contact-copy p,
.contact-copy li {
    color: var(--white);
}

.contact-copy h2 {
    margin: 16px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.contact-copy p,
.contact-copy li {
    color: rgba(255, 255, 255, 0.78);
}

.section-contact .contact-shell {
    align-items: stretch;
}

.contact-inline-actions {
    margin-top: 24px;
}

.contact-points-grid {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-point-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-point-card .card-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.contact-point-card strong {
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
}

.section-relationship .cta-panel {
    background: linear-gradient(180deg, #041c1c, #274d4d);
    border-color: rgba(226, 201, 151, 0.24);
}

.section-relationship .cta-panel .eyebrow,
.section-relationship .cta-panel h2,
.section-relationship .cta-panel p {
    color: var(--white);
}

.map-panel-compact iframe {
    margin-top: 14px;
    filter: saturate(0.72) contrast(1.02);
}

.map-address-card {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(63, 101, 100, 0.08), rgba(226, 201, 151, 0.12));
    border: 1px solid rgba(63, 101, 100, 0.12);
}

.map-address-card strong {
    display: block;
    margin-top: 10px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.65;
}

.map-button {
    margin-top: 18px;
    color: var(--navy);
    background: linear-gradient(135deg, #f1ddaf, var(--gold-light) 58%, #c7a668 100%);
}

.map-placeholder {
    display: none;
    margin-top: 16px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(63, 101, 100, 0.08), rgba(226, 201, 151, 0.12));
    border: 1px solid rgba(63, 101, 100, 0.12);
}

.map-placeholder strong,
.map-placeholder span {
    display: block;
}

.map-placeholder strong {
    margin-bottom: 8px;
    color: var(--navy);
}

.map-placeholder span {
    color: var(--slate);
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-content: start;
    padding: 30px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
    box-shadow: var(--shadow-soft);
}

.contact-form label,
.field-full {
    display: grid;
    gap: 8px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.contact-form-head {
    margin-bottom: 0;
    padding: 0 0 18px;
    border-bottom: 1px solid rgba(71, 85, 105, 0.12);
}

.contact-form-head h3 {
    margin: 10px 0 10px;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.18rem, 1.8vw, 1.5rem);
    line-height: 1.24;
    letter-spacing: -0.03em;
}

.contact-form-head p {
    margin: 0;
    color: var(--slate);
    line-height: 1.68;
}

.contact-form label span {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.form-field {
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(244, 247, 250, 0.9), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(71, 85, 105, 0.12);
}

.form-field-message {
    gap: 10px;
    padding: 18px;
}

.contact-form input,
.contact-form textarea,
.login-card input,
.admin-panel select,
.admin-panel textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(71, 85, 105, 0.18);
    background: #fbfdfe;
    color: var(--ink);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(90, 104, 127, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(63, 101, 100, 0.48);
    box-shadow: 0 0 0 4px rgba(63, 101, 100, 0.12);
    background: var(--white);
}

.contact-form textarea {
    min-height: 156px;
    resize: vertical;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 6px;
}

.contact-submit {
    flex: 0 0 auto;
    min-width: 280px;
}

.contact-points,
.landing-points {
    padding-left: 18px;
    color: var(--slate);
    line-height: 1.9;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-card p {
    margin: 0;
}

.faq-shell {
    max-width: 100%;
}

.faq-shell h2 {
    max-width: 1120px;
}

.faq-list {
    gap: 14px;
}

.faq-card {
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
    overflow: hidden;
}

.faq-card:hover {
    transform: none;
}

.faq-question {
    position: relative;
    display: block;
    padding: 24px 68px 24px 28px;
    color: var(--navy);
    font-family: 'Sora', sans-serif;
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.38;
    letter-spacing: -0.02em;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    color: var(--petrol);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}

.faq-card[open] .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 28px 24px;
    border-top: 1px solid rgba(71, 85, 105, 0.12);
}

.faq-answer p {
    margin: 18px 0 0;
    color: var(--slate);
    line-height: 1.72;
}

.review-topline {
    justify-content: space-between;
    gap: 12px;
}

.review-card small {
    color: var(--slate);
}

.landing-shell {
    padding: 32px 0 18px;
}

.landing-hero {
    background:
        radial-gradient(circle at 78% 18%, rgba(226, 201, 151, 0.18), transparent 18%),
        radial-gradient(circle at 86% 68%, rgba(63, 101, 100, 0.24), transparent 22%),
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.06), transparent 20%),
        linear-gradient(180deg, #041c1c 0%, #082b2b 52%, #274d4d 100%);
}

.landing-copy .eyebrow,
.landing-copy .lead,
.landing-copy h1 {
    max-width: 760px;
}

.landing-copy .lead {
    color: rgba(255, 255, 255, 0.82);
}

.landing-points {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

.landing-points li {
    position: relative;
    padding: 16px 18px 16px 52px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    box-shadow: 0 18px 34px rgba(4, 10, 18, 0.16);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.68;
}

.landing-points li::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff4d0 0%, var(--gold-light) 52%, #b38a3d 100%);
    box-shadow: 0 0 0 6px rgba(226, 201, 151, 0.14);
}

.landing-copy .button-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.landing-panel {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        linear-gradient(180deg, rgba(4, 28, 28, 0.94), rgba(39, 77, 77, 0.94));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(4, 10, 18, 0.34);
    backdrop-filter: blur(18px);
}

.landing-panel::before {
    content: "";
    position: absolute;
    inset: auto -70px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 201, 151, 0.22), transparent 62%);
    pointer-events: none;
}

.landing-panel .eyebrow,
.landing-panel h2,
.landing-panel p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.landing-panel p {
    color: rgba(255, 255, 255, 0.8);
}

.landing-panel-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(4, 10, 18, 0.18);
}

.landing-panel-logo {
    display: block;
    width: 168px;
    height: auto;
}

.landing-panel-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.landing-panel-item {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
    box-shadow: none;
}

.landing-panel-item small {
    display: block;
    margin-bottom: 8px;
    color: rgba(226, 201, 151, 0.96);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.landing-panel-item strong {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.55;
}

.landing-section-heading {
    max-width: 100%;
}

.landing-results-heading {
    max-width: 100%;
}

.landing-section-heading h2,
.landing-section-heading p,
.landing-results-heading h2,
.landing-results-heading p {
    max-width: 1120px;
}

.landing-copy .button-secondary {
    color: var(--white);
}

.error-page {
    padding: 72px 0 84px;
}

.error-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

.error-panel,
.error-guide {
    border-radius: var(--radius);
    border: 1px solid rgba(63, 101, 100, 0.12);
    box-shadow: var(--shadow);
}

.error-panel {
    padding: 34px;
    background: linear-gradient(180deg, #041c1c, #274d4d);
}

.error-panel .eyebrow,
.error-panel h1,
.error-panel p {
    color: var(--white);
}

.error-panel h1 {
    margin: 18px 0 14px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.1rem, 3vw, 3.2rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.error-panel p {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    line-height: 1.74;
}

.error-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.error-button-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.error-guide {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: rgba(255, 255, 255, 0.96);
}

.error-guide-list {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.error-guide-item {
    padding: 16px 0 18px;
    border-bottom: 1px solid rgba(63, 101, 100, 0.12);
}

.error-guide-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.error-guide-item strong {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.35;
}

.error-guide-item p {
    margin: 0;
    color: var(--slate);
    line-height: 1.68;
}

.cta-panel {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cta-panel p {
    max-width: 100%;
}

.cta-panel .cta-actions {
    margin-top: auto;
    padding-top: 24px;
}

.cta-panel .cta-actions .button {
    flex: 1 1 220px;
    justify-content: center;
    min-width: 0;
}

.site-footer {
    padding: 34px 0 22px;
    background: #041c1c;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    padding: 2px 5px;
    margin-bottom: 16px;
    border-radius: 10px;
    background: #f8fbfd;
    border: 1px solid rgba(63, 101, 100, 0.18);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
}

.footer-logo {
    width: 220px;
    margin-bottom: 0;
    filter: none;
}

.footer-label {
    margin: 0 0 10px;
    color: var(--white);
    font-weight: 800;
}

.footer-copy,
.footer-bottom small,
.site-footer span,
.site-footer a {
    color: rgba(255, 255, 255, 0.76);
    display: block;
    line-height: 1.8;
}

.contact-email-image-wrap {
    margin: 6px 0 2px;
}

.contact-email-image {
    display: block;
    width: min(100%, 300px);
    height: auto;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-shell {
    padding: 56px 0 96px;
}

.admin-stats {
    gap: 18px;
    flex-wrap: wrap;
    margin: 24px 0 30px;
}

.admin-stat {
    min-width: 160px;
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(63, 101, 100, 0.12);
}

.table-meta {
    justify-content: space-between;
    gap: 12px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(63, 101, 100, 0.12);
    text-align: left;
    vertical-align: top;
}

.status-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(226, 201, 151, 0.24);
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.login-shell {
    min-height: calc(100vh - 200px);
    display: grid;
    place-items: center;
    padding: 52px 20px 90px;
}

.login-card {
    width: min(100%, 460px);
}

.form-feedback {
    min-height: 24px;
    margin: 0;
    color: var(--petrol);
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .hero-shell,
    .landing-shell,
    .overview-shell,
    .process-grid,
    .trainpro-shell,
    .trainpro-stage-bottom,
    .services-foundation-shell,
    .contact-shell,
    .map-shell,
    .privacy-grid,
    .authority-grid,
    .pain-grid,
    .cards-grid-services,
    .admin-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel-grid,
    .overview-list,
    .overview-signals,
    .trainpro-points {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 1120px) {
    .trainpro-summary-grid,
    .trainpro-pricing-grid,
    .trainpro-lesson-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trainpro-page-hero-shell,
    .trainpro-operations-grid,
    .trainpro-offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1120px) {
    .site-nav {
        position: fixed;
        inset: 59px 0 0 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        padding: 24px 24px 32px;
        border-radius: 0;
        background: #f7fafc;
        border: 0;
        box-shadow: var(--shadow);
        min-height: calc(100vh - 59px);
        overflow-y: auto;
    }

    .site-nav > a.social-link {
        width: 100%;
        justify-content: center;
        border-radius: 16px;
    }

    .button-maturity::before {
        inset: 8px auto auto 12px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 820px) {
    .hero-card {
        display: none;
    }

    .hero-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 68px 0;
    }

    .team-shell {
        padding: 28px 22px;
    }

    .team-layout {
        grid-template-columns: 1fr;
    }

    .team-band {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
    }

    .reviews-google-button {
        width: 100%;
        min-width: 0;
    }

    .contact-form-grid,
    .cards-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .trainpro-page-intro-points,
    .trainpro-summary-grid,
    .trainpro-pricing-grid,
    .trainpro-lesson-grid,
    .faq-grid,
    .trainpro-offers-grid {
        grid-template-columns: 1fr;
    }

    .services-shell {
        gap: 24px;
    }

    .services-foundation {
        margin-top: 24px;
        padding-top: 24px;
    }

    .services-foundation-copy {
        padding: 22px;
    }

    .services-foundation-copy p {
        max-width: 100%;
    }

    .trainpro-point:last-child {
        grid-column: auto;
    }

    .service-card-refined,
    .authority-card-compact,
    .team-card,
    .trainpro-point {
        padding: 22px;
    }

    .container {
        width: min(calc(100% - 40px), var(--max));
    }

    .button {
        width: 100%;
    }

    .hero-maturity-note {
        max-width: 100%;
    }


    .brand-logo {
        width: 152px;
    }

    .hero-premium {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 7.2vw, 2.6rem);
        line-height: 1.12;
    }

    .hero-copy .lead {
        font-size: 0.98rem;
    }

    .hero-copy .button-secondary {
        display: none;
    }

    .hero-showcase {
        padding: 24px 22px;
        animation: none;
    }

    .hero-panel {
        grid-template-columns: 98px minmax(0, 1fr);
        min-height: auto;
        padding: 18px 16px;
        column-gap: 12px;
    }

    .hero-note {
        margin-top: 16px;
        padding: 18px;
    }

    .section-heading h2,
    .overview-copy h2,
    .cta-panel h2,
    .privacy-content h2,
    .landing-copy h1,
    .contact-copy h2,
    .trainpro-copy h2 {
        font-size: clamp(1.65rem, 6.2vw, 2.2rem);
        line-height: 1.12;
    }

    .trainpro-screen {
        padding: 14px;
    }

    .trainpro-screen-media {
        min-height: 360px;
    }

    .trainpro-carousel-card {
        flex-basis: 300px;
        height: 360px;
    }

    .trainpro-video-media .trainpro-carousel-track {
        padding: 12px;
    }

    .trainpro-carousel-card-lesson {
        flex-basis: 240px;
        height: 100%;
    }

    .trainpro-carousel-card figcaption {
        inset: auto 12px 12px 12px;
        padding: 16px 18px;
    }

    .risk-shell {
        padding: 30px 24px;
    }

    .risk-card {
        padding: 24px 22px;
    }

    .map-panel {
        order: 2;
    }

    .map-placeholder {
        display: block;
    }

    .map-panel-compact iframe {
        display: block;
        height: 140px;
        margin-top: 12px;
    }

    .map-button {
        width: 100%;
    }

    .contact-copy,
    .contact-form,
    .cta-panel {
        padding: 22px;
    }

    .landing-panel {
        padding: 24px 22px;
    }

    .landing-panel-logo {
        width: 144px;
    }

    .error-shell {
        grid-template-columns: 1fr;
    }

    .error-panel,
    .error-guide {
        padding: 24px 22px;
    }


    .contact-form-head {
        padding-bottom: 16px;
    }

    .form-field,
    .form-field-message {
        padding: 14px;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-submit {
        width: 100%;
        min-width: 0;
    }
}
