:root {
  --color-bg-primary: #07090a;
  --color-bg-secondary: #0b0e10;
  --color-surface: #111518;
  --color-surface-elevated: #171c20;
  --color-border: rgba(255, 255, 255, .12);
  --color-text-primary: #f5f7f8;
  --color-text-secondary: #aeb5bd;
  --color-brand-red: #ef2e2a;
  --color-brand-red-hover: #c92623;
  --color-whatsapp: #08a91c;
  --color-focus: #ff6863;
  --shadow-card: 0 18px 48px rgba(0, 0, 0, .28);
  --shadow-elevated: 0 28px 90px rgba(0, 0, 0, .46);
  --bg: var(--color-bg-primary);
  --surface: var(--color-surface);
  --surface-dark: var(--color-bg-secondary);
  --text: var(--color-text-primary);
  --ink: var(--color-text-primary);
  --muted: var(--color-text-secondary);
  --line: var(--color-border);
  --brand: var(--color-brand-red);
  --brand-dark: var(--color-brand-red-hover);
  --brand-soft: rgba(239, 46, 42, .12);
  --success: var(--color-whatsapp);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: var(--shadow-card);
  --shadow-md: var(--shadow-elevated);
  --container: min(1180px, calc(100% - 40px));
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -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; }
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 3px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--color-bg-secondary); color: #fff; }
.section-white { background: var(--color-surface); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-lead { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-lead { color: #b9bdc4; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 44px; }
.section-heading .section-title { max-width: 760px; }

.topbar {
  background: var(--surface-dark);
  color: #fff;
  font-size: .85rem;
}
.topbar-inner { min-height: 38px; display: flex; justify-content: center; align-items: center; gap: 9px; text-align: center; }
.topbar strong { color: #fff; }
.topbar a { color: #ff918d; font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(7, 9, 10, .94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.brand-logo { width: 52px; height: 52px; object-fit: contain; flex: 0 0 auto; }
.site-footer .brand-logo { filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .98rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 7px; }
.nav a { padding: 10px 12px; border-radius: 10px; color: var(--color-text-secondary); font-size: .92rem; font-weight: 700; }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.08); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--color-surface-elevated);
}
.menu-button span, .menu-button::before, .menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: .2s ease;
}
.menu-open .menu-button span { opacity: 0; }
.menu-open .menu-button::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-button::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .92rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 28px rgba(229, 59, 53, .24); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-dark { background: #050607; color: #fff; border-color: var(--line); }
.btn-light { background: #fff; color: #111214; border-color: rgba(255,255,255,.55); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; }
.btn[href^="https://wa.me/"],
.contact-form button[type="submit"] {
  border-color: var(--color-whatsapp);
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8,169,28,.24);
}
.btn[href^="https://wa.me/"]:hover,
.contact-form button[type="submit"]:hover { background: #078c18; }
.btn-icon { width: 1.15rem; height: 1.15rem; object-fit: contain; flex: 0 0 auto; }
a[href^="https://wa.me/"]::before { content: ""; display: inline-block; width: 1em; height: 1em; margin-right: .42em; vertical-align: -.13em; background: url("/assets/icons/contact/whatsapp.png") center / contain no-repeat; }
.btn[href^="https://wa.me/"]::before { width: 1.12rem; height: 1.12rem; margin-right: 0; vertical-align: 0; }
.contact-item a[href^="https://wa.me/"]::before { display: none; }

.hero { position: relative; min-height: clamp(600px, calc(100svh - 120px), 760px); display: grid; align-items: stretch; overflow: hidden; background: var(--surface); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 calc(50% - 44px);
  width: 96px;
  background: linear-gradient(90deg, var(--surface) 0%, rgba(246,245,243,.92) 42%, rgba(246,245,243,0) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0 auto 0 50%;
  width: min(590px, calc(50% - 20px));
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  opacity: .56;
  filter: saturate(.8) contrast(1.05);
}
.hero-inner { position: relative; z-index: 2; min-height: inherit; display: grid; grid-template-columns: 50% 50%; align-items: center; padding: 60px 0; }
.hero-content { grid-column: 1; width: 100%; max-width: 550px; }
.hero h1 { margin: 0; max-width: 100%; font-size: clamp(3rem, 4.2vw, 4.7rem); line-height: .92; letter-spacing: -.065em; }
.hero h1 span { color: var(--brand); }
.hero-text { max-width: 610px; margin: 28px 0 0; color: #4f535a; font-size: clamp(1rem, 1.7vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 34px; color: #4f535a; font-size: .9rem; font-weight: 700; }
.hero-note-badge { width: 38px; height: 38px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow-sm); }

.trust-strip { position: relative; z-index: 3; margin-top: -36px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid rgba(23,24,26,.07); border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; }
.trust-item { padding: 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.55rem; line-height: 1.1; letter-spacing: -.035em; }
.trust-item span { display: block; margin-top: 8px; color: var(--muted); font-size: .86rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.service-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #222;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.88) 100%); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover img { transform: scale(1.04); }
.service-card-content { position: relative; z-index: 2; padding: 34px; }
.service-card-number { display: inline-flex; margin-bottom: 18px; color: #ff9b97; font-size: .78rem; font-weight: 900; letter-spacing: .13em; }
.service-card h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.45rem); line-height: 1; letter-spacing: -.04em; }
.service-card p { max-width: 500px; margin: 15px 0 0; color: #d8dade; }
.service-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-weight: 800; }
.service-link span { transition: transform .2s ease; }
.service-card:hover .service-link span { transform: translateX(5px); }
.service-card.digital { background: linear-gradient(145deg, #121315, #27292e); }
.digital-mockup { position: absolute; inset: 12% 6% auto 34%; height: 230px; border: 8px solid #f1f2f4; border-radius: 16px 16px 6px 6px; background: #fff; box-shadow: 0 26px 80px rgba(0,0,0,.45); transform: rotate(-4deg); overflow: hidden; }
.service-card img.digital-mockup { inset: 12% 6% auto 34%; width: auto; height: 230px; object-fit: cover; }
.digital-mockup::before { content: ""; display: block; height: 24px; background: #e5e7eb; }
.digital-mockup::after { content: "SITE"; display: grid; place-items: center; height: calc(100% - 24px); color: #fff; font-size: 5rem; font-weight: 900; letter-spacing: -.12em; background: linear-gradient(135deg, #141517 0 57%, var(--brand) 57%); }

.timeline { display: grid; grid-template-columns: .85fr 1.15fr; gap: 68px; align-items: start; }
.about-photo { position: sticky; top: 120px; min-height: 590px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.72)); }
.about-photo-caption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; color: #fff; }
.about-photo-caption strong { display: block; font-size: 1.5rem; }
.about-photo-caption span { color: #d6d7da; }
.timeline-list { display: grid; gap: 0; }
.timeline-item { position: relative; padding: 0 0 44px 68px; }
.timeline-item::before { content: ""; position: absolute; left: 18px; top: 15px; bottom: -15px; width: 1px; background: var(--line); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { position: absolute; left: 0; top: 0; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-size: .75rem; font-weight: 900; box-shadow: 0 0 0 7px var(--brand-soft); }
.timeline-item h3 { margin: 0; font-size: 1.55rem; letter-spacing: -.03em; }
.timeline-item p { margin: 12px 0 0; color: var(--muted); }

.portfolio-toolbar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-btn { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #50545b; font-weight: 800; }
.filter-btn.is-active { border-color: var(--surface-dark); background: var(--surface-dark); color: #fff; }

/* Carrosséis de portfólio e visualização ampliada */
.portfolio-carousel { width: min(100%, 1120px); margin-inline: auto; overflow: hidden; border: 1px solid rgba(23,24,26,.08); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.portfolio-carousel__viewport { overflow: hidden; background: #eef0f2; }
.portfolio-carousel__track { display: flex; align-items: stretch; transform: translate3d(0,0,0); transition: transform .5s ease; touch-action: pan-y; }
.portfolio-carousel__slide { flex: 0 0 100%; min-width: 0; margin: 0; background: #fff; }
.portfolio-carousel__slide[hidden] { display: none; }
.portfolio-carousel__image-button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.portfolio-carousel__media { position: relative; display: block; width: 100%; height: clamp(400px, 42vw, 490px); background: #eef0f2; }
.portfolio-carousel__media img { position: absolute; inset: 26px; display: block; width: calc(100% - 52px); height: calc(100% - 52px); object-fit: contain; }
.portfolio-carousel--digital .portfolio-carousel__media,
.portfolio-carousel__slide--digital .portfolio-carousel__media { background: #e7e9ec; }
.portfolio-carousel__caption { min-height: 88px; display: flex; flex-wrap: wrap; gap: 7px 14px; align-content: center; padding: 20px 26px; border-top: 1px solid var(--line); background: #fff; color: var(--muted); }
.portfolio-carousel__caption strong { width: 100%; color: var(--ink); font-size: 1.05rem; }
.portfolio-carousel__caption span:not(.portfolio-carousel__number) { font-size: .88rem; }
.portfolio-carousel__number { display: grid; place-items: center; width: 34px; height: 34px; margin-right: 2px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); font-size: .78rem; font-weight: 900; }
.portfolio-carousel__number + strong { width: auto; align-self: center; }
.portfolio-carousel__footer { display: grid; grid-template-columns: 46px minmax(0,1fr) auto 46px; gap: 12px; align-items: center; padding: 14px 20px 8px; background: #fff; }
.portfolio-carousel__arrow { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font-size: 1.2rem; font-weight: 900; }
.portfolio-carousel__arrow:hover { border-color: var(--surface-dark); background: var(--surface-dark); color: #fff; }
.portfolio-carousel__dots { min-width: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1px; }
.portfolio-carousel__dot { width: 26px; height: 26px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; }
.portfolio-carousel__dot::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: #a7abb2; transition: width .2s ease, background .2s ease; }
.portfolio-carousel__dot.is-active::before { width: 20px; background: var(--brand); }
.portfolio-carousel__counter { min-width: 56px; color: var(--muted); font-size: .82rem; font-weight: 800; text-align: center; }
.portfolio-carousel__expand { display: block; margin: 4px auto 18px; padding: 9px 14px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--ink); font-weight: 800; }
.portfolio-carousel__expand:hover { color: var(--brand); }
.portfolio-secondary-heading { margin-top: 72px; }
.portfolio-carousel.is-single .portfolio-carousel__footer { display: flex; justify-content: center; }
.portfolio-carousel.is-single .portfolio-carousel__arrow,
.portfolio-carousel.is-single .portfolio-carousel__dots { display: none; }
.portfolio-carousel button:focus-visible,
.portfolio-lightbox button:focus-visible { outline: 3px solid rgba(229,59,53,.4); outline-offset: 3px; }

.portfolio-lightbox { width: min(1200px, calc(100% - 28px)); max-width: none; height: min(900px, calc(100dvh - 28px)); max-height: none; padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: transparent; box-shadow: 0 32px 100px rgba(0,0,0,.42); }
.portfolio-lightbox::backdrop { background: rgba(10,11,13,.78); backdrop-filter: blur(5px); }
.portfolio-lightbox__panel { height: 100%; display: grid; grid-template-rows: auto minmax(0,1fr) auto; background: #fff; }
.portfolio-lightbox__header { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 16px; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.portfolio-lightbox__caption { min-width: 0; margin: 0; color: var(--ink); font-weight: 800; overflow-wrap: anywhere; }
.portfolio-lightbox__counter { color: var(--muted); font-size: .84rem; font-weight: 800; }
.portfolio-lightbox__close { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font-size: 1.3rem; }
.portfolio-lightbox__media { position: relative; min-height: 0; overflow: auto; background: #e7e9ec; overscroll-behavior: contain; }
.portfolio-lightbox__image { position: absolute; inset: 22px; display: block; width: calc(100% - 44px); height: calc(100% - 44px); object-fit: contain; }
.portfolio-lightbox.is-scrollable .portfolio-lightbox__media { padding: 22px; }
.portfolio-lightbox.is-scrollable .portfolio-lightbox__image { position: static; width: min(100%, 1400px); height: auto; margin-inline: auto; }
.portfolio-lightbox__footer { display: flex; justify-content: center; gap: 14px; padding: 12px 18px; border-top: 1px solid var(--line); }
.portfolio-lightbox__footer[hidden] { display: none; }
.portfolio-lightbox__nav { min-width: 130px; min-height: 42px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-weight: 800; }
.portfolio-lightbox__nav:hover { border-color: var(--surface-dark); background: var(--surface-dark); color: #fff; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: steps; }
.process-card { min-height: 270px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.04); }
.process-card::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 56px; color: #ff8e89; font-size: .78rem; font-weight: 900; letter-spacing: .13em; }
.process-card h3 { margin: 0; font-size: 1.25rem; }
.process-card p { margin: 12px 0 0; color: #b8bbc1; font-size: .92rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { display: flex; flex-direction: column; min-height: 310px; padding: 30px; background: #fff; border: 1px solid rgba(23,24,26,.07); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.quote-mark { color: var(--brand); font-size: 3.2rem; line-height: .8; font-weight: 900; }
.testimonial blockquote { margin: 22px 0 28px; color: #3f434a; font-size: 1.05rem; }
.testimonial footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial footer strong { display: block; }
.testimonial footer span { color: var(--muted); font-size: .82rem; }

.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 56px; border-radius: var(--radius-lg); background: var(--brand); color: #fff; box-shadow: 0 24px 80px rgba(229,59,53,.24); }
.cta-panel::after { content: "FF"; position: absolute; right: -30px; bottom: -105px; color: rgba(255,255,255,.09); font-size: 18rem; line-height: 1; font-weight: 900; letter-spacing: -.13em; }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { margin: 0; font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -.05em; }
.cta-panel p { margin: 18px 0 0; color: #ffe0de; }
.cta-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px; }

.contact-intro { max-width: 650px; margin-bottom: 30px; }
.contact-intro .section-title { max-width: 650px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.contact-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--brand-soft); color: var(--brand); font-weight: 900; }
.contact-icon img { width: 26px; height: 26px; object-fit: contain; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: var(--muted); }
.contact-form { padding: 34px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .83rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: #fbfbfa; color: var(--text); padding: 13px 14px; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .78rem; }

.site-footer { background: var(--surface-dark); color: #fff; padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 50px; padding-bottom: 48px; }
.footer-brand p { max-width: 440px; color: #aeb1b7; }
.footer-title { margin: 0 0 16px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #7f838a; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #d5d7db; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); color: #8d9198; font-size: .79rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 45; width: 58px; height: 58px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 50%; background: transparent; box-shadow: 0 10px 24px rgba(9,35,25,.2); overflow: visible; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float::before, .whatsapp-float::after { content: none !important; display: none !important; background: none !important; }
.whatsapp-float img { display: block; width: 100%; height: 100%; object-fit: contain; flex-shrink: 0; transform: none; border-radius: 0; margin: 0; box-shadow: none; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }

.page-hero { position: relative; overflow: hidden; min-height: 520px; display: grid; align-items: end; background: #151618; color: #fff; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .54; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,18,20,.96), rgba(17,18,20,.35)), linear-gradient(0deg, rgba(17,18,20,.72), transparent 60%); }
.page-hero-content { position: relative; z-index: 2; padding: 110px 0 70px; max-width: 820px; }
.page-hero h1 { margin: 0; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .93; letter-spacing: -.06em; }
.page-hero p { max-width: 680px; margin: 22px 0 0; color: #d0d2d6; font-size: 1.1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { padding: 30px; background: #fff; border-radius: var(--radius-md); border: 1px solid rgba(23,24,26,.07); box-shadow: var(--shadow-sm); }
.feature-card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand); font-weight: 900; }
.feature-card h3 { margin: 22px 0 0; font-size: 1.25rem; }
.feature-card p { margin: 10px 0 0; color: var(--muted); }
.breadcrumb { margin-bottom: 22px; color: #c4c6cb; font-size: .85rem; font-weight: 700; }
.breadcrumb a { color: #fff; }

@media (max-width: 1080px) {
  :root { --header-height: 72px; }
  .portfolio-carousel__media { height: 340px; }
  .desktop-cta { display: none; }
  .menu-button { display: block; }
  .nav {
    position: fixed;
    inset: calc(38px + var(--header-height)) 0 auto;
    display: grid;
    gap: 4px;
    padding: 18px 20px 26px;
    background: rgba(246,245,243,.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .menu-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 14px; font-size: 1rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .timeline { grid-template-columns: 1fr; }
  .about-photo { position: relative; top: auto; min-height: 440px; }
  .about-photo img { min-height: 440px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial:last-child { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero::before { display: none; }
  .hero-bg { position: relative; inset: auto; order: 2; width: 100%; height: clamp(280px, 42vw, 360px); opacity: 1; object-position: 65% center; }
  .hero-inner { order: 1; min-height: 0; display: block; padding: 62px 0 56px; }
  .hero-content { max-width: 650px; }
  .hero h1 { font-size: clamp(2.8rem, 7.4vw, 4.6rem); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .section-sm { padding: 50px 0; }
  .topbar-inner { min-height: 42px; font-size: .75rem; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; }
  .hero-bg { position: relative; inset: auto; width: 100%; height: clamp(240px, 80vw, 320px); opacity: 1; object-position: 65% center; }
  .hero-inner { padding: 54px 0 48px; }
  .hero h1 { font-size: clamp(2.5rem, 11.5vw, 4rem); }
  .hero-actions .btn { width: 100%; }
  .trust-strip { margin-top: -28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 22px 18px; }
  .trust-item strong { font-size: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .section-heading { display: block; }
  .section-heading .btn { margin-top: 22px; }
  .timeline-item { padding-left: 58px; }
  .process-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial:last-child { grid-column: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 36px 28px; }
  .cta-actions { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-form { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .page-hero { min-height: 440px; }
  .feature-grid { grid-template-columns: 1fr; }
  .portfolio-carousel__media { height: clamp(300px, 84vw, 320px); }
  .portfolio-carousel__media img { inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); }
  .portfolio-carousel__caption { min-height: 82px; padding: 17px 18px; }
  .portfolio-carousel__footer { grid-template-columns: 42px minmax(0,1fr) 42px; gap: 6px; padding-inline: 12px; }
  .portfolio-carousel__counter { grid-column: 1 / -1; grid-row: 2; }
  .portfolio-carousel__expand { margin-bottom: 14px; }
  .portfolio-lightbox__header { grid-template-columns: minmax(0,1fr) auto; gap: 10px; padding: 10px 12px; }
  .portfolio-lightbox__counter { grid-column: 1; grid-row: 2; }
  .portfolio-lightbox__close { grid-column: 2; grid-row: 1 / 3; }
  .portfolio-lightbox__image { inset: 10px; width: calc(100% - 20px); height: calc(100% - 20px); }
  .portfolio-lightbox.is-scrollable .portfolio-lightbox__media { padding: 10px; }
  .portfolio-lightbox__footer { gap: 8px; padding: 10px; }
  .portfolio-lightbox__nav { min-width: 0; flex: 1; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; padding: 0; }
  .whatsapp-float img { width: 100%; height: 100%; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service-card-content { padding: 26px; }
  .brand-copy strong { font-size: .88rem; }
}

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


/* Soluções digitais */
.digital-mockup.landing::after { content: "SITE"; font-size: 3.8rem; }
.digital-mockup.system::after { content: "SISTEMA"; font-size: 2.35rem; background: linear-gradient(135deg, #141517 0 48%, var(--brand) 48%); }
.digital-systems .digital-mockup { transform: rotate(4deg); }
.digital-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.digital-checks { display: grid; gap: 12px; margin-top: 30px; }
.digital-checks span { position: relative; padding: 15px 18px 15px 48px; border: 1px solid var(--line); border-radius: 14px; background: var(--color-surface-elevated); font-weight: 750; }
.digital-checks span::before { content: "✓"; position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-size: .78rem; font-weight: 900; }
@media (max-width: 1080px) { .digital-split { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .brand-logo { width: 46px; height: 46px; } }

/* Sistema visual escuro da prévia. As regras específicas do hero aprovado começam abaixo. */
body {
  background:
    radial-gradient(circle at 12% 28%, rgba(239,46,42,.055), transparent 28rem),
    var(--color-bg-primary);
}
.section {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.035);
}
.section:nth-of-type(even):not(.section-dark):not(.section-white) {
  background: linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}
.brand-copy strong { color: var(--color-text-primary); }
.topbar { border-bottom: 1px solid rgba(255,255,255,.08); background: #030405; }
.topbar a { color: #ff817d; }
.menu-button { border-color: var(--color-border); color: #fff; }
.menu-button span, .menu-button::before, .menu-button::after { background: #fff; }
.service-card {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.service-card::after {
  background: linear-gradient(180deg, rgba(0,0,0,.04) 18%, rgba(0,0,0,.94) 100%);
}
.timeline-item::before { background: rgba(255,255,255,.15); }
.about-photo { border: 1px solid var(--color-border); }
.filter-btn {
  border-color: var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-secondary);
}
.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--color-brand-red);
  background: var(--color-brand-red);
  color: #fff;
}
.portfolio-carousel {
  border-color: var(--color-border);
  background: var(--color-surface);
}
.portfolio-carousel__viewport,
.portfolio-carousel__media,
.portfolio-carousel--digital .portfolio-carousel__media,
.portfolio-carousel__slide--digital .portfolio-carousel__media {
  background: #0c0f11;
}
.portfolio-carousel__slide,
.portfolio-carousel__caption,
.portfolio-carousel__footer {
  background: var(--color-surface);
}
.portfolio-carousel__caption { border-top-color: var(--color-border); }
.portfolio-carousel__arrow,
.portfolio-lightbox__close,
.portfolio-lightbox__nav {
  border-color: var(--color-border);
  background: var(--color-surface-elevated);
  color: var(--color-text-primary);
}
.portfolio-carousel__arrow:hover,
.portfolio-lightbox__nav:hover {
  border-color: var(--color-brand-red);
  background: var(--color-brand-red);
}
.portfolio-carousel__dot::before { background: #59616a; }
.portfolio-lightbox__panel { background: var(--color-surface); }
.portfolio-lightbox__header,
.portfolio-lightbox__footer { border-color: var(--color-border); }
.portfolio-lightbox__media { background: #07090a; }
.process-card {
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border-color: var(--color-border);
  box-shadow: inset 0 1px rgba(255,255,255,.03);
}
.testimonial {
  min-height: 320px;
  border-color: var(--color-border);
  background: linear-gradient(145deg, var(--color-surface-elevated), var(--color-surface));
  box-shadow: var(--shadow-card);
}
.testimonial blockquote { color: #d9dde1; }
.testimonial footer { border-top-color: var(--color-border); }
.cta-panel {
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(135deg, #b91616, var(--color-brand-red));
}
.contact-item {
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-elevated);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
a.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(239,46,42,.65);
  background: #1b2024;
}
.contact-icon { background: var(--brand-soft); }
.contact-item span, .contact-item a { color: var(--color-text-secondary); }
a.contact-item[href^="https://wa.me/"]::before { display: none; }
.contact-icon--gmail img { width: 30px; height: 30px; }
.contact-socials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.contact-social-card {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-elevated);
  color: var(--color-text-primary);
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.contact-social-card img { width: 32px; height: 32px; object-fit: contain; flex: 0 0 auto; }
.contact-social-card:hover { transform: translateY(-2px); border-color: rgba(239,46,42,.65); background: #1b2024; }
.contact-form {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-elevated);
}
.field input, .field select, .field textarea {
  border-color: var(--color-border);
  background: #0b0e10;
  color: var(--color-text-primary);
}
.field input::placeholder, .field textarea::placeholder { color: #7f8790; }
.field select option { background: #0b0e10; color: #fff; }
.contact-map {
  width: 100%;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  filter: grayscale(.82) invert(.88) contrast(.9);
}
.contact-map__footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 14px 16px;
}
.contact-map__footer p { margin: 0; color: var(--color-text-secondary); }
.contact-map__footer a { color: #fff; font-weight: 800; }
.contact-map__footer a:hover { color: var(--color-brand-red); }
.site-footer {
  border-top: 1px solid var(--color-border);
  background: #040607;
}
.footer-grid { grid-template-columns: 1.25fr .62fr .75fr .9fr; }
.footer-contact { display: grid; gap: 10px; }
.footer-contact a, .footer-contact span { color: #d5d7db; overflow-wrap: anywhere; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.footer-social a:hover { border-color: var(--color-brand-red); transform: translateY(-2px); }
.footer-social img { width: 24px; height: 24px; object-fit: contain; }
.page-hero { border-bottom: 1px solid var(--color-border); background: #050708; }
.page-hero img { opacity: .48; filter: saturate(.78) contrast(1.08); }
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(4,6,7,.98), rgba(4,6,7,.48) 64%, rgba(4,6,7,.78)),
    linear-gradient(0deg, rgba(4,6,7,.94), transparent 66%);
}
.feature-card {
  border-color: var(--color-border);
  background: linear-gradient(145deg, var(--color-surface-elevated), var(--color-surface));
  box-shadow: var(--shadow-card);
}
.feature-card .icon { background: var(--brand-soft); }
.error-page {
  min-height: 100svh;
  background: radial-gradient(circle at 50% 35%, rgba(239,46,42,.12), transparent 28rem), #07090a;
}
.error-page main { min-height: 100svh; display: grid; place-items: center; }
.error-card {
  width: min(760px, calc(100% - 32px));
  padding: clamp(36px, 7vw, 76px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(17,21,24,.9);
  box-shadow: var(--shadow-elevated);
  text-align: center;
}
.error-card .brand-logo { width: 76px; height: 76px; margin: 0 auto 26px; }
.error-card .section-lead { margin-inline: auto; }
.error-card .hero-actions { justify-content: center; }

@media (max-width: 1080px) {
  .nav {
    background: rgba(7,9,10,.98);
    border-bottom-color: var(--color-border);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .contact-map__footer { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 340px) { .contact-socials { grid-template-columns: 1fr; } }

/* Página inicial: abertura escura com a fotografia institucional enviada. */
.home-page .topbar { display: none; }
.home-page .topbar a { color: #fff; }
.home-page .site-header { background: rgba(2,4,5,.96); border-bottom-color: rgba(255,255,255,.1); }
.home-page .header-inner, .home-page .hero-inner, .home-page .trust-grid { width: min(1480px, calc(100% - 64px)); }
.home-page .brand-copy strong { color: #fff; }
.home-page .brand-copy small { color: rgba(255,255,255,.62); }
.home-page .site-header .brand { padding-right: 34px; border-right: 1px solid rgba(255,255,255,.28); }
.home-page .nav a { color: rgba(255,255,255,.78); }
.home-page .nav a:hover, .home-page .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.08); }
.home-page .nav a:first-child { position: relative; color: #ef2e2a; background: transparent; }
.home-page .nav a:first-child::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -19px; height: 2px; background: #ef2e2a; }
.home-page .desktop-cta { background: #08a91c; box-shadow: 0 12px 28px rgba(8,169,28,.26); }
.home-page .desktop-cta:hover { background: #078c18; }

.home-page .hero { min-height: clamp(720px, calc(100svh - var(--header-height)), 850px); background: #020405; }
.home-page .hero::before { display: block; inset: 0; width: auto; background: linear-gradient(90deg, #020405 0%, rgba(2,4,5,.98) 24%, rgba(2,4,5,.76) 40%, rgba(2,4,5,.24) 58%, rgba(2,4,5,.08) 78%, rgba(2,4,5,.32) 100%), linear-gradient(0deg, rgba(2,4,5,.82), transparent 42%); }
.home-page .hero-bg { inset: 0 auto 0 50%; width: auto; max-width: none; height: 100%; opacity: 1; object-fit: contain; object-position: center; transform: translateX(-50%); filter: saturate(.9) contrast(1.04); -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 7%, #000 20%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.28) 7%, #000 20%); }
.home-page .hero-inner { grid-template-columns: minmax(0, 640px) minmax(0, 1fr); gap: 40px; min-height: inherit; padding: 48px 0 130px; }
.home-page .hero-content { max-width: 640px; }
.home-page .hero h1 { max-width: 640px; color: #fff; font-size: clamp(3.2rem, 4.55vw, 5.15rem); line-height: .9; letter-spacing: -.06em; }
.home-page .hero h1 .hero-heading-line { display: block; color: #fff; }
.home-page .hero h1 .hero-heading-accent { color: #ef2e2a; }
.home-page .hero-text { max-width: 590px; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.home-page .hero-actions .btn-primary { background: #08a91c; box-shadow: 0 14px 30px rgba(8,169,28,.28); }
.home-page .hero-actions .btn-primary:hover { background: #078c18; }
.home-page .hero-actions .btn-light { border-color: rgba(255,255,255,.4); background: rgba(2,4,5,.2); color: #fff; }
.home-page .hero-note { color: rgba(255,255,255,.82); }
.home-page .hero-note-badge { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; box-shadow: none; }
.home-page .hero-services { grid-column: 2; align-self: center; justify-self: end; width: min(100%, 300px); display: grid; gap: 14px; }
.home-page .hero-service-card, .home-page .hero-service-note { position: relative; display: grid; grid-template-columns: 54px minmax(0,1fr) 24px; gap: 14px; align-items: center; min-height: 104px; padding: 18px 16px; border: 1px solid rgba(255,255,255,.26); border-radius: 17px; background: linear-gradient(135deg, rgba(7,10,11,.88), rgba(7,10,11,.72)); color: #fff; box-shadow: 0 18px 44px rgba(0,0,0,.28); backdrop-filter: blur(8px); }
.home-page .hero-service-card:hover { border-color: rgba(239,46,42,.7); background: rgba(8,10,11,.92); transform: translateX(-4px); }
.home-page .hero-service-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #ef2e2a; }
.home-page .hero-service-icon svg, .home-page .hero-service-shield svg, .home-page .trust-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.home-page .hero-service-card strong, .home-page .hero-service-note strong { display: block; font-size: 1rem; line-height: 1.2; }
.home-page .hero-service-card small, .home-page .hero-service-note small { display: block; margin-top: 7px; color: rgba(255,255,255,.67); font-size: .76rem; line-height: 1.45; }
.home-page .hero-service-check { align-self: start; width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid #16c33a; border-radius: 50%; color: #27df4a; font-size: .75rem; font-weight: 900; }
.home-page .hero-service-note { grid-template-columns: 38px 1fr; min-height: 72px; padding-block: 14px; border-color: rgba(255,255,255,.14); }
.home-page .hero-service-shield { width: 34px; height: 34px; color: #27df4a; }
.home-page .trust-strip { z-index: 4; margin-top: -150px; }
.home-page .trust-grid { border-color: rgba(255,255,255,.17); background: rgba(4,6,7,.93); box-shadow: 0 24px 70px rgba(0,0,0,.42); }
.home-page .trust-item { display: grid; grid-template-columns: 68px 1fr; gap: 16px; align-items: center; min-height: 142px; padding: 24px; border-right-color: rgba(255,255,255,.14); }
.home-page .trust-icon { width: 62px; height: 62px; display: grid; place-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #ef2e2a; }
.home-page .trust-item strong { display: block; color: #fff; font-size: 1.13rem; }
.home-page .trust-item span span { display: block; margin-top: 7px; color: rgba(255,255,255,.63); font-size: .79rem; line-height: 1.45; }

@media (max-width: 1080px) {
  .home-page .nav { inset: var(--header-height) 0 auto; background: rgba(2,4,5,.98); border-bottom-color: rgba(255,255,255,.12); }
  .home-page .menu-button { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
  .home-page .menu-button span, .home-page .menu-button::before, .home-page .menu-button::after { background: #fff; }
  .home-page .hero-inner { grid-template-columns: minmax(0, 1fr) 280px; gap: 26px; }
  .home-page .hero-service-card { min-height: 96px; }
  .home-page .trust-item { grid-template-columns: 58px 1fr; }
  .home-page .trust-icon { width: 54px; height: 54px; padding: 13px; }
}

@media (max-width: 900px) {
  .home-page .header-inner, .home-page .hero-inner, .home-page .trust-grid { width: min(100% - 40px, 1480px); }
  .home-page .hero { display: grid; min-height: 980px; }
  .home-page .hero::before { display: block; }
  .home-page .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; order: initial; opacity: 1; transform: none; }
  .home-page .hero-inner { display: grid; grid-template-columns: 1fr; gap: 44px; order: initial; min-height: inherit; padding: 68px 0 130px; }
  .home-page .hero-services { grid-column: 1; align-self: end; justify-self: stretch; width: 100%; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .home-page .hero-service-card { grid-template-columns: 42px 1fr 20px; min-height: 112px; padding: 15px 13px; }
  .home-page .hero-service-icon { width: 38px; height: 38px; }
  .home-page .hero-service-note { grid-column: 1 / -1; min-height: 64px; }
}

@media (max-width: 720px) {
  .home-page .header-inner, .home-page .hero-inner, .home-page .trust-grid { width: min(100% - 28px, 1480px); }
  .home-page .hero { min-height: 1260px; }
  .home-page .hero::before { background: linear-gradient(90deg, rgba(2,4,5,.96), rgba(2,4,5,.72)), linear-gradient(0deg, rgba(2,4,5,.82), rgba(2,4,5,.35)); }
  .home-page .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; transform: none; }
  .home-page .hero-inner { display: grid; min-height: inherit; padding: 58px 0 126px; }
  .home-page .hero h1 { font-size: clamp(2.8rem, 12vw, 4.15rem); }
  .home-page .hero-text { margin-top: 22px; }
  .home-page .hero-services { grid-template-columns: 1fr; gap: 10px; }
  .home-page .hero-service-card { min-height: 90px; }
  .home-page .hero-service-note { grid-column: auto; }
  .home-page .trust-strip { margin-top: -58px; }
  .home-page .trust-grid { background: rgba(4,6,7,.96); }
  .home-page .trust-item { grid-template-columns: 54px 1fr; min-height: 118px; border-right-color: rgba(255,255,255,.14); border-bottom-color: rgba(255,255,255,.14); }
  .home-page .trust-icon { width: 50px; height: 50px; padding: 12px; }
}
