:root {
    --bg: #eef3f8;
    --bg-soft: #f8fbfd;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-solid: #ffffff;
    --surface-deep: #0f2133;
    --primary: #103b63;
    --primary-strong: #0b2742;
    --primary-soft: #d8e4f0;
    --secondary: #204f7a;
    --accent: #5f88ad;
    --text: #102132;
    --muted: #5e7285;
    --line: rgba(16, 59, 99, 0.14);
    --success: #1f6b4f;
    --danger: #b25045;
    --shadow: 0 32px 80px rgba(9, 30, 50, 0.12);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1180px;
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 20%, rgba(95, 136, 173, 0.16), transparent 24%),
        radial-gradient(circle at 82% 12%, rgba(16, 59, 99, 0.16), transparent 20%),
        linear-gradient(180deg, #f8fbfd 0%, #eef3f8 100%);
    overflow-x: hidden;
    overflow-x: clip;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(16, 59, 99, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 59, 99, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 88%);
    pointer-events: none;
    z-index: -1;
}

body.nav-is-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(95, 136, 173, 0.36);
    outline-offset: 2px;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-main {
    padding: 0 0 6rem;
    overflow-x: hidden;
    overflow-x: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    background: rgba(238, 243, 248, 0.8);
}

.shell {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    min-width: 0;
}

.brand-logo,
.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    flex-shrink: 0;
}

.brand-logo {
    object-fit: cover;
    border: 1px solid rgba(16, 59, 99, 0.1);
    box-shadow: var(--shadow);
}

