/* Design Tokens */
:root {
    --bg: #04070d;
    --bg-soft: #0b1422;
    --panel: rgba(8, 16, 29, 0.78);
    --panel-strong: rgba(10, 20, 38, 0.92);
    --line: rgba(111, 188, 255, 0.2);
    --line-strong: rgba(111, 188, 255, 0.45);
    --text: #f3f7fc;
    --text-soft: #b9c7da;
    --accent: #24a3ff;
    --accent-strong: #0278ff;
    --accent-warm: #f1b64d;
    --success: #53d18d;
    --danger: #ff7f86;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    --radius: 24px;
    --radius-sm: 18px;
    --shell: min(1320px, calc(100% - 2rem));
    --font-display: "Orbitron", sans-serif;
    --font-body: "Manrope", sans-serif;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top right, rgba(36, 163, 255, 0.14), transparent 30%),
        radial-gradient(circle at left center, rgba(2, 120, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #04070d 0%, #08111d 55%, #03060a 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
}

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

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

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

.shell {
    width: var(--shell);
    margin: 0 auto;
}

/* Header And Navigation */
.site-footer .shell {
    width: min(100vw - 0.4rem, 2200px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: 0.95rem;
    backdrop-filter: blur(18px);
    background: rgba(3, 7, 13, 0.74);
    border-bottom: 1px solid rgba(111, 188, 255, 0.1);
}

.nav {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

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

.brand__logo {
    width: 78px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(111, 188, 255, 0.24);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand__eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-warm);
}

.brand__name {
    font-family: var(--font-display);
    font-size: clamp(1.48rem, 1.05rem + 1.18vw, 2.24rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand__name span {
    color: var(--accent);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-self: center;
    margin-left: 5.5rem;
    padding: 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(111, 188, 255, 0.16);
    background: rgba(7, 13, 24, 0.92);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.nav__link {
    color: var(--text-soft);
    font-size: 1.2rem;
    padding: 1.22rem 1.62rem;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
    color: var(--text);
    background: rgba(111, 188, 255, 0.08);
}

.nav__toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(111, 188, 255, 0.18);
    border-radius: 16px;
    background: rgba(10, 20, 38, 0.75);
    cursor: pointer;
    justify-self: end;
}

.nav__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 6px auto;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.is-open span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.is-open span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.75rem 2.6rem;
    border: 1px solid rgba(111, 188, 255, 0.25);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 40px rgba(2, 120, 255, 0.24);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 22px 46px rgba(2, 120, 255, 0.28);
}

.button--ghost {
    background: rgba(10, 20, 38, 0.6);
    color: var(--text);
    box-shadow: none;
}

.button--nav {
    margin-left: 0.25rem;
    padding: 1.24rem 2.32rem;
    font-size: 1.17rem;
}

main {
    padding: 1.8rem 0 4.5rem;
}

/* Shared Page Layout */
.hero,
.page-hero,
.split-grid,
.contact-layout,
.group-grid,
.package-grid,
.card-grid {
    display: grid;
    gap: 1.5rem;
}

.hero,
.page-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    min-height: calc(100vh - 180px);
    padding: 1.8rem 0 1rem;
}

.hero--home {
    width: min(100vw - 0.4rem, 2200px);
    grid-template-columns: minmax(360px, 0.74fr) minmax(1120px, 1.46fr);
    gap: clamp(0.8rem, 1.4vw, 1.5rem);
    align-items: start;
    padding-top: 1.1rem;
}

.page-hero--tariffs {
    width: min(100vw - 0.4rem, 2200px);
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding-top: 0.4rem;
}

.page-hero--contact {
    width: min(100vw - 0.4rem, 2200px);
    grid-template-columns: minmax(440px, 0.8fr) minmax(920px, 1.2fr);
    gap: clamp(1rem, 1.7vw, 2rem);
    align-items: center;
}

.page-hero--about {
    width: min(100vw - 0.4rem, 2200px);
    grid-template-columns: minmax(500px, 1fr) minmax(320px, 0.58fr);
    gap: clamp(1rem, 1.7vw, 2rem);
    align-items: start;
    min-height: auto;
    padding-top: 0.45rem;
}

.page-hero--about + .section {
    padding-top: 0.7rem;
}

.page-hero--gallery {
    width: min(100vw - 0.4rem, 2200px);
    grid-template-columns: minmax(460px, 0.78fr) minmax(960px, 1.22fr);
    gap: clamp(1rem, 1.7vw, 2rem);
    align-items: center;
}

.page-hero--legal {
    width: min(100vw - 0.4rem, 2200px);
    grid-template-columns: minmax(520px, 1fr) minmax(260px, 0.46fr);
    gap: clamp(1rem, 1.7vw, 2rem);
    align-items: start;
    min-height: auto;
    padding-top: 0.45rem;
}

.page-hero--legal + .section {
    padding-top: 0.55rem;
}

/* Tariffs Top Band */
.tariffs-top-band.shell {
    width: min(100vw - 0.4rem, 2200px);
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1.28fr);
    gap: clamp(1rem, 1.7vw, 2rem);
    align-items: stretch;
}

.tariffs-top-band__features,
.tariffs-top-band__message {
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(180deg, rgba(12, 24, 43, 0.86), rgba(5, 11, 21, 0.96));
    box-shadow: var(--shadow);
}

.tariffs-top-band__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 1.4rem;
}

