:root {
    --color-background: #ffffff;
    --color-surface: #ffffff;
    --color-surface-muted: rgba(2, 138, 250, 0.05);
    --color-text: #000000;
    --color-text-muted: rgba(0, 0, 0, 0.65);
    --color-accent: #028afa;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
    --max-width: 1100px;
}

@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Anton-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Epilogue-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Epilogue-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Epilogue';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Epilogue-Bold.ttf') format('truetype');
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Epilogue', Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.text-strong {
    font-weight: 600;
}

.text-highlight {
    font-weight: 600;
    color: var(--color-accent);
}

h1,
h2,
h3 {
    font-family: 'Anton', 'Epilogue', sans-serif;
    letter-spacing: 0.02em;
    margin-top: 0;
    color: var(--color-text);
    text-transform: uppercase;
}

h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 3vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.container {
    width: min(100% - 2.75rem, var(--max-width));
    margin: 0 auto;
}

.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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--color-accent);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 16px rgba(2, 138, 250, 0.3);
    transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

body.nav-open .site-header {
    transform: translateY(0);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 0;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
}

.logo img {
    display: block;
    height: 48px;
    width: auto;
}

.header-contact {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.header-contact a {
    color: #ffffff;
}

.header-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 4rem;
    margin-right: 0;
}

.site-nav {
    margin-left: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: inherit;
}

.site-nav {
    margin-left: auto;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.2rem;
    color: inherit;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:focus-visible::after,
.site-nav a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.4rem;
    transition: background-color 0.2s ease;
    color: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle:focus-visible,
.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
}