.brand-mark {
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(145deg, var(--primary), #2f6797);
    box-shadow: var(--shadow);
}

.brand-copy {
    min-width: 0;
}

.brand-copy strong,
.hero-copy h1,
.section-head h2,
.service-card h3,
.special-cta-card h3,
.faq-item summary,
.site-footer h2,
.site-footer h3 {
    font-family: "Sora", sans-serif;
}

.brand-copy strong {
    display: block;
    font-size: 0.98rem;
}

.brand-copy small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    max-width: 28rem;
    line-height: 1.45;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav {
    position: relative;
}

.site-nav-shell {
    display: block;
}

.site-nav-intro,
.site-nav-meta,
.site-nav-actions {
    display: none;
}

.site-nav ul,
.service-points,
.panel-list,
.footer-links,
.contact-meta,
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(16, 59, 99, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.nav-auth-item {
    display: list-item;
}

.nav-auth-link span {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.48rem 0.8rem;
    color: var(--muted);
    font-weight: 700;
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a span {
    position: relative;
    z-index: 1;
}

.site-nav a::after {
    content: none;
}

.site-nav a:hover {
    color: var(--primary);
    background: rgba(16, 59, 99, 0.08);
}

.language-switch {
    display: inline-flex;
    padding: 0.16rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.language-switch a {
    min-width: 40px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.language-switch a.is-active {
    background: var(--primary);
    color: white;
}

.header-login {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-strong);
    box-shadow:
        0 12px 24px rgba(9, 30, 50, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.header-login i {
    font-size: 1rem;
}

.header-login:hover,
.header-login:focus-visible {
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow:
        0 16px 30px rgba(9, 30, 50, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.nav-toggle {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0;
    box-shadow: var(--shadow);
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--primary-strong);
    transform: translateX(-50%);
    transition: transform 220ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
    top: 17px;
}

.nav-toggle span:nth-child(2) {
    top: 24px;
}

.nav-toggle span:nth-child(3) {
    top: 31px;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateX(-50%) translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.68);
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateX(-50%) translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
}

.eyebrow,
.panel-label,
.footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.77rem;
    font-weight: 800;
    color: var(--secondary);
}

.hero-copy .eyebrow {
    justify-content: center;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 59, 99, 0.06);
    border: 1px solid rgba(16, 59, 99, 0.08);
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary,
.button-call {
    color: white;
    background: linear-gradient(135deg, var(--primary), #285c88);
    box-shadow: 0 16px 32px rgba(16, 59, 99, 0.2);
}

.hero-call-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(135deg, #0f3861 0%, #1f5d8f 32%, #2f7aa8 58%, #1a6f86 78%, #124466 100%);
    background-size: 220% 220%;
    border-color: rgba(14, 49, 83, 0.18);
    box-shadow:
        0 18px 34px rgba(16, 59, 99, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    will-change: background-position;
    animation: hero-call-gradient-loop 7.5s ease-in-out infinite;
}

.hero-call-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.12));
    pointer-events: none;
    z-index: 0;
}

.hero-call-button:hover,
.hero-call-button:focus-visible {
    box-shadow:
        0 20px 38px rgba(16, 59, 99, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes hero-call-gradient-loop {
    0% {
        background-position: 0% 50%;
    }

    35% {
        background-position: 100% 50%;
    }

    65% {
        background-position: 72% 0%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-call-button {
        animation: none;
        background-position: 50% 50%;
    }
}

.button-secondary {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(16, 59, 99, 0.16);
}

.button-ghost {
    color: var(--primary);
    background: transparent;
    border-color: rgba(16, 59, 99, 0.18);
}

.header-call {
    white-space: nowrap;
}

.hero-section,
.section,
.site-footer {
    width: 100%;
    max-width: none;
    margin: 0;
}

.hero-section {
    position: relative;
    min-height: calc(100dvh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: stretch;
    padding: clamp(0.35rem, 0.9vw, 0.7rem) 0 clamp(0.85rem, 1.8vw, 1.35rem);
    overflow: hidden;
    overflow: clip;
    contain: paint;
    isolation: isolate;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 24%, rgba(16, 59, 99, 0.18), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(95, 136, 173, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(248, 251, 253, 0.96), rgba(227, 237, 246, 0.94));
    z-index: -2;
}

.hero-section::after {
    content: "";
    position: absolute;
    right: clamp(0.75rem, 3vw, 2rem);
    bottom: -12%;
    width: min(40vw, 30rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 59, 99, 0.12), transparent 68%);
    filter: blur(8px);
    z-index: -1;
}

.hero-section > * {
    width: min(calc(100% - 2rem), var(--container));
    margin: auto;
    height: 100%;
    position: relative;
    z-index: 1;
}

.section > * {
    width: min(calc(100% - 2rem), var(--container));
    margin-left: auto;
    margin-right: auto;
}

.hero-showcase {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.35rem 0 0;
    overflow: hidden;
}

.hero-showcase-media {
    margin: 0;
    position: relative;
    width: 100%;
    height: clamp(18rem, 40vw, 34rem);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(221, 232, 241, 0.56), rgba(247, 250, 253, 0.16));
    box-shadow:
        0 28px 58px rgba(10, 33, 57, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 22, 38, 0.04), rgba(8, 22, 38, 0.08)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.06));
    pointer-events: none;
}

.hero-showcase-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.seo-title-banner {
    width: 100%;
    margin: 3rem 0 0;
    padding: 0;
    overflow: hidden;
}

.seo-title-banner-shell {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem clamp(1rem, 4vw, 2.75rem);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(8, 26, 44, 0.98), rgba(18, 58, 93, 0.96) 52%, rgba(37, 92, 135, 0.92)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    box-shadow:
        0 30px 58px rgba(10, 33, 57, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.seo-title-banner-shell::before,
.seo-title-banner-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.seo-title-banner-shell::before {
    inset: 0;
    background:
        radial-gradient(circle at 14% 24%, rgba(95, 136, 173, 0.34), transparent 24%),
        radial-gradient(circle at 86% 28%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.06));
    z-index: -2;
}

.seo-title-banner-shell::after {
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    z-index: -1;
}

.seo-title-banner-stage {
    position: relative;
    width: min(100%, 70rem);
    margin-inline: auto;
    min-height: clamp(7.4rem, 11vw, 8.8rem);
    display: grid;
    place-items: center;
    text-align: center;
}

.seo-title-banner-item {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 18ch);
    display: grid;
    place-items: center;
    color: white;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.75rem, 4vw, 3.35rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
    text-shadow: 0 10px 32px rgba(5, 14, 24, 0.3);
    opacity: 0;
    transform: translate(-50%, calc(-50% + 22px)) scale(0.985);
    filter: blur(10px);
    transition:
        opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.seo-title-banner-item.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    .seo-title-banner-item {
        transition: none;
        transform: translate(-50%, -50%);
        filter: none;
    }
}

.hero-grid {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
    gap: clamp(0.8rem, 1.4vw, 1.15rem);
    align-items: stretch;
    padding: 0;
}

.hero-copy,
.hero-panel,
.trust-card,
.service-card,
.gallery-card,
.faq-item,
.contact-panel,
.contact-form-card,
.special-cta-card,
.cta-strip,
.site-footer,
.consent-card,
.metric-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.hero-copy,
.hero-panel {
    padding: clamp(1.05rem, 1.8vw, 1.8rem);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.hero-copy {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 253, 0.78));
    border-color: rgba(255, 255, 255, 0.9);
}

.hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(165deg, rgba(11, 39, 66, 0.96), rgba(24, 67, 104, 0.92));
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-copy::before,
.hero-panel::before,
.contact-panel::before,
.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.68), transparent 58%);
    pointer-events: none;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: min(24rem, 58%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 59, 99, 0.32), transparent);
    transform: translateX(-50%);
}

