:root {
    --ink: #080913;
    --ink-2: #0d1020;
    --navy: #111441;
    --navy-2: #171b59;
    --red: #ef2435;
    --red-dark: #c81122;
    --orange: #f28b22;
    --yellow: #ffbf23;
    --white: #ffffff;
    --paper: #f7f8fb;
    --soft: #f0f2f7;
    --line: #e3e6ed;
    --text: #171927;
    --muted: #676c7d;
    --green: #20bf6b;
    --shadow-sm: 0 12px 30px rgba(7, 9, 20, .08);
    --shadow-md: 0 24px 70px rgba(7, 9, 20, .14);
    --shadow-red: 0 18px 45px rgba(239, 36, 53, .28);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1220px;
    --header-height: 82px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--red); }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}
.section { position: relative; padding: 112px 0; }
.section--light { background: var(--white); }
.section--soft { background: var(--soft); }
.section--dark { color: var(--white); background: var(--ink); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
    color: inherit;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}
h1 { font-size: clamp(3.25rem, 6.1vw, 6.6rem); }
h2 { font-size: clamp(2.25rem, 4.35vw, 4.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.55rem); }
p { color: var(--muted); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.65; }

.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--white);
    background: var(--red);
    border-radius: 0 0 10px 10px;
    transition: top .2s ease;
}
.skip-link:focus { top: 0; }
.icon { width: 1.2em; height: 1.2em; fill: currentColor; flex: 0 0 auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--red);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 30px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--red), var(--yellow));
    border-radius: 999px;
}
.eyebrow--light { color: #ffd5d9; }

.btn {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .025em;
    line-height: 1.15;
    text-transform: uppercase;
    transition: transform .28s var(--ease), box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}
.btn::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.25) 48%, transparent 75%);
    transform: translateX(-140%);
    transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(140%); }
.btn:hover { transform: translateY(-3px); }
.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--red), #ff4b2b); box-shadow: var(--shadow-red); }
.btn--primary:hover { box-shadow: 0 24px 55px rgba(239, 36, 53, .38); }
.btn--white { color: var(--red-dark); background: var(--white); box-shadow: 0 16px 35px rgba(0,0,0,.12); }
.btn--outline-light { color: var(--white); background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.28); backdrop-filter: blur(12px); }
.btn--outline-light:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn--ghost-light { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.btn--outline-dark { color: var(--ink); background: transparent; border-color: rgba(8,9,19,.18); }
.btn--outline-dark:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.btn--small { min-height: 45px; padding: 11px 18px; font-size: .75rem; }
.btn--large { min-height: 58px; padding: 17px 28px; }
.btn--full { width: 100%; }
.btn--pulse { animation: buttonPulse 2.8s ease-in-out infinite; }
@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(239, 36, 53, .25), 0 0 0 0 rgba(239,36,53,.28); }
    55% { box-shadow: 0 18px 45px rgba(239, 36, 53, .36), 0 0 0 12px rgba(239,36,53,0); }
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button-row--center { justify-content: center; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    color: var(--red);
    font-weight: 800;
}
.text-link .icon, .service-card a .icon, .service-detail-card a .icon, .history-card a .icon { transition: transform .25s ease; }
.text-link:hover .icon, .service-card a:hover .icon, .service-detail-card a:hover .icon, .history-card a:hover .icon { transform: translateX(5px); }

/* Header */
.topbar { position: relative; z-index: 1003; color: rgba(255,255,255,.78); background: #050610; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar__inner { min-height: 38px; display: flex; align-items: center; gap: 26px; font-size: .75rem; font-weight: 620; }
.topbar__inner span, .topbar__inner a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__inner a { margin-left: auto; color: var(--white); }
.topbar__inner .icon { color: var(--red); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--white);
    background: rgba(8,9,19,.87);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px) saturate(150%);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled { background: rgba(5,6,14,.96); box-shadow: 0 18px 45px rgba(0,0,0,.24); }
