:root {
  --ink: #111827;
  --muted: #5b6575;
  --paper: #f6f7f4;
  --panel: #ffffff;
  --line: #d9ddd5;
  --accent: #ff6a00;
  --accent-dark: #c94f00;
  --accent-soft: #fff0e5;
  --olive: #64735a;
  --steel: #334155;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 247, 244, 0.9);
  border-bottom: 1px solid rgba(217, 221, 213, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.14);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--steel);
  font-size: 0.94rem;
}

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

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-action,
.btn-primary {
  background: var(--accent);
  color: #fff;
}

.header-action:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn,
.header-action {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  background: #141922;
}

.hero::after {
  display: none;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: grid;
  align-items: end;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 0.7s ease, visibility 0.7s, transform 5.5s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.76) 0%, rgba(5, 8, 13, 0.54) 42%, rgba(5, 8, 13, 0.1) 76%, transparent),
    linear-gradient(0deg, rgba(5, 8, 13, 0.48), transparent 46%);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide-real {
  background-position: center 58%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 92px) clamp(44px, 9vh, 88px);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.hero h2 {
  margin: 12px 0 18px;
  max-width: 720px;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}

.hero p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .btn-primary {
  background: #ff720d;
  border-color: #ff720d;
  box-shadow: 0 12px 32px rgba(255, 106, 0, 0.48);
}

.hero .btn-primary:hover {
  background: #ff8a33;
  border-color: #ff8a33;
  box-shadow: 0 15px 38px rgba(255, 106, 0, 0.58);
}

.hero .btn-secondary {
  background: #fff;
  color: #111827;
  border-color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary:hover {
  background: #f1f3f5;
  transform: translateY(-1px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.hero-proof span {
  display: grid;
}

.hero-proof strong {
  color: #fff;
  font-size: 0.94rem;
}

.hero-controls {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 6vh, 58px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-arrow,
.hero-dots button {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(5, 8, 13, 0.78);
  color: #fff;
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 1.15rem;
}

.hero-dots {
  display: flex;
  gap: 7px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
}

.hero-dots button.is-active {
  width: 26px;
  border-radius: 8px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.72);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.impact {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.impact h2 {
  max-width: 540px;
  margin: 10px 0 0;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.06;
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.impact-numbers article {
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  background: var(--paper);
}

.impact-numbers strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  white-space: nowrap;
}

.impact-numbers p {
  max-width: 180px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.impact-numbers.is-visible article {
  animation: impact-in 0.65s ease both;
}

.impact-numbers.is-visible article:nth-child(2) {
  animation-delay: 0.12s;
}

.impact-numbers.is-visible article:nth-child(3) {
  animation-delay: 0.24s;
}

.risk-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  padding: clamp(64px, 8vw, 98px) clamp(18px, 5vw, 72px);
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.risk-copy h2 {
  margin: 10px 0 16px;
  max-width: 580px;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1.07;
}

.risk-copy p {
  max-width: 580px;
  color: var(--muted);
}

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

.risk-grid article {
  padding: clamp(18px, 2.5vw, 26px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.risk-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.risk-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.risk-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes impact-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section h2 {
  margin: 10px 0 18px;
  max-width: 740px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head p,
.split p,
.contact p {
  color: var(--muted);
  max-width: 650px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.product-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.06);
}

.feature-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 20px;
}

.feature-list span {
  color: var(--olive);
  font-weight: 900;
}

.feature-list h3,
.product-grid h3 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.feature-list p,
.product-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.products {
  background: #fff;
}

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

.product-grid article {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
}

.product-grid img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}

.product-grid h3,
.product-grid p {
  padding-inline: 18px;
}

.product-grid h3 {
  padding-top: 18px;
}

.product-grid p {
  padding-bottom: 20px;
  grid-column: auto;
}

.segments {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(38px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--accent-soft);
  border-block: 1px solid #ffd7bb;
}

.segments-label {
  display: grid;
  gap: 5px;
}

.segments-label span {
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.segments-label strong {
  max-width: 440px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.segments-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #f0c8ab;
  background: #f0c8ab;
  gap: 1px;
}

.segments-list span {
  padding: 16px 18px;
  background: #fffaf6;
  color: var(--steel);
  font-weight: 800;
  text-align: center;
}

.reel-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(600px, 1.28fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 6vw, 96px);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.reel-copy h2 {
  max-width: 700px;
  margin: 10px 0 20px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.04;
}

.reel-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.reel-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
}

.reel-highlights span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.social-embeds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.social-embed-card {
  min-width: 0;
}

.social-embed-card > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reel-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.38);
}

.reel-embed-video {
  aspect-ratio: 9 / 16;
}

.reel-embed-post {
  aspect-ratio: 9 / 16;
}

.reel-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-poster {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  cursor: pointer;
}

.embed-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 8, 13, 0.32), transparent 45%);
  transition: background 0.2s ease;
}

.embed-poster:hover::after {
  background: linear-gradient(0deg, rgba(5, 8, 13, 0.42), rgba(5, 8, 13, 0.08));
}

.embed-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.embed-poster:hover img {
  transform: scale(1.025);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding-left: 4px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) repeat(3, minmax(240px, 0.48fr));
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.testimonials-copy {
  position: sticky;
  top: 110px;
  padding-right: clamp(0px, 2vw, 28px);
}

.testimonials-copy h2 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.testimonials-copy p {
  margin-bottom: 28px;
  color: var(--muted);
}

.testimonial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
}

