:root {
    --color-background: #07151b;
    --color-background-soft: #0b1d24;
    --color-background-lighter: #102730;
    --color-surface: #f1f6f7;
    --color-surface-soft: #e4eef0;
    --color-white: #ffffff;
    --color-text: #102027;
    --color-text-soft: #64747b;
    --color-text-light: rgba(255, 255, 255, 0.7);
    --color-primary: #8cd8e5;
    --color-primary-strong: #5ebfd1;
    --color-primary-dark: #153d47;
    --color-border-light: rgba(255, 255, 255, 0.12);
    --color-border-dark: rgba(16, 32, 39, 0.14);
    --container: 1180px;
    --shadow-soft: 0 24px 60px rgba(3, 19, 25, 0.12);
    --shadow-dark: 0 28px 90px rgba(0, 0, 0, 0.28);
    --radius-small: 12px;
    --radius-medium: 22px;
    --radius-large: 34px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section--dark {
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(94, 191, 209, 0.09),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #081920 0%,
            #07151b 100%
        );
    color: var(--color-white);
}

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


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
    margin: 0 0 17px;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--dark {
    color: #2c7b89;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 58px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 60px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4.45rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.section-heading p:last-child {
    margin: 22px 0 0;
    color: var(--color-text-soft);
    font-size: 1.05rem;
}

.section--dark .section-heading p:last-child {
    color: var(--color-text-light);
}

.section-heading--split > p {
    margin: 0 0 6px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--color-white);
}

.site-header__inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
    border-bottom: 1px solid var(--color-border-light);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand__mark {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(140, 216, 229, 0.55);
    border-radius: 10px 3px 10px 3px;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 900;
    font-style: italic;
    transform: rotate(-8deg);
}

