:root {
    --bg: #f4f7fb;
    --bg-soft: #eef3f8;
    --surface: #ffffff;
    --surface-2: #f9fbff;
    --text: #102033;
    --muted: #5b6f86;
    --line: #d6e0ea;
    --primary: #0a7f6f;
    --primary-2: #0d9b88;
    --accent: #f59e0b;
    --shadow: 0 16px 40px rgba(16, 32, 51, 0.12);
    --radius: 18px;
    --font-body: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Outfit', 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background:
        radial-gradient(circle at 8% 6%, rgba(13, 155, 136, 0.12), transparent 32%),
        radial-gradient(circle at 92% 9%, rgba(245, 158, 11, 0.12), transparent 36%),
        linear-gradient(180deg, #f7fafd 0%, #eef3f9 100%);
}

body.nav-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 2.6rem));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: relative;
    z-index: 120;
}

.header-top {
    position: relative;
    z-index: 140;
    padding-top: 0.62rem;
    padding-bottom: 0.5rem;
}

.utility-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.55rem;
}

.utility-card {
    min-width: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.94));
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(12, 24, 37, 0.08);
    padding: 0.35rem 0.46rem;
}

.utility-group {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.utility-title {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6f8398;
    font-weight: 800;
    white-space: nowrap;
}

.utility-links {
    min-width: 0;
}

.utility-list,
.social-list,
.language-list {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.utility-links .utility-list {
    display: flex;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
}

.utility-links .utility-list::-webkit-scrollbar {
    display: none;
}

.quick-link-chip {
    flex: 0 0 auto;
    height: 25px;
    border-radius: 8px;
    border: 1px solid #c8d9e8;
    background: linear-gradient(135deg, #eef6ff, #e4f1ff);
    color: #1b4565;
    padding: 0 0.44rem;
    display: inline-flex;
    align-items: center;
    gap: 0.26rem;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 10px rgba(15, 44, 71, 0.08);
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.quick-link-chip:hover {
    transform: translateY(-1px);
    filter: saturate(1.02);
    box-shadow: 0 8px 14px rgba(15, 44, 71, 0.12);
}

.quick-link-chip svg,
.quick-link-chip .quick-link-text {
    color: inherit;
}

.quick-link-chip.quick-link-variant-1 {
    background: linear-gradient(135deg, #e8f5ff, #dceeff);
    border-color: #c0d9ec;
    color: #184766;
}

.quick-link-chip.quick-link-variant-2 {
    background: linear-gradient(135deg, #ebf1ff, #dee8ff);
    border-color: #c7d5ef;
    color: #264674;
}

.quick-link-chip.quick-link-variant-3 {
    background: linear-gradient(135deg, #fff2e5, #ffe6cc);
    border-color: #efd2b1;
    color: #7a4d1f;
}

.quick-link-chip.quick-link-variant-4 {
    background: linear-gradient(135deg, #f2edff, #e7ddff);
    border-color: #d5c8ef;
    color: #4f3f86;
}

.quick-link-chip.quick-link-variant-5 {
    background: linear-gradient(135deg, #e9f8ef, #d9f0e5);
    border-color: #c2e2d2;
    color: #1f5f45;
}

.quick-link-chip.quick-link-variant-6 {
    background: linear-gradient(135deg, #edf4ff, #dfeaff);
    border-color: #c6d7f0;
    color: #23486f;
}

.quick-link-chip.is-phone {
    background: linear-gradient(135deg, #e7f8ee, #d5efdf);
    border-color: #b9dec9;
    color: #196444;
}

.quick-link-chip.is-whatsapp {
    background: linear-gradient(135deg, #e6f9ed, #cef0dc);
    border-color: #b3dfc4;
    color: #147448;
}

.quick-link-chip svg {
    width: 11px;
    height: 11px;
}

.utility-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.utility-social {
    gap: 0.3rem;
}

.utility-social .utility-title {
    display: none;
}

.social-list {
    flex-wrap: nowrap;
}

.social-chip {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff, #edf6ff);
    border: 1px solid #cddded;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(16, 36, 52, 0.09);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.social-chip:hover {
    transform: translateY(-2px);
    border-color: #9ebcd2;
    box-shadow: 0 10px 18px rgba(16, 36, 52, 0.14);
}

.social-chip svg {
    width: 20px;
    height: 20px;
}

.social-chip.platform-instagram,
.footer-social-chip.platform-instagram { color: #e4405f; }

.social-chip.platform-x,
.social-chip.platform-twitter { color: #111111; }

.social-chip.platform-facebook,
.footer-social-chip.platform-facebook { color: #1877f2; }

.social-chip.platform-linkedin,
.footer-social-chip.platform-linkedin { color: #0a66c2; }

.social-chip.platform-youtube,
.footer-social-chip.platform-youtube { color: #ff0000; }

.footer-social-chip.platform-x,
.footer-social-chip.platform-twitter { color: #e6eff5; }

.social-chip.platform-tiktok,
.footer-social-chip.platform-tiktok { color: #111111; }

.social-chip.platform-threads,
.footer-social-chip.platform-threads { color: #111111; }

.social-chip.platform-telegram,
.footer-social-chip.platform-telegram { color: #229ed9; }

.social-chip.platform-whatsapp,
.footer-social-chip.platform-whatsapp { color: #25d366; }

.social-chip.platform-pinterest,
.footer-social-chip.platform-pinterest { color: #e60023; }

.social-chip.platform-snapchat,
.footer-social-chip.platform-snapchat { color: #f6c400; }

.social-chip.platform-github,
.footer-social-chip.platform-github { color: #24292f; }

.social-chip.platform-behance,
.footer-social-chip.platform-behance { color: #1769ff; }

.social-chip.platform-dribbble,
.footer-social-chip.platform-dribbble { color: #ea4c89; }

.social-chip.platform-custom,
.footer-social-chip.platform-custom { color: #0f5960; }

.utility-languages {
    position: relative;
    z-index: 720;
    gap: 0.28rem;
}

.lang-dropdown-toggle {
    height: 30px;
    border: 1px solid #c8d6e5;
    border-radius: 9px;
    background: #ffffff;
    color: #143e58;
    padding: 0 0.34rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
}

.lang-dropdown-toggle img {
    width: 16px;
    height: 11px;
    border-radius: 2px;
}

.lang-dropdown-toggle span {
    display: none;
}

.lang-dropdown-toggle svg {
    width: 14px;
    height: 14px;
    color: #0c5249;
    transition: transform 0.16s ease;
}

.utility-languages.is-open .lang-dropdown-toggle svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    display: none;
    gap: 0.3rem;
    padding: 0.36rem;
    border: 1px solid #d4e1ea;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.utility-languages.is-open .lang-dropdown-menu {
    display: inline-flex;
}

.lang-chip {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    border: 1px solid #cedbe7;
    background: #f8fbff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-chip img {
    width: 18px;
    height: 12px;
    border-radius: 2px;
}

.lang-chip span {
    display: none;
}

.lang-chip.is-active,
.lang-chip:hover {
    border-color: #afcde0;
    background: #edf7ff;
}

.header-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-top: 1px solid rgba(215, 225, 235, 0.7);
    border-bottom: 1px solid rgba(209, 221, 232, 0.82);
    background: rgba(244, 249, 255, 0.9);
    backdrop-filter: blur(10px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.72rem;
}

.brand.has-logo {
    gap: 0.62rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 22px rgba(10, 127, 111, 0.28);
}

.brand-logo {
    display: block;
    width: auto;
    height: 46px;
    max-width: 170px;
    object-fit: contain;
}

.brand.is-logo-only .brand-logo {
    height: 56px;
    max-width: 280px;
}

.brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.brand small {
    font-size: 0.8rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.26rem;
    margin-left: auto;
    padding: 0.24rem;
    border: 1px solid #cfdeea;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 248, 255, 0.9));
    box-shadow: 0 10px 22px rgba(16, 32, 51, 0.08);
}

.site-nav a {
    position: relative;
    height: 41px;
    padding: 0 0.98rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1b3851;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0.62rem;
    right: 0.62rem;
    bottom: 0.36rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f7f78, #1a6ac6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
    background: linear-gradient(180deg, #f0f8ff, #e3f0ff);
    color: #0f4f84;
    transform: translateY(-1px);
}

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

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
    height: 40px;
    width: 40px;
    padding: 0;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    color: #143e58;
}

.menu-toggle svg {
    width: 20px;
    height: 20px;
}

.hero {
    padding: 5rem 0 2.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.35rem;
    align-items: center;
}

.eyebrow {
    margin: 0;
    color: #0f6f61;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.hero h1,
.page-hero h1 {
    margin: 0.45rem 0 1rem;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.hero p {
    margin-top: 0;
    color: var(--muted);
    max-width: 62ch;
    font-size: 1rem;
}

.hero-card {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid #d7e3ee;
    padding: 1.4rem;
    background:
        linear-gradient(155deg, rgba(12, 127, 111, 0.1), rgba(13, 155, 136, 0.02) 46%),
        linear-gradient(180deg, #ffffff, #f6fbff);
    box-shadow: var(--shadow);
}

.hero-card h3 {
    margin-top: 0;
    margin-bottom: 0.65rem;
    font-size: 1.05rem;
}

.hero-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #36516a;
}

.hero-card li {
    margin-bottom: 0.45rem;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.15rem;
}

.section {
    padding: 3.5rem 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.58);
}

.home-hero {
    position: relative;
    padding-bottom: 3.1rem;
}

.home-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 2.6rem));
    height: 1px;
    background: linear-gradient(90deg, rgba(125, 154, 182, 0), rgba(125, 154, 182, 0.7), rgba(125, 154, 182, 0));
}

.home-section {
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(120% 80% at 100% 0, rgba(73, 163, 125, 0.08) 0%, rgba(73, 163, 125, 0) 62%),
        radial-gradient(100% 75% at 0 100%, rgba(34, 131, 162, 0.08) 0%, rgba(34, 131, 162, 0) 62%);
}

.home-section .container {
    position: relative;
    z-index: 1;
}

.home-section-about {
    border-top: 1px solid rgba(173, 196, 215, 0.5);
    border-bottom: 1px solid rgba(173, 196, 215, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(246, 251, 255, 0.9));
}

.home-section-offerings {
    border-top: 1px solid rgba(173, 196, 215, 0.45);
    border-bottom: 1px solid rgba(173, 196, 215, 0.32);
    background: linear-gradient(180deg, rgba(237, 247, 255, 0.9), rgba(246, 252, 255, 0.96));
}

.home-section-references {
    border-top: 1px solid rgba(169, 198, 196, 0.45);
    border-bottom: 1px solid rgba(169, 198, 196, 0.35);
    background: linear-gradient(180deg, rgba(242, 251, 247, 0.92), rgba(248, 252, 255, 0.96));
}

.home-section-cta {
    margin-top: 1.3rem;
    border-top: 0;
    border-radius: 24px 24px 0 0;
}

.home-section-cta::before {
    display: none;
}

@supports (content-visibility: auto) {
    .home-section-about,
    .home-section-offerings,
    .home-section-references,
    .home-section-cta,
    .reference-detail-section,
    .reference-gallery-section,
    .reference-related-section,
    .page-hero + .section {
        content-visibility: auto;
        contain-intrinsic-size: 1px 820px;
    }
}

.section-head {
    margin-bottom: 1.2rem;
    max-width: 70ch;
}

.section-head h2 {
    margin: 0.45rem 0 0.75rem;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1.22;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

.section-actions {
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.feature-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.feature-grid article,
.card {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid #d8e3ef;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(16, 32, 51, 0.08);
    padding: 1.15rem;
}

.card {
    display: flex;
    flex-direction: column;
}

.card-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid #d8e3ef;
    margin-bottom: 0.75rem;
    background: #edf3fa;
}

.feature-grid h3,
.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.08rem;
}

.feature-grid p,
.card p,
.card small {
    color: #50657d;
}

.card p {
    margin-top: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    height: 25px;
    padding: 0 0.62rem;
    border-radius: 999px;
    background: #e9f8f3;
    color: #0f6458;
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.cta-band {
    color: #ebfcf8;
    background: linear-gradient(135deg, #0b7a6b, #0b9e89);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cta-inner h2 {
    margin: 0;
    font-family: var(--font-heading);
}

.cta-inner p {
    color: rgba(235, 252, 248, 0.9);
    margin-top: 0.55rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    height: 44px;
    padding: 0 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
}

.btn-primary {
    color: #3d2a04;
    background: linear-gradient(180deg, #f9b92e, #f1a815);
}

.btn-secondary {
    background: #eef5fb;
    border-color: #d3e2ef;
    color: #173b57;
}

.btn-ghost {
    background: #ffffff;
    border-color: #cfe0ec;
    color: #153f5a;
}

.inline-link {
    display: inline-block;
    color: #0d6286;
    font-weight: 800;
    margin-top: auto;
    padding-top: 0.5rem;
}

.page-hero {
    padding-top: 2.1rem;
    padding-bottom: 1.1rem;
}

.page-hero p {
    margin: 0;
    color: var(--muted);
}

.prose {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #d7e3ee;
    border-radius: var(--radius);
    padding: 1.3rem;
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.06);
}

.prose p,
.prose li {
    color: #2f455c;
    line-height: 1.72;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
}

.contact-card,
.contact-form {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid #d8e3ef;
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(16, 32, 51, 0.06);
}

.contact-card h3 {
    margin-top: 0;
}

.contact-card ul {
    margin: 0;
    padding-left: 1rem;
}

.contact-card li {
    margin-bottom: 0.52rem;
    color: #3e5770;
}

.contact-form label {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.78rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #cedbe7;
    border-radius: 10px;
    background: #ffffff;
    color: #112235;
    padding: 0.62rem 0.72rem;
    font: inherit;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #8ab0cc;
    box-shadow: 0 0 0 3px rgba(33, 115, 168, 0.14);
}

.alert {
    border-radius: 10px;
    padding: 0.7rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.alert.success {
    background: #dcf6e9;
    color: #0f5e43;
}

.alert.error {
    background: #fde8e8;
    color: #8a2626;
}

.site-footer {
    margin-top: 2.8rem;
    background:
        radial-gradient(circle at 12% 18%, rgba(17, 120, 96, 0.22), transparent 38%),
        radial-gradient(circle at 88% 8%, rgba(245, 158, 11, 0.12), transparent 30%),
        linear-gradient(180deg, #081f24, #081b22);
    color: #d3e4ec;
    padding-top: 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.1fr) minmax(320px, 1.5fr);
    gap: 1.05rem;
}

.footer-brand-card,
.footer-contact-card,
.footer-links-block {
    border: 1px solid rgba(186, 213, 226, 0.22);
    border-radius: 14px;
    background: rgba(8, 29, 37, 0.62);
    backdrop-filter: blur(5px);
    padding: 0.9rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
}

.footer-brand strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #f1fbff;
}

.footer-brand small {
    display: block;
    font-size: 0.78rem;
    color: #9bb8c6;
    margin-top: 0.16rem;
}

.footer-brand-logo {
    width: auto;
    height: 42px;
    max-width: 160px;
    object-fit: contain;
}

.footer-brand.is-logo-only .footer-brand-logo {
    height: 54px;
    max-width: 260px;
}

.footer-brand-note {
    margin: 0.62rem 0 0;
    color: #a9c2ce;
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-social {
    margin-top: 0.84rem;
    display: grid;
    gap: 0.44rem;
}

.footer-social-title {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8eafbe;
    font-weight: 800;
}

.footer-social-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.44rem;
}

.footer-social-chip {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(159, 196, 212, 0.48);
    background: linear-gradient(180deg, rgba(18, 55, 72, 0.92), rgba(10, 37, 50, 0.92));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(4, 15, 24, 0.2);
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.footer-social-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(182, 216, 230, 0.78);
    background: linear-gradient(180deg, rgba(22, 70, 91, 0.94), rgba(12, 45, 61, 0.94));
    box-shadow: 0 14px 22px rgba(4, 15, 24, 0.24);
}

.footer-social-chip svg {
    width: 22px;
    height: 22px;
}

.footer-contact-card h4,
.footer-links-block h4 {
    margin: 0 0 0.58rem;
    color: #f1fbff;
}

.footer-contact-list,
.footer-links-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list {
    display: grid;
    gap: 0.54rem;
}

.footer-contact-list li {
    display: grid;
    gap: 0.12rem;
}

.footer-contact-list span {
    font-size: 0.69rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #90adbb;
    font-weight: 800;
}

.footer-contact-list a,
.footer-contact-list p {
    margin: 0;
    color: #e2f1f7;
    font-size: 0.84rem;
    line-height: 1.5;
}

.footer-map-link {
    margin-top: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(142, 185, 204, 0.4);
    color: #d9eef8;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(15, 57, 74, 0.7);
}

.footer-map-link:hover {
    border-color: rgba(173, 214, 230, 0.56);
    background: rgba(17, 73, 96, 0.72);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.74rem;
}

.footer-links-block li {
    margin-bottom: 0.42rem;
}

.footer-links-block a {
    color: #d7ebf4;
    font-size: 0.84rem;
    line-height: 1.45;
}

.footer-links-block a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(179, 201, 212, 0.2);
    font-size: 0.84rem;
}

.copyright-license-bar {
    border-top: 1px solid rgba(179, 201, 212, 0.2);
    background: linear-gradient(180deg, rgba(8, 31, 42, 0.9), rgba(8, 27, 34, 0.98));
}

.copyright-license-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.62rem;
    padding: 0.52rem 0;
}

.copyright-license-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #ebf6fb;
    letter-spacing: 0.01em;
}

.copyright-license-mark-wrap {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(210, 225, 235, 0.85);
    box-shadow: 0 6px 12px rgba(4, 15, 24, 0.24);
}

.copyright-license-mark {
    width: 22px;
    height: 22px;
}

.copyright-license-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.04rem;
}

.copyright-license-line {
    display: inline-flex;
    align-items: center;
    gap: 0.16rem;
    line-height: 1;
}

.copyright-net {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #f1fbff;
    text-transform: uppercase;
    animation: netGlow 3.2s ease-in-out infinite;
}

.copyright-net::before {
    content: '';
    position: absolute;
    top: 2px;
    left: -6px;
    width: 56%;
    height: calc(100% - 4px);
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.75) 50%, transparent 100%);
    transform: translateX(-128%) skewX(-18deg);
    animation: netSweep 3.6s ease-in-out infinite;
    pointer-events: none;
}

.copyright-net::after {
    content: attr(data-mirror);
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
    transform: scaleY(-1);
    transform-origin: top center;
    color: rgba(209, 231, 242, 0.33);
    line-height: 1;
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.56), transparent 70%);
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.56), transparent 70%);
    animation: netMirrorPulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

.copyright-php {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    color: #f5a11c;
    text-transform: none;
}

.copyright-license-sub {
    font-size: 0.56rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(180, 201, 212, 0.78);
    text-transform: uppercase;
}

.copyright-license-text {
    margin: 0;
    color: #b4c9d4;
    font-size: 0.74rem;
    text-align: right;
}

.copyright-license-text a {
    color: #f5b12d;
    font-weight: 800;
}

@keyframes netSweep {
    0% { transform: translateX(-128%) skewX(-18deg); opacity: 0; }
    18% { opacity: 0.9; }
    42% { opacity: 0.2; }
    100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

@keyframes netMirrorPulse {
    0%, 100% { opacity: 0.26; }
    50% { opacity: 0.42; }
}

@keyframes netGlow {
    0%, 100% { text-shadow: 0 0 0 rgba(255, 255, 255, 0); }
    50% { text-shadow: 0 0 10px rgba(180, 224, 245, 0.28); }
}

.empty-state {
    border: 1px dashed #bdd3e5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdff, #f1f7ff);
    padding: 1.1rem;
    box-shadow: 0 8px 18px rgba(16, 32, 51, 0.07);
}

.empty-state h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    color: #123f5d;
}

.empty-state p {
    margin: 0;
    color: #4f6881;
    line-height: 1.6;
}

@media (max-width: 1020px) {
    .hero-grid,
    .feature-grid,
    .card-grid,
    .contact-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3.8rem;
    }
}

@media (max-width: 960px) {
    .site-header {
        z-index: 1400;
    }

    .header-top {
        z-index: 1410;
    }

    .header-nav {
        z-index: 1420;
    }

    .container {
        width: min(1180px, calc(100% - 1.15rem));
    }

    .header-top {
        padding-top: 0.42rem;
        padding-bottom: 0.34rem;
    }

    .utility-row {
        grid-template-columns: 1fr auto auto;
        gap: 0.26rem;
    }

    .utility-card {
        padding: 0.22rem 0.24rem;
        border-radius: 10px;
    }

    .utility-links .utility-list {
        gap: 0.22rem;
    }

    .quick-link-chip {
        height: 22px;
        padding: 0 0.32rem;
        border-radius: 7px;
        border-width: 1px;
        box-shadow: 0 4px 10px rgba(10, 36, 57, 0.1);
    }

    .quick-link-chip svg {
        width: 10px;
        height: 10px;
    }

    .quick-link-text {
        font-size: 0.62rem;
        font-weight: 800;
    }

    .site-header::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(8, 23, 36, 0.32);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.16s ease;
        z-index: 1415;
    }

    body.nav-open .site-header::after {
        opacity: 1;
        pointer-events: auto;
    }

    .utility-actions {
        gap: 0.08rem;
    }

    .social-chip {
        width: 26px;
        height: 26px;
        border-radius: 9px;
    }

    .social-chip svg {
        width: 16px;
        height: 16px;
    }

    .utility-languages {
        z-index: 1200;
    }

    .utility-languages .utility-title {
        display: none;
    }

    .lang-dropdown-toggle {
        height: 24px;
        padding: 0 0.1rem;
        border: 0;
        border-radius: 0;
        background: transparent;
        gap: 0.14rem;
    }

    .lang-dropdown-toggle img {
        width: 16px;
        height: 11px;
    }

    .lang-dropdown-toggle svg {
        width: 15px;
        height: 15px;
        color: #09443d;
    }

    .lang-dropdown-menu {
        position: fixed;
        top: 38px;
        right: 8px;
        z-index: 9999;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 1430;
    }

    .site-nav {
        display: none;
        position: fixed;
        left: 0.58rem;
        right: 0.58rem;
        top: 106px;
        min-width: 0;
        max-height: calc(100vh - 122px);
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.58rem;
        border-radius: 14px;
        border: 1px solid #c5d8e8;
        background: #ffffff;
        box-shadow: 0 18px 34px rgba(10, 27, 40, 0.22);
        z-index: 1435;
    }

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

    .site-nav a {
        width: 100%;
        height: 38px;
        border-radius: 9px;
        padding: 0 0.62rem;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a.is-active,
    .site-nav a:hover {
        transform: none;
    }

    .brand strong {
        font-size: 0.9rem;
    }

    .brand small {
        font-size: 0.73rem;
    }

    .brand-logo {
        height: 40px;
        max-width: 150px;
    }

    .brand.is-logo-only .brand-logo {
        height: 48px;
        max-width: 210px;
    }

    .footer-brand-logo {
        height: 38px;
        max-width: 140px;
    }

    .footer-brand.is-logo-only .footer-brand-logo {
        height: 46px;
        max-width: 200px;
    }

    .footer-social-chip {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .footer-social-chip svg {
        width: 19px;
        height: 19px;
    }

    .copyright-license-inner {
        min-height: 48px;
    }

    .copyright-license-mark-wrap {
        width: 24px;
        height: 24px;
    }

    .copyright-license-mark {
        width: 19px;
        height: 19px;
    }

    .copyright-net,
    .copyright-php {
        font-size: 0.84rem;
    }

    .copyright-license-sub {
        font-size: 0.52rem;
    }

    .home-hero {
        padding-bottom: 2.2rem;
    }

    .home-hero::after {
        width: min(1180px, calc(100% - 1.15rem));
        bottom: 0.24rem;
    }

    .home-section-cta {
        margin-top: 0.92rem;
        border-radius: 18px 18px 0 0;
    }

    .nav-wrap {
        min-height: 70px;
    }

    .hero-actions,
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.reference-hero {
    padding-top: 2.4rem;
}

.reference-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.35rem;
    align-items: center;
}

.reference-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.1rem;
}

.reference-meta-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #083a34;
    background: rgba(10, 127, 111, 0.12);
    border: 1px solid rgba(10, 127, 111, 0.2);
}

.reference-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.68rem;
}

.reference-hero-media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #d9e3ea;
    box-shadow: var(--shadow);
    background: #f6fbf9;
}

.reference-hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

.reference-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
    gap: 1rem;
    align-items: start;
}

.reference-detail-content,
.reference-side-card {
    background: #ffffff;
    border: 1px solid #d9e3ea;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.reference-detail-content {
    padding: 1.2rem;
}

.reference-detail-content h2 {
    margin: 0 0 0.7rem;
}

.reference-rich-text {
    color: #20434a;
    line-height: 1.72;
}

.reference-rich-text p {
    margin: 0 0 0.86rem;
}

.reference-detail-sidebar {
    display: grid;
    gap: 0.9rem;
}

.reference-side-card {
    padding: 1rem;
}

.reference-side-card h3 {
    margin: 0 0 0.58rem;
}

.reference-side-card ul {
    margin: 0;
    padding-left: 1.08rem;
    color: #385760;
    line-height: 1.6;
}

.reference-side-link {
    color: #0d6286;
    font-weight: 800;
}

.reference-side-card p {
    margin: 0 0 0.75rem;
}

@media (max-width: 980px) {
    .reference-hero-grid,
    .reference-detail-layout {
        grid-template-columns: 1fr;
    }
}

.reference-hero.reference-hero-pro {
    position: relative;
    overflow: hidden;
    background: linear-gradient(130deg, #0b4f66 0%, #0b7f73 54%, #49a37d 100%);
}

.reference-hero.reference-hero-pro::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -76px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
}

.reference-hero.reference-hero-pro .reference-hero-content h1,
.reference-hero.reference-hero-pro .reference-hero-content p,
.reference-hero.reference-hero-pro .reference-hero-content .eyebrow {
    color: #f7fffc;
}

.reference-hero.reference-hero-pro .reference-hero-content .eyebrow {
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0.9;
}

.reference-hero.reference-hero-pro .reference-meta-chip {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

.reference-hero.reference-hero-pro .reference-hero-actions .btn.btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.reference-hero.reference-hero-pro .reference-hero-actions .btn.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.reference-hero.reference-hero-pro .reference-hero-media {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.reference-detail-section {
    background:
        radial-gradient(110% 70% at 100% 0, rgba(73, 163, 125, 0.16) 0%, rgba(73, 163, 125, 0) 64%),
        linear-gradient(180deg, #f5fbff 0%, #eef7f3 100%);
}

.reference-detail-content {
    border-radius: 18px;
    border-color: #d3e4ea;
    padding: 1.28rem;
}

.reference-detail-content h2 {
    font-size: 1.34rem;
    color: #0f3f50;
}

.reference-rich-text {
    font-size: 1.02rem;
    color: #264b56;
}

.reference-rich-text h3,
.reference-rich-text h4 {
    color: #0f3f50;
    margin: 0.95rem 0 0.55rem;
}

.reference-rich-text ul,
.reference-rich-text ol {
    margin: 0.5rem 0 0.86rem 1.2rem;
}

.reference-side-card {
    border-radius: 18px;
    border-color: #d3e4ea;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
}

.reference-side-card h3 {
    color: #0f3f50;
}

.reference-side-card .btn.btn-primary {
    width: 100%;
    justify-content: center;
}

.reference-gallery-section {
    padding-top: 1.5rem;
}

.reference-gallery-prime {
    background:
        radial-gradient(120% 85% at 100% 0, rgba(34, 131, 162, 0.16) 0%, rgba(34, 131, 162, 0) 65%),
        linear-gradient(180deg, #eef8ff 0%, #f6fbff 100%);
}

.reference-gallery-panel {
    border: 1px solid #cfe2eb;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f8fcff);
    box-shadow: var(--shadow);
    padding: 0.92rem;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 0.78rem;
    align-items: start;
}

.reference-gallery-stage-col {
    display: grid;
    gap: 0.52rem;
}

.reference-gallery-stage-media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d7e8ef;
    background: #eef7fb;
    box-shadow: 0 10px 24px rgba(12, 38, 54, 0.11);
}

.reference-gallery-stage-media img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.reference-gallery-stage-media figcaption {
    padding: 0.58rem 0.72rem;
    font-size: 0.84rem;
    color: #214654;
    background: #ffffff;
    border-top: 1px solid #d7e8ef;
}

.reference-gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.reference-gallery-nav {
    width: 36px;
    height: 36px;
    border: 1px solid #c7dbe5;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #f0f8fd);
    color: #163f50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(16, 32, 51, 0.09);
    font-size: 1.08rem;
    line-height: 1;
}

.reference-gallery-nav:hover {
    border-color: #87afbf;
    background: #f4fbff;
}

.reference-gallery-nav:disabled {
    opacity: 0.4;
    cursor: default;
}

.reference-gallery-counter {
    height: 36px;
    min-width: 92px;
    border-radius: 999px;
    border: 1px solid #cee0e9;
    background: #f4fbff;
    color: #1d5060;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
}

.reference-gallery-info {
    border: 1px solid #d9e7ee;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f6fbff);
    padding: 0.72rem;
    display: grid;
    gap: 0.56rem;
}

.reference-gallery-info-head h2 {
    margin: 0.2rem 0 0;
    font-family: var(--font-heading);
    font-size: 1.06rem;
    color: #123f4f;
}

.reference-gallery-info-head .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.09em;
}

.reference-gallery-thumb-rail {
    display: grid;
    gap: 0.38rem;
    max-height: 430px;
    overflow-y: auto;
    padding-right: 0.14rem;
}

.reference-gallery-thumb {
    width: 100%;
    border: 1px solid #cfe0e8;
    border-radius: 11px;
    background: #ffffff;
    padding: 0.33rem;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0.46rem;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.reference-gallery-thumb img {
    width: 70px;
    height: 52px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.reference-gallery-thumb span {
    font-size: 0.79rem;
    color: #234f5e;
    font-weight: 700;
    line-height: 1.35;
}

.reference-gallery-thumb:hover {
    border-color: #92b5c4;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(16, 36, 52, 0.09);
}

.reference-gallery-thumb.is-active {
    border-color: #0a7f6f;
    background: linear-gradient(180deg, #effcf7, #f7fffb);
    box-shadow: 0 0 0 2px rgba(10, 127, 111, 0.16);
}

.reference-related-section .card {
    border: 1px solid #d6e6ea;
    border-radius: 16px;
    background: #ffffff;
}

.reference-slider-wrap {
    --ref-gap: 0.66rem;
    margin-top: 0.35rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.42rem;
}

.reference-slider-viewport {
    overflow: hidden;
}

.reference-slider-track {
    display: flex;
    gap: var(--ref-gap);
    transition: transform 0.34s ease;
    will-change: transform;
}

.reference-slide {
    flex: 0 0 calc((100% - (var(--ref-gap) * 3)) / 4);
    padding: 0.78rem;
    border-radius: 13px;
}

.reference-slide .card-media {
    margin-bottom: 0.58rem;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
}

.reference-slide h3 {
    font-size: 0.98rem;
    margin-bottom: 0.34rem;
}

.reference-slide p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.45;
}

.reference-slide .inline-link {
    margin-top: 0.56rem;
    font-size: 0.83rem;
}

.reference-slider-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #c9dce5;
    border-radius: 10px;
    background: #ffffff;
    color: #184b5d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(16, 32, 51, 0.08);
    transition: all 0.18s ease;
}

.reference-slider-btn span {
    font-size: 1.15rem;
    line-height: 1;
}

.reference-slider-btn:hover {
    border-color: #8eb0be;
    background: #f3fbff;
}

.reference-slider-btn:disabled {
    opacity: 0.42;
    cursor: default;
}

@media (max-width: 1024px) {
    .reference-gallery-panel {
        grid-template-columns: 1fr;
    }

    .reference-gallery-thumb-rail {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .reference-gallery-thumb {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding: 0.28rem;
    }

    .reference-gallery-thumb img {
        width: 100%;
        height: 64px;
    }

    .reference-gallery-thumb span {
        font-size: 0.73rem;
        line-height: 1.3;
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 2.8rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.55rem, 9vw, 2.1rem);
        line-height: 1.22;
    }

    .btn {
        height: 42px;
        font-size: 0.86rem;
    }

    .cta-inner .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
    }

    .hero-actions .btn {
        width: auto;
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 0.5rem;
    }

    .reference-hero.reference-hero-pro {
        padding-top: 1.6rem;
    }

    .reference-meta-chip {
        font-size: 0.74rem;
    }

    .reference-slider-wrap {
        --ref-gap: 0.5rem;
        gap: 0.3rem;
    }

    .reference-slide {
        flex-basis: 100%;
        padding: 0.68rem;
    }

    .reference-slide h3 {
        font-size: 0.92rem;
    }

    .reference-slide p {
        font-size: 0.82rem;
    }

    .reference-slider-btn {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .reference-gallery-panel {
        padding: 0.56rem;
        border-radius: 15px;
    }

    .reference-gallery-stage-media img {
        max-height: 260px;
    }

    .reference-gallery-controls {
        gap: 0.42rem;
    }

    .reference-gallery-nav {
        width: 32px;
        height: 32px;
    }

    .reference-gallery-counter {
        min-width: 76px;
        height: 32px;
        font-size: 0.76rem;
    }

    .reference-gallery-info {
        padding: 0.56rem;
        border-radius: 13px;
    }

    .reference-gallery-thumb-rail {
        display: flex;
        gap: 0.34rem;
        overflow-x: auto;
        padding-bottom: 0.1rem;
        scrollbar-width: none;
    }

    .reference-gallery-thumb-rail::-webkit-scrollbar {
        display: none;
    }

    .reference-gallery-thumb {
        flex: 0 0 62%;
    }

    .reference-gallery-thumb img {
        height: 86px;
    }

    .reference-gallery-thumb span {
        font-size: 0.72rem;
    }

    .copyright-license-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.44rem;
        padding: 0.58rem 0 0.64rem;
    }

    .copyright-license-link {
        min-width: 0;
        max-width: 72%;
    }

    .copyright-license-text {
        margin-left: auto;
        text-align: right;
        font-size: 0.66rem;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .copyright-license-sub {
        font-size: 0.48rem;
    }
}
