@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:ital,wght@0,600;0,700;1,700&display=swap');

:root {
  --ink: #14171d;
  --ink-soft: #262b34;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --muted: #6d6c68;
  --line: rgba(20, 23, 29, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --orange: #ed9320;
  --orange-dark: #cf7311;
  --orange-soft: #fff0d9;
  --green: #1f9d55;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(20, 23, 29, 0.08);
  --shadow-md: 0 24px 70px rgba(20, 23, 29, 0.14);
  --shadow-lg: 0 40px 100px rgba(20, 23, 29, 0.22);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --header-height: 80px;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg, video, canvas { display: block; max-width: 100%; }
iframe { border: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: rgba(237, 147, 32, 0.35); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--light { background: var(--paper-strong); }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 9999; transform: translateY(-150%);
  padding: 12px 16px; color: var(--white); background: var(--ink); border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  position: relative; z-index: 70; color: #f7f4ee; background: #0e1116;
  font-size: 12px; letter-spacing: .02em;
}
.announcement__inner {
  min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 9px;
}
.announcement__inner a { color: #ffc779; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.announcement__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(237, 147, 32, .13); }
.announcement__separator { opacity: .45; }

.site-header {
  position: sticky; top: 0; z-index: 60; min-height: var(--header-height);
  border-bottom: 1px solid transparent; transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled { background: rgba(247, 244, 238, .94); border-color: var(--line); box-shadow: 0 10px 36px rgba(20, 23, 29, .06); backdrop-filter: blur(18px); }
.site-header__inner { height: var(--header-height); display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  color: var(--ink); background: var(--orange); font-weight: 800; font-size: 24px; box-shadow: inset 0 -5px 13px rgba(120, 54, 0, .16);
}
.brand__text { display: grid; line-height: 1; }
.brand__text strong { font-size: 18px; font-weight: 800; letter-spacing: -.04em; }
.brand__text small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.main-nav a { position: relative; color: #4b4d51; font-size: 13px; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px;
  padding: 0 22px; border: 1px solid transparent; border-radius: 999px;
  font-size: 13px; font-weight: 800; line-height: 1.1; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(237, 147, 32, .35); outline-offset: 3px; }
.button svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button--header { min-height: 44px; padding: 0 18px; color: var(--white); background: var(--ink); }
.button--header svg { fill: var(--orange); stroke: none; }
.button--primary { color: var(--ink); background: var(--orange); box-shadow: 0 14px 30px rgba(237, 147, 32, .24); }
.button--primary:hover { background: #f0a03b; box-shadow: 0 18px 38px rgba(237, 147, 32, .32); }
.button--large { min-height: 58px; padding: 0 28px; font-size: 14px; }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.38); }
.button--ghost:hover { background: var(--white); border-color: rgba(20,23,29,.25); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: #252a33; box-shadow: var(--shadow-sm); }
.button--light { color: var(--ink); background: var(--white); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.button--outline-light:hover { color: var(--ink); background: var(--white); }
.button--whatsapp { color: var(--white); background: #168f4b; box-shadow: 0 14px 30px rgba(22,143,75,.22); }
.button--whatsapp:hover { background: #11783e; }
.button--whatsapp svg { fill: currentColor; stroke: none; }
.button--full { width: 100%; }

.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 9px; color: #835015;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow__icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--ink); background: var(--orange-soft); }
.eyebrow__icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.kicker { margin-bottom: 16px; }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--orange); }
.kicker--light { color: #ffc77c; }

.hero { padding-top: 72px; padding-bottom: 55px; background: radial-gradient(circle at 82% 20%, rgba(237,147,32,.13), transparent 34%), linear-gradient(180deg, #faf7f1 0%, #f1ece3 100%); overflow: hidden; }
.hero__grain { position: absolute; inset: 0; opacity: .16; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E"); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 72px; }
.hero__copy { max-width: 650px; }
.hero h1 { margin: 22px 0 22px; max-width: 700px; font-size: clamp(48px, 5.2vw, 78px); line-height: .98; letter-spacing: -.065em; font-weight: 800; }
.hero h1 em { color: var(--orange-dark); font-family: var(--font-serif); font-weight: 700; }
.hero__lead { max-width: 590px; margin: 0; color: #595a5a; font-size: 18px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 38px 0 0; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.hero__trust li { padding: 0 22px; border-right: 1px solid var(--line); }
.hero__trust li:first-child { padding-left: 0; }
.hero__trust li:last-child { border-right: 0; }
.hero__trust strong, .hero__trust span { display: block; }
.hero__trust strong { font-size: 19px; letter-spacing: -.04em; }
.hero__trust span { margin-top: 2px; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero__microcopy { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.hero__microcopy p { margin: 0; max-width: 410px; color: #6e6d69; font-size: 12px; line-height: 1.55; }
.hero__microcopy p strong { color: var(--ink); }
.avatar-stack { display: flex; min-width: 84px; }
.avatar-stack i { display: grid; place-items: center; width: 32px; height: 32px; margin-left: -7px; border: 2px solid var(--paper); border-radius: 50%; color: var(--white); background: #6f573e; font-size: 9px; font-style: normal; font-weight: 800; }
.avatar-stack i:first-child { margin-left: 0; background: var(--ink); }
.avatar-stack i:nth-child(2) { background: var(--orange-dark); }
.avatar-stack i:nth-child(3) { background: #54665a; }

.hero__visual { position: relative; min-width: 0; padding: 34px 24px 55px 42px; }
.hero__visual::before { content: ""; position: absolute; z-index: -1; inset: 10% -10% 6% 10%; border-radius: 46% 54% 52% 48%; background: var(--orange); opacity: .16; filter: blur(1px); transform: rotate(-5deg); }
.portfolio-window { position: relative; z-index: 2; overflow: hidden; border: 8px solid var(--white); border-radius: 28px; background: #d9cfbf; box-shadow: var(--shadow-lg); transform: rotate(1.2deg); }
.portfolio-window__topbar { height: 42px; padding: 0 14px; display: flex; align-items: center; gap: 6px; color: #656158; background: #f8f4ed; }
.portfolio-window__topbar span { width: 8px; height: 8px; border-radius: 50%; background: #d1c9bd; }
.portfolio-window__topbar span:first-child { background: #ec8a69; }
.portfolio-window__topbar span:nth-child(2) { background: #e9b757; }
.portfolio-window__topbar span:nth-child(3) { background: #70b77a; }
.portfolio-window__topbar p { margin: 0 0 0 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-window__media { position: relative; height: 580px; overflow: hidden; background: #ded4c4; }
.portfolio-window__media iframe { position: absolute; z-index: 3; top: 0; left: 50%; width: 100%; min-width: 380px; height: 740px; transform: translateX(-50%); background: transparent; opacity: 0; transition: opacity .45s ease; }
.portfolio-window__media iframe.is-loaded { opacity: 1; }
.media-placeholder { position: absolute; inset: 0; }
.media-placeholder svg { width: 100%; height: 100%; object-fit: cover; }
.media-placeholder__label { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; gap: 11px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 16px; color: var(--white); background: rgba(20,23,29,.78); backdrop-filter: blur(12px); }
.media-placeholder__label p { display: grid; margin: 0; line-height: 1.25; }
.media-placeholder__label strong { font-size: 11px; }
.media-placeholder__label small { color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #4bdd7f; box-shadow: 0 0 0 5px rgba(75,221,127,.15); }
.floating-card { position: absolute; z-index: 5; display: grid; padding: 15px 17px; border: 1px solid rgba(255,255,255,.65); border-radius: 16px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.floating-card strong { font-size: 11px; }
.floating-card small { color: var(--muted); font-size: 9px; }
.floating-card--rating { top: 11px; right: -16px; transform: rotate(3deg); }
.floating-card__stars { color: var(--orange-dark); font-size: 12px; letter-spacing: 2px; }
.floating-card--cities { right: -26px; bottom: 20px; grid-template-columns: 37px auto; align-items: center; gap: 10px; max-width: 280px; transform: rotate(-2deg); }
.floating-card--cities svg { width: 33px; height: 33px; padding: 7px; border-radius: 10px; fill: none; stroke: var(--ink); stroke-width: 1.8; background: var(--orange-soft); }
.floating-card--cities p { display: grid; margin: 0; line-height: 1.35; }
.hero__partners { position: relative; z-index: 2; display: flex; align-items: center; gap: 28px; margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__partners > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero__partners div { display: flex; flex-wrap: wrap; gap: 34px; }
.hero__partners strong { color: #7d776f; font-size: 12px; letter-spacing: .04em; }

.quick-quote { position: relative; z-index: 10; margin-bottom: -38px; }
.quick-quote__inner { min-height: 106px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(20,23,29,.08); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-md); }
.quick-quote__inner > div { display: flex; align-items: center; gap: 18px; }
.quick-quote__icon { display: grid; place-items: center; flex: 0 0 52px; width: 52px; height: 52px; border-radius: 16px; color: var(--orange-dark); background: var(--orange-soft); }
.quick-quote__icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.quick-quote__inner p { display: grid; margin: 0; }
.quick-quote__inner p strong { font-size: 15px; }
.quick-quote__inner p span { margin-top: 3px; color: var(--muted); font-size: 12px; }

.section-heading { margin-bottom: 48px; }
.section-heading--split { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; }
.section-heading h2, .risk-copy h2, .process-intro h2, .authority-copy h2, .reviews-copy h2, .locations-copy h2, .faq-intro h2, .quote-copy h2, .final-cta h2 { margin: 0; font-size: clamp(38px, 4vw, 59px); line-height: 1.05; letter-spacing: -.055em; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 365px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .3s ease, box-shadow .3s ease, background .3s ease; overflow: hidden; }
.service-card::before { content: ""; position: absolute; right: -45px; bottom: -65px; width: 150px; height: 150px; border-radius: 50%; background: var(--orange); opacity: 0; transform: scale(.5); transition: opacity .3s, transform .3s; }
.service-card:hover { transform: translateY(-7px); background: var(--white); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: .1; transform: scale(1); }
.service-card__number { position: absolute; top: 24px; right: 24px; color: #a9a49c; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.service-card__icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 48px; border-radius: 17px; color: var(--ink); background: var(--orange-soft); }
.service-card__icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 12px; font-size: 19px; letter-spacing: -.035em; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.service-card a { position: absolute; z-index: 2; right: 26px; bottom: 24px; left: 26px; display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 800; }
.service-card a span { font-size: 18px; }
.furniture-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 34px; }
.furniture-tags span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: #6e6b66; background: rgba(255,255,255,.45); font-size: 10px; font-weight: 700; }

.risk-section { color: var(--white); background: #151920; overflow: hidden; }
.risk-section::before { content: ""; position: absolute; top: -220px; right: -160px; width: 520px; height: 520px; border-radius: 50%; background: var(--orange); opacity: .08; filter: blur(2px); }
.risk-section__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.risk-visual { position: relative; min-height: 510px; }
.risk-visual__frame { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 32px; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.08), transparent 50%), linear-gradient(145deg, #222833, #101318); overflow: hidden; }
.risk-visual__frame::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 22%; background: linear-gradient(#4b4037, #2e2926); }
.cabinet { position: absolute; z-index: 2; top: 80px; left: 50%; width: 270px; height: 345px; border: 10px solid #9b6842; border-radius: 7px; background: #6c472f; transform: translateX(-50%); box-shadow: 20px 25px 50px rgba(0,0,0,.3); }
.cabinet__door { position: absolute; top: 0; width: 50%; height: 77%; border: 4px solid #9b6842; background: linear-gradient(135deg,#d1ae82,#a8754d); }
.cabinet__door--left { left: 0; transform: rotate(-1.8deg) translate(-2px, 4px); transform-origin: top left; }
.cabinet__door--right { right: 0; transform: rotate(2.5deg) translate(5px,-3px); transform-origin: top right; }
.cabinet__door::after { content: ""; position: absolute; top: 48%; width: 8px; height: 8px; border-radius: 50%; background: #3f2c22; }
.cabinet__door--left::after { right: 9px; }
.cabinet__door--right::after { left: 9px; }
.cabinet__drawer { position: absolute; right: 12px; bottom: 18px; left: 10px; height: 58px; border: 4px solid #9b6842; background: #bf8a5f; transform: translateX(9px) rotate(-1deg); }
.risk-label { position: absolute; z-index: 4; padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: #ffd8aa; background: rgba(8,10,13,.84); box-shadow: 0 12px 30px rgba(0,0,0,.25); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.risk-label::before { content: "×"; margin-right: 6px; color: #ff6f61; font-size: 13px; }
.risk-label--one { top: 92px; right: 12px; }
.risk-label--two { bottom: 93px; left: 12px; }
.risk-label--three { right: 30px; bottom: 42px; }
.risk-copy h2 { max-width: 700px; margin-bottom: 24px; }
.risk-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.9; }
.check-list { display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; }
.check-list li span { display: grid; place-items: center; flex: 0 0 25px; width: 25px; height: 25px; border-radius: 50%; color: var(--ink); background: var(--orange); font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.text-link span { color: var(--orange); }

.section--portfolio { color: var(--white); background: #0e1116; overflow: hidden; }
.section--portfolio::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent); }
.section--portfolio .container { position: relative; z-index: 1; }
.section-heading--light > p { color: rgba(255,255,255,.57); }
.social-gallery, .gallery--local { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.social-card { position: relative; min-height: 440px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: #181d25; overflow: hidden; isolation: isolate; }
.social-card:nth-child(2), .social-card:nth-child(5) { transform: translateY(24px); }
.social-card__fallback { position: absolute; z-index: 1; inset: 0; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(150deg,#242a34,#11151b); }
.social-card__fallback::after { content: ""; position: absolute; inset: auto -30% -38% 20%; height: 65%; border-radius: 50%; background: var(--orange); opacity: .13; filter: blur(4px); }
.social-card__index { position: relative; z-index: 2; align-self: flex-end; color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .16em; }
.social-card__fallback p { position: relative; z-index: 2; display: grid; margin: 0; }
.social-card__fallback strong { font-size: 16px; }
.social-card__fallback small { margin-top: 4px; color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.social-card iframe { position: absolute; z-index: 3; top: 0; left: 50%; width: 100%; min-width: 330px; height: 620px; transform: translateX(-50%); background: #fff; opacity: 0; transition: opacity .5s ease; }
.social-card iframe.is-loaded { opacity: 1; }
.social-card__drawing { position: relative; z-index: 2; width: 210px; height: 230px; margin: auto; }
.social-card__drawing::before, .social-card__drawing::after { content: ""; position: absolute; }
.social-card__drawing--wardrobe { border: 8px solid #9b6946; border-radius: 5px; background: linear-gradient(90deg,#c29367 0 48%,#9b6946 48% 51%,#c29367 51%); box-shadow: 14px 18px 0 rgba(0,0,0,.14); }
.social-card__drawing--wardrobe::before { top: 45%; left: calc(50% - 14px); width: 8px; height: 8px; border-radius: 50%; background: #39271d; box-shadow: 20px 0 #39271d; }
.social-card__drawing--wardrobe::after { right: 8px; bottom: 14px; left: 8px; height: 35px; border: 4px solid #9b6946; background: #b98152; }
.social-card__drawing--tv { height: 160px; margin-top: 78px; border: 12px solid #343840; border-radius: 8px; background: radial-gradient(circle at 65% 30%,#f1b45d,transparent 16%), linear-gradient(145deg,#5f7582,#1a2026); box-shadow: 0 60px 0 -50px #a76c43, 0 76px 0 -58px #b98961; }
.social-card__drawing--tv::before { bottom: -28px; left: calc(50% - 7px); width: 14px; height: 28px; background: #51555d; }
.social-card__drawing--tv::after { bottom: -32px; left: calc(50% - 45px); width: 90px; height: 8px; border-radius: 8px; background: #51555d; }
.social-card__drawing--hinge { width: 150px; height: 230px; border-radius: 20px; background: linear-gradient(90deg,#bbb 0 20%,#e7e7e7 20% 80%,#aaa 80%); transform: rotate(14deg); box-shadow: inset 0 0 0 5px #777, 18px 22px 0 rgba(0,0,0,.16); }
.social-card__drawing--hinge::before { top: 26px; left: 54px; width: 42px; height: 42px; border: 6px solid #777; border-radius: 50%; box-shadow: 0 135px 0 -6px #eee, 0 135px 0 0 #777; }
.social-card__drawing--hinge::after { top: 91px; left: -33px; width: 216px; height: 46px; border-radius: 8px; background: #d1d1d1; box-shadow: inset 0 0 0 5px #777; }
.social-card__drawing--tools { width: 220px; height: 180px; margin-top: 90px; border-radius: 20px 20px 34px 34px; background: #e58a1a; box-shadow: inset 0 -14px 0 rgba(110,55,0,.22), 18px 18px 0 rgba(0,0,0,.16); }
.social-card__drawing--tools::before { top: -65px; left: 40px; width: 140px; height: 85px; border: 17px solid #c36e0d; border-bottom: 0; border-radius: 30px 30px 0 0; }
.social-card__drawing--tools::after { top: 50px; left: 26px; width: 168px; height: 20px; border-radius: 12px; background: #20242b; box-shadow: 0 46px #20242b; }
.social-card__drawing--level { width: 235px; height: 46px; margin-top: 128px; border: 8px solid #d98617; border-radius: 8px; background: #edaa4b; transform: rotate(-9deg); box-shadow: 16px 18px 0 rgba(0,0,0,.16); }
.social-card__drawing--level::before { top: 3px; left: 45px; width: 44px; height: 24px; border: 5px solid #3c414a; border-radius: 50%; background: #91d0a8; box-shadow: 98px 0 0 -5px #91d0a8, 98px 0 0 0 #3c414a; }
.social-card__drawing--check { width: 180px; height: 215px; margin-top: 35px; border-radius: 14px; background: #f4eee3; box-shadow: 14px 17px 0 rgba(0,0,0,.16); }
.social-card__drawing--check::before { top: -16px; left: 56px; width: 68px; height: 32px; border-radius: 10px; background: var(--orange); }
.social-card__drawing--check::after { top: 57px; left: 38px; width: 95px; height: 18px; border-left: 8px solid #1b9c58; border-bottom: 8px solid #1b9c58; transform: rotate(-45deg); box-shadow: 52px 67px 0 -8px #706f6c, 22px 105px 0 -8px #706f6c; }
.portfolio-actions { display: flex; justify-content: center; gap: 12px; margin-top: 66px; }
.sync-status { margin-bottom: 22px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; color: rgba(255,255,255,.7); font-size: 11px; }
.gallery__item { position: relative; min-height: 330px; padding: 0; border: 0; border-radius: 18px; overflow: hidden; background: #20252d; cursor: zoom-in; }
.gallery__item img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item span { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 9px 12px; border-radius: 10px; color: white; background: rgba(15,17,22,.7); font-size: 9px; font-weight: 700; backdrop-filter: blur(8px); }

.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-intro { position: sticky; top: 125px; }
.process-intro h2 { margin-bottom: 22px; }
.process-intro > p { max-width: 450px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.lottie-wrap { width: 170px; height: 170px; margin: 30px 0 0 -15px; opacity: .9; }
.lottie-wrap lottie-player { width: 100%; height: 100%; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-step { display: grid; grid-template-columns: 78px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.process-step > span { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange-dark); font-size: 11px; font-weight: 800; }
.process-step h3 { margin: 3px 0 8px; font-size: 21px; letter-spacing: -.035em; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.authority-section { color: var(--white); background: linear-gradient(130deg,#1a1e25,#0e1115); overflow: hidden; }
.authority-section::before { content: ""; position: absolute; top: -200px; left: 45%; width: 700px; height: 700px; border: 1px solid rgba(237,147,32,.24); border-radius: 50%; box-shadow: 0 0 0 90px rgba(237,147,32,.04), 0 0 0 180px rgba(237,147,32,.025); }
.authority-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.authority-copy h2 { max-width: 620px; margin-bottom: 24px; }
.authority-copy > p { max-width: 590px; margin: 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.9; }
.authority-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 45px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.authority-stats div { padding: 24px 18px; border-right: 1px solid var(--line-light); }
.authority-stats div:first-child { padding-left: 0; }
.authority-stats div:last-child { border-right: 0; }
.authority-stats strong { display: block; color: var(--orange); font-size: 30px; letter-spacing: -.05em; }
.authority-stats span { display: block; margin-top: 3px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.authority-values { display: grid; gap: 12px; }
.value-card { position: relative; padding: 29px 28px 28px 82px; border: 1px solid var(--line-light); border-radius: 18px; background: rgba(255,255,255,.04); transition: background .25s, transform .25s; }
.value-card:hover { background: rgba(255,255,255,.075); transform: translateX(6px); }
.value-card > span { position: absolute; top: 30px; left: 27px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.value-card h3 { margin: 0 0 8px; font-size: 18px; }
.value-card p { margin: 0; color: rgba(255,255,255,.53); font-size: 12px; line-height: 1.75; }

.section--reviews { background: #fffdf8; }
.reviews-hero { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; padding: 48px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg,#fff 0%,#f5eee4 100%); }
.reviews-score { position: relative; min-height: 310px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 22px; background: var(--ink); color: var(--white); box-shadow: var(--shadow-md); overflow: hidden; }
.reviews-score::before { content: ""; position: absolute; top: -70px; right: -80px; width: 210px; height: 210px; border-radius: 50%; background: var(--orange); opacity: .18; }
.reviews-score__google { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 50%; color: #4285f4; background: white; font-size: 28px; font-weight: 800; }
.reviews-score__stars { color: #f7b441; letter-spacing: 4px; font-size: 16px; }
.reviews-score strong { margin-top: 12px; font-size: 27px; letter-spacing: -.04em; }
.reviews-score small { margin-top: 4px; color: rgba(255,255,255,.56); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.reviews-copy h2 { margin-bottom: 22px; }
.reviews-copy > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.reviews-copy__actions { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.reviews-copy .text-link { color: var(--ink); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr .8fr; gap: 16px; margin-top: 22px; }
.review-card { min-height: 290px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.review-card__quote { display: block; height: 28px; color: var(--orange); font-family: var(--font-serif); font-size: 52px; line-height: .7; }
.review-card__stars { margin: 10px 0 17px; color: #e79a2c; font-size: 11px; letter-spacing: 3px; }
.review-card > p { margin: 0; color: #4f504f; font-family: var(--font-serif); font-size: 18px; line-height: 1.55; }
.review-card footer { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.review-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--white); background: var(--ink); font-size: 12px; font-weight: 800; }
.review-card footer div { display: grid; line-height: 1.35; }
.review-card footer strong { font-size: 11px; }
.review-card footer small { color: var(--muted); font-size: 9px; }
.review-card--cta { display: flex; flex-direction: column; color: var(--white); background: var(--ink); }
.review-card--cta > span { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-card--cta h3 { margin: 18px 0 auto; font-size: 24px; line-height: 1.25; letter-spacing: -.04em; }
.review-card--cta a { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); font-size: 11px; font-weight: 800; }

.locations-section { background: #eee8de; }
.locations-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.locations-copy h2 { margin-bottom: 22px; }
.locations-copy > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.locations-copy__note {
  margin-top: -0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.locations-copy__note strong {
  color: var(--ink);
}

.city-list { margin-top: 30px; border-top: 1px solid var(--line); }
.city-list a { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); transition: padding .25s, color .25s; }
.city-list a:hover { padding-left: 8px; color: var(--orange-dark); }
.city-list span { color: var(--orange-dark); font-size: 9px; font-weight: 800; }
.city-list strong { font-size: 14px; }
.city-list small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.map-card { position: relative; min-height: 560px; overflow: hidden; border: 8px solid var(--white); border-radius: 28px; background: #ded8cd; box-shadow: var(--shadow-lg); }
.map-card iframe { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity .5s; }
.map-card iframe.is-loaded { opacity: 1; }
.map-card__fallback { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; padding: 42px; background: linear-gradient(145deg,#f7f2e9,#dcd2c3); }
.map-card__fallback svg { width: 100%; }
.map-card__fallback p { position: absolute; bottom: 78px; display: grid; text-align: center; }
.map-card__fallback strong { font-size: 13px; }
.map-card__fallback small { color: var(--muted); font-size: 9px; }
.map-card__button { position: absolute; z-index: 5; right: 16px; bottom: 16px; left: 16px; display: flex; align-items: center; justify-content: space-between; padding: 14px 17px; border-radius: 13px; color: var(--white); background: rgba(20,23,29,.9); font-size: 11px; font-weight: 800; backdrop-filter: blur(10px); }

.section--faq { background: #fffdf8; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro h2 { margin-bottom: 20px; }
.faq-intro p { margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item h3 { margin: 0; }
.accordion__item button { width: 100%; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion__item button span { font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.accordion__item button i { position: relative; flex: 0 0 25px; width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 50%; }
.accordion__item button i::before, .accordion__item button i::after { content: ""; position: absolute; top: 11px; left: 7px; width: 9px; height: 1px; background: var(--ink); transition: transform .25s; }
.accordion__item button i::after { transform: rotate(90deg); }
.accordion__item button[aria-expanded="true"] i::after { transform: rotate(0); }
.accordion__panel { padding: 0 50px 25px 0; }
.accordion__panel p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.quote-section { color: var(--white); background: linear-gradient(140deg,#181c23 0%,#0c0f13 100%); overflow: hidden; }
.quote-section::before { content: ""; position: absolute; right: -230px; bottom: -280px; width: 750px; height: 750px; border-radius: 50%; background: var(--orange); opacity: .1; }
.quote-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.quote-copy h2 { margin-bottom: 24px; }
.quote-copy > p { max-width: 530px; margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.85; }
.quote-benefits { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 28px 0; padding: 0; list-style: none; }
.quote-benefits li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.75); font-size: 11px; font-weight: 700; }
.quote-benefits span { color: var(--orange); }
.quote-contact { margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line-light); }
.quote-contact a { display: inline-flex; align-items: center; gap: 14px; }
.quote-contact a > span { display: grid; place-items: center; width: 47px; height: 47px; border: 1px solid var(--line-light); border-radius: 14px; color: var(--orange); }
.quote-contact svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.quote-contact p { display: grid; margin: 0; }
.quote-contact small { color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.quote-contact strong { margin-top: 2px; font-size: 18px; }
.quote-form { position: relative; padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; color: var(--ink); background: var(--paper-strong); box-shadow: var(--shadow-lg); }
.quote-form__progress { position: absolute; top: 0; right: 22px; left: 22px; height: 3px; background: #e4ded4; }
.quote-form__progress span { display: block; width: 10%; height: 100%; background: var(--orange); transition: width .25s ease; }
.quote-form__heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.quote-form__heading span { color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.quote-form__heading strong { font-size: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: grid; gap: 7px; margin-bottom: 14px; }
.form-field label { font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.form-field label span { color: var(--muted); font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #d8d1c7; border-radius: 11px; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.form-field input, .form-field select { height: 48px; padding: 0 14px; }
.form-field textarea { min-height: 92px; padding: 12px 14px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #aaa49b; font-size: 11px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(237,147,32,.11); outline: none; }
.form-field.is-invalid input, .form-field.is-invalid select, .form-field.is-invalid textarea { border-color: #c8473f; }
.form-error { min-height: 0; color: #b3342d; font-size: 9px; }
.form-error:empty { display: none; }
.form-consent { display: flex; align-items: flex-start; gap: 9px; margin: 3px 0 15px; color: #66635d; font-size: 9px; line-height: 1.5; cursor: pointer; }
.form-consent input { flex: 0 0 15px; width: 15px; height: 15px; accent-color: var(--orange-dark); }
.quote-form__privacy { margin: 10px 0 0; color: #989189; text-align: center; font-size: 8px; }

.final-cta { padding: 75px 0; background: var(--orange); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta span { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.final-cta h2 { max-width: 760px; margin-top: 9px; font-size: clamp(36px, 4vw, 55px); }
.final-cta .button--primary { color: var(--white); background: var(--ink); box-shadow: none; }

.site-footer { color: var(--white); background: #0b0e12; }
.site-footer__top { display: grid; grid-template-columns: 1.55fr .8fr .7fr .8fr; gap: 65px; padding-top: 70px; padding-bottom: 55px; }
.brand--footer .brand__text small { color: rgba(255,255,255,.45); }
.footer-brand > p { max-width: 330px; margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.75; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column > strong { margin-bottom: 7px; color: var(--orange); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.62); font-size: 10px; transition: color .2s; }
.footer-column a:hover { color: var(--white); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 19px; padding-bottom: 23px; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.36); font-size: 9px; }
.site-footer__bottom a { color: rgba(255,255,255,.72); text-decoration: underline; text-underline-offset: 3px; }

.floating-whatsapp { position: fixed; z-index: 50; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 18px 0 14px; border-radius: 999px; color: var(--white); background: #168f4b; box-shadow: 0 16px 38px rgba(9,95,47,.35); font-size: 11px; font-weight: 800; transition: transform .22s; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.02); }
.floating-whatsapp svg { width: 25px; height: 25px; fill: currentColor; }
.mobile-action-bar { display: none; }

.lightbox { width: min(1000px, calc(100vw - 40px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: 18px; background: #0d1014; box-shadow: var(--shadow-lg); overflow: hidden; }
.lightbox::backdrop { background: rgba(5,7,10,.86); backdrop-filter: blur(8px); }
.lightbox figure { margin: 0; display: grid; max-height: calc(100vh - 40px); }
.lightbox img { width: 100%; max-height: calc(100vh - 90px); object-fit: contain; }
.lightbox figcaption { padding: 13px 18px; color: rgba(255,255,255,.7); font-size: 10px; }
.lightbox__close, .lightbox__nav { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; background: rgba(10,12,16,.7); cursor: pointer; backdrop-filter: blur(8px); }
.lightbox__close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 24px; }
.lightbox__nav { top: 50%; width: 44px; height: 44px; font-size: 32px; transform: translateY(-50%); }
.lightbox__nav--prev { left: 12px; }
.lightbox__nav--next { right: 12px; }

.reveal-up, .reveal-scale { will-change: transform, opacity; }

@media (max-width: 1100px) {
  :root { --container: 960px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 11px; }
  .hero__grid { gap: 35px; }
  .hero h1 { font-size: clamp(47px, 6vw, 67px); }
  .hero__visual { padding-left: 20px; }
  .portfolio-window__media { height: 520px; }
  .floating-card--rating { right: 0; }
  .floating-card--cities { right: -4px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 330px; }
  .social-gallery, .gallery--local { grid-template-columns: repeat(2, 1fr); }
  .social-card:nth-child(2), .social-card:nth-child(5) { transform: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card--cta { grid-column: 1 / -1; min-height: 230px; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 88px 0; }
  .button--header { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; top: calc(36px + var(--header-height)); right: 15px; left: 15px; display: grid; gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.98); box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .22s, transform .22s, visibility .22s; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 8px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero { padding-top: 50px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 760px; }
  .hero h1 { max-width: 780px; }
  .hero__visual { width: min(620px, 100%); margin: 0 auto; }
  .portfolio-window__media { height: 620px; }
  .hero__partners { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__partners div { gap: 20px; }
  .section-heading--split, .risk-section__grid, .process-layout, .authority-grid, .locations-grid, .faq-grid, .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-heading--split { align-items: start; }
  .section-heading > p { max-width: 700px; }
  .risk-visual { min-height: 500px; width: min(540px,100%); margin: 0 auto; }
  .process-intro, .faq-intro { position: static; }
  .lottie-wrap { width: 130px; height: 130px; }
  .authority-copy > p { max-width: 720px; }
  .authority-values { grid-template-columns: repeat(3,1fr); }
  .value-card { padding: 65px 22px 24px; }
  .value-card > span { top: 24px; left: 22px; }
  .reviews-hero { grid-template-columns: 1fr; gap: 35px; }
  .reviews-score { min-height: 230px; }
  .map-card { min-height: 500px; }
  .quote-copy { max-width: 720px; }
  .site-footer__top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 92px; }
  body { padding-bottom: 64px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 72px 0; }
  .announcement__inner { min-height: 32px; gap: 6px; font-size: 9px; }
  .announcement__separator { display: none; }
  .announcement__inner a { display: none; }
  .site-header__inner { height: 64px; }
  .brand__mark { width: 39px; height: 39px; border-radius: 11px; font-size: 21px; }
  .brand__text strong { font-size: 16px; }
  .brand__text small { font-size: 8px; }
  .main-nav { top: 102px; }
  .hero { padding-top: 36px; padding-bottom: 38px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { margin-top: 18px; font-size: clamp(43px, 13vw, 58px); line-height: .98; }
  .hero__lead { font-size: 15px; line-height: 1.7; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__trust { gap: 0; padding: 20px 0; }
  .hero__trust li { padding: 0 10px; }
  .hero__trust strong { font-size: 15px; }
  .hero__trust span { font-size: 7px; }
  .hero__microcopy { align-items: flex-start; }
  .hero__visual { padding: 18px 0 42px; }
  .portfolio-window { border-width: 6px; border-radius: 22px; transform: none; }
  .portfolio-window__media { height: 500px; }
  .portfolio-window__media iframe { min-width: 330px; height: 650px; }
  .floating-card--rating { top: 0; right: -2px; }
  .floating-card--cities { right: -2px; bottom: 0; left: 8px; max-width: none; }
  .hero__partners { margin-top: 20px; }
  .hero__partners div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; width: 100%; }
  .quick-quote { margin-bottom: -25px; }
  .quick-quote__inner { align-items: flex-start; padding: 20px; }
  .quick-quote__inner > div { align-items: flex-start; }
  .quick-quote__inner p span { display: none; }
  .quick-quote__inner .button { display: none; }
  .quick-quote__icon { flex-basis: 44px; width: 44px; height: 44px; }
  .section-heading--split { gap: 20px; }
  .section-heading h2, .risk-copy h2, .process-intro h2, .authority-copy h2, .reviews-copy h2, .locations-copy h2, .faq-intro h2, .quote-copy h2 { font-size: clamp(35px, 10vw, 46px); }
  .section-heading > p { font-size: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 315px; }
  .risk-section__grid { gap: 38px; }
  .risk-visual { min-height: 400px; }
  .cabinet { top: 65px; width: 220px; height: 280px; }
  .risk-label { font-size: 7px; }
  .risk-label--one { top: 48px; }
  .risk-copy > p { font-size: 13px; }
  .social-gallery, .gallery--local { grid-template-columns: 1fr; }
  .social-card { min-height: 460px; }
  .social-card iframe { min-width: 320px; height: 650px; }
  .portfolio-actions { display: grid; margin-top: 38px; }
  .portfolio-actions .button { width: 100%; }
  .process-step { grid-template-columns: 53px 1fr; gap: 15px; padding: 28px 0; }
  .process-step > span { width: 44px; height: 44px; }
  .authority-grid { gap: 42px; }
  .authority-stats { grid-template-columns: 1fr; }
  .authority-stats div { padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .authority-stats div:last-child { border-bottom: 0; }
  .authority-values { grid-template-columns: 1fr; }
  .value-card { padding: 26px 22px 24px 68px; }
  .value-card > span { top: 29px; left: 22px; }
  .reviews-hero { padding: 20px; border-radius: 22px; }
  .reviews-score { min-height: 210px; }
  .reviews-copy__actions { align-items: flex-start; flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--cta { grid-column: auto; }
  .city-list a { grid-template-columns: 35px 1fr; }
  .city-list small { grid-column: 2; }
  .map-card { min-height: 430px; border-width: 5px; }
  .accordion__item button span { font-size: 14px; }
  .accordion__panel { padding-right: 0; }
  .quote-form { padding: 26px 18px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form__heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .final-cta .button { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { display: none; }
  .mobile-action-bar { position: fixed; z-index: 58; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: .7fr 1.3fr; min-height: 64px; border-top: 1px solid rgba(255,255,255,.13); background: #101419; box-shadow: 0 -10px 35px rgba(0,0,0,.2); }
  .mobile-action-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--white); font-size: 11px; font-weight: 800; }
  .mobile-action-bar a + a { color: #fff; background: #168f4b; }
  .mobile-action-bar svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-action-bar a + a svg { fill: currentColor; stroke: none; }
  .lightbox { width: calc(100vw - 16px); max-height: calc(100vh - 80px); }
}

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

/* Legal document */
.legal-page { background: var(--paper-strong); }
.legal-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,253,248,.94); backdrop-filter: blur(18px); }
.legal-header__inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-main { padding: 80px 0 110px; }
.legal-document { max-width: 820px; }
.legal-document h1 { max-width: 760px; margin: 16px 0 18px; font-family: var(--font-serif); font-size: clamp(44px, 7vw, 76px); line-height: .98; letter-spacing: -.055em; }
.legal-document h2 { margin: 48px 0 12px; font-size: 22px; line-height: 1.25; letter-spacing: -.03em; }
.legal-document p { margin: 0 0 16px; color: #4e4e4b; line-height: 1.85; }
.legal-document a:not(.button) { text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.legal-lead { max-width: 700px; font-size: 20px; }
.legal-contact { margin-top: 52px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--orange-soft); }
.legal-contact h2 { margin-top: 0; }
@media (max-width: 640px) {
  .legal-header__inner { min-height: 72px; }
  .legal-header .button { display: none; }
  .legal-main { padding: 54px 0 80px; }
  .legal-document h1 { font-size: 44px; }
  .legal-document h2 { margin-top: 36px; font-size: 19px; }
  .legal-lead { font-size: 17px; }
}