.hero {
    position: relative;
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 10vw, 7.5rem);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2)),
        url('../images/hero.webp') center center / cover no-repeat;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    justify-items: stretch;
    width: 100%;
    max-width: none;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.hero h1 {
    font-size: clamp(3.5rem, 9vw, 6rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-heading {
    width: 100%;
    display: block;
    text-align: center;
}

.hero .hero-tagline,
.hero .hero-actions {
    justify-self: center;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.hero-description {
    margin: -1.5rem auto 1.25rem;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-call {
    position: relative;
    min-width: 200px;
}

.hero-call span[data-call-number] {
    display: none;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.hero-call[data-number-visible] {
    cursor: default;
}

.hero-call[data-number-visible] span[data-call-label] {
    display: none;
}

.hero-call[data-number-visible] span[data-call-number] {
    display: inline;
}

.site-nav .nav-legal {
    display: none;
}

.hero-actions .button-primary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.22);
    background: rgba(255, 255, 255, 0.18);
}

.hero-actions .button-secondary.hero-call {
    background: var(--color-accent);
    color: #ffffff;
    border-color: transparent;
}

.hero-actions .button-secondary.hero-call:hover,
.hero-actions .button-secondary.hero-call:focus-visible {
    box-shadow: 0 12px 25px rgba(2, 138, 250, 0.35);
    transform: translateY(-2px);
}


.section {
    padding: clamp(4rem, 10vw, 7rem) 0;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 620px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0 0 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card.is-open {
    border-bottom-color: rgba(2, 138, 250, 0.55);
}

.service-card__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.35rem 0;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.service-card__header:focus-visible {
    outline: 3px solid rgba(2, 138, 250, 0.35);
    outline-offset: 4px;
}

.service-card__title {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    font-family: 'Anton', 'Epilogue', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    justify-self: center;
}

.service-card__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-card__icon::before {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.service-card.is-open .service-card__icon::before {
    transform: rotate(-135deg);
}

.service-card__panel {
    margin-top: 0;
    border-top: 1px solid transparent;
    overflow: hidden;
    height: 0;
    transition: height 0.28s ease;
}

.service-card__panel[hidden] {
    display: none;
}

.service-card.is-open .service-card__panel {
    margin-top: 0.5rem;
    border-top-color: rgba(0, 0, 0, 0.08);
}

.service-card__panel-inner {
    padding-top: 0.5rem;
    text-align: center;
}

.service-card ul {
    margin: 0;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: var(--color-text-muted);
    text-align: left;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.service-item__title {
    display: block;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-card__note {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    font-style: italic;
    text-align: center;
    color: rgba(0, 0, 0, 0.55);
}

.service-detail {
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.15rem;
}

.service-card li {
    list-style: disc;
}

.service-card--highlight {
    background: transparent;
    color: var(--color-text);
    gap: 0.75rem;
    border-radius: 0;
    padding: 1.5rem 0 0;
    border: none;
    text-align: center;
}

.service-card--highlight p {
    color: inherit;
}

.service-card__highlight-text {
    font-weight: 600;
    letter-spacing: 0.08em;
}

.service-card--highlight .button {
    align-self: center;
}

.service-card__cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.service-card--highlight .button-secondary {
    border-color: rgba(2, 138, 250, 0.45);
    color: var(--color-text);
    background: transparent;
}

.service-card--highlight .button-secondary:hover,
.service-card--highlight .button-secondary:focus-visible {
    box-shadow: 0 12px 25px rgba(2, 138, 250, 0.2);
    background: rgba(2, 138, 250, 0.08);
}

.service-card__cta--desktop {
    display: none;
}

.service-card--highlight .service-card__cta--mobile {
    display: inline-flex;
    background: var(--color-accent);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(2, 138, 250, 0.22);
}

.service-card--highlight .service-card__cta--mobile:hover,
.service-card--highlight .service-card__cta--mobile:focus-visible {
    box-shadow: 0 18px 36px rgba(2, 138, 250, 0.3);
    transform: translateY(-2px);
}

.service-card__cta--desktop {
    background: rgba(2, 138, 250, 0.08);
    border-color: rgba(2, 138, 250, 0.35);
    color: var(--color-text);
}

.service-card__cta--desktop:hover,
.service-card__cta--desktop:focus-visible {
    box-shadow: 0 14px 30px rgba(2, 138, 250, 0.18);
    background: rgba(2, 138, 250, 0.12);
}

@media (min-width: 768px) {
    .service-card--highlight .service-card__cta--mobile {
        display: none;
    }

    .service-card__cta--desktop {
        display: inline-flex;
    }

    .service-card__cta-group {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

.section-team {
    background: var(--color-surface-muted);
}

.section-services h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.team-card {
    background: rgba(2, 138, 250, 0.12);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid rgba(2, 138, 250, 0.35);
    display: grid;
    gap: 1.5rem;
    box-shadow: 0 25px 45px rgba(2, 138, 250, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover,
.team-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 35px 60px rgba(2, 138, 250, 0.3);
}

.team-card__media {
    border-radius: 50%;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.3), rgba(2, 138, 250, 0.45));
    border: 4px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 20px rgba(2, 138, 250, 0.3);
}

.team-card__initials {
    font-family: 'Anton', 'Epilogue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
}

.team-card__content h3 {
    margin-bottom: 0.75rem;
}

.contact-intro {
    max-width: 620px;
}

.contact-form {
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-soft);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.field-full {
    grid-column: 1 / -1;
}

.share-links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.share-links a {
    color: var(--color-accent);
    letter-spacing: 0.12em;
    font-size: 0.82rem;
}

.name-field__inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.name-field__column {
    display: grid;
    gap: 0.45rem;
}

@media (max-width: 640px) {
    .name-field__inputs {
        grid-template-columns: 1fr;
    }
}

label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text);
}

input,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-text);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    font-size: 1rem;
}

.file-field input[type='file'] {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.75);
    color: var(--color-text);
}

.file-field input[type='file']::file-selector-button {
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: none;
    background: var(--color-accent);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.file-field input[type='file']:focus-visible {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(2, 138, 250, 0.2);
    outline: none;
}

.has-error input,
.has-error textarea {
    border-color: rgba(220, 38, 38, 0.7);
}

input::placeholder,
textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

input:focus-visible,
textarea:focus-visible {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(2, 138, 250, 0.2);
    outline: none;
}

.form-status {
    margin-bottom: 1.5rem;
    padding: 0.95rem 1.2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.form-status--success {
    background: rgba(2, 138, 250, 0.1);
    color: var(--color-text);
    border: 1px solid rgba(2, 138, 250, 0.35);
}

.form-status--error {
    background: rgba(220, 38, 38, 0.12);
    color: #7f1d1d;
    border: 1px solid rgba(220, 38, 38, 0.35);
}

.form-error {
    font-size: 0.8rem;
    color: #7f1d1d;
}

.file-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.form-note a {
    color: var(--color-accent);
}

.mobile-call-action {
    position: fixed;
    right: 1.5rem;
    transform: translateY(20px);
    bottom: 1.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-accent);
    color: #ffffff;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: block;
}

.mobile-call-action.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.nav-open .mobile-call-action {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.legal-page {
    background: linear-gradient(180deg, rgba(2, 138, 250, 0.05), rgba(255, 255, 255, 1) 60%);
}

.legal-container {
    max-width: 100vw;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    color: var(--color-text);
}

.legal-container h1 {
  font-size: clamp(1.5rem, 8vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}



.legal-container h2 {
    font-family: 'Anton', 'Epilogue', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    margin: 1.5rem 0 0.5rem;
}

.legal-container p {
    color: var(--color-text);
    line-height: 1.7;
}

.legal-container a {
    color: var(--color-accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-size: 0.85rem;
}

.button-primary {
    background: var(--color-accent);
    color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(2, 138, 250, 0.35);
}

.button-secondary {
    background: transparent;
    border-color: rgba(2, 138, 250, 0.45);
    color: var(--color-text);
    background-color: rgba(2, 138, 250, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(2, 138, 250, 0.25);
}

.button-disabled {
    background: rgba(2, 138, 250, 0.08);
    color: rgba(0, 0, 0, 0.35);
    cursor: not-allowed;
}

.site-footer {
    padding: 3.5rem 0 2.5rem;
    background: #000000;
    border-top: 4px solid rgba(2, 138, 250, 0.35);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 10;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem 3.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo-text {
    color: #ffffff;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 200px;
}

.footer-logo__image {
    width: 100%;
    height: auto;
    display: block;
}

.footer-heading {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.footer-list a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
    color: rgba(255, 255, 255, 0.65);
    opacity: 0.8;
}

.site-footer p {
    margin: 0;
    color: inherit;
}

.footer-meta {
    margin-top: 2.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.footer-share span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-share a {
    color: var(--color-accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p+p {
    margin-top: 0.25rem;
}

@media (max-width: 960px) {
    .service-grid {
        gap: 0.85rem;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        padding: 0.85rem 0;
    }

    .site-nav {
        position: absolute;
        inset: 100% 0 auto;
        background: rgba(2, 138, 250, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease;
    }

    .site-nav.is-open {
        max-height: 300px;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.5rem 1.5rem;
        gap: 1.25rem;
    }

    .site-nav .nav-legal {
        display: block;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .service-grid {
        gap: 0.75rem;
    }

    .field-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        min-height: 100vh;
        padding: 5rem 0 4rem;
    }

    .hero-actions {
        flex-direction: column;
        width: min(320px, 100%);
    }

    .hero-description {
        margin: 0 auto 1rem;
        text-align: center;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-text {
        font-size: 1rem;
    }

    .mobile-call-action {
        display: block;
    }

    .share-links,
    .footer-share {
        justify-content: center;
    }
}

@media (min-width: 961px) {
    .site-header .container {
        flex-wrap: nowrap;
    }

    .header-left {
        margin-right: 2.5rem;
        gap: 2rem;
    }

    .header-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 540px) {
    .hero-tagline {
        letter-spacing: 0.18em;
    }
}
