:root {
    --taran-black: #050505;
    --taran-ink: #101010;
    --taran-panel: #171717;
    --taran-panel-2: #202020;
    --taran-red: #d90416;
    --taran-red-soft: #ff263b;
    --taran-red-dark: #8f0711;
    --taran-white: #ffffff;
    --taran-text: #f4f4f4;
    --taran-muted: #b9b9b9;
    --taran-line: rgba(255, 255, 255, 0.13);
    --taran-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    --taran-radius: 8px;
    --scroll-progress: 0;
    --hero-y: 0px;
    --hero-scale: 1.04;
    --hero-copy-y: 0px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--taran-black);
    color: var(--taran-text);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--taran-white);
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

::selection {
    background: var(--taran-red);
    color: var(--taran-white);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 2000;
    padding: 12px 18px;
    background: var(--taran-red);
    color: var(--taran-white);
    border-radius: var(--taran-radius);
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 16px;
}

.taran-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(18px);
    transition: background 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.taran-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--taran-red-soft) 18%, var(--taran-red) 68%, transparent 100%);
    transform: scaleX(var(--scroll-progress));
    transform-origin: left;
}

.taran-header.is-scrolled {
    background: rgba(5, 5, 5, 0.9);
    border-color: rgba(255, 255, 255, 0.14);
}

.taran-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: min-height 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.taran-header.is-scrolled .taran-header__inner {
    min-height: 72px;
}

.taran-logo {
    width: 188px;
    flex: 0 0 auto;
}

.taran-logo img {
    width: 100%;
    height: auto;
}

.taran-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--taran-muted);
    font-size: 0.94rem;
}

.taran-nav a {
    position: relative;
    padding: 8px 0;
}

.taran-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--taran-red-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.taran-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.lang-switch,
.taran-menu-button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--taran-line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--taran-white);
    border-radius: var(--taran-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lang-switch {
    font-weight: 800;
}

.taran-menu-button {
    display: none;
}

.header-cta,
.btn-taran {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--taran-radius);
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
    padding: 0 18px;
    color: var(--taran-white);
    background: var(--taran-red);
}

.header-cta:hover,
.btn-taran:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--taran-line);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -10% 0 -10%;
    height: 34%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(60% 90% at 20% 100%, rgba(217, 4, 22, 0.3), transparent 72%);
    opacity: 0.85;
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media {
    transform: translate3d(0, var(--hero-y), 0) scale(var(--hero-scale));
    transition: transform 90ms linear;
    will-change: transform;
}

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

.hero__shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.3) 72%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 46%, rgba(5, 5, 5, 0.96) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 124px;
    padding-bottom: 70px;
    transform: translate3d(0, var(--hero-copy-y), 0);
    transition: transform 90ms linear;
    will-change: transform;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--taran-red-soft);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--taran-white);
    font-size: 5.4rem;
    line-height: 0.95;
    font-weight: 900;
}

.hero__lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: #e4e4e4;
    font-size: 1.22rem;
    line-height: 1.65;
}

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

.btn-taran {
    border: 1px solid transparent;
    padding: 0 22px;
    color: var(--taran-white);
    position: relative;
    overflow: hidden;
}

.btn-taran::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-taran:hover::before,
.btn-taran:focus-visible::before {
    transform: translateX(120%);
}

.btn-taran > * {
    position: relative;
    z-index: 1;
}

.btn-taran--primary {
    background: var(--taran-red);
    border-color: var(--taran-red);
    box-shadow: 0 16px 38px rgba(217, 4, 22, 0.28);
}

.btn-taran--primary:hover {
    background: var(--taran-red-soft);
    border-color: var(--taran-red-soft);
}

.btn-taran--ghost {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-taran--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 160px));
    gap: 12px;
    margin: 44px 0 0;
}

.hero__metrics div {
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--taran-radius);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.hero__metrics dt {
    color: var(--taran-white);
    font-size: 1.35rem;
    font-weight: 900;
}