.tariffs-feature {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
}

.tariffs-feature__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-right: 2px solid rgba(42, 142, 255, 0.28);
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.tariffs-feature__icon--accent {
    color: var(--accent);
}

.tariffs-feature__title,
.tariffs-feature__copy {
    margin: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.tariffs-feature__title {
    font-size: 1.65rem;
    color: var(--text);
}

.tariffs-feature__copy {
    font-size: 1.6rem;
    color: var(--text-soft);
}

.tariffs-top-band__message {
    display: grid;
    align-content: center;
    gap: 0.8rem;
}

.tariffs-top-band__title {
    margin: 0;
    max-width: 30ch;
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.15rem + 2vw, 3.5rem);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text);
}

.tariffs-top-band__title span {
    color: var(--accent);
}

.tariffs-top-band__copy {
    max-width: 88ch;
    margin-top: 0.15rem;
    font-size: clamp(0.8rem, 0.50rem + 0.8vw, 1.6rem);
}

.page-hero--tariffs .page-hero__media img {
    width: 100%;
    min-height: 940px;
    aspect-ratio: 16 / 9.2;
}

.page-hero--contact .page-hero__media {
    align-self: stretch;
}

.page-hero--gallery .page-hero__media {
    align-self: stretch;
}

.page-hero--contact .media-card--video {
    height: 100%;
    min-height: 760px;
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.page-hero--contact .media-card--video video {
    width: 100%;
    height: 100%;
    min-height: 760px;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center;
}

.gallery-hero-card {
    height: 100%;
    min-height: 760px;
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.gallery-hero-card img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center;
}

/* Gallery Page */
.gallery-showcase.shell {
    width: min(100vw - 0.4rem, 2200px);
    display: grid;
    grid-template-columns: minmax(420px, 0.72fr) minmax(980px, 1.28fr);
    gap: clamp(1rem, 1.7vw, 2rem);
    align-items: stretch;
}

.gallery-showcase__intro,
.gallery-showcase__video-card {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
}

.gallery-showcase__intro {
    display: grid;
    align-content: center;
    gap: 0.95rem;
    padding: 1.8rem 1.9rem;
    background:
        radial-gradient(circle at top left, rgba(36, 163, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(10, 20, 38, 0.96), rgba(5, 11, 21, 0.98));
}
.gallery-showcase__intro .section-title {
    font-size: clamp(1.45rem, 1rem + 0.9vw, 2.15rem);
}
.gallery-grid-section .section-title {
    font-size: clamp(1.6rem, 1.1rem + 1vw, 2.4rem);
}
.gallery-showcase__video-card {
    overflow: hidden;
    background: rgba(5, 10, 18, 0.88);
}

.gallery-showcase__video-card video {
    width: 100%;
    height: 100%;
    min-height: 760px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.gallery-grid-section.shell {
    width: min(100vw - 0.4rem, 2200px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) + 2px);
    border: 1px solid rgba(111, 188, 255, 0.18);
    background: rgba(7, 13, 24, 0.88);
    box-shadow: var(--shadow);
    min-height: 280px;
    aspect-ratio: 4 / 3;
}

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

.gallery-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 70%;
    background: linear-gradient(180deg, transparent, rgba(4, 8, 16, 0.94));
    pointer-events: none;
}

.gallery-card--image-only::after {
    display: none;
}

.gallery-card__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    display: grid;
    gap: 0.45rem;
    padding: 1.2rem 1.2rem 1.3rem;
}

.gallery-card__tag {
    margin: 0;
    color: var(--accent-warm);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gallery-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.18rem;
    line-height: 1.18;
    text-transform: uppercase;
}

.gallery-card p:last-child {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.65;
    font-size: 0.98rem;
}

.gallery-card--1,
.gallery-card--2,
.gallery-card--3,
.gallery-card--4,
.gallery-card--5,
.gallery-card--6,
.gallery-card--7,
.gallery-card--8,
.gallery-card--9 {
    grid-column: span 1;
    min-height: 280px;
}

/* Tariffs Detail Bands */
.tariffs-info-band.shell {
    width: min(100vw - 0.4rem, 2200px);
}

.tariffs-info-band {
    padding-top: 1.4rem;
}

.tariffs-hero__details {
    display: grid;
    gap: 1.4rem;
    margin-top: 0;
    max-width: 100%;
}