.site-header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 204px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; padding: 28px 0; color: rgba(255,255,255,.7); font-size: .84rem; font-weight: 750; transition: color .25s ease; }
.desktop-nav a::after { position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; content: ""; background: linear-gradient(90deg,var(--red),var(--yellow)); transition: right .3s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { width: 43px; height: 43px; display: none; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.menu-toggle { width: 44px; height: 44px; display: none; align-items: center; justify-content: center; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 12px; }
.menu-icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .menu-icon-close { display: inline-flex; }
.mobile-panel { display: none; }

/* Hero Home */
.hero-home {
    position: relative;
    min-height: calc(100svh - 38px);
    padding: 92px 0 36px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 22%, rgba(239,36,53,.2), transparent 31%),
        radial-gradient(circle at 28% 95%, rgba(43,61,184,.22), transparent 35%),
        linear-gradient(130deg, #070813 0%, #0b0d21 55%, #10133c 100%);
}
.hero-grid-pattern { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-orb--one { width: 440px; height: 440px; right: -180px; top: 4%; background: rgba(239,36,53,.1); box-shadow: 0 0 160px rgba(239,36,53,.2); }
.hero-orb--two { width: 360px; height: 360px; left: -210px; bottom: 0; background: rgba(52,66,210,.12); box-shadow: 0 0 150px rgba(52,66,210,.18); }
.hero-home__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.88fr) minmax(470px,1.12fr); align-items: center; gap: clamp(40px,6vw,90px); }
.hero-home__content { padding: 30px 0 75px; }
.hero-trust { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; padding: 9px 13px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .75rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.hero-trust span { width: 8px; height: 8px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 5px rgba(239,36,53,.14); }
.hero-home h1 { max-width: 760px; margin-bottom: 25px; font-size: clamp(3.65rem,6.2vw,6.9rem); }
.hero-home h1 strong { color: transparent; background: linear-gradient(105deg,#fff 8%,#ff5865 55%,#ffb72e 100%); -webkit-background-clip: text; background-clip: text; }
.hero-home__content > p { max-width: 690px; margin-bottom: 31px; color: rgba(255,255,255,.69); font-size: clamp(1.03rem,1.4vw,1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; align-items: center; gap: 15px; margin-top: 35px; }
.hero-proof__avatars { display: flex; }
.hero-proof__avatars span { width: 38px; height: 38px; display: grid; place-items: center; margin-left: -7px; color: var(--white); background: linear-gradient(135deg,#2b315c,#11142c); border: 2px solid #0b0d20; border-radius: 50%; font-size: .67rem; font-weight: 850; }
.hero-proof__avatars span:first-child { margin-left: 0; background: linear-gradient(135deg,var(--red),#ff6d2d); }
.hero-proof strong { display: block; font-size: .86rem; }
.hero-proof small { display: block; max-width: 360px; color: rgba(255,255,255,.5); font-size: .73rem; }
.hero-visual { position: relative; min-height: 650px; isolation: isolate; }
.hero-visual__backdrop { position: absolute; inset: 5% 4% 7% 8%; background: linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.015)); border: 1px solid rgba(255,255,255,.12); border-radius: 52px 120px 52px 120px; transform: rotate(-3deg); box-shadow: 0 45px 90px rgba(0,0,0,.3); backdrop-filter: blur(5px); }
.hero-visual__main { position: absolute; inset: 13% 6% 12% 5%; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 34px 84px 34px 84px; box-shadow: 0 40px 100px rgba(0,0,0,.45); }
.hero-visual__main::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg,transparent 40%,rgba(4,5,12,.88) 100%), linear-gradient(100deg,rgba(239,36,53,.08),transparent 45%); }
.hero-visual__main img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-visual__main figcaption { position: absolute; z-index: 3; left: 27px; bottom: 24px; display: flex; align-items: center; gap: 10px; color: var(--white); font-size: .83rem; font-weight: 800; }
.signal-dot { width: 9px; height: 9px; background: #4df28c; border-radius: 50%; box-shadow: 0 0 0 0 rgba(77,242,140,.5); animation: signal 1.8s infinite; }
@keyframes signal { 70% { box-shadow: 0 0 0 12px rgba(77,242,140,0); } }
.hero-visual__card { position: absolute; z-index: 3; width: 180px; margin: 0; overflow: hidden; background: #111427; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; box-shadow: 0 26px 70px rgba(0,0,0,.42); }
.hero-visual__card img { width: 100%; height: 205px; object-fit: cover; }
.hero-visual__card figcaption { display: flex; align-items: center; gap: 7px; padding: 12px 13px; color: rgba(255,255,255,.87); font-size: .69rem; font-weight: 780; }
.hero-visual__card figcaption .icon { color: var(--red); }
.hero-visual__card--top { top: 0; right: -4%; transform: rotate(4deg); animation: floatCard 5.3s ease-in-out infinite; }
.hero-visual__card--bottom { left: -4%; bottom: 2%; transform: rotate(-5deg); animation: floatCard 6.2s ease-in-out .5s infinite reverse; }
@keyframes floatCard { 50% { translate: 0 -12px; } }
.hero-visual__badge { position: absolute; z-index: 4; right: 2%; bottom: 8%; width: 138px; height: 138px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--white); background: linear-gradient(145deg,var(--red),#9f0e1b); border: 8px solid #11142d; border-radius: 50%; box-shadow: 0 22px 55px rgba(239,36,53,.32); transform: rotate(5deg); }
.hero-visual__badge-number { font-size: 2.75rem; font-weight: 900; line-height: 1; }
.hero-visual__badge span:last-child { font-size: .64rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.diagnostic-line { position: absolute; z-index: 5; left: 12%; right: 10%; top: 16%; height: 2px; opacity: .75; background: linear-gradient(90deg,transparent,var(--red),var(--yellow),transparent); box-shadow: 0 0 22px var(--red); animation: scanLine 4.8s ease-in-out infinite; pointer-events: none; }
@keyframes scanLine { 0%,100% { top: 17%; opacity: .1; } 50% { top: 75%; opacity: .82; } }
.hero-benefits { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 22px; backdrop-filter: blur(18px); }
.hero-benefits > div { display: flex; align-items: center; gap: 13px; min-height: 92px; padding: 17px 22px; border-right: 1px solid rgba(255,255,255,.08); }
.hero-benefits > div:last-child { border-right: 0; }
.hero-benefits .icon { width: 27px; height: 27px; color: var(--red); }
.hero-benefits strong, .hero-benefits small { display: block; }
.hero-benefits strong { font-size: .79rem; }
.hero-benefits small { color: rgba(255,255,255,.47); font-size: .67rem; }

/* Section headings */
.section-heading { max-width: 780px; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading > p, .section-heading > div + p { max-width: 520px; }
.section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.section-heading--row > div { max-width: 760px; }
.section-heading--row h2 { margin-bottom: 0; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p { margin-inline: auto; }
.section-heading--light { color: var(--white); }
.section-heading--light p { color: rgba(255,255,255,.57); }

/* Split / About */
.split-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.95fr); align-items: center; gap: clamp(55px,8vw,120px); }
.split-layout--wide { grid-template-columns: minmax(420px,.92fr) minmax(0,1.08fr); }
.section-copy h2 { margin-bottom: 25px; }
.section-copy > p { margin-bottom: 18px; }
.image-composition { position: relative; min-height: 650px; }
.image-composition__large { position: absolute; inset: 0 13% 6% 0; margin: 0; overflow: hidden; border-radius: 28px 100px 28px 28px; box-shadow: var(--shadow-md); }
.image-composition__large img { width: 100%; height: 100%; object-fit: cover; }
.image-composition__small { position: absolute; right: 0; bottom: 0; width: 42%; margin: 0; overflow: hidden; background: var(--white); border: 8px solid var(--white); border-radius: 20px; box-shadow: var(--shadow-md); }
.image-composition__small img { width: 100%; aspect-ratio: 1.05; object-fit: cover; }
.image-composition__stamp { position: absolute; left: -24px; bottom: 55px; width: 126px; height: 126px; display: grid; place-content: center; color: var(--white); text-align: center; background: linear-gradient(145deg,var(--red),#9e0d1b); border: 7px solid var(--white); border-radius: 50%; box-shadow: var(--shadow-red); }
.image-composition__stamp strong, .image-composition__stamp span { display: block; }
.image-composition__stamp strong { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.image-composition__stamp span { font-size: 2rem; font-weight: 900; line-height: 1; }
.feature-list--stacked { display: grid; gap: 7px; margin-top: 30px; }
.feature-list article { display: grid; grid-template-columns: auto 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.feature-list article:last-child { border-bottom: 0; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--red); background: rgba(239,36,53,.08); border-radius: 14px; }
.feature-list h3 { margin-bottom: 6px; font-size: 1.04rem; }
.feature-list p { margin-bottom: 0; font-size: .86rem; }

/* Services preview */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { position: relative; min-height: 340px; padding: 34px; overflow: hidden; background: var(--white); border: 1px solid rgba(8,9,19,.06); border-radius: 24px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s ease, color .35s ease, background .35s ease; isolation: isolate; }
.service-card::before { position: absolute; inset: auto -30% -60% 20%; height: 250px; content: ""; background: radial-gradient(circle,rgba(239,36,53,.18),transparent 62%); opacity: 0; transition: opacity .35s ease; z-index: -1; }
.service-card:hover { color: var(--white); background: var(--ink); transform: translateY(-10px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 45px; color: var(--white); background: linear-gradient(145deg,var(--red),#ff5a31); border-radius: 18px; box-shadow: 0 14px 30px rgba(239,36,53,.24); }
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card__number { position: absolute; top: 29px; right: 30px; color: rgba(8,9,19,.08); font-size: 3rem; font-weight: 900; line-height: 1; transition: color .35s ease; }
.service-card:hover .service-card__number { color: rgba(255,255,255,.08); }
.service-card h3 { margin-bottom: 14px; }
.service-card p { margin-bottom: 25px; font-size: .9rem; transition: color .35s ease; }
.service-card:hover p { color: rgba(255,255,255,.6); }
.service-card a { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: .78rem; font-weight: 850; text-transform: uppercase; }

/* History */
.history-section { position: relative; padding: 125px 0; overflow: hidden; color: var(--white); background: linear-gradient(145deg,#080913,#10133f 60%,#080913); }
.history-noise { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(rgba(255,255,255,.2) .65px, transparent .65px); background-size: 7px 7px; mask-image: linear-gradient(to bottom,black,transparent 90%); }
.history-section::before { position: absolute; width: 600px; height: 600px; right: -250px; top: 10%; content: ""; background: rgba(239,36,53,.12); border-radius: 50%; filter: blur(80px); }
.history-timeline { position: relative; display: grid; grid-template-columns: 1fr 80px 1fr; align-items: stretch; gap: 15px; margin-top: 75px; }
.history-card { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 35px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 27px; backdrop-filter: blur(12px); }
.history-card--reverse { grid-template-columns: 170px 1fr; }
.history-card__year { width: 104px; height: 104px; display: grid; place-items: center; color: var(--white); background: linear-gradient(145deg,var(--red),#8a0916); border-radius: 50%; font-size: 1.55rem; font-weight: 900; box-shadow: var(--shadow-red); }
.history-card__image { overflow: hidden; border-radius: 18px; }
.history-card__image img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.history-card__content > span { color: #ff9aa2; font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.history-card h3 { margin: 14px 0 15px; }
.history-card p { color: rgba(255,255,255,.55); font-size: .88rem; }
.history-meta { margin: 20px 0; color: rgba(255,255,255,.65); font-size: .77rem; }
.history-meta strong { color: var(--white); margin-right: 7px; text-transform: uppercase; }
.history-card a { display: inline-flex; align-items: center; gap: 7px; color: #ff6975; font-size: .75rem; font-weight: 850; text-transform: uppercase; }
.history-line { position: relative; display: flex; justify-content: center; }
.history-line::before { width: 2px; height: 100%; content: ""; background: linear-gradient(to bottom,transparent,var(--red),transparent); }
.history-line span { position: absolute; top: 50%; width: 18px; height: 18px; background: var(--red); border: 5px solid #171a48; border-radius: 50%; box-shadow: 0 0 0 5px rgba(239,36,53,.15); }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(60px,8vw,120px); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; color: #343746; font-size: .93rem; font-weight: 650; }
.check-list .icon { width: 19px; height: 19px; padding: 3px; color: var(--white); background: var(--red); border-radius: 50%; }
.check-list--light li { color: rgba(255,255,255,.72); }
.why-panel { position: relative; min-height: 610px; }
.why-panel__glow { position: absolute; inset: 12% 4% 7% 12%; background: linear-gradient(145deg,var(--red),var(--navy)); border-radius: 34px; filter: blur(0); transform: rotate(4deg); }
.why-panel > img { position: absolute; inset: 0 8% 12% 0; width: 92%; height: 88%; object-fit: cover; border-radius: 30px 90px 30px 30px; box-shadow: var(--shadow-md); }
.why-panel__stats { position: absolute; left: 11%; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; color: var(--white); background: rgba(8,9,19,.96); border: 1px solid rgba(255,255,255,.1); border-radius: 19px; box-shadow: 0 25px 55px rgba(0,0,0,.25); }
.why-panel__stats div { padding: 20px 16px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.why-panel__stats div:last-child { border-right: 0; }
.why-panel__stats strong, .why-panel__stats span { display: block; }
.why-panel__stats strong { color: #ff4d5c; font-size: 1.65rem; line-height: 1; }
.why-panel__stats span { margin-top: 7px; color: rgba(255,255,255,.55); font-size: .64rem; }

/* Quick budget */
.quick-budget { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(105deg,var(--red-dark),var(--red) 55%,#ff6330); }
.quick-budget::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(115deg,transparent 10%,rgba(255,255,255,.08) 10%,rgba(255,255,255,.08) 11%,transparent 11%); background-size: 55px 100%; }
.quick-budget__inner { position: relative; min-height: 190px; display: flex; align-items: center; justify-content: space-between; gap: 35px; padding-block: 36px; }
.quick-budget span { font-size: .73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.quick-budget h2 { margin: 7px 0 0; font-size: clamp(2rem,3.2vw,3.6rem); }
.quick-budget--dark { background: linear-gradient(125deg,#090a17,#171b50); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; counter-reset: process; }
.process-card { position: relative; min-height: 310px; padding: 34px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.process-card::after { position: absolute; right: -35px; bottom: -35px; width: 140px; height: 140px; content: ""; background: radial-gradient(circle,rgba(239,36,53,.13),transparent 67%); }
.process-card__step { display: inline-flex; padding: 7px 10px; color: var(--red); background: rgba(239,36,53,.08); border-radius: 999px; font-size: .65rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.process-card__number { margin: 26px 0 38px; color: var(--ink); font-size: 3.9rem; font-weight: 900; letter-spacing: -.08em; line-height: .7; opacity: .12; }
.process-card h3 { margin-bottom: 12px; }
.process-card p { margin-bottom: 0; font-size: .9rem; }

/* Gallery */
.gallery-section { padding: 110px 0; overflow: hidden; color: var(--white); background: var(--ink); }
.marquee { position: relative; width: 100%; overflow: hidden; }
.marquee::before, .marquee::after { position: absolute; z-index: 3; top: 0; bottom: 0; width: 9vw; content: ""; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg,var(--ink),transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg,var(--ink),transparent); }
.marquee__track { display: flex; width: max-content; gap: 14px; padding: 10px 0; animation: marqueeMove 52s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { width: clamp(250px,27vw,430px); flex: 0 0 auto; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; }
.marquee__item img { width: 100%; aspect-ratio: 1.32; object-fit: cover; filter: saturate(.92); transition: transform .5s var(--ease), filter .5s ease; }
.marquee__item:hover img { transform: scale(1.05); filter: saturate(1.1); }
@keyframes marqueeMove { to { transform: translateX(calc(-50% - 7px)); } }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,8vw,110px); align-items: start; }
.faq-layout--image { grid-template-columns: .82fr 1.18fr; align-items: center; }
.faq-intro { position: sticky; top: 130px; }
.faq-item { border-bottom: 1px solid #d8dbe3; }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; color: var(--ink); text-align: left; background: transparent; border: 0; font-weight: 780; }
.faq-item button .icon { width: 18px; height: 18px; color: var(--red); transition: transform .3s ease; }
.faq-item.is-open button .icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; font-size: .9rem; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 22px; }

/* Inner hero */
.inner-hero { position: relative; min-height: 530px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.inner-hero__bg { position: absolute; inset: 0; background-image: linear-gradient(90deg,rgba(5,6,14,.98) 0%,rgba(5,6,14,.84) 48%,rgba(5,6,14,.25) 100%), var(--hero-image); background-size: cover; background-position: center 37%; transform: scale(1.03); }
.inner-hero__bg::after { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 78% 48%,rgba(239,36,53,.23),transparent 30%), linear-gradient(to top,rgba(5,6,14,.75),transparent 45%); }
.inner-hero__content { position: relative; z-index: 2; max-width: 850px; padding: 105px 0 92px; }
.inner-hero h1 { margin-bottom: 20px; font-size: clamp(3.1rem,5.5vw,5.7rem); }
.inner-hero p { max-width: 690px; color: rgba(255,255,255,.65); font-size: 1.07rem; }
.inner-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.breadcrumb { display: flex; gap: 8px; margin-top: 36px; color: rgba(255,255,255,.45); font-size: .75rem; }
.breadcrumb strong { color: rgba(255,255,255,.8); }

/* About page */
.image-composition--founder .image-composition__large { inset: 0 9% 3% 0; border-radius: 34px 110px 34px 34px; }
.image-composition__small--landscape { width: 48%; right: -3%; bottom: 3%; }
.image-composition__quote { position: absolute; left: -28px; top: 55px; max-width: 230px; padding: 18px 20px; color: var(--white); background: var(--red); border-radius: 14px; box-shadow: var(--shadow-red); font-size: .9rem; font-weight: 800; transform: rotate(-4deg); }
.metric-pair { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 30px; }
.metric-pair article { padding: 18px; background: var(--soft); border: 1px solid var(--line); border-radius: 16px; }
.metric-pair strong { color: var(--red); font-size: 2.4rem; font-weight: 900; letter-spacing: -.06em; }
.metric-pair span { color: var(--red); font-size: 1.1rem; font-weight: 850; }
.metric-pair p { margin: 2px 0 0; font-size: .76rem; }
.founder-signature { margin-top: 25px; }
.founder-signature span { display: block; font-family: Georgia, serif; color: var(--navy); font-size: 2.1rem; font-style: italic; }
.founder-signature small { color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.vision-section { position: relative; padding: 120px 0; overflow: hidden; color: var(--white); background: linear-gradient(135deg,#080913,#15194b); }
.vision-section__glow { position: absolute; width: 540px; height: 540px; right: -100px; top: -140px; background: rgba(239,36,53,.13); border-radius: 50%; filter: blur(70px); }
.vision-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 80px; }
.vision-copy p { color: rgba(255,255,255,.58); }
.vision-media { position: relative; min-height: 590px; }
.vision-media > img { width: 100%; height: 590px; object-fit: cover; border-radius: 30px 100px 30px 30px; box-shadow: 0 35px 90px rgba(0,0,0,.42); }
.vision-media__label { position: absolute; left: -35px; bottom: 35px; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; padding: 18px 22px; background: rgba(8,9,19,.92); border: 1px solid rgba(255,255,255,.12); border-radius: 17px; backdrop-filter: blur(12px); }
.vision-media__label > span { grid-row: 1/3; width: 45px; height: 45px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; }
.vision-media__label strong { font-size: 1.28rem; line-height: 1.1; }
.vision-media__label small { color: rgba(255,255,255,.52); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 21px; box-shadow: var(--shadow-sm); transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease; }
.value-card:hover { transform: translateY(-7px); border-color: rgba(239,36,53,.25); box-shadow: var(--shadow-md); }
.value-card > span { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 27px; color: var(--white); background: linear-gradient(145deg,var(--red),#ff6330); border-radius: 16px; box-shadow: 0 13px 28px rgba(239,36,53,.22); }
.value-card > span .icon { width: 25px; height: 25px; }
.value-card h3 { margin-bottom: 12px; font-size: 1.12rem; }
.value-card p { margin: 0; font-size: .85rem; }
.legacy-grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 90px; }
.legacy-images { position: relative; min-height: 610px; }
.legacy-images img { position: absolute; object-fit: cover; box-shadow: var(--shadow-md); }
.legacy-images img:first-child { inset: 0 22% 15% 0; width: 78%; height: 85%; border-radius: 32px 100px 32px 32px; }
.legacy-images img:last-child { right: 0; bottom: 0; width: 43%; height: 50%; border: 8px solid var(--white); border-radius: 22px; }
.legacy-list { display: grid; gap: 9px; margin: 30px 0; }
.legacy-list div { display: grid; grid-template-columns: 90px 1fr; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legacy-list strong { color: var(--red); font-size: .87rem; text-transform: uppercase; }
.legacy-list span { color: var(--muted); font-size: .88rem; }

/* Services page */
.service-intro__grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(55px,8vw,110px); }
.service-intro__image { position: relative; }
.service-intro__image > img { width: 100%; height: 660px; object-fit: cover; border-radius: 30px 100px 30px 30px; box-shadow: var(--shadow-md); }
.service-intro__badge { position: absolute; left: -32px; right: 35px; bottom: 32px; display: grid; grid-template-columns: auto 1fr; column-gap: 11px; padding: 17px 20px; color: var(--white); background: rgba(8,9,19,.92); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; backdrop-filter: blur(14px); }
.service-intro__badge > .icon { grid-row: 1/3; width: 38px; height: 38px; padding: 9px; background: var(--red); border-radius: 12px; }
.service-intro__badge strong { font-size: .86rem; }
.service-intro__badge span { color: rgba(255,255,255,.52); font-size: .69rem; }
.service-benefits-inline { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 30px; }
.service-benefits-inline > div { display: flex; align-items: center; gap: 9px; padding: 15px; background: var(--soft); border-radius: 13px; }
.service-benefits-inline > div > .icon { width: 19px; height: 19px; padding: 3px; color: var(--white); background: var(--red); border-radius: 50%; }
.service-benefits-inline strong, .service-benefits-inline small { display: block; }
.service-benefits-inline strong { font-size: .72rem; }
.service-benefits-inline small { color: var(--muted); font-size: .58rem; }
.why-service__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.services-detail { background: radial-gradient(circle at 90% 10%,rgba(239,36,53,.11),transparent 28%),var(--ink); }
.services-detail__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.service-detail-card { display: grid; grid-template-columns: 43% 57%; min-height: 470px; overflow: hidden; background: #111425; border: 1px solid rgba(255,255,255,.09); border-radius: 24px; transition: transform .35s var(--ease), border-color .35s ease; scroll-margin-top: 120px; }
.service-detail-card:hover { transform: translateY(-7px); border-color: rgba(239,36,53,.42); }
.service-detail-card__image { overflow: hidden; }
.service-detail-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-detail-card:hover .service-detail-card__image img { transform: scale(1.045); }
.service-detail-card__body { padding: 29px; }
.service-detail-card__body > span { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 25px; color: var(--white); background: linear-gradient(145deg,var(--red),#ff6832); border-radius: 14px; }
.service-detail-card small { color: #ff8e98; font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-detail-card h3 { margin: 10px 0 15px; font-size: 1.35rem; }
.service-detail-card p { color: rgba(255,255,255,.52); font-size: .83rem; }
.service-detail-card ul { display: grid; gap: 5px; padding-left: 18px; color: rgba(255,255,255,.64); font-size: .75rem; }
.service-detail-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: #ff6b77; font-size: .71rem; font-weight: 850; text-transform: uppercase; }
.work-gallery__grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 13px; }
.work-gallery figure { position: relative; min-height: 380px; margin: 0; overflow: hidden; border-radius: 22px; }
.work-gallery figure:nth-child(2) { margin-top: 45px; }
.work-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.work-gallery figure:hover img { transform: scale(1.05); }
.work-gallery figcaption { position: absolute; left: 15px; bottom: 15px; padding: 9px 12px; color: var(--white); background: rgba(8,9,19,.75); border-radius: 9px; font-size: .69rem; font-weight: 800; backdrop-filter: blur(9px); }

/* Contact */
.contact-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 45px; }
.contact-card { min-height: 220px; display: flex; flex-direction: column; align-items: flex-start; padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s ease; }
.contact-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.contact-card > span { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 30px; color: var(--white); background: var(--red); border-radius: 15px; }
.contact-card small { color: var(--red); font-size: .63rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { margin-top: 7px; color: var(--ink); font-size: .98rem; line-height: 1.35; }
.contact-card em { margin-top: auto; color: var(--muted); font-size: .72rem; font-style: normal; }
.contact-card--whatsapp { color: var(--white); background: linear-gradient(145deg,#159c56,#24c976); border-color: transparent; }
.contact-card--whatsapp > span { background: rgba(255,255,255,.18); }
.contact-card--whatsapp small, .contact-card--whatsapp strong, .contact-card--whatsapp em { color: var(--white); }
.contact-main__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 30px; align-items: start; }
.contact-form-panel, .contact-map-panel { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.contact-form-panel h2, .contact-map-panel h2 { font-size: clamp(2rem,3.5vw,3.2rem); }
.contact-form { display: grid; gap: 17px; margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { color: #373a49; font-size: .72rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: var(--text); background: #f7f8fb; border: 1px solid #dfe2ea; border-radius: 12px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input, .contact-form select { min-height: 50px; padding: 0 14px; }
.contact-form textarea { resize: vertical; padding: 14px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { background: var(--white); border-color: var(--red); box-shadow: 0 0 0 4px rgba(239,36,53,.09); }
.form-note { color: var(--muted); font-size: .68rem; }
.map-frame { height: 430px; margin: 25px 0 17px; overflow: hidden; border-radius: 18px; background: #e9ebf1; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.faq-person { position: relative; min-height: 650px; }
.faq-person > img { width: 100%; height: 650px; object-fit: cover; border-radius: 30px 100px 30px 30px; box-shadow: var(--shadow-md); }
.faq-person__caption { position: absolute; left: 25px; right: 25px; bottom: 24px; display: flex; align-items: center; gap: 12px; padding: 16px; color: var(--white); background: rgba(8,9,19,.86); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; backdrop-filter: blur(14px); }
.faq-person__caption > span { width: 41px; height: 41px; display: grid; place-items: center; background: #20bf6b; border-radius: 50%; }
.faq-person__caption strong, .faq-person__caption small { display: block; }
.faq-person__caption small { color: rgba(255,255,255,.55); }

/* Footer */
.final-cta { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(140deg,#131746,#080913 70%); }
.final-cta__glow { position: absolute; width: 480px; height: 480px; right: -90px; top: -250px; background: rgba(239,36,53,.25); border-radius: 50%; filter: blur(70px); }
.final-cta__inner { position: relative; min-height: 330px; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-block: 60px; }
.final-cta__inner > div:first-child { max-width: 730px; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,.58); }
.final-cta__actions { display: flex; flex-direction: column; min-width: 270px; gap: 10px; }
.site-footer { padding: 80px 0 110px; color: rgba(255,255,255,.6); background: #050610; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .8fr 1.15fr; gap: 60px; }
.footer-grid h3 { margin-bottom: 20px; color: var(--white); font-size: .84rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid span { font-size: .77rem; }
.footer-grid a:hover { color: var(--white); }
.footer-brand img { width: 250px; max-height: 70px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 380px; margin: 21px 0; color: rgba(255,255,255,.46); font-size: .82rem; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: .67rem; }
.footer-badge .icon { color: var(--red); }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact .icon { margin-top: 3px; color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.34); font-size: .68rem; }
.whatsapp-float { position: fixed; z-index: 980; right: 23px; bottom: 23px; min-height: 52px; display: flex; align-items: center; gap: 9px; padding: 0 18px; color: var(--white); background: #1fbd67; border-radius: 999px; box-shadow: 0 18px 45px rgba(17,150,80,.35); font-size: .78rem; font-weight: 850; transition: transform .25s var(--ease); }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }
.mobile-conversion-bar { display: none; }

/* Error */
.error-section { min-height: 72vh; display: grid; place-items: center; padding: 100px 0; text-align: center; background: var(--white); }
.error-section__inner { max-width: 730px; }
.error-code { display: block; color: rgba(239,36,53,.09); font-size: clamp(7rem,18vw,14rem); font-weight: 950; line-height: .7; }
.error-section h1 { margin: 20px 0; font-size: clamp(2.5rem,5vw,5rem); }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--delay { transition-delay: .12s; }
.js .reveal--delay-2 { transition-delay: .22s; }
.js .reveal--delay-3 { transition-delay: .32s; }

/* Responsive */
@media (max-width: 1180px) {
    :root { --container: 1060px; }
    .desktop-nav { gap: 21px; }
    .header-actions .btn span { display: none; }
    .header-actions .btn { width: 45px; padding-inline: 0; border-radius: 50%; }
    .hero-home__grid { grid-template-columns: .95fr 1.05fr; gap: 35px; }
    .hero-visual { min-height: 590px; }
    .hero-visual__card { width: 155px; }
    .hero-visual__card img { height: 175px; }
    .history-timeline { grid-template-columns: 1fr; }
    .history-line { display: none; }
    .history-card { min-height: 350px; }
    .why-service__grid { grid-template-columns: repeat(2,1fr); }
    .services-detail__grid { grid-template-columns: 1fr; }
    .service-detail-card { min-height: 430px; }
}

@media (max-width: 960px) {
    :root { --header-height: 72px; }
    .section { padding: 88px 0; }
    .topbar__address { display: none !important; }
    .desktop-nav, .header-actions > .btn { display: none; }
    .header-phone, .menu-toggle { display: inline-flex; }
    .brand { width: 180px; }
    .mobile-panel { position: fixed; z-index: 999; inset: calc(38px + var(--header-height)) 0 auto; display: block; padding: 25px 20px 30px; background: rgba(5,6,14,.98); border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .35s ease; }
    .mobile-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .mobile-panel nav { display: grid; }
    .mobile-panel nav a { padding: 15px 5px; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 750; }
    .mobile-panel nav a.is-active { color: var(--white); }
    .mobile-panel__contact { display: grid; gap: 9px; padding-top: 20px; color: rgba(255,255,255,.55); font-size: .8rem; }
    .mobile-panel__contact a, .mobile-panel__contact span { display: flex; align-items: center; gap: 8px; }
    .mobile-panel__contact .icon { color: var(--red); }
    .hero-home { min-height: auto; padding-top: 55px; }
    .hero-home__grid { grid-template-columns: 1fr; }
    .hero-home__content { padding: 18px 0 20px; text-align: center; }
    .hero-trust { margin-inline: auto; }
    .hero-home h1, .hero-home__content > p { margin-inline: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-proof { text-align: left; }
    .hero-visual { min-height: 600px; max-width: 720px; width: 100%; margin-inline: auto; }
    .hero-benefits { grid-template-columns: repeat(2,1fr); margin-top: 10px; }
    .hero-benefits > div:nth-child(2) { border-right: 0; }
    .hero-benefits > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
    .split-layout, .split-layout--wide, .why-grid, .vision-grid, .legacy-grid, .service-intro__grid, .contact-main__grid { grid-template-columns: 1fr; gap: 55px; }
    .image-composition, .why-panel, .legacy-images { min-height: 600px; }
    .section-heading--row { align-items: flex-start; flex-direction: column; }
    .service-grid, .process-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
    .history-section { padding: 95px 0; }
    .history-card { grid-template-columns: 100px 1fr; }
    .history-card--reverse { grid-template-columns: 180px 1fr; }
    .quick-budget__inner { flex-direction: column; align-items: flex-start; }
    .faq-layout, .faq-layout--image { grid-template-columns: 1fr; }
    .faq-intro { position: static; }
    .vision-grid { gap: 45px; }
    .vision-media { max-width: 720px; width: 100%; margin-inline: auto; }
    .legacy-grid { gap: 50px; }
    .service-intro__image { max-width: 650px; width: 100%; margin-inline: auto; }
    .service-benefits-inline { grid-template-columns: repeat(3,1fr); }
    .contact-cards { grid-template-columns: repeat(2,1fr); }
    .contact-map-panel { order: -1; }
    .faq-person { max-width: 600px; width: 100%; margin-inline: auto; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 1/-1; }
    .final-cta__inner { flex-direction: column; align-items: flex-start; }
    .final-cta__actions { min-width: 0; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 680px) {
    body { font-size: 15px; padding-bottom: 72px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 72px 0; }
    h1 { font-size: clamp(2.65rem,13vw,4.15rem); }
    h2 { font-size: clamp(2.05rem,10vw,3.2rem); }
    .topbar__inner { justify-content: space-between; gap: 10px; font-size: .65rem; }
    .topbar__inner a { margin-left: 0; }
    .brand { width: 158px; }
    .header-phone { width: 40px; height: 40px; }
    .hero-home { padding: 42px 0 22px; }
    .hero-home__content { text-align: left; }
    .hero-trust { margin-inline: 0; font-size: .64rem; }
    .hero-home h1 { margin-inline: 0; font-size: clamp(3rem,15vw,4.5rem); }
    .hero-home__content > p { margin-inline: 0; font-size: .98rem; }
    .hero-actions { justify-content: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-proof { justify-content: flex-start; }
    .hero-proof small { font-size: .67rem; }
    .hero-visual { min-height: 430px; margin-top: 15px; }
    .hero-visual__backdrop { inset: 6% 3% 7% 4%; border-radius: 28px 65px 28px 65px; }
    .hero-visual__main { inset: 10% 3% 9% 1%; border-radius: 22px 60px 22px 60px; }
    .hero-visual__card { width: 112px; border-radius: 13px; }
    .hero-visual__card img { height: 118px; }
    .hero-visual__card figcaption { padding: 8px; font-size: .53rem; }
    .hero-visual__card--top { right: -4%; }
    .hero-visual__card--bottom { left: -3%; bottom: 0; }
    .hero-visual__badge { width: 96px; height: 96px; right: -2%; bottom: 5%; border-width: 5px; }
    .hero-visual__badge-number { font-size: 1.9rem; }
    .hero-visual__badge span:last-child { font-size: .48rem; }
    .hero-benefits { grid-template-columns: 1fr; border-radius: 18px; }
    .hero-benefits > div { min-height: 75px; padding: 13px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .hero-benefits > div:last-child { border-bottom: 0; }
    .image-composition, .why-panel, .legacy-images { min-height: 455px; }
    .image-composition__large { inset: 0 8% 7% 0; border-radius: 22px 64px 22px 22px; }
    .image-composition__small { width: 45%; border-width: 5px; }
    .image-composition__stamp { left: -10px; bottom: 30px; width: 95px; height: 95px; border-width: 5px; }
    .image-composition__stamp span { font-size: 1.5rem; }
    .feature-list article { grid-template-columns: 45px 1fr; gap: 12px; }
    .feature-icon { width: 43px; height: 43px; }
    .section-heading { margin-bottom: 35px; }
    .section-heading--row .btn { width: 100%; }
    .service-grid, .process-grid, .values-grid, .why-service__grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; padding: 28px; }
    .service-card__icon { margin-bottom: 35px; }
    .history-card, .history-card--reverse { grid-template-columns: 1fr; padding: 25px; }
    .history-card__year { width: 85px; height: 85px; }
    .history-card__image { height: 270px; }
    .why-panel > img { inset: 0 4% 18% 0; width: 96%; height: 82%; border-radius: 24px 65px 24px 24px; }
    .why-panel__stats { left: 4%; }
    .why-panel__stats div { padding: 15px 7px; }
    .why-panel__stats strong { font-size: 1.3rem; }
    .why-panel__stats span { font-size: .54rem; }
    .quick-budget__inner { min-height: 230px; }
    .quick-budget .btn { width: 100%; }
    .marquee__item { width: 74vw; }
    .inner-hero { min-height: 480px; }
    .inner-hero__bg { background-image: linear-gradient(90deg,rgba(5,6,14,.95),rgba(5,6,14,.68)),var(--hero-image); background-position: 62% center; }
    .inner-hero__content { padding: 80px 0 65px; }
    .inner-hero h1 { font-size: clamp(2.8rem,13vw,4.2rem); }
    .inner-hero__actions .btn { width: 100%; }
    .image-composition__quote { left: -5px; top: 25px; max-width: 175px; padding: 12px 14px; font-size: .72rem; }
    .metric-pair { grid-template-columns: 1fr; }
    .vision-media, .vision-media > img { min-height: 470px; height: 470px; }
    .vision-media__label { left: 15px; right: 15px; bottom: 15px; }
    .legacy-images img:first-child { inset: 0 15% 13% 0; width: 85%; }
    .legacy-images img:last-child { width: 48%; height: 45%; }
    .service-intro__image > img { height: 520px; border-radius: 22px 65px 22px 22px; }
    .service-intro__badge { left: 14px; right: 14px; bottom: 14px; }
    .service-benefits-inline { grid-template-columns: 1fr; }
    .service-detail-card { grid-template-columns: 1fr; }
    .service-detail-card__image { height: 280px; }
    .service-detail-card__body { padding: 25px; }
    .work-gallery__grid { grid-template-columns: 1fr; }
    .work-gallery figure { min-height: 300px; }
    .work-gallery figure:nth-child(2) { margin-top: 0; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-card { min-height: 180px; }
    .contact-form-panel, .contact-map-panel { padding: 24px; border-radius: 19px; }
    .form-grid { grid-template-columns: 1fr; }
    .map-frame { height: 350px; }
    .faq-person, .faq-person > img { min-height: 500px; height: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
    .footer-brand, .footer-contact { grid-column: 1/-1; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float { display: none; }
    .mobile-conversion-bar { position: fixed; z-index: 990; left: 9px; right: 9px; bottom: 8px; height: 62px; display: grid; grid-template-columns: 1fr 1.25fr 1fr; overflow: hidden; color: var(--white); background: rgba(7,8,17,.96); border: 1px solid rgba(255,255,255,.1); border-radius: 17px; box-shadow: 0 15px 45px rgba(0,0,0,.32); backdrop-filter: blur(15px); }
    .mobile-conversion-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-size: .58rem; font-weight: 750; }
    .mobile-conversion-bar .icon { width: 19px; height: 19px; }
    .mobile-conversion-bar__primary { background: linear-gradient(145deg,var(--red),#ff5d2e); }
    .final-cta__actions { width: 100%; }
    .final-cta__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}