.hero__metrics dd {
    margin: 6px 0 0;
    color: var(--taran-muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.signal-strip {
    overflow: hidden;
    background: var(--taran-red);
    color: var(--taran-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-strip__track {
    width: max-content;
    display: flex;
    gap: 28px;
    align-items: center;
    min-height: 54px;
    padding: 0 28px;
    font-weight: 900;
    text-transform: uppercase;
    animation: taranMarquee 24s linear infinite;
}

.signal-strip__track span::after {
    content: "/";
    margin-left: 28px;
    opacity: 0.55;
}

@keyframes taranMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: 104px 0;
    position: relative;
    overflow: clip;
}

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

.scroll-scene::before {
    content: "";
    position: absolute;
    left: -18%;
    right: -18%;
    top: calc((var(--scene-progress, 0) * 100%) - 22%);
    height: 34%;
    pointer-events: none;
    background: radial-gradient(45% 70% at 50% 50%, rgba(217, 4, 22, 0.18), transparent 70%);
    opacity: 0.75;
    transform: translate3d(0, 0, 0);
    z-index: 0;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 54px, 0) scale(0.985);
    filter: blur(16px);
    clip-path: inset(12% 0 0 0);
    transition:
        opacity 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        filter 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        clip-path 1000ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter, clip-path;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
}

.hero-reveal {
    transform: translate3d(0, 38px, 0) scale(0.99);
}

.tilt-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, var(--lift-y, 0), 0);
    transition:
        transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
        background 420ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.tilt-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    background: radial-gradient(420px circle at var(--cursor-x, 50%) var(--cursor-y, 0%), rgba(255, 255, 255, 0.18), rgba(217, 4, 22, 0.12) 28%, transparent 60%);
    opacity: 0;
    transition: opacity 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tilt-card:hover {
    --lift-y: -8px;
    border-color: rgba(255, 255, 255, 0.22);
}

.tilt-card:hover::after {
    opacity: 1;
}

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

.section-heading--compact {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.impact h2,
.quote-copy h2 {
    margin: 0;
    color: var(--taran-white);
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 900;
}

.section-heading p:not(.eyebrow),
.impact p,
.quote-copy p {
    margin: 18px 0 0;
    color: var(--taran-muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.services {
    background:
        linear-gradient(180deg, #050505 0%, #101010 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.market-card,
.process-step,
.faq article,
.impact-panel,
.quote-form {
    border: 1px solid var(--taran-line);
    border-radius: var(--taran-radius);
    background: var(--taran-panel);
}

.service-card {
    min-height: 430px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.service-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: var(--taran-radius);
    background: rgba(217, 4, 22, 0.16);
    color: var(--taran-red-soft);
    font-size: 1.4rem;
}

.service-card h3,
.market-card h3,
.process-step h3,
.faq h3 {
    margin: 24px 0 12px;
    color: var(--taran-white);
    font-size: 1.32rem;
    line-height: 1.25;
    font-weight: 900;
}

.service-card p,
.market-card p,
.process-step p,
.faq p {
    margin: 0;
    color: var(--taran-muted);
    line-height: 1.65;
}

.service-card ul {
    margin: auto 0 0;
    padding: 22px 0 0;
    list-style: none;
}

.service-card li {
    position: relative;
    min-height: 26px;
    padding-left: 22px;
    color: #d8d8d8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card li + li {
    margin-top: 8px;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--taran-red);
    border-radius: 50%;
}

.impact {
    background: #0b0b0b;
}

.impact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 42px;
    align-items: center;
}

.impact-panel {
    padding: 10px;
    background:
        linear-gradient(145deg, rgba(217, 4, 22, 0.18), rgba(255, 255, 255, 0.04)),
        var(--taran-panel);
    box-shadow: var(--taran-shadow);
    transform: translate3d(0, calc((0.5 - var(--scene-progress, 0.5)) * 28px), 0);
    transition: transform 90ms linear;
}

.impact-panel.reveal {
    transform: translate3d(0, calc(54px + ((0.5 - var(--scene-progress, 0.5)) * 28px)), 0) scale(0.985);
}

.impact-panel.reveal.is-visible {
    transform: translate3d(0, calc((0.5 - var(--scene-progress, 0.5)) * 28px), 0) scale(1);
}

.impact-panel__item {
    padding: 24px;
    border-radius: var(--taran-radius);
    background: rgba(0, 0, 0, 0.28);
}

.impact-panel__item + .impact-panel__item {
    margin-top: 10px;
}

.impact-panel strong,
.impact-panel span {
    display: block;
}

.impact-panel strong {
    color: var(--taran-white);
    font-size: 1.1rem;
}

.impact-panel span {
    margin-top: 8px;
    color: var(--taran-muted);
    line-height: 1.55;
}

.markets {
    background:
        linear-gradient(180deg, #111111 0%, #050505 100%);
}

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

.market-card {
    min-height: 270px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(217, 4, 22, 0.15), rgba(255, 255, 255, 0.04));
}

.market-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--taran-radius);
    color: var(--taran-white);
    background: rgba(0, 0, 0, 0.28);
    font-weight: 800;
}

.process {
    background: #0b0b0b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-step {
    min-height: 255px;
    padding: 28px;
    background: var(--taran-panel-2);
    position: relative;
    overflow: hidden;
}

.process-step::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--taran-red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

.process-step.is-visible::after {
    transform: scaleX(1);
}

.process-step span {
    color: var(--taran-red-soft);
    font-size: 2.4rem;
    font-weight: 900;
}

.quote-section {
    background:
        linear-gradient(135deg, #050505 0%, #140305 46%, #050505 100%);
}

.quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 46px;
    align-items: start;
}

.quote-copy {
    position: sticky;
    top: 120px;
}

.quote-contact {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.quote-contact a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 1px solid var(--taran-line);
    border-radius: var(--taran-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--taran-white);
    font-weight: 800;
}

.quote-form {
    padding: 28px;
    box-shadow: var(--taran-shadow);
}

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

.quote-form label,
.quote-form fieldset {
    display: block;
    margin: 0 0 18px;
}

.quote-form label span,
.service-options legend {
    display: block;
    margin-bottom: 8px;
    color: var(--taran-white);
    font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--taran-radius);
    background: rgba(0, 0, 0, 0.32);
    color: var(--taran-white);
    padding: 0 14px;
    outline: none;
}

.quote-form textarea {
    min-height: 142px;
    padding-top: 14px;
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: var(--taran-red-soft);
    box-shadow: 0 0 0 4px rgba(217, 4, 22, 0.18);
}

.quote-form select option {
    color: #101010;
}

.service-options {
    border: 0;
    padding: 0;
}

.service-options legend {
    font-size: 1rem;
}

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

.service-options legend {
    grid-column: 1 / -1;
}

.service-options label {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--taran-radius);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.service-options input {
    width: 18px;
    height: 18px;
    min-height: 18px;
    accent-color: var(--taran-red);
}

.service-options label span {
    margin: 0;
    font-weight: 700;
}

.math-check {
    display: grid !important;
    grid-template-columns: 1fr 130px;
    gap: 12px;
    align-items: end;
}

.math-check > span:first-child {
    grid-column: 1 / -1;
}

.math-check__question {
    min-height: 52px;
    display: flex !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 14px;
    border-radius: var(--taran-radius);
    background: rgba(217, 4, 22, 0.14);
    color: var(--taran-white);
}

.quote-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-status {
    min-height: 24px;
    margin: 0 0 18px;
    color: var(--taran-muted);
    font-weight: 800;
}

.form-status.is-error {
    color: #ff9aa5;
}

.form-status.is-success {
    color: #ffffff;
}

.spam-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.faq {
    background: #050505;
}

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

.faq article {
    min-height: 230px;
    padding: 28px;
}

.taran-footer {
    padding: 70px 0 26px;
    background: #090909;
    border-top: 1px solid var(--taran-line);
}

.taran-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
    gap: 34px;
}