.tariffs-hero__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.7vw, 2rem);
    align-items: start;
}

.tariffs-hero__row--support {
    align-items: stretch;
    margin-top: 2rem;
}

.tariffs-hero__block {
    display: grid;
     gap: 0.35rem;
    align-content: start;
}


.tariffs-hero__subheading {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 1.1rem + 1.15vw, 2.45rem);
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text);
    max-width: 29ch;
}

.tariffs-hero__advantages {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem 2rem;
    max-width: 100ch;
}

.tariffs-hero__advantages li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-soft);
    font-size: 1.32rem;
    line-height: 1.55;
    max-width: 18ch;
}

.tariffs-hero__block .eyebrow {
    margin-bottom: 0rem;
    margin-top: 0rem;
}

.tariffs-tailored-panel {
    align-self: start;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100%;
    padding: 0;
    background:
        radial-gradient(circle at top left, rgba(36, 163, 255, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(12, 24, 43, 0.96), rgba(5, 11, 21, 0.98));
}

.tariffs-tailored-panel__accent {
    position: absolute;
    inset: 1.5rem auto 1.5rem 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(36, 163, 255, 0.95), rgba(36, 163, 255, 0.18));
}

.tariffs-tailored-panel__inner {
    display: grid;
    gap: 1rem;
    padding: 1.8rem 2rem 1.35rem 2.2rem;
}

.tariffs-tailored-panel__eyebrow {
    margin: 0;
    color: var(--accent-warm);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tariffs-tailored-panel__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 1.15rem + 1vw, 2.55rem);
    line-height: 0.98;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text);
}

.tariffs-tailored-panel__copy {
    margin: 0;
    max-width: 30ch;
    color: var(--text-soft);
    font-size: 1.14rem;
    line-height: 1.82;
}

.tariffs-tailored-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.tariffs-tailored-panel__chips .pill {
    font-size: 0.84rem;
    padding: 0.68rem 0.95rem;
    border-color: rgba(111, 188, 255, 0.18);
    background: rgba(7, 14, 25, 0.7);
}

.tariffs-tailored-panel__footer {
    padding: 1rem 2rem 1.8rem 2.2rem;
    border-top: 1px solid rgba(111, 188, 255, 0.1);
    background: rgba(4, 9, 17, 0.42);
}

.tariffs-tailored-panel .button {
    min-width: 20rem;
    padding: 1.25rem 2.3rem;
    font-size: 1.08rem;
}

.tariffs-hero__advantages li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

.tariffs-bottom-band.shell {
    width: min(100vw - 0.4rem, 2200px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.2rem, 2vw, 2.6rem);
    padding: clamp(1.8rem, 2.5vw, 2.8rem);
    border-radius: calc(var(--radius) + 8px);
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(circle at 12% 20%, rgba(42, 142, 255, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(9, 21, 41, 0.96), rgba(4, 10, 20, 0.96));
    box-shadow: var(--shadow);
}

.tariffs-bottom-band__icon {
    width: clamp(64px, 5vw, 88px);
    height: clamp(64px, 5vw, 88px);
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid rgba(42, 142, 255, 0.45);
    color: var(--accent);
    font-size: clamp(2rem, 1.3rem + 1.6vw, 3rem);
    font-weight: 800;
    box-shadow: 0 0 0 10px rgba(42, 142, 255, 0.08);
}

.tariffs-bottom-band__content {
    display: grid;
    gap: 0.55rem;
}

.tariffs-bottom-band__title {
    margin: 0;
    max-width: 70ch;
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 0.30rem + 0.8vw, 1.7rem);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text);
}

/* Shared Typography */
.hero__content {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.1rem 1.1rem 1.2rem;
    border: 1px solid rgba(111, 188, 255, 0.18);
    border-radius: calc(var(--radius) + 4px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(6, 12, 24, 0.96) 40%),
        rgba(6, 12, 24, 0.96);
    box-shadow: var(--shadow);
    min-height: 100%;
}

.hero__title,
.section-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero__title {
    font-size: clamp(3.35rem, 2rem + 2.9vw, 5.55rem);
    line-height: 0.88;
    max-width: none;
    margin-bottom: 0;
}

.hero__title--compact {
    font-size: clamp(1.3rem, 0.95rem + 0.8vw, 2.2rem);
}

.hero__title {
    white-space: nowrap;
}

.hero__title-line {
    display: inline-block;
    margin-right: 0.35em;
}

.hero__lead {
    margin: 0;
    color: var(--accent);
    font-size: clamp(0.95rem, 0.88rem + 0.25vw, 1.06rem);
    line-height: 1.45;
    max-width: 36ch;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 1.25rem + 1.8vw, 3.1rem);
    max-width: 58ch;
}