.brand__name {
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.main-navigation {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.main-navigation a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-navigation a:hover {
    color: var(--color-white);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid var(--color-border-light);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 17px;
    height: 1px;
    display: block;
    margin: 5px auto;
    background: var(--color-white);
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--small {
    min-height: 41px;
    padding: 9px 18px;
    font-size: 0.76rem;
}

.button--primary {
    background: var(--color-primary);
    color: #05202a;
    box-shadow: 0 12px 28px rgba(94, 191, 209, 0.22);
}

.button--primary:hover {
    background: #a7e5ee;
    box-shadow: 0 16px 34px rgba(94, 191, 209, 0.3);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.035);
    color: var(--color-white);
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.button--light {
    background: var(--color-primary);
    color: #062029;
}

.button--dark {
    flex: 0 0 auto;
    background: var(--color-background);
    color: var(--color-white);
}

.button--dark:hover {
    background: var(--color-primary-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 100px;
    background:
        linear-gradient(
            120deg,
            #06141a 0%,
            #0a1c23 55%,
            #07151b 100%
        );
    color: var(--color-white);
}

.hero__background,
.hero__grid,
.hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__grid {
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent 90%
        );
}

.hero__glow {
    border-radius: 50%;
    filter: blur(1px);
}

.hero__glow--one {
    inset: auto auto -260px -200px;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(
            circle,
            rgba(94, 191, 209, 0.16),
            transparent 68%
        );
}

.hero__glow--two {
    inset: 60px -300px auto auto;
    width: 800px;
    height: 800px;
    background:
        radial-gradient(
            circle,
            rgba(140, 216, 229, 0.11),
            transparent 68%
        );
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    align-items: center;
    gap: 72px;
}

.hero__content h1 {
    max-width: 740px;
    margin: 0;
    font-size: clamp(3.4rem, 7vw, 6.9rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
}

.hero__content h1 span {
    display: block;
    color: var(--color-primary);
}

.hero__description {
    max-width: 650px;
    margin: 30px 0 0;
    color: var(--color-text-light);
    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 35px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    font-weight: 600;
}

.hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero__trust i {
    color: var(--color-primary);
    font-style: normal;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual__orbit {
    position: absolute;
    border: 1px solid rgba(140, 216, 229, 0.15);
    border-radius: 50%;
}

.hero-visual__orbit--one {
    width: 440px;
    height: 440px;
}

.hero-visual__orbit--two {
    width: 340px;
    height: 340px;
}

.hero-visual__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
    overflow: hidden;
    border: 1px solid rgba(140, 216, 229, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow-dark);
    backdrop-filter: blur(18px);
    transform: rotate(-3deg);
}

.hero-visual__panel-top {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 17px;
    border-bottom: 1px solid var(--color-border-light);
}

.hero-visual__panel-top span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.hero-visual__panel-content {
    padding: 30px;
}

.hero-visual__metric small,
.hero-visual__metric strong {
    display: block;
}

.hero-visual__metric small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-visual__metric strong {
    margin-top: 6px;
    font-size: 1.55rem;
}

.hero-visual__chart {
    height: 160px;
    display: flex;
    align-items: end;
    gap: 12px;
    margin: 32px 0;
    padding: 22px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.14);
}

.hero-visual__chart i {
    flex: 1;
    border-radius: 6px 6px 2px 2px;
    background:
        linear-gradient(
            to top,
            rgba(94, 191, 209, 0.32),
            var(--color-primary)
        );
}

.hero-visual__chart i:nth-child(1) {
    height: 26%;
}

.hero-visual__chart i:nth-child(2) {
    height: 43%;
}

.hero-visual__chart i:nth-child(3) {
    height: 35%;
}

.hero-visual__chart i:nth-child(4) {
    height: 61%;
}

.hero-visual__chart i:nth-child(5) {
    height: 72%;
}

.hero-visual__chart i:nth-child(6) {
    height: 93%;
}

.hero-visual__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.hero-visual__cards span {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 13px;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.67rem;
}

.hero-visual__cards b {
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: 0.78rem;
}

.hero-visual__badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(140, 216, 229, 0.2);
    border-radius: 13px;
    background: rgba(7, 21, 27, 0.86);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.73rem;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(15px);
}

.hero-visual__badge span {
    color: var(--color-primary);
    font-weight: 900;
}

.hero-visual__badge--top {
    top: 75px;
    right: -15px;
}

.hero-visual__badge--bottom {
    bottom: 80px;
    left: -25px;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.process-card {
    min-height: 430px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
}

.process-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 38px;
    border: 1px solid rgba(140, 216, 229, 0.24);
    border-radius: 18px;
    background: rgba(140, 216, 229, 0.07);
}

.process-card__icon svg {
    width: 30px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card__number {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.process-card h3 {
    margin: 8px 0 13px;
    font-size: 1.7rem;
}

.process-card p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 0.93rem;
}

.process-card ul {
    display: grid;
    gap: 9px;
    margin: 26px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.process-card li {
    position: relative;
    padding-left: 19px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
}

.process-card li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 6px;
    height: 6px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
}

.process-arrow {
    color: rgba(140, 216, 229, 0.6);
    font-size: 1.8rem;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 500px;
    padding: 38px 32px;
    overflow: hidden;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(231, 240, 242, 0.85)
        );
    box-shadow: var(--shadow-soft);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(94, 191, 209, 0.14),
            transparent 66%
        );
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 75px rgba(3, 19, 25, 0.16);
}

.service-card__icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 1px solid rgba(44, 123, 137, 0.28);
    border-radius: 18px;
    background: rgba(94, 191, 209, 0.08);
}

.service-card__icon svg {
    width: 35px;
    fill: none;
    stroke: #2c7b89;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card__label {
    margin: 0 0 8px;
    color: #2c7b89;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0;
    font-size: 1.75rem;
}

.service-card > p:not(.service-card__label) {
    margin: 15px 0 0;
    color: var(--color-text-soft);
    font-size: 0.92rem;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 29px 0 0;
    padding: 25px 0 0;
    border-top: 1px solid var(--color-border-dark);
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 20px;
    color: #50636b;
    font-size: 0.82rem;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c7b89;
    font-weight: 900;
}