.footer-logo {
    width: 210px;
    margin-bottom: 18px;
}

.taran-footer p {
    max-width: 560px;
    color: var(--taran-muted);
    line-height: 1.7;
}

.taran-footer h2 {
    margin: 0 0 16px;
    color: var(--taran-white);
    font-size: 1.05rem;
    font-weight: 900;
}

.taran-footer a {
    display: block;
    color: var(--taran-muted);
    line-height: 2;
}

.taran-footer a:hover {
    color: var(--taran-red-soft);
}

.taran-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid var(--taran-line);
    color: var(--taran-muted);
}

.floating-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
}

.floating-chat__toggle {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #24d366;
    color: #06120a;
    font-size: 2rem;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.floating-chat__panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: 290px;
    padding: 14px;
    border: 1px solid var(--taran-line);
    border-radius: var(--taran-radius);
    background: rgba(12, 12, 12, 0.96);
    box-shadow: var(--taran-shadow);
}

.floating-chat__panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--taran-white);
}

.floating-chat__panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    border-radius: var(--taran-radius);
    color: var(--taran-text);
}

.floating-chat__panel a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.floating-chat__panel i {
    width: 22px;
    color: var(--taran-red-soft);
}

@media (max-width: 1199px) {
    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-grid,
    .impact__grid {
        grid-template-columns: 1fr;
    }

    .quote-copy {
        position: static;
    }
}

@media (max-width: 991px) {
    .taran-header__inner {
        min-height: 76px;
    }

    .taran-menu-button {
        display: inline-flex;
    }

    .taran-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 20px;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid var(--taran-line);
    }

    .taran-nav.is-open {
        display: flex;
    }

    .taran-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 86svh;
    }

    .hero h1 {
        font-size: 3.7rem;
    }

    .hero__lead {
        font-size: 1.05rem;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading h2,
    .impact h2,
    .quote-copy h2 {
        font-size: 2.25rem;
    }

    .market-grid,
    .faq-grid,
    .taran-footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .taran-logo {
        width: 154px;
    }

    .hero__content {
        padding-top: 92px;
        padding-bottom: 26px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero__lead {
        margin-top: 18px;
        line-height: 1.5;
    }

    .hero__actions {
        margin-top: 22px;
    }

    .hero__metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        max-width: none;
        margin-top: 24px;
    }

    .hero__metrics div {
        min-height: 84px;
        padding: 10px;
    }

    .hero__metrics dt {
        font-size: 1.05rem;
    }

    .hero__metrics dd {
        font-size: 0.76rem;
    }

    .hero__actions,
    .btn-taran {
        width: 100%;
    }

    .service-grid,
    .process-grid,
    .form-grid,
    .service-options {
        grid-template-columns: 1fr;
    }

    .service-card,
    .market-card,
    .process-step,
    .faq article,
    .quote-form {
        min-height: auto;
        padding: 22px;
    }

    .math-check {
        grid-template-columns: 1fr;
    }

    .taran-footer__bottom {
        flex-direction: column;
    }

    .floating-chat {
        right: 16px;
        bottom: 16px;
    }

    .floating-chat__panel {
        width: min(290px, calc(100vw - 32px));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal.is-visible,
    .hero-reveal,
    .hero__media,
    .hero__content,
    .impact-panel,
    .impact-panel.reveal,
    .impact-panel.reveal.is-visible,
    .tilt-card {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
    }

    .scroll-scene::before,
    .btn-taran::before,
    .tilt-card::after {
        display: none !important;
    }
}