.hero__copy,
.section-copy,
.panel p,
.group-card__intro,
.service-card__body p,
.audience-card p,
.contact-note,
.footer-copy {
    color: var(--text-soft);
    line-height: 1.72;
}
.page-hero--contact .section-copy {
    font-size: 1.42rem;
}
.page-hero--gallery .section-copy,
.gallery-showcase__intro .section-copy {
    font-size: 1.22rem;
}
.hero__copy {
    max-width: 70ch;
    font-size: 1.68rem;
    margin: 0;
    line-height: 1.58;
}

.hero__copy + .hero__copy {
    margin-top: 0.75rem;
}

.hero__copy--muted {
    margin-top: -0.2rem;
}

.hero__copy--strong {
    color: var(--text);
    font-size: 1.8rem;
    line-height: 1.5;
}

.hero__text-stack {
    display: grid;
    gap: 1rem;
}

.hero__focus-image {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(111, 188, 255, 0.2);
    background: rgba(5, 10, 18, 0.78);
}

.hero__focus-image img {
    display: block;
    width: 100%;
    height: auto;;
    object-fit: contain;
    object-position: center top;
}

.hero-brand-lockup {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.15rem;
    margin-bottom: 0.25rem;
}

.hero-brand-lockup__logo {
    width: clamp(132px, 8vw, 164px);
    border-radius: 24px;
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.hero-brand-lockup__identity {
    display: grid;
    gap: 0.3rem;
}

.hero-brand-lockup__name,
.hero-brand-lockup__service {
    display: block;
    text-transform: uppercase;
}

.hero-brand-lockup__name {
    font-family: var(--font-display);
    font-size: 1.12rem;
    letter-spacing: 0.12em;
    color: var(--text);
}

.hero-brand-lockup__service {
    color: var(--accent-warm);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
}

.eyebrow {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-warm);
}

.hero__actions,
.pill-list,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero__toolbar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.15rem;
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius);
    background:
        linear-gradient(110deg, rgba(2, 120, 255, 0.18), rgba(6, 12, 24, 0.95) 55%),
        rgba(10, 20, 38, 0.95);
}

.hero__toolbar .hero__actions {
    gap: 1.1rem;
}

.hero__toolbar .button {
    padding: 1.6rem 2.7rem;
    font-size: 1.48rem;
}

.hero__toolbar h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.15rem + 1vw, 2.2rem);
    text-transform: uppercase;
}

.hero__meta-block {
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(111, 188, 255, 0.12);
}

.hero__meta-block .eyebrow {
    margin-bottom: 0.55rem;
}

/* Shared Cards And Stats */
.hero__stats {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card,
.panel,
.group-card,
.audience-card,
.service-card,
.package-card,
.cta-band,
.contact-chip,
.flash {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.stat-card {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
}

.stat-card strong,
.panel__title,
.package-card__name,
.footer-title {
    display: block;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.stat-card span {
    display: block;
    margin-top: 0.55rem;
    color: var(--text-soft);
    line-height: 1.55;
    font-size: 0.94rem;
}

.hero__media,
.page-hero__media {
    position: relative;
}

.perspective-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.1rem 1.1rem;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(180deg, rgba(36, 163, 255, 0.08), rgba(8, 16, 29, 0.95) 34%),
        rgba(10, 20, 38, 0.95);
    box-shadow: var(--shadow);
}

.perspective-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 0.95rem + 0.8vw, 2.2rem);
    line-height: 0.92;
    text-transform: uppercase;
    max-width: 30ch;
}

.perspective-card__copy {
    margin: 0.7rem 0  2.6rem;
    color: var(--text-soft);
    line-height: 1.55;
    max-width: 95ch;
    font-size: 1.5rem;
}

.perspective-card__visual {
    margin-top: 0.45rem;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(111, 188, 255, 0.22);
    background: rgba(5, 10, 18, 0.74);
    padding: 0;
}

.perspective-card__visual img {
    width: 100%;
    height: clamp(410px, 52vh, 630px);
    min-height: 0;
    aspect-ratio: 22 / 14.4;
    object-fit: cover;
    object-position: center 33%;
    border-radius: 24px;
}

.media-card,
.panel--image {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--line-strong);
    background: rgba(7, 13, 24, 0.85);
    box-shadow: var(--shadow);
}

.media-card video,
.panel--image img,
.page-hero__media img,
.service-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.floating-note {
    position: absolute;
    left: 1.4rem;
    bottom: 1.4rem;
    max-width: 280px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(5, 10, 18, 0.82);
    border: 1px solid rgba(111, 188, 255, 0.26);
}

.floating-note span {
    display: block;
    color: var(--accent-warm);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    font-weight: 800;
}

.floating-note strong {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--font-display);
    font-size: 1rem;
}

.floating-note p {
    margin: 0.5rem 0 0;
    color: var(--text-soft);
    line-height: 1.5;
    font-size: 0.92rem;
}

.section {
    padding: 2rem 0;
}

#who-we-help-intro {
    scroll-margin-top: 6.25rem;
}

