@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ─── Design Tokens ──────────────────────────────────────────────── */

:root {
    --color-primary: #0099CC;
    --color-secondary: #00a656;
    --color-black: #000;
    --color-white: #fff;
    --color-nav-active-bg: #e8f4fc;
    --color-eyebrow: #4aa3d5;
    --color-body-muted: #5A5A5A;
    --font-oswald: "Oswald", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    --breakpoint-nav: 900px;
    --header-height: 70px;
}

/* ─── Reset ──────────────────────────────────────────────────────── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Base ───────────────────────────────────────────────────────── */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-montserrat);
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

body.body--nav-open {
    overflow: hidden;
}

/* ─── Utilities ──────────────────────────────────────────────────── */

.container {
    max-width: 90%;
    margin: 0 auto;
}

.container_md {
    max-width: 90%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Section Titles ─────────────────────────────────────────────── */

.section-title {
    margin-bottom: 40px;
}

.section-title__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.section-title__title {
    font-family: var(--font-oswald);
    font-size: 40px;
    font-weight: 700;
    line-height: 49.9px;
    color: var(--color-black);
    margin-bottom: 16px;
    letter-spacing: 0.83px;
}

.section-title__rule {
    display: block;
    width: clamp(2.75rem, 12vw, 3.5rem);
    height: 4px;
    margin-bottom: 26px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.section-title__intro {
    color: #5A5A5A;
    font-size: 15px;
    line-height: 26.1px;
    max-width: 600px;
    margin-inline: auto;
}

.section-head .section-title__rule {
    margin-inline: auto;
}

.section-head--left .section-title__rule {
    margin-left: 0;
    margin-right: auto;
}

.section-head__intro {
    font-family: var(--font-montserrat);
    font-size: clamp(0.875rem, 2.8vw, 1rem);
    line-height: 1.65;
    color: var(--color-body-muted);
    margin: 0;
    text-wrap: pretty;
    max-width: 100%;
}

.section-title--center {
    text-align: center;
}

.section-title--center .section-title__rule {
    margin-inline: auto;
}

.section-title--left .section-title__rule {
    margin-left: 0;
    margin-right: auto;
}

/* ─── Page Hero ──────────────────────────────────────────────────── */

.page-hero {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: clamp(3rem, 8vw, 5rem) 0;
    overflow: hidden;
    min-height: clamp(260px, 46vw + 140px, 400px);
    height: auto;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.page-hero__text {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.page-hero__decor {
    display: block;
    justify-self: end;
    position: absolute;
    right: 0;
    top: 0;
    height: auto;
    width: auto;
    max-height: min(320px, max(104px, 34vw));
    object-fit: contain;
    object-position: top right;
    pointer-events: none;
}

.page-hero__crumb {
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 26px;
    line-height: 1.4;
    color: var(--color-white);
}

.page-hero__crumb-link {
    color: inherit;
    text-decoration: none;
    opacity: 0.72;
    transition: opacity 0.15s ease;
}

.page-hero__crumb-rest {
    opacity: 1;
    font-weight: 600;
}

.page-hero__title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    text-wrap: balance;
    color: var(--color-white);
}

.page-hero__lead {
    font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.65;
    margin: 0;
    max-width: 36rem;
    opacity: 0.94;
    color: var(--color-white);
}

/* ─── Header ─────────────────────────────────────────────────────── */

.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid #e0e4ea;
    box-shadow: 0 4px 24px 0 rgb(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    min-height: var(--header-height);
}

.site-header__shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: auto;
    max-height: 44px;
    width: auto;
    max-width: min(168px, 48vw);
}

/* ─── Menu Toggle ────────────────────────────────────────────────── */

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-black);
    flex-shrink: 0;
    position: relative;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header--open .menu-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header--open .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}

.site-header--open .menu-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ─── Nav Backdrop ───────────────────────────────────────────────── */

.nav-backdrop {
    display: none;
}

/* ─── Navigation ─────────────────────────────────────────────────── */

.nav {
    list-style: none;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-black);
    border-radius: 4px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link--active {
    background-color: var(--color-nav-active-bg);
    color: var(--color-primary);
}