.hero-copy h1,
.section-head h2 {
    margin: 0.4rem 0 1rem;
    font-size: clamp(2.5rem, 4vw, 4.6rem);
    line-height: 0.92;
    color: var(--primary-strong);
    letter-spacing: -0.055em;
    text-wrap: balance;
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
}

.hero-copy h1 {
    margin: 0.2rem 0 0.75rem;
    max-width: none;
    text-shadow: none;
}

.hero-title-main {
    display: block;
    white-space: nowrap;
    font-size: clamp(1.72rem, 8.2vw, 4.25rem);
}

.hero-title-accent {
    display: block;
    max-width: none;
    margin-inline: auto;
    margin-top: 0.14em;
    color: #2c5a80;
    font-size: clamp(1.18rem, 4.3vw, 2.35rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.hero-title-accent-line {
    display: block;
    white-space: nowrap;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    max-width: 18ch;
}

.hero-description,
.section-head p,
.stack-copy p,
.service-card p,
.cta-strip p,
.gallery-card figcaption,
.faq-item p,
.contact-panel p,
.contact-form-card p,
.site-footer p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-description {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.94rem, 0.98vw, 1rem);
    line-height: 1.66;
    text-wrap: pretty;
}

.hero-actions,
.footer-actions,
.special-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-actions {
    margin-top: 0.85rem;
    justify-content: center;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.8rem;
    width: 100%;
}

.metric-card {
    padding: 0.58rem 0.72rem;
    background: linear-gradient(180deg, rgba(250, 252, 255, 0.9), rgba(233, 241, 247, 0.78));
    border: 1px solid rgba(16, 59, 99, 0.07);
    border-radius: 22px;
    box-shadow: none;
}

.metric-card strong {
    display: block;
    color: var(--primary);
    font-size: 0.88rem;
    letter-spacing: -0.02em;
}

.metric-card span {
    display: block;
    margin-top: 0.16rem;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.45;
}

.panel-label {
    color: rgba(211, 225, 239, 0.72);
    letter-spacing: 0.22em;
}

.panel-value {
    display: block;
    margin-top: 0.55rem;
    color: white;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.panel-copy {
    margin: 0.72rem 0 0.85rem;
    color: rgba(228, 238, 247, 0.78);
    line-height: 1.55;
}

.panel-list {
    display: grid;
    gap: 0.55rem;
}

.panel-list li {
    position: relative;
    padding: 0.68rem 0.9rem 0.68rem 1.85rem;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-list li::before,
.service-points li::before {
    content: "";
    position: absolute;
    left: 0.82rem;
    top: 0.97rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.section {
    padding-top: 3.6rem;
}

.section-head {
    max-width: 72rem;
    margin: 0 auto 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-head .eyebrow {
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(16, 59, 99, 0.06);
    border: 1px solid rgba(16, 59, 99, 0.08);
}

.section-head p {
    max-width: 58rem;
    margin: 0 auto;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    text-wrap: balance;
}

.split-layout,
.contact-layout,
.footer-grid {
    display: grid;
    gap: 1.2rem;
}

.split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
}

.stack-copy {
    display: grid;
    gap: 1rem;
}

.card-stack {
    display: grid;
    gap: 1rem;
}

.trust-card,
.service-card,
.gallery-card,
.contact-panel,
.contact-form-card,
.special-cta-card,
.cta-strip {
    padding: 1.5rem;
}

.trust-card h3,
.service-card h3,
.contact-point h3,
.special-cta-card h3 {
    margin: 0 0 0.55rem;
    color: var(--primary-strong);
    font-size: 1.15rem;
}

.service-grid,
.gallery-grid {
    display: grid;
    gap: 1rem;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    min-height: 100%;
    position: relative;
    overflow: hidden;
    overflow: clip;
    contain: paint;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 252, 0.9));
    border-color: rgba(16, 59, 99, 0.08);
    box-shadow:
        0 22px 46px rgba(10, 33, 57, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
    -webkit-tap-highlight-color: transparent;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.service-card::before {
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 59, 99, 0.24), transparent);
}

.service-card::after {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 7.6rem;
    height: 7.6rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(74, 118, 159, 0.18), transparent 66%);
    opacity: 0;
    transform: translate3d(0, 12px, 0);
    transition: opacity 180ms ease, transform 180ms ease;
}

.service-card:is(:hover, :focus-visible, :focus-within, :active) {
    transform: translateY(-4px);
    border-color: rgba(16, 59, 99, 0.16);
    box-shadow:
        0 28px 54px rgba(10, 33, 57, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.service-card:is(:hover, :focus-visible, :focus-within, :active)::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.service-card:focus-visible {
    outline: none;
}

.service-card-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.service-card-head .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card-body {
    display: grid;
    gap: 0.55rem;
}

.service-card-body h3,
.service-card-body p {
    margin: 0;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 52%),
        linear-gradient(135deg, rgba(226, 236, 246, 0.96), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(16, 59, 99, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 12px 22px rgba(16, 59, 99, 0.08);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.service-icon::before,
.service-icon::after {
    content: none;
}

.service-icon-glyph {
    color: var(--primary-strong);
    font-size: 1.22rem;
    line-height: 1;
    filter: drop-shadow(0 10px 16px rgba(16, 59, 99, 0.14));
    transition:
        color 180ms ease,
        transform 180ms ease,
        filter 180ms ease;
}

.service-points {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.service-points li {
    position: relative;
    padding: 0.72rem 0.9rem 0.72rem 1.8rem;
    color: var(--muted);
    border-radius: 16px;
    background: rgba(16, 59, 99, 0.04);
    border: 1px solid rgba(16, 59, 99, 0.07);
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.footer-links li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--muted);
}

.service-card:is(:hover, :focus-visible, :focus-within, :active) .service-icon {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(16, 59, 99, 0.16);
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 48%),
        linear-gradient(135deg, rgba(17, 66, 109, 0.98), rgba(39, 109, 162, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 16px 28px rgba(16, 59, 99, 0.12);
}

.service-card:is(:hover, :focus-visible, :focus-within, :active) .service-icon-glyph {
    color: white;
    transform: scale(1.06);
    filter: drop-shadow(0 12px 18px rgba(5, 18, 34, 0.26));
}

.service-card:is(:hover, :focus-visible, :focus-within, :active) .service-points li {
    border-color: rgba(16, 59, 99, 0.11);
    background: rgba(16, 59, 99, 0.055);
    transform: translateX(2px);
}

.cta-strip {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(16, 59, 99, 0.92), rgba(34, 84, 124, 0.92));
    color: white;
}

.cta-strip h3 {
    margin: 0 0 0.5rem;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
}

.cta-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.cta-strip .button-secondary,
.cta-strip .button-ghost {
    border-color: rgba(255, 255, 255, 0.24);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.cta-strip-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
    margin: 0;
    overflow: hidden;
    padding: 0.9rem;
    background: #ffffff;
    box-shadow:
        0 12px 28px rgba(10, 33, 57, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.gallery-media,
.gallery-skeleton {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(16, 59, 99, 0.1);
    background: linear-gradient(145deg, rgba(16, 59, 99, 0.06), rgba(95, 136, 173, 0.2));
}

.gallery-card-placeholder {
    background: rgba(255, 255, 255, 0.72);
    border-style: dashed;
    border-color: rgba(16, 59, 99, 0.16);
}

.gallery-skeleton {
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.78) 50%, rgba(255, 255, 255, 0) 82%),
        linear-gradient(145deg, rgba(16, 59, 99, 0.08), rgba(95, 136, 173, 0.24));
    background-size: 220% 100%, 100% 100%;
    animation: gallery-loading 1.85s linear infinite;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes gallery-loading {
    from {
        background-position: 220% 0, 0 0;
    }

    to {
        background-position: -40% 0, 0 0;
    }
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1.35rem 1.5rem;
    color: var(--primary-strong);
    font-size: 1.02rem;
}

.faq-item p {
    padding: 0 1.5rem 1.35rem;
    margin: 0;
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--line);
}

.contact-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
}

.contact-layout > *,
.contact-panel,
.contact-form-card,
.contact-direct,
.contact-meta,
.contact-points,
.contact-form,
.form-grid {
    min-width: 0;
    max-width: 100%;
}

.contact-response {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 59, 99, 0.08);
    color: var(--primary);
    font-weight: 800;
}

.contact-direct {
    display: grid;
    gap: 0.55rem;
    margin: 1.1rem 0 1.25rem;
}

.contact-direct a {
    color: var(--primary-strong);
    font-size: 1.25rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-meta {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-meta dt {
    margin-bottom: 0.3rem;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-meta dd {
    margin: 0;
    color: var(--primary-strong);
    font-weight: 800;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.contact-points {
    display: grid;
    gap: 0.85rem;
}

.contact-point {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(242, 247, 251, 0.92));
    border: 1px solid rgba(16, 59, 99, 0.08);
    box-shadow:
        0 16px 34px rgba(10, 33, 57, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.contact-point::before,
.special-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-point::before {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.56), transparent 62%);
}

.contact-point h3,
.special-cta-card h3 {
    text-wrap: balance;
    line-height: 1.08;
}

.contact-point p,
.special-cta-card p {
    margin: 0;
    text-wrap: pretty;
}

.contact-form-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96));
    border-color: rgba(16, 59, 99, 0.08);
    box-shadow:
        0 24px 46px rgba(10, 33, 57, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-form-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(95, 136, 173, 0.12), transparent 32%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 30%);
}

.contact-form-card > * {
    position: relative;
    z-index: 1;
}

.special-cta-card {
    margin-top: 1.2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(16, 59, 99, 0.96), rgba(34, 84, 124, 0.96));
    color: white;
    box-shadow:
        0 24px 44px rgba(10, 33, 57, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.special-cta-card::before {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 36%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 54%);
}

.special-cta-card h3 {
    color: white;
}

.special-cta-card p {
    color: rgba(255, 255, 255, 0.8);
}

.special-cta-card .button-primary {
    background: white;
    color: var(--primary);
}

.special-cta-card .button-ghost {
    border-color: rgba(255, 255, 255, 0.24);
    color: white;
}

.auth-shell {
    width: min(calc(100% - 2rem), 980px);
    margin: clamp(1.3rem, 3.2vw, 2.8rem) auto 0;
    padding: clamp(0.4rem, 1vw, 0.8rem);
    position: relative;
    z-index: 1;
}

.auth-shell::before,
.auth-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.auth-shell::before {
    width: min(30vw, 300px);
    aspect-ratio: 1;
    top: -42px;
    left: -26px;
    background: radial-gradient(circle, rgba(95, 136, 173, 0.34), transparent 70%);
    filter: blur(4px);
}

.auth-shell::after {
    width: min(28vw, 260px);
    aspect-ratio: 1;
    right: -20px;
    bottom: -34px;
    background: radial-gradient(circle, rgba(16, 59, 99, 0.28), transparent 74%);
}

.auth-card {
    position: relative;
    width: min(100%, 560px);
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid rgba(193, 222, 246, 0.28);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(155deg, rgba(8, 26, 43, 0.96), rgba(16, 51, 82, 0.95) 54%, rgba(27, 80, 122, 0.94));
    box-shadow:
        0 40px 80px rgba(5, 16, 29, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    padding: clamp(1.25rem, 2.8vw, 2rem);
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%),
        radial-gradient(circle at 16% 14%, rgba(148, 189, 221, 0.16), transparent 28%);
}

.auth-crest {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(212, 230, 246, 0.36);
    background: rgba(241, 248, 255, 0.1);
    color: #f4f9ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.auth-card > * {
    position: relative;
    z-index: 1;
}

.auth-card h1 {
    margin: 0.8rem 0 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 5.6vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #f4f9ff;
}

.auth-card p {
    margin: 0.62rem 0 0;
    color: rgba(224, 238, 250, 0.85);
}

.auth-form {
    margin-top: 1.2rem;
    display: grid;
    gap: 1rem;
}

.auth-form label {
    display: grid;
    gap: 0.48rem;
    font-weight: 600;
    color: rgba(229, 242, 253, 0.95);
}

.auth-form label span {
    font-size: 0.79rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(192, 220, 243, 0.34);
    background: rgba(9, 30, 48, 0.42);
    color: #f4f9ff;
    padding: 0.7rem 0.92rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.password-input-wrap {
    position: relative;
    display: block;
}

.password-input-wrap input[type="password"],
.password-input-wrap input[type="text"] {
    width: 100%;
    padding-right: 3.3rem;
}

.password-toggle {
    width: 38px;
    height: 38px;
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(192, 220, 243, 0.44);
    background: rgba(239, 248, 255, 0.12);
    color: rgba(233, 245, 255, 0.94);
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
    background: rgba(239, 248, 255, 0.2);
    color: #ffffff;
    border-color: rgba(219, 237, 253, 0.7);
}

.auth-form input::placeholder {
    color: rgba(214, 232, 248, 0.52);
}

.auth-form input:focus-visible {
    border-color: rgba(226, 240, 252, 0.72);
    background: rgba(9, 30, 48, 0.58);
    box-shadow:
        0 0 0 4px rgba(109, 158, 197, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.auth-note {
    margin-top: 0.95rem;
    padding: 0.84rem 0.92rem;
    border-radius: 13px;
    border: 1px solid rgba(198, 223, 244, 0.34);
    background: rgba(242, 248, 255, 0.12);
    color: rgba(235, 246, 255, 0.96);
    font-size: 0.92rem;
    font-weight: 600;
}

.auth-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.auth-choice-grid label {
    align-items: center;
    grid-template-columns: auto 1fr;
    column-gap: 0.55rem;
    padding: 0.76rem 0.86rem;
    border-radius: 12px;
    border: 1px solid rgba(198, 223, 244, 0.3);
    background: rgba(10, 32, 50, 0.34);
    font-weight: 600;
    color: #edf6ff;
}

.auth-choice-grid input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #9fcaec;
}

.auth-meta {
    font-size: 0.9rem;
    color: rgba(213, 232, 247, 0.84);
}

.auth-actions {
    display: flex;
    gap: 0.72rem;
    flex-wrap: wrap;
}

.auth-actions .button {
    min-height: 50px;
    flex: 1 1 190px;
}

.auth-form > .button.button-primary {
    width: 100%;
    min-height: 54px;
    margin-top: 0.1rem;
    border: 1px solid rgba(234, 247, 255, 0.48);
    background: linear-gradient(135deg, #f4f9ff, #d4e7f8);
    color: #0e3150;
    box-shadow:
        0 18px 32px rgba(8, 24, 40, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.auth-form > .button.button-primary:hover,
.auth-form > .button.button-primary:focus-visible {
    transform: translateY(-1px);
    box-shadow:
        0 22px 36px rgba(8, 24, 40, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.auth-actions .button-secondary {
    border-color: rgba(204, 226, 245, 0.34);
    background: rgba(9, 31, 50, 0.35);
    color: #f1f8ff;
}

.auth-card .flash {
    margin-top: 1rem;
    border: 1px solid rgba(211, 232, 247, 0.34);
    background: rgba(243, 249, 255, 0.12);
    color: #f4f9ff;
}

.auth-card .flash p,
.auth-card .flash ul {
    color: inherit;
}

.dashboard-shell {
    width: min(calc(100% - 2rem), 1120px);
    margin: 1.9rem auto 0;
}

.dashboard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.95rem;
}

.dashboard-head h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: var(--primary-strong);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 0.95rem;
}

.dashboard-panel {
    border-radius: 22px;
    border: 1px solid rgba(16, 59, 99, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 20px 42px rgba(9, 30, 50, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    padding: 1rem;
}

.dashboard-menu {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.dashboard-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.52rem 0.78rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 59, 99, 0.1);
    background: rgba(242, 247, 252, 0.88);
    color: var(--primary-strong);
    font-weight: 700;
}

.dashboard-empty {
    min-height: 300px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--muted);
    font-weight: 700;
}