#who-we-help {
    scroll-margin-top: 4.35rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.bridge-section.shell {
    width: min(100vw - 0.4rem, 2200px);
}

.bridge-section {
    padding-top: 1.2rem;
    padding-bottom: 1.25rem;
    display: grid;
    grid-template-columns: minmax(440px, 0.82fr) minmax(780px, 1.18fr);
    gap: clamp(0.8rem, 1.4vw, 1.5rem);
    align-items: stretch;
}

.bridge-section__content {
    display: flex;
    align-items: center;
    padding: 1.95rem 2rem 2rem;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    background:
        linear-gradient(180deg, rgba(36, 163, 255, 0.04), rgba(6, 12, 24, 0.95) 38%),
        rgba(6, 12, 24, 0.95);
    box-shadow: var(--shadow);
}

.bridge-section__heading {
    margin-bottom: 0;
}

.bridge-section__title {
    max-width: 15ch;
    font-size: clamp(2.6rem, 1.8rem + 1.85vw, 4.15rem);
    line-height: 0.94;
}

.bridge-section__card {
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bridge-section__card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
    border-radius: calc(var(--radius) - 6px);
}

.who-we-help-section.shell {
    width: min(100vw - 0.4rem, 2200px);
}

.who-we-help-section {
    padding-top: 1.55rem;
}

.who-we-help-section__heading {
    max-width: none;
    margin-bottom: 2.15rem;
}

.who-we-help-section__heading .eyebrow {
    margin-bottom: 0.8rem;
}

.who-we-help-section__heading .section-title {
    max-width: min(100%, 58ch);
    font-size: clamp(1.3rem, 0.95rem + 0.8vw, 2.2rem);
    line-height: 0.88;
    letter-spacing: 0.03em;
}

.who-we-help-section__heading .section-copy {
    max-width: 72ch;
    font-size: 1.15rem;
    line-height: 1.78;
}

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

.panel,
.group-card,
.package-card,
.audience-card {
    border-radius: var(--radius);
    padding: 1.5rem;
}

.panel--image {
    padding: 0;
}

.panel--poster {
    padding: 0.75rem;
}

.panel--poster img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: calc(var(--radius) - 6px);
}

.panel__title,
.footer-title {
    color: var(--text);
    margin-bottom: 0.9rem;
}

/* Shared Sections And Grids */
.pill {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(111, 188, 255, 0.24);
    background: rgba(7, 14, 25, 0.92);
    color: var(--text);
    font-size: 0.92rem;
}

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

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

.service-card,
.audience-card {
    overflow: hidden;
    padding: 0;
}

.service-card__body {
    padding: 1.25rem;
}

.service-card__tag {
    margin: 0 0 0.65rem;
    color: var(--accent-warm);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.service-card h3,
.audience-card h3,
.mini-package h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.audience-card__need {
    color: var(--text);
    font-weight: 700;
}

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

.package-card {
    position: relative;
    overflow: hidden;
}

.package-card--featured {
    border-color: rgba(241, 182, 77, 0.45);
    background:
        linear-gradient(180deg, rgba(241, 182, 77, 0.08), transparent 38%),
        rgba(10, 20, 38, 0.92);
}

.package-card__badge,
.mini-package__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(241, 182, 77, 0.16);
    border: 1px solid rgba(241, 182, 77, 0.32);
    color: var(--accent-warm);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.package-card__price,
.mini-package__price {
    margin: 0.35rem 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 1.1rem + 1vw, 2.4rem);
    color: var(--accent);
}

.package-card__summary,
.package-card__result {
    color: var(--text-soft);
}

.package-card__result {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--text);
}

.package-card__list,
.simple-list {
    margin: 1rem 0 1.15rem;
    padding-left: 1.1rem;
    color: var(--text-soft);
    line-height: 1.68;
}

.simple-list {
    margin-bottom: 0;
}

.simple-list li + li,
.package-card__list li + li {
    margin-top: 0.55rem;
}

.simple-list strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text);
}

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

.group-card__packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.mini-package {
    position: relative;
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(111, 188, 255, 0.15);
    background: rgba(4, 9, 17, 0.72);
}

.pricing-note {
    margin-bottom: 1.5rem;
}

.cta-band {
    margin-top: 1rem;
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background:
        linear-gradient(110deg, rgba(2, 120, 255, 0.18), rgba(6, 12, 24, 0.95) 55%),
        rgba(10, 20, 38, 0.95);
}
.cta-band .button {
    font-size: 1.58rem;
}
.cta-band h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.15rem + 1vw, 2.2rem);
    text-transform: uppercase;
}

/* Contact Page */
.contact-layout {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 0.85rem;
}

.contact-chip {
    padding: 1rem 1.1rem;
    border-radius: 18px;
}

.contact-chip--inline {
    box-shadow: none;
    background: rgba(4, 9, 17, 0.72);
}