.nav-link--active:hover {
    color: var(--color-primary);
}

.nav__cta {
    display: flex;
    margin-top: 0.5rem;
}

.header__cta {
    display: none !important;
}

/* ─── Buttons ────────────────────────────────────────────────────── */

.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.51px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-radius: 4px;
    transition: filter 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

.btn-apply:hover {
    filter: brightness(1.05);
}

.btn-apply:active {
    transform: translateY(1px);
}

.btn {
    flex: 1 1 auto;
    min-width: min(100%, 12rem);
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: filter 0.15s ease, background-color 0.15s ease, color 0.15s ease,
        border-color 0.15s ease;
}

.btn--primary {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn--primary:hover {
    filter: brightness(1.06);
}

.btn--secondary {
    color: var(--color-black);
    background-color: var(--color-white);
    border-color: rgba(0, 0, 0, 0.55);
}

.btn--secondary:hover {
    border-color: var(--color-black);
    color: var(--color-black);
}

/* ─── Hero Section ───────────────────────────────────────────────── */

.hero {
    position: relative;
    background-color: var(--color-white);
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - var(--header-height));
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-inline: 5%;
}

.hero__decor {
    position: absolute;
    bottom: 0;
    left: 0;
}

.hero__eyebrow {
    font-size: clamp(0.7rem, 2.8vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-eyebrow);
    margin-bottom: 0.5rem;
}