/* =========================================================
   PROJECTS
   ========================================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 45px rgba(3, 19, 25, 0.08);
}

.project-card--large {
    grid-row: span 2;
}

.project-card__visual {
    position: relative;
    min-height: 260px;
    padding: 28px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 0%,
            rgba(140, 216, 229, 0.16),
            transparent 38%
        ),
        #0b2028;
}

.project-card--large .project-card__visual {
    min-height: 475px;
}

.project-card__window {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
}

.project-card__window i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.project-card__dashboard {
    height: calc(100% - 30px);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.project-card__dashboard span {
    min-height: 120px;
    border: 1px solid rgba(140, 216, 229, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );
}

.project-card__dashboard span:first-child {
    grid-row: span 2;
}

.project-card__visual--editorial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background:
        linear-gradient(145deg, #17353e, #0b1c23);
}

.project-card__book {
    width: 104px;
    height: 155px;
    border-radius: 5px 13px 13px 5px;
    background:
        linear-gradient(
            145deg,
            #8cd8e5,
            #245a68
        );
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
    transform: rotate(-6deg);
}

.project-card__lines {
    width: 42%;
    display: grid;
    gap: 14px;
}

.project-card__lines span {
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.project-card__lines span:nth-child(2) {
    width: 75%;
}

.project-card__lines span:nth-child(3) {
    width: 55%;
}

.project-card__visual--landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 55px;
}

.project-card__landing-title {
    width: 65%;
    height: 24px;
    border-radius: 999px;
    background: var(--color-primary);
}

.project-card__landing-copy {
    width: 85%;
    height: 8px;
    margin-top: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow:
        0 15px 0 rgba(255, 255, 255, 0.14),
        0 30px 0 rgba(255, 255, 255, 0.1);
}

.project-card__landing-button {
    width: 110px;
    height: 36px;
    margin-top: 56px;
    border-radius: 999px;
    background: rgba(140, 216, 229, 0.25);
}

.project-card__content {
    padding: 26px 28px 29px;
}

.project-card__content > span {
    color: #2c7b89;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-card__content h3 {
    margin: 6px 0 8px;
    font-size: 1.45rem;
}

.project-card__content p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.87rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 70px 0 28px;
    background: #061218;
    color: var(--color-white);
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-bottom: 45px;
}

.site-footer__top .brand {
    flex: 0 0 auto;
}

.site-footer__description {
    width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: left;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-light);
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.74rem;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .site-footer {
        padding: 55px 0 25px;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 35px;
        text-align: center;
    }

    .site-footer__description {
        width: min(100%, 420px);
        text-align: center;
    }

    .site-footer__bottom {
        padding-top: 20px;
    }
}

/* =========================================================
   REVEAL
   ========================================================= */

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

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


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .main-navigation {
        gap: 18px;
    }

    .hero {
        min-height: auto;
    }

    .hero__layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero__content {
        max-width: 830px;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-visual__panel {
        width: min(100%, 520px);
    }

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

    .process-arrow {
        display: none;
    }

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

    .service-card {
        min-height: auto;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 85px 0;
    }

    .site-header {
        position: absolute;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-3px) rotate(-45deg);
    }

    .main-navigation {
        position: fixed;
        inset: 0;
        z-index: -1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        padding: 90px 30px 40px;
        background: rgba(5, 18, 24, 0.98);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 180ms ease,
            visibility 180ms ease;
    }

    .main-navigation.is-open {
        z-index: 50;
        opacity: 1;
        visibility: visible;
    }

    .main-navigation a {
        font-size: 1.3rem;
    }

    .site-header__cta {
        display: none;
    }

    .hero {
        padding-top: 135px;
    }

    .hero__content h1 {
        font-size: clamp(3.1rem, 13vw, 5.5rem);
    }

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

    .process-card {
        min-height: auto;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .project-card--large {
        grid-row: auto;
    }

    .project-card--large .project-card__visual {
        min-height: 330px;
    }

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

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero {
        padding-bottom: 75px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__trust {
        flex-direction: column;
        gap: 8px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .hero-visual__panel {
        transform: none;
    }

    .hero-visual__panel-content {
        padding: 21px;
    }

    .hero-visual__cards {
        grid-template-columns: 1fr;
    }

    .hero-visual__badge {
        display: none;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
    }

    .process-card,
    .service-card {
        padding: 28px 24px;
    }

    .project-card__visual--editorial {
        gap: 20px;
    }

    .project-card__visual--landing {
        padding-inline: 30px;
    }

    .cta-panel {
        padding: 38px 25px;
    }

    .cta-panel .button {
        width: 100%;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-section {
    padding: 100px 0;
    background: var(--color-surface);
}

.contact-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(520px, 1.2fr);
    gap: clamp(45px, 7vw, 90px);
    align-items: start;
    padding: clamp(38px, 6vw, 72px);
    border: 1px solid rgba(44, 123, 137, 0.22);
    border-radius: var(--radius-large);
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(140, 216, 229, 0.24),
            transparent 32%
        ),
        linear-gradient(145deg, #d9eaed, #edf5f6);
}

.contact-panel__content {
    position: sticky;
    top: 35px;
}

.contact-panel__content h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.65rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.contact-panel__description {
    margin: 24px 0 0;
    color: var(--color-text-soft);
    font-size: 1rem;
}

.contact-details {
    display: grid;
    gap: 23px;
    margin-top: 42px;
    padding-top: 33px;
    border-top: 1px solid rgba(16, 32, 39, 0.13);
}

.contact-details__item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
}

.contact-details__item > span {
    width: 33px;
    height: 33px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(44, 123, 137, 0.26);
    border-radius: 10px;
    color: #2c7b89;
    font-size: 0.68rem;
    font-weight: 900;
}

.contact-details__item strong {
    display: block;
    font-size: 0.9rem;
}

.contact-details__item p {
    margin: 4px 0 0;
    color: var(--color-text-soft);
    font-size: 0.82rem;
}

.contact-form-card {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(16, 32, 39, 0.11);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 25px 65px rgba(3, 19, 25, 0.12);
}

.contact-alert {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 25px;
    padding: 15px 17px;
    border: 1px solid;
    border-radius: 13px;
    font-size: 0.84rem;
}

.contact-alert--success {
    border-color: rgba(34, 132, 86, 0.24);
    background: rgba(34, 132, 86, 0.08);
    color: #195f3c;
}

.contact-alert--error {
    border-color: rgba(171, 45, 67, 0.23);
    background: rgba(171, 45, 67, 0.08);
    color: #8a2840;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.contact-field {
    min-width: 0;
}

.contact-field label {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-field label span,
.contact-consent label span {
    color: #a72d47;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 32, 39, 0.16);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    outline: none;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

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

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(44, 123, 137, 0.62);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(94, 191, 209, 0.12);
}

.contact-field input.is-invalid,
.contact-field select.is-invalid,
.contact-field textarea.is-invalid {
    border-color: rgba(171, 45, 67, 0.58);
}

.contact-field__error {
    display: block;
    margin-top: 7px;
    color: #a72d47;
    font-size: 0.73rem;
    line-height: 1.4;
}

.contact-consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.contact-consent input {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: #2c7b89;
}

.contact-consent label {
    color: var(--color-text-soft);
    font-size: 0.75rem;
    line-height: 1.55;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 3px;
    padding-top: 24px;
    border-top: 1px solid rgba(16, 32, 39, 0.11);
}

.contact-form__footer p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.7rem;
}

.contact-form__submit {
    min-width: 170px;
    border: 0;
    cursor: pointer;
}

.contact-form__submit[disabled] {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.contact-form__honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 980px) {
    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-panel__content {
        position: static;
    }
}

@media (max-width: 650px) {
    .contact-section {
        padding: 75px 0;
    }

    .contact-panel {
        padding: 28px 18px;
        border-radius: 23px;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

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

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__submit {
        width: 100%;
    }
}