.contact-chip strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.contact-chip a {
    color: inherit;
}

.panel--form {
    padding: 1.5rem;
}

.flash-stack {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.flash {
    padding: 0.95rem 1rem;
    border-radius: 16px;
}

.flash--success {
    border-color: rgba(83, 209, 141, 0.3);
    background: rgba(15, 45, 29, 0.75);
}

.flash--error {
    border-color: rgba(255, 127, 134, 0.32);
    background: rgba(48, 16, 23, 0.75);
}

.contact-form,
.form-grid {
    display: grid;
    gap: 1rem;
}

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

.field {
    display: grid;
    gap: 0.5rem;
}

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

.field label {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    color: var(--text);
    background: rgba(4, 9, 17, 0.92);
    border: 1px solid rgba(111, 188, 255, 0.18);
    border-radius: 18px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
    min-height: 180px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(36, 163, 255, 0.62);
    box-shadow: 0 0 0 3px rgba(36, 163, 255, 0.16);
}

.field--error input,
.field--error select,
.field--error textarea {
    border-color: rgba(255, 127, 134, 0.62);
}

.field__error {
    margin: 0;
    color: var(--danger);
    font-size: 0.86rem;
}

.contact-form__intro {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
}

.contact-form__intro .panel__title {
    margin: 0;
}

.contact-form__copy,
.contact-form__note {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.contact-form__actions {
    display: grid;
    gap: 0.85rem;
}

.contact-form__submit {
    width: 100%;
}

.contact-form__submit:disabled {
    cursor: wait;
    filter: saturate(0.72);
    opacity: 0.82;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(185, 199, 218, 0.62);
}

/* Contact Page Desktop Refinements */
@media (min-width: 921px) {
    .contact-layout {
        width: min(100vw - 0.4rem, 2200px);
        grid-template-columns: minmax(430px, 0.72fr) minmax(980px, 1.28fr);
        gap: clamp(1rem, 1.8vw, 2rem);
    }

    .contact-layout .panel__title {
        font-size: 1.46rem;
        margin-bottom: 1.05rem;
    }

    .contact-stack {
        gap: 1rem;
    }

    .contact-chip {
        padding: 1.2rem 1.3rem;
    }

    .contact-chip strong {
        font-size: 1.12rem;
    }

    .contact-chip span {
        font-size: 1.08rem;
        line-height: 1.6;
    }

    .contact-note {
        font-size: 1.14rem;
        line-height: 1.78;
    }

    .panel--form {
        padding: 1.8rem;
    }

    .field label {
        font-size: 1.02rem;
    }

    .field input,
    .field select,
    .field textarea {
        padding: 1.15rem 1.15rem;
        font-size: 1.08rem;
    }

    .field textarea {
        min-height: 220px;
    }

    .contact-form .button {
        padding: 1.4rem 2rem;
        font-size: 1.16rem;
    }

    .contact-form__copy,
    .contact-form__note {
        font-size: 1.02rem;
    }
}

/* Footer */
.site-footer {
    padding: 1rem 0 2.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.7fr) minmax(280px, 0.9fr);
    gap: 2.2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(111, 188, 255, 0.12);
}

.footer-title {
    margin: 0 0 1rem;
    font-size: 1.08rem;
}

.footer-copy {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 60ch;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.footer-links a,
.footer-links span {
    color: var(--text-soft);
    font-size: 1.48rem;
    line-height: 1.65;
}

.footer-bottom {
    padding-top: 1.15rem;
    border-top: 1px solid rgba(111, 188, 255, 0.08);
    color: rgba(185, 199, 218, 0.76);
    font-size: 1.4rem;
}

.site-footer .shell {
    width: min(100vw - 0.4rem, 2200px);
}

.who-we-help-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 1.6vw, 1.9rem);
    align-items: start;
}

.audience-list {
    display: grid;
    gap: 1.15rem;
}

/* Who We Help */
.audience-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.3rem;
    padding: 1.7rem 1.9rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.audience-strip__index {
    color: var(--accent-warm);
    font-family: var(--font-display);
    font-size: 2.15rem;
    line-height: 1;
    padding-top: 0.15rem;
}

.audience-strip h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.48rem;
    line-height: 1.14;
    text-transform: uppercase;
}

.audience-strip__need {
    margin: 0 0 0.4rem;
    color: var(--text);
    font-weight: 700;
    font-size: 1.22rem;
    line-height: 1.5;
}

.audience-strip p:last-child {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 1.18rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(36, 163, 255, 0.4);
    outline-offset: 3px;
}