.testimonial-head {
  display: grid;
  gap: 2px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
}

.testimonial-head strong {
  font-size: 1rem;
}

.testimonial-head span {
  color: var(--muted);
  font-size: 0.78rem;
}

.testimonial-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
}

.testimonial-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.proof-quotes {
  padding: clamp(58px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.proof-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.proof-copy h2 {
  margin: 10px 0 16px;
  max-width: 620px;
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
}

.proof-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
}

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

.proof-list figure {
  min-height: 190px;
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.proof-list blockquote {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.18;
}

.proof-list figcaption {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(72px, 10vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.process h2,
.quote-band h2 {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.process-intro p {
  color: rgba(255, 255, 255, 0.64);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list span {
  color: var(--accent);
  font-weight: 900;
}

.process-list div,
.process-list small {
  display: grid;
}

.process-list small {
  color: rgba(255, 255, 255, 0.58);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(30px, 7vw, 80px);
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-facts {
  display: grid;
  gap: 9px;
  margin-top: 26px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-facts span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.service-facts span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

.contact-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fbfbfa;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(216, 58, 46, 0.28);
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 14px;
}

.form-note {
  color: var(--muted);
  line-height: 1.4;
}

.quote-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(54px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--accent-soft);
  border-block: 1px solid #ffd7bb;
}

.quote-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.quote-band .btn {
  flex: none;
}

.faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 7vw, 82px);
  align-items: start;
}

.faq h2 {
  margin: 10px 0 16px;
  max-width: 620px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.08;
}

.faq p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 17px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 19;
  display: grid;
  padding: 10px 16px;
  border-radius: 8px;
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 14px 35px rgba(17, 24, 39, 0.24);
  line-height: 1.15;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
  background: #187f45;
  transform: translateY(-2px);
}

.floating-whatsapp span {
  font-size: 0.7rem;
  opacity: 0.78;
}

.floating-whatsapp strong {
  font-size: 0.88rem;
}

.quality-seal-band {
  padding: clamp(28px, 4vw, 44px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 50%, rgba(221, 176, 88, 0.2), transparent 34%),
    linear-gradient(135deg, #061a33 0%, #0b2b52 52%, #071422 100%);
  color: #fff;
}

.quality-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
  max-width: 940px;
  margin-inline: auto;
}

.seal-image {
  width: clamp(132px, 18vw, 214px);
  height: auto;
  flex: none;
  border-radius: 50%;
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.42));
}

.seal-kicker {
  display: block;
  margin-bottom: 7px;
  color: #f7d98b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quality-seal strong {
  display: block;
  max-width: 620px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  line-height: 1.08;
}

:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.45);
  outline-offset: 3px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  padding-right: clamp(210px, 22vw, 260px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.footer p {
  margin: 0;
}

.footer small {
  color: rgba(255, 255, 255, 0.58);
}

.footer a {
  font-weight: 900;
  color: #fff;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
}

.developer-credit span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
}

.developer-credit img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    position: fixed;
    inset: 69px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .split,
  .contact-layout,
  .process,
  .impact,
  .risk-section,
  .faq-layout,
  .proof-shell,
  .segments,
  .reel-feature,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .testimonials-copy {
    position: static;
    max-width: 680px;
  }

  .testimonial-card {
    width: min(100%, 430px);
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-copy {
    grid-column: 1 / -1;
  }

  .social-embeds {
    max-width: 760px;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    margin: 0 18px 84px;
  }

  .hero-slide-real {
    background-position: 58% center;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-controls {
    right: 18px;
    bottom: 18px;
  }

  .hero-actions,
  .section-head,
  .quote-band,
  .footer {
    display: grid;
    align-items: stretch;
  }

  .hero-proof {
    display: none;
  }

  .impact-numbers {
    grid-template-columns: 1fr;
  }

  .impact-numbers article {
    display: grid;
    grid-template-columns: minmax(145px, auto) 1fr;
    gap: 18px;
    align-items: center;
  }

  .impact-numbers p {
    margin: 0;
  }

  .product-grid,
  .risk-grid,
  .proof-list,
  .segments-list,
  .social-embeds,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonials-copy {
    grid-column: auto;
  }

  .social-embeds {
    max-width: 430px;
    margin-inline: auto;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 9px 13px;
  }

  .footer {
    padding-right: 14px;
    padding-bottom: 86px;
  }

  .quality-seal {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .developer-credit {
    justify-content: center;
  }
}

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