.hero__title {
    font-family: var(--font-oswald);
    font-size: clamp(1.85rem, 6vw, 3.125rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.hero__lead {
    font-size: clamp(0.95rem, 3.2vw, 1.0625rem);
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: var(--color-black);
    margin-bottom: clamp(1.25rem, 4vw, 2.5rem);
    max-width: 565px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.hero__media {
    order: 2;
    position: relative;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-block: clamp(1rem, 4vw, 2rem);
}

.hero__profile-img {
    display: block;
    width: 90%;
    height: 90%;
    object-fit: contain;
    object-position: top center;
    margin: auto;
}

/* ─── Statistics ─────────────────────────────────────────────────── */

.statistics {
    position: relative;
    overflow: hidden;
    background-color: #0099cc;
    min-height: clamp(10.5rem, 26vw, 13.4rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(0.75rem, 4vw, 1.5rem);
    width: 100%;
}

.stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 60rem;
    margin-inline: auto;
    box-sizing: border-box;
    gap: 15px;
}

.stats-list__item {
    text-align: center;
}

.stats-list__value {
    font-family: var(--font-oswald);
    font-weight: 800;
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.05;
    color: var(--color-white);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.stats-list__num {
    display: inline;
}

.stats-list__plus {
    display: inline;
    margin-left: 0.05em;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 800;
    color: var(--color-white);
}

.stats-list__label {
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.54px;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1.35;
    opacity: 0.8;
    word-break: break-word;
}

.stats-list__divider {
    flex-shrink: 0;
    align-self: center;
    width: min(5rem, 36%);
    height: 1px;
    margin: clamp(0.3rem, 1.8vw, 0.55rem) auto;
    background: rgba(255, 255, 255, 0.32);
}

/* ─── About (Homepage) ───────────────────────────────────────────── */

.about {
    background-color: var(--color-white);
    padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
}

.about__figure {
    position: relative;
    margin: 0;
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.about__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.about__badge {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: calc(100% - 1.5rem);
    padding: clamp(0.65rem, 2vw, 1rem) clamp(0.85rem, 2.5vw, 1.25rem);
    background-color: #0B80BE;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 14px;
    line-height: 1.15;
    border-top-left-radius: 10px;
}

.about__badge-year {
    font-family: var(--font-oswald);
    font-size: 24px;
    font-weight: 700;
}

.about__badge-text {
    font-size: 11px;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.about__content {
    max-width: 36rem;
}

.about__body {
    margin-bottom: 1.5rem;
}

.about__body p {
    font-size: clamp(0.9375rem, 2.2vw, 1rem);
    line-height: 29.6px;
    color: var(--color-body-muted);
    margin: 0 0 1rem;
}

.about__body p:last-child {
    margin-bottom: 0;
}

.about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.86px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-primary);
    transition: color 0.15s ease, gap 0.15s ease;
    padding-bottom: 4px;
    border-bottom: 1.6px solid var(--color-primary);
}

.about__link:hover {
    color: #086a9e;
    gap: 0.5rem;
}

.about__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

.about__link-arrow {
    font-size: 1.05em;
    line-height: 1;
}

/* ─── Info Card ──────────────────────────────────────────────────── */

.info-card {
    position: relative;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: left;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #E0E4EA;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 200px;
    height: 4px;
    background-color: #0B80BE;
    border-radius: 0 0 200px 200px;
    transform-origin: center;
    transition: transform 0.25s ease;
    pointer-events: none;
}

.info-card__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    background-color: #eef0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card__icon {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.info-card__title {
    font-family: var(--font-oswald);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.28;
    color: var(--color-black);
    margin-bottom: 10px;
    text-wrap: balance;
}

.info-card__text {
    font-size: 14px;
    line-height: 23.9px;
    color: var(--color-body-muted);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ─── Approach ───────────────────────────────────────────────────── */

.approach {
    background-color: #f4f6f9;
    padding: clamp(2rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.approach .container {
    position: relative;
    z-index: 2;
}

.approach__shape {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.approach__shape--left {
    left: -60px;
    top: 0;
    height: 100%;
    width: auto;
    max-height: 480px;
    opacity: 0.6;
}

.approach__shape--right {
    right: -35px;
    bottom: 0;
    height: 100%;
    width: auto;
    max-height: 640px;
    opacity: 0.6;
}

.approach__cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(300px, 1fr));
    gap: clamp(1rem, 3.5vw, 1.75rem);
}

/* ─── Services ───────────────────────────────────────────────────── */

.services {
    background-color: var(--color-white);
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.services__cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(300px, 1fr));
    gap: clamp(1rem, 3.5vw, 1.75rem);
}

/* ─── Sectors ────────────────────────────────────────────────────── */

.sectors {
    background-color: #f4f6f9;
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.sectors__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.sector-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background-color: var(--color-white);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E4EA;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.sector-pill__icon {
    display: block;
    width: clamp(1.5rem, 4vw, 1.75rem);
    height: clamp(1.5rem, 4vw, 1.75rem);
    flex-shrink: 0;
    object-fit: contain;
}

.sector-pill__label {
    font-family: var(--font-oswald);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #464545;
    line-height: 1.3;
    text-wrap: balance;
}

/* ─── Page CTA ───────────────────────────────────────────────────── */

.page-cta {
    position: relative;
    overflow: hidden;
    background-color: var(--page-cta-bg);
}

.page-cta__shape {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    opacity: var(--page-cta-shape-opacity, 1);
    pointer-events: none;
    z-index: 0;
}

.page-cta__inner {
    position: relative;
    z-index: 1;
    margin-inline: auto;
    max-width: min(1100px, 100%);
    padding-inline: clamp(0.5rem, 3vw, 1rem);
    padding-block: var(--page-cta-padding-y, clamp(2.5rem, 6vw, 4rem));
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: var(--page-cta-inner-min-height, 0);
    box-sizing: border-box;
}

.page-cta__title {
    font-family: var(--font-oswald);
    font-weight: 700;
    font-size: clamp(1.65rem, 4.8vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--page-cta-title-color);
    margin-bottom: 30px;
    text-wrap: balance;
}

.page-cta__text {
    font-weight: 400;
    font-size: clamp(0.875rem, 2.4vw, 1rem);
    line-height: 1.65;
    color: var(--page-cta-text-color);
    margin-bottom: 40px;
    max-width: 36rem;
    text-wrap: pretty;
    opacity: var(--page-cta-text-opacity, 1);
}

.page-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.65rem, 2vw, 0.85rem);
}

.page-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem clamp(1.5rem, 4vw, 2.25rem);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.58px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
        transform 0.15s ease;
}

.page-cta__btn--primary {
    background-color: var(--page-cta-btn-primary-bg);
    color: var(--page-cta-btn-primary-fg);
    border-color: var(--page-cta-btn-primary-border);
}

.page-cta__btn--secondary {
    background-color: var(--page-cta-btn-secondary-bg);
    color: var(--page-cta-btn-secondary-fg);
    border-color: var(--page-cta-btn-secondary-border);
}

.page-cta__btn:active {
    transform: translateY(0);
}

.page-cta--brand {
    --page-cta-bg: var(--color-secondary);
    --page-cta-shape-opacity: 0.95;
    --page-cta-padding-y: clamp(2.5rem, 6vw, 4rem);
    --page-cta-inner-min-height: clamp(280px, 50vw, 450px);
    --page-cta-title-color: var(--color-white);
    --page-cta-text-color: var(--color-white);
    --page-cta-text-opacity: 0.92;
    --page-cta-btn-primary-bg: var(--color-white);
    --page-cta-btn-primary-fg: var(--color-secondary);
    --page-cta-btn-primary-border: var(--color-white);
    --page-cta-btn-secondary-bg: transparent;
    --page-cta-btn-secondary-fg: var(--color-white);
    --page-cta-btn-secondary-border: var(--color-white);
}

.page-cta--brand .page-cta__btn {
    max-width: 100%;
}

.page-cta--brand .page-cta__btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

.page-cta--soft {
    --page-cta-bg: #f4f6f9;
    --page-cta-shape-opacity: 0.65;
    --page-cta-padding-y: clamp(2.75rem, 8vw, 5.625rem);
    --page-cta-inner-min-height: 0;
    --page-cta-title-color: var(--color-black);
    --page-cta-text-color: var(--color-black);
    --page-cta-text-opacity: 1;
    --page-cta-btn-primary-bg: var(--color-secondary);
    --page-cta-btn-primary-fg: var(--color-white);
    --page-cta-btn-primary-border: var(--color-secondary);
    --page-cta-btn-secondary-bg: var(--color-white);
    --page-cta-btn-secondary-fg: var(--color-black);
    --page-cta-btn-secondary-border: var(--color-black);
}

.page-cta--soft .page-cta__btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

/* ─── Footer ─────────────────────────────────────────────────────── */

.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.site-footer__logo-link {
    display: inline-block;
    line-height: 0;
    margin-bottom: 1rem;
}

.site-footer__logo {
    display: block;
    height: auto;
    max-height: 48px;
    width: auto;
    max-width: min(200px, 70vw);
}

.site-footer__text {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
    max-width: 500px;
}

.site-footer__tag {
    display: inline-block;
    margin: 0;
    padding: 12px 20px;
    font-size: clamp(0.68rem, 1.8vw, 0.75rem);
    line-height: 1.35;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    max-width: 100%;
    border: 1px solid #ffffff41;
}

.site-footer__heading {
    font-family: var(--font-oswald);
    font-size: clamp(0.7rem, 1.8vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0 0 1.1rem;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__links a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.96;
    transition: opacity 0.15s ease;
}

.site-footer__social {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.site-footer__social-btn {
    width: 38px;
    height: 38px;
    background-color: #383D38;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer__social-btn:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

.site-footer__email-label {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 14px;
    opacity: 0.95;
}

.site-footer__email {
    font-size: 14px;
    color: var(--color-white);
    text-decoration: none;
    word-break: break-word;
}

.site-footer__email:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
    border-radius: 2px;
}

.site-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.site-footer__bar-inner {
    padding: clamp(1rem, 2.5vw, 1.35rem) 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.5rem;
}

.site-footer__copy,
.site-footer__legal {
    font-size: clamp(0.75rem, 2vw, 0.8125rem);
    font-weight: 400;
    margin: 0;
    opacity: 0.95;
}

.site-footer__legal a {
    color: var(--color-white);
    text-decoration: none;
}

.site-footer__legal-sep {
    opacity: 0.85;
}

/* ════════════════════════════════════════════════════════════════════
   HOVER STATES
   ════════════════════════════════════════════════════════════════════ */

@media (hover: hover) {
    .page-hero__crumb-link:hover {
        opacity: 1;
    }

    .info-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .info-card:hover::before {
        transform: translateX(-50%) scaleX(1);
    }

    .page-cta--brand .page-cta__btn--primary:hover {
        background-color: rgba(255, 255, 255, 0.92);
        transform: translateY(-1px);
    }

    .page-cta--brand .page-cta__btn--secondary:hover {
        background-color: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
    }

    .page-cta--soft .page-cta__btn--primary:hover {
        background-color: #008f4a;
        border-color: #008f4a;
        transform: translateY(-1px);
    }

    .page-cta--soft .page-cta__btn--secondary:hover {
        background-color: #fafafa;
        transform: translateY(-1px);
    }

    .site-footer__links a:hover {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .site-footer__social-btn:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }

    .site-footer__email:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .site-footer__legal a:hover {
        text-decoration: underline;
        text-underline-offset: 3px;
    }
}

/* ════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {

    .nav,
    .nav-backdrop,
    .menu-toggle__bar {
        transition: none;
    }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE  (mobile-first: max-width → then min-width ascending)
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 540px) {
    .hero__decor {
        width: 150px;
    }
}

@media (max-width: 719px) {
    .statistics__inner {
        padding-inline-end: clamp(1rem, 14vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-cta__shape {
        width: 100px;
    }
}

@media (max-width: 899px) {
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.38);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .site-header--open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(18.5rem, 88vw);
        padding: 1.25rem;
        background-color: var(--color-white);
        box-shadow: -8px 0 36px rgba(0, 0, 0, 0.14);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.28s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-header--open .nav {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.125rem;
    }

    .nav-link {
        display: block;
        padding: 0.9rem 0.75rem;
    }

    .nav__cta {
        justify-content: center;
        width: 100%;
        margin-top: auto;
        padding-top: 0.5rem;
    }

    .section-title__title {
        font-size: clamp(1.75rem, 5vw + 0.5rem, 2.5rem);
        line-height: 1.15;
    }
}

@media (min-width: 480px) {
    .btn {
        flex: 0 1 auto;
        min-width: unset;
        max-width: 234px;
    }
}

@media (min-width: 600px) {
    .page-hero__decor {
        max-height: min(360px, max(140px, 36vw));
    }
}

@media (min-width: 720px) {
    .stats-list {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 70px;
    }

    .stats-list__divider {
        width: 1px;
        height: clamp(2.75rem, 7vw, 4.25rem);
        margin: 0;
    }
}

@media (min-width: 900px) {
    .menu-toggle {
        display: none;
    }

    .nav-backdrop {
        display: none !important;
    }

    .header__cta {
        display: inline-block !important;
        flex-shrink: 0;
        margin-left: 1rem;
    }

    .nav__cta {
        display: none !important;
    }

    .nav {
        position: static;
        transform: none !important;
        flex: 1;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-width: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        width: auto;
        max-width: none;
        overflow: visible;
    }

    .site-header__shell {
        flex-wrap: nowrap;
    }

    .page-hero {
        min-height: 400px;
        height: 400px;
    }

    .page-hero__decor {
        height: 400px;
        max-height: none;
    }

    .page-hero__inner--split {
        grid-template-columns: minmax(0, 1fr) minmax(200px, 38%);
    }

    .site-footer__main {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr) minmax(0, 0.95fr);
        align-items: start;
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

@media (min-width: 960px) {
    .about__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 40px;
    }

    .about__content {
        max-width: none;
    }
}

@media (min-width: 1025px) {
    .container_md {
        max-width: 70%;
    }

    .hero {
        overflow: hidden;
        min-height: calc(100svh - var(--header-height));
    }

    .hero__media {
        position: absolute;
        top: -130px;
        right: -130px;
        order: 0;
        width: clamp(480px, 52vw, 720px);
        padding-block: 0;
        display: block;
    }

    .hero__profile-img {
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}