/* Responsive: Large Tablet */
@media (max-width: 1100px) {
    .card-grid--services,
    .group-card__packages {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero--home {
        width: min(100% - 1rem, 100%);
        grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    }

    .page-hero--tariffs {
        width: min(100% - 1rem, 100%);
    }

    .page-hero--contact {
        width: min(100% - 1rem, 100%);
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    }

    .page-hero--gallery,
    .gallery-showcase.shell,
    .gallery-grid-section.shell {
        width: min(100% - 1rem, 100%);
    }

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

    .tariffs-info-band.shell {
        width: min(100% - 1rem, 100%);
    }

    .tariffs-top-band.shell {
        width: min(100% - 1rem, 100%);
    }

    .bridge-section.shell {
        width: min(100% - 1rem, 100%);
    }

    .who-we-help-section.shell {
        width: min(100% - 1rem, 100%);
    }

    .tariffs-bottom-band.shell {
        width: min(100% - 1rem, 100%);
    }

    .bridge-section {
        grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    }

    .who-we-help-layout {
        grid-template-columns: 1fr;
    }
}

/* Responsive: Tablet And Small Laptop */
@media (max-width: 920px) {
    .nav {
        display: flex;
        justify-content: space-between;
        min-height: 84px;
    }

    .nav__toggle {
        display: inline-block;
    }

    .nav__menu {
        position: absolute;
        top: calc(100% + 0.8rem);
        right: 0;
        left: 0;
        display: grid;
        gap: 0.45rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(7, 13, 24, 0.96);
        border: 1px solid rgba(111, 188, 255, 0.16);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .nav__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .button--nav {
        margin-left: 0;
        width: 100%;
    }

    .hero,
    .page-hero,
    .split-grid,
    .bridge-section,
    .contact-layout,
    .group-grid,
    .package-grid,
    .card-grid,
    .who-we-help-layout,

     .site-footer .shell {
        width: min(100% - 1rem, 100%);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .page-hero {
        min-height: auto;
        padding-top: 1rem;
    }

    .hero__stats,
    .form-grid,
    .group-card__packages,
    .hero--home,
    .page-hero--tariffs,
    .page-hero--contact,
    .page-hero--gallery,
    .gallery-showcase.shell,
    .tariffs-top-band.shell {
        grid-template-columns: 1fr;
    }

    .tariffs-top-band__features {
        grid-template-columns: 1fr;
    }

    .tariffs-hero__row {
        grid-template-columns: 1fr;
    }

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

    .gallery-card,
    .gallery-card--1,
    .gallery-card--2,
    .gallery-card--3,
    .gallery-card--4,
    .gallery-card--5,
    .gallery-card--6,
    .gallery-card--7,
    .gallery-card--8,
    .gallery-card--9 {
        grid-column: span 1;
        min-height: 360px;
    }

    .tariffs-bottom-band.shell {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hero__content,
    .perspective-card {
        min-height: auto;
    }

    .who-we-help-section__heading .section-title {
        display: none;
    }

    .who-we-help-section__heading .section-copy {
        max-width: 100%;
        font-size: 1.04rem;
        line-height: 1.68;
    }

    .hero__toolbar {
        justify-content: flex-start;
        margin-top: 0;
    }

    .hero-brand-lockup {
        align-items: flex-start;
    }

    .hero-brand-lockup__logo {
        width: min(138px, 32vw);
    }

    .cta-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Responsive: Mobile */
@media (max-width: 640px) {
    .shell {
        width: min(100% - 1.1rem, 100%);
    }

    main {
        padding: 1rem 0 3rem;
    }

    .section {
        padding: 1.2rem 0;
    }

    .nav {
        min-height: 76px;
    }

    .brand {
        gap: 0.7rem;
    }

    .brand__logo {
        width: 54px;
        border-radius: 16px;
    }

    .brand__eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.22em;
    }

    .brand__name {
        font-size: clamp(1.28rem, 5.2vw, 1.8rem);
    }

    .nav__toggle {
        width: 48px;
        height: 48px;
    }

    .button {
        padding: 1.05rem 1.35rem;
        font-size: 1rem;
    }

    .button--nav {
        padding: 0.95rem 1.1rem;
        font-size: 0.98rem;
    }

    .eyebrow {
        margin-bottom: 0.7rem;
        font-size: 0.95rem;
        letter-spacing: 0.18em;
    }

    .section-title,
    .tariffs-top-band__title,
    .tariffs-hero__subheading,
    .tariffs-tailored-panel__title,
    .tariffs-bottom-band__title,
    .hero__toolbar h2,
    .cta-band h2 {
        font-size: clamp(1.15rem, 5.2vw, 1.9rem);
        line-height: 1.03;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        max-width: none;
        white-space: normal;
    }

    .hero__title--compact {
        font-size: clamp(1rem, 4.8vw, 1.55rem);
    }

    .hero__title-line {
        display: block;
        margin-right: 0;
    }

    .hero-brand-lockup__logo {
        width: min(130px, 36vw);
    }

    .hero-brand-lockup__name {
        font-size: 0.98rem;
    }

    .hero-brand-lockup__service {
        font-size: 0.68rem;
        letter-spacing: 0.18em;
    }

    .perspective-card__title {
        font-size: clamp(1rem, 4.5vw, 1.55rem);
        max-width: none;
    }

    .section-copy,
    .page-hero--contact .section-copy,
    .page-hero--gallery .section-copy,
    .gallery-showcase__intro .section-copy,
    .contact-form__copy,
    .contact-form__note,
    .contact-note,
    .footer-copy,
    .footer-links a,
    .footer-links span,
    .footer-bottom,
    .tariffs-top-band__copy,
    .tariffs-tailored-panel__copy,
    .audience-strip__need,
    .audience-strip p:last-child {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .panel__title,
    .footer-title {
        font-size: 0.95rem;
        letter-spacing: 0.12em;
    }

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

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-chip {
        padding: 0.85rem 0.95rem;
    }

    .contact-chip strong {
        font-size: 1rem;
    }

    .contact-chip span,
    .contact-chip a {
        font-size: 1rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .field label {
        font-size: 0.82rem;
    }

    .field input,
    .field select,
    .field textarea {
        padding: 0.85rem 0.9rem;
        font-size: 0.98rem;
        border-radius: 16px;
    }

    .field textarea {
        min-height: 140px;
    }

    .hero__focus-image img,
    .perspective-card__visual img,
    .page-hero--tariffs .page-hero__media img,
    .gallery-card img {
        height: auto;
        min-height: 0;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .perspective-card__visual img,
    .page-hero--tariffs .page-hero__media img {
        object-position: center;
    }

    .gallery-showcase__intro,
    .tariffs-top-band__features,
    .tariffs-top-band__message {
        padding: 1.2rem;
    }

    .gallery-showcase__intro .section-title,
    .gallery-grid-section .section-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

    .gallery-card {
        min-height: 0;
        aspect-ratio: auto;
    }

    .gallery-card::after {
        display: none;
    }

    .gallery-card__overlay {
        position: static;
        inset: auto;
        padding: 0.95rem 1rem 1rem;
        background: rgba(4, 8, 16, 0.9);
    }

    .gallery-card__tag {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .gallery-card h3 {
        font-size: 1rem;
    }

    .gallery-card p:last-child {
        font-size: 0.9rem;
    }

    .page-hero--contact .media-card--video,
    .gallery-showcase__video-card {
        min-height: 0;
    }

    .page-hero--contact .media-card--video video,
    .gallery-showcase__video-card video {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .who-we-help-section__heading {
        margin-bottom: 1.45rem;
    }

    .who-we-help-section__heading .section-title {
        display: none;
    }

    .audience-strip {
        padding: 1.35rem 1.2rem;
        gap: 1rem;
    }

    .audience-strip__index {
        font-size: 1.7rem;
    }

    .audience-strip h3 {
        font-size: 1.16rem;
    }

    .audience-strip__need {
        font-size: 1rem;
    }

    .audience-strip p:last-child {
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .panel,
    .group-card,
    .package-card,
    .audience-card,
    .panel--form,
    .cta-band,
    .perspective-card {
        padding: 1.2rem;
    }

    .hero__toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.1rem;
    }

    .hero__toolbar .hero__actions {
        flex-direction: column;
    }

    .hero__toolbar .button {
        width: 100%;
        padding: 1rem 1.3rem;
        font-size: 1rem;
    }

    .cta-band {
        gap: 0.9rem;
        padding: 1.2rem;
    }

    .cta-band .button {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 1.3rem;
    }

    .tariffs-feature {
        grid-template-columns: 36px 1fr;
        gap: 0.7rem;
    }

    .tariffs-feature__icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .tariffs-feature__title,
    .tariffs-feature__copy {
        font-size: 1rem;
    }

    .tariffs-hero__advantages {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        max-width: none;
    }

    .tariffs-hero__advantages li {
        max-width: none;
        font-size: 0.96rem;
        padding-left: 1rem;
    }

    .tariffs-tailored-panel__inner,
    .tariffs-tailored-panel__footer {
        padding: 1.15rem 1.2rem;
    }

    .tariffs-tailored-panel .button {
        min-width: 0;
        width: 100%;
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }

    .pill,
    .tariffs-tailored-panel__chips .pill {
        font-size: 0.76rem;
        padding: 0.55rem 0.8rem;
    }

    .tariffs-bottom-band.shell {
        padding: 1.2rem;
    }

    .tariffs-bottom-band__icon {
        width: 52px;
        height: 52px;
    }

    .footer-grid {
        gap: 1.4rem;
        padding: 1.35rem 0;
    }

    .footer-title {
        margin-bottom: 0.65rem;
    }

    .footer-links {
        gap: 0.45rem;
    }

    .footer-links a,
    .footer-links span {
        word-break: break-word;
    }

    .footer-bottom {
        padding-top: 0.95rem;
    }

    .floating-note {
        position: static;
        max-width: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
}
