@import "tailwindcss";

:root {
  --navy-950: #061726;
  --navy-900: #08243a;
  --navy-800: #0c3653;
  --ink: #10283b;
  --muted: #5f7080;
  --line: #d8e2e9;
  --ice: #f4f8fb;
  --white: #ffffff;
  --violet: #9a2ff5;
  --purple: #af3dee;
  --magenta: #e66ffe;
  --whatsapp: #25a943;
  --whatsapp-dark: #168633;
  --container: 1180px;
  --scroll-progress: 0;
  --hero-shift: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.scroll-progress { position: fixed; z-index: 100; top: 0; left: 0; width: calc(var(--scroll-progress) * 100%); height: 3px; pointer-events: none; background: linear-gradient(90deg,var(--violet),var(--magenta)); box-shadow: 0 0 18px rgba(230,111,254,.65); }

.topbar { background: var(--navy-950); color: #dbe8f0; font-size: 12px; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; gap: 28px; }
.topbar-inner span { margin-left: auto; color: #95aabc; }
.topbar a:hover { color: var(--magenta); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(6,23,38,.08); backdrop-filter: blur(14px); transition: box-shadow .35s ease, background .35s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.985); box-shadow: 0 14px 34px rgba(6,23,38,.1); }
.header-inner { height: 78px; display: flex; align-items: center; gap: 32px; transition: height .35s ease; }
.site-header.is-scrolled .header-inner { height: 68px; }
.brand { width: 260px; }
.brand img { width: 100%; height: 48px; object-fit: contain; object-position: left center; filter: brightness(1.16) saturate(1.1); }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.desktop-nav a { position: relative; padding: 30px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: linear-gradient(90deg,var(--violet),var(--magenta)); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { position: relative; overflow: hidden; background: var(--whatsapp); color: white; padding: 13px 17px; border-radius: 3px; font-size: 12px; font-weight: 800; text-transform: uppercase; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.header-cta::after, .button-whatsapp::after { content: ""; position: absolute; top: -120%; left: -45%; width: 34%; height: 340%; background: rgba(255,255,255,.28); transform: rotate(24deg); transition: left .65s ease; }
.header-cta:hover { transform: translateY(-2px); background: var(--whatsapp-dark); box-shadow: 0 12px 26px rgba(22,134,51,.25); }
.header-cta:hover::after, .button-whatsapp:hover::after { left: 125%; }
.mobile-menu { display: none; margin-left: auto; position: relative; }

.hero { position: relative; min-height: 690px; display: flex; align-items: stretch; overflow: hidden; background: var(--navy-950); color: white; isolation: isolate; }
.hero-image { position: absolute; inset: -6%; background-image: url("/hero-industrial.webp"); background-position: center; background-size: cover; transform: translate3d(0,var(--hero-shift),0) scale(1.06); animation: hero-breathe 16s ease-in-out infinite alternate; will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,17,29,.995) 0%, rgba(6,23,38,.94) 42%, rgba(6,23,38,.52) 69%, rgba(6,23,38,.12) 100%), linear-gradient(0deg,rgba(4,17,29,.38),transparent 42%); }
.hero-grid-lines { position: absolute; z-index: 1; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.09) 1px,transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(90deg,#000 0%,rgba(0,0,0,.82) 55%,transparent 88%); }
.hero-grid { position: relative; z-index: 2; display: grid; align-items: center; min-height: 690px; }
.hero-copy { max-width: 720px; padding: 74px 0 64px; }
.eyebrow, .kicker { margin: 0 0 16px; color: var(--magenta); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero-title { max-width: 790px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(49px, 5.4vw, 84px); font-weight: 600; line-height: .94; letter-spacing: -.052em; text-wrap: balance; }
.hero-title span { display: block; color: var(--magenta); }
.hero-lead { max-width: 610px; margin: 28px 0 0; font-size: 22px; line-height: 1.45; font-weight: 700; }
.hero-sub { max-width: 600px; margin: 17px 0 0; color: #d8e2e8; font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { position: relative; overflow: hidden; display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 22px; border-radius: 3px; font-size: 12px; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-whatsapp { background: var(--whatsapp); color: white; box-shadow: 0 14px 30px rgba(22,134,51,.2); }
.button-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 18px 36px rgba(22,134,51,.32); }
.button-secondary { border: 1px solid rgba(255,255,255,.68); color: white; background: rgba(5,20,33,.28); }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.microcopy { margin: 12px 0 0; color: #aebdca; font-size: 12px; }
.hero-side-note { position: absolute; right: 6px; bottom: 60px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.hero-side-note i { display: block; width: 72px; height: 1px; background: linear-gradient(90deg,var(--magenta),rgba(255,255,255,.25)); }

.trust-strip { background: var(--navy-900); color: white; border-top: 1px solid rgba(230,111,254,.24); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 25px 26px; border-left: 1px solid rgba(255,255,255,.1); }
.trust-grid div:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 7px; color: var(--magenta); font-size: 15px; }
.trust-grid span { color: #b8c8d4; font-size: 12px; line-height: 1.4; }

.manifesto-section { position: relative; overflow: hidden; padding: 104px 0 112px; background: white; }
.manifesto-section::after { content: "ALINÁH"; position: absolute; right: -22px; bottom: -44px; color: rgba(8,36,58,.035); font-family: Georgia,"Times New Roman",serif; font-size: clamp(110px,18vw,265px); font-weight: 700; letter-spacing: -.08em; line-height: .7; pointer-events: none; }
.manifesto-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 68px; align-items: start; }
.manifesto-index { padding-top: 15px; color: var(--purple); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.manifesto-inner h2 { max-width: 900px; margin: 0; color: var(--navy-950); font-family: Georgia,"Times New Roman",serif; font-size: clamp(40px,5.1vw,72px); font-weight: 500; line-height: 1.03; letter-spacing: -.045em; }
.manifesto-inner h2 em { display: block; margin-top: 8px; color: var(--purple); font-style: italic; font-weight: 500; }

.section { padding: 105px 0; }
.section-heading { margin-bottom: 50px; }
.section-heading h2 { margin: 0; max-width: 700px; font-size: clamp(34px,4vw,55px); line-height: 1.05; letter-spacing: -.035em; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.pain-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pain-card { position: relative; min-height: 250px; overflow: hidden; padding: 32px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: transform .35s ease, background .35s ease, box-shadow .35s ease; }
.pain-card:last-child { border-right: 0; }
.pain-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--violet),var(--magenta)); transform: scaleY(0); transform-origin: bottom; transition: transform .35s ease; }
.pain-card > span { position: absolute; right: 15px; top: 2px; color: rgba(175,61,238,.09); font-family: Georgia,"Times New Roman",serif; font-size: 86px; font-weight: 700; line-height: 1; letter-spacing: -.06em; }
.pain-card h3 { position: relative; margin: 92px 0 12px; font-size: 21px; }
.pain-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.pain-card:hover { z-index: 2; transform: translateY(-8px); background: #fbf7ff; box-shadow: 0 24px 50px rgba(8,36,58,.11); }
.pain-card:hover::before { transform: scaleY(1); }

.navy-section { color: white; background: radial-gradient(circle at 80% 15%, rgba(154,47,245,.2), transparent 24%), var(--navy-950); }
.centered { text-align: center; }
.centered h2 { margin-inline: auto; }
.light-heading h2 { color: white; }
.mechanism-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.13); }
.mechanism-grid article { min-height: 310px; padding: 38px; border-right: 1px solid rgba(255,255,255,.13); transition: background .35s ease, transform .35s ease; }
.mechanism-grid article:last-child { border-right: 0; }
.step { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1px solid var(--magenta); border-radius: 50%; color: var(--magenta); font-weight: 900; }
.mechanism-grid h3 { margin: 42px 0 15px; font-size: 24px; line-height: 1.2; }
.mechanism-grid p { margin: 0; color: #b8c8d4; line-height: 1.7; }
.mechanism-grid article:hover { background: rgba(255,255,255,.045); transform: translateY(-6px); }

.service-preview { background: var(--ice); }
.service-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 245px; gap: 14px; }
.service-card { position: relative; grid-column: span 6; min-height: 245px; overflow: hidden; color: white; background: var(--navy-950); box-shadow: 0 18px 50px rgba(8,36,58,.08); isolation: isolate; }
.service-card:first-child { grid-column: span 7; grid-row: span 2; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-image { position: absolute; inset: 0; overflow: hidden; background: #17334a; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(6,23,38,.06) 12%,rgba(6,23,38,.94) 100%); }
.service-image img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .45s ease; }
.service-card:hover .service-image img { transform: scale(1.08); opacity: .92; }
.service-content { position: absolute; z-index: 2; inset: auto 0 0; padding: 28px; transform: translateY(52px); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.service-card:first-child .service-content { padding: 38px; }
.service-content h3 { max-width: 430px; margin: 0 0 10px; font-family: Georgia,"Times New Roman",serif; font-size: 25px; font-weight: 600; line-height: 1.08; }
.service-card:first-child .service-content h3 { font-size: clamp(34px,4vw,54px); }
.service-content p { max-width: 500px; margin: 0; color: #d5e0e7; font-size: 13px; line-height: 1.6; opacity: 0; transition: opacity .35s ease; }
.service-content a { display: inline-block; margin-top: 17px; color: var(--magenta); font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; opacity: 0; transition: opacity .35s ease, color .25s ease; }
.service-card:hover .service-content { transform: translateY(0); }
.service-card:hover .service-content p, .service-card:hover .service-content a { opacity: 1; }
.service-content a:hover { color: white; }

.permution-band { padding: 48px 0; color: white; background: linear-gradient(100deg,var(--navy-950),var(--navy-800)); }
.permution-inner { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 50px; align-items: center; }
.permution-inner h2 { margin: 0; font-size: 30px; }
.permution-inner p { margin: 0; color: #c6d4de; line-height: 1.7; }
.button-outline-light { border: 1px solid rgba(255,255,255,.7); color: white; }

.benefits-section { background: white; }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-item { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 18px; min-height: 180px; padding: 28px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease, color .3s ease; }
.benefit-item::after { content: ""; position: absolute; right: -25px; bottom: -45px; width: 100px; height: 100px; border: 1px solid rgba(175,61,238,.25); border-radius: 50%; transform: scale(.4); opacity: 0; transition: transform .45s ease, opacity .35s ease; }
.benefit-item > span { color: var(--purple); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.benefit-item h3 { margin: 0 0 11px; font-size: 20px; }
.benefit-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.benefit-item:hover { background: #faf7fe; }
.benefit-item:hover::after { transform: scale(1); opacity: 1; }

.industries-section { color: white; background: var(--navy-900); }
.industries-section .split-heading > p { color: #c5d1da; }
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.industry-card { position: relative; min-height: 390px; overflow: hidden; background: var(--navy-950); }
.industry-card:nth-child(even) { transform: translateY(28px); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; opacity: .62; transition: transform .4s ease, opacity .4s ease; }
.industry-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 28%,rgba(6,23,38,.98)); }
.industry-card > div { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px; }
.industry-card h3 { margin: 0 0 9px; font-size: 21px; }
.industry-card p { margin: 0; color: #c4d0d9; font-size: 13px; line-height: 1.55; }
.industry-card:hover img { transform: scale(1.05); opacity: .8; }

.about-section { background: var(--ice); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.about-photo { position: relative; min-height: 530px; }
.about-photo > img { width: 100%; height: 530px; object-fit: cover; filter: saturate(.78) contrast(1.06); }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(6,23,38,.05),rgba(175,61,238,.14)); pointer-events: none; }
.about-photo::before { content: ""; position: absolute; z-index: 2; inset: -12px 30px 30px -12px; border: 1px solid rgba(175,61,238,.55); pointer-events: none; }
.about-seal { position: absolute; z-index: 3; right: -28px; bottom: 34px; width: 220px; padding: 24px; color: white; background: linear-gradient(135deg,var(--violet),#6917ac); box-shadow: 0 20px 45px rgba(70,16,111,.24); animation: seal-float 5s ease-in-out infinite; }
.about-seal strong, .about-seal span { display: block; }
.about-seal strong { font-size: 17px; margin-bottom: 8px; }
.about-seal span { font-size: 12px; line-height: 1.4; }
.about-copy h2, .offer-intro h2, .objections-intro h2, .faq-intro h2 { margin: 0 0 24px; font-size: clamp(35px,4vw,55px); line-height: 1.06; letter-spacing: -.035em; }
.about-copy > p:not(.kicker), .offer-intro > p:not(.kicker), .objections-intro > p:not(.kicker), .faq-intro > p:not(.kicker) { color: var(--muted); font-size: 16px; line-height: 1.75; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--purple); }

.offer-section { background: white; }
.offer-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.offer-intro { position: sticky; top: 135px; }
.offer-intro .button { width: auto; margin-top: 18px; }
.scope-list { border-top: 1px solid var(--line); }
.scope-list article { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.scope-list article > span { color: var(--purple); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.scope-list h3 { margin: 0 0 8px; font-size: 19px; }
.scope-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.commitment-section { color: white; background: radial-gradient(circle at 50% 0,rgba(175,61,238,.18),transparent 34%),var(--navy-950); }
.commitment-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.13); }
.commitment-grid article { min-height: 265px; padding: 34px; border-right: 1px solid rgba(255,255,255,.13); }
.commitment-grid article:last-child { border-right: 0; }
.commitment-grid span { color: var(--magenta); font-size: 13px; font-weight: 900; letter-spacing: .1em; }
.commitment-grid h3 { margin: 38px 0 12px; font-size: 22px; line-height: 1.2; }
.commitment-grid p { margin: 0; color: #b7c7d3; font-size: 14px; line-height: 1.65; }

.objections-section { background: var(--ice); }
.objections-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.objection-list, .faq-list { border-top: 1px solid var(--line); }
.objection-list details, .faq-list details { border-bottom: 1px solid var(--line); background: transparent; }
.objection-list summary, .faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 24px 44px 24px 0; color: var(--ink); font-weight: 800; line-height: 1.35; }
.objection-list summary::after, .faq-list summary::after { content: "+"; position: absolute; right: 5px; top: 19px; color: var(--purple); font-size: 24px; font-weight: 400; }
.objection-list details[open] summary::after, .faq-list details[open] summary::after { content: "–"; }
.objection-list details p, .faq-list details p { margin: -5px 50px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.objection-list details, .faq-list details { transition: padding .25s ease, background .25s ease; }
.objection-list details[open], .faq-list details[open] { padding-left: 18px; background: rgba(175,61,238,.045); }

.urgency-section { padding: 72px 0; color: white; background: linear-gradient(105deg,var(--navy-900),#32104f); }
.urgency-inner { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.urgency-inner h2 { max-width: 780px; margin: 0 0 15px; font-size: clamp(35px,4vw,52px); line-height: 1.04; letter-spacing: -.03em; }
.urgency-inner p:not(.kicker) { max-width: 760px; margin: 0; color: #d0dbe2; line-height: 1.7; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }

.final-cta { padding: 110px 0; color: white; text-align: center; background: linear-gradient(rgba(6,23,38,.88),rgba(6,23,38,.94)),url("/hero-industrial.webp") center/cover; }
.final-cta-inner { max-width: 900px; }
.final-cta h2 { margin: 0 auto 22px; font-size: clamp(40px,5vw,65px); line-height: 1.02; letter-spacing: -.04em; }
.final-cta p:not(.kicker) { max-width: 700px; margin: 0 auto; color: #d3dee5; font-size: 17px; line-height: 1.7; }
.final-cta .button { width: auto; margin-top: 30px; }
.final-cta span { display: block; margin-top: 14px; color: #acbdc8; font-size: 12px; }

.site-footer { padding: 65px 0 18px; color: #bdcad4; background: #04111d; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 65px; align-items: start; text-align: center; }
.footer-brand img { width: 290px; height: 52px; object-fit: contain; object-position: center; margin: 0 auto 20px; filter: brightness(1.18) saturate(1.08); }
.footer-grid strong { display: block; margin-bottom: 18px; color: white; font-size: 14px; text-transform: uppercase; }
.footer-grid a, .footer-grid p { display: block; margin: 0 0 10px; font-size: 13px; line-height: 1.65; }
.footer-bottom { margin-top: 45px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); font-size: 11px; text-align: center; }

.floating-whatsapp { position: fixed; z-index: 60; right: 20px; bottom: 20px; display: flex; align-items: center; justify-content: center; min-width: 108px; height: 48px; padding: 0 17px; border-radius: 999px; background: var(--whatsapp); color: white; box-shadow: 0 14px 35px rgba(0,0,0,.25); font-size: 12px; font-weight: 900; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; animation: whatsapp-pulse 3.8s ease-in-out infinite; }
.floating-whatsapp:hover { transform: translateY(-3px); background: var(--whatsapp-dark); box-shadow: 0 20px 45px rgba(0,0,0,.28); animation-play-state: paused; }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }
.motion-ready [data-reveal-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1); }
.motion-ready [data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }
.motion-ready [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: .08s; }
.motion-ready [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: .16s; }
.motion-ready [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: .24s; }
.motion-ready [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: .32s; }
.motion-ready [data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: .4s; }
.motion-ready [data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: .48s; }
.motion-ready [data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: .56s; }

@keyframes hero-breathe {
  from { transform: translate3d(0,var(--hero-shift),0) scale(1.06); }
  to { transform: translate3d(-1.2%,calc(var(--hero-shift) - 6px),0) scale(1.1); }
}
@keyframes seal-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes whatsapp-pulse { 0%,72%,100% { box-shadow: 0 14px 35px rgba(0,0,0,.25); } 82% { box-shadow: 0 14px 35px rgba(0,0,0,.25),0 0 0 10px rgba(37,169,67,.12); } }

@media (max-width: 980px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu summary { list-style: none; cursor: pointer; padding: 10px 13px; border: 1px solid var(--line); border-radius: 5px; font-size: 13px; font-weight: 800; }
  .mobile-menu nav { position: absolute; right: 0; top: 48px; width: 250px; padding: 10px; background: white; box-shadow: 0 18px 45px rgba(6,23,38,.16); }
  .mobile-menu nav a { display: block; padding: 13px; border-bottom: 1px solid var(--line); font-size: 13px; }
  .hero-image { left: 18%; }
  .hero-side-note { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .pain-grid, .industries-grid { grid-template-columns: repeat(2,1fr); }
  .manifesto-inner { grid-template-columns: 160px minmax(0,1fr); gap: 35px; }
  .service-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 350px; }
  .service-card, .service-card:first-child, .service-card:nth-child(2), .service-card:nth-child(3) { grid-column: auto; grid-row: auto; min-height: 350px; }
  .service-card:first-child { grid-column: 1/-1; min-height: 460px; }
  .service-content { transform: none; }
  .service-content p, .service-content a { opacity: 1; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .pain-card:nth-child(2) { border-right: 0; }
  .pain-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .mechanism-grid { grid-template-columns: 1fr; }
  .mechanism-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .mechanism-grid article:last-child { border-bottom: 0; }
  .permution-inner { grid-template-columns: 1fr 1.4fr; }
  .permution-inner .button { grid-column: 1/-1; justify-self: start; }
  .about-grid { gap: 45px; }
  .about-seal { right: 15px; }
  .offer-grid, .objections-grid, .faq-grid { gap: 50px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .commitment-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .commitment-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { min-height: 38px; justify-content: center; gap: 14px; }
  .topbar-inner a:nth-child(2), .topbar-inner span { display: none; }
  .header-inner, .site-header.is-scrolled .header-inner { height: 74px; gap: 14px; }
  .brand { width: min(212px, calc(100vw - 104px)); }
  .brand img { height: 46px; filter: brightness(1.22) saturate(1.12); }
  .mobile-menu summary { display: flex; min-width: 58px; min-height: 42px; align-items: center; justify-content: center; padding: 0 12px; background: #fff; }
  .mobile-menu nav { top: 52px; width: min(278px, calc(100vw - 28px)); border: 1px solid var(--line); border-radius: 4px; }
  .mobile-menu nav a { min-height: 46px; display: flex; align-items: center; }
  .hero, .hero-grid { min-height: 660px; }
  .hero-image { inset: 0; opacity: .6; }
  .hero-shade { background: linear-gradient(180deg, rgba(6,23,38,.9), rgba(6,23,38,.98)); }
  .hero-copy { padding: 54px 0 62px; }
  .hero-title { font-size: clamp(40px, 12.2vw, 48px); line-height: .98; }
  .hero-lead { font-size: 19px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .button { width: 100%; min-height: 54px; text-align: center; padding-inline: 14px; line-height: 1.25; }
  .trust-grid, .pain-grid, .service-grid, .split-heading, .footer-grid, .benefits-grid, .industries-grid, .about-grid, .offer-grid, .objections-grid, .faq-grid { grid-template-columns: 1fr; }
  .manifesto-section { padding: 72px 0 78px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 25px; }
  .manifesto-index { padding-top: 0; }
  .manifesto-inner h2 { font-size: 42px; }
  .trust-grid div, .trust-grid div:last-child { border: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
  .section { padding: 68px 0; }
  .split-heading { gap: 20px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: 38px; }
  .pain-card, .pain-card:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .pain-card:last-child { border-bottom: 0; }
  .service-grid { grid-auto-rows: auto; }
  .service-card, .service-card:first-child { grid-column: auto; min-height: 390px; }
  .service-card:first-child .service-content { padding: 28px; }
  .service-card:first-child .service-content h3 { font-size: 34px; }
  .industry-card { min-height: 330px; }
  .industry-card:nth-child(even) { transform: none; }
  .permution-inner { grid-template-columns: 1fr; gap: 22px; }
  .permution-inner .button { grid-column: auto; }
  .about-grid { gap: 42px; }
  .about-photo, .about-photo > img { min-height: 390px; height: 390px; }
  .about-seal { right: 0; bottom: 18px; width: 200px; }
  .check-list { grid-template-columns: 1fr; }
  .offer-intro { position: static; }
  .scope-list { margin-top: 20px; }
  .urgency-inner { grid-template-columns: 1fr; gap: 30px; }
  .urgency-inner .button, .final-cta .button, .offer-intro .button { width: 100%; }
  .objection-list, .faq-list { margin-top: 12px; }
  .final-cta { padding: 80px 0; }
  .site-footer { padding: 52px 0 20px; }
  .footer-grid { gap: 32px; justify-items: center; text-align: center; }
  .footer-brand { max-width: 320px; }
  .footer-brand img { width: min(250px, 76vw); height: auto; margin: 0 auto 18px; object-position: center; }
  .footer-grid strong { margin-bottom: 12px; }
  .footer-grid a, .footer-grid p { margin-inline: auto; }
  .footer-bottom { margin-top: 34px; padding-top: 18px; text-align: center; line-height: 1.6; }
  .floating-whatsapp { min-width: 50px; width: 50px; padding: 0; }
  .floating-whatsapp span { font-size: 0; }
  .floating-whatsapp span::after { content: "WA"; font-size: 12px; }
}

@media (max-width: 420px) {
  .brand { width: min(190px, calc(100vw - 100px)); }
  .brand img { height: 43px; }
  .hero, .hero-grid { min-height: 690px; }
  .hero-copy { padding-top: 48px; }
  .hero-title { font-size: 40px; }
  .hero-lead { font-size: 18px; }
  .section-heading h2, .manifesto-inner h2 { font-size: 35px; }
  .service-card, .service-card:first-child { min-height: 360px; }
  .service-content, .service-card:first-child .service-content { padding: 24px; }
  .about-photo, .about-photo > img { min-height: 350px; height: 350px; }
  .about-seal { width: 184px; padding: 20px; }
  .final-cta h2 { font-size: 39px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .motion-ready [data-reveal], .motion-ready [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero-image { transform: scale(1.06) !important; }
}
