:root {
  --ink: #2b170d;
  --ink-soft: #431b05;
  --paper: #f2ead8;
  --paper-soft: #e7dcc8;
  --green: #b51f24;
  --green-deep: #780006;
  --mint: #f4d9d4;
  --coral: #b51f24;
  --muted: #b7a895;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--paper);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(43, 23, 13, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 108px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(246, 245, 239, 0.7);
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--green);
}

.header-cta {
  padding: 12px 18px;
  border: 1px solid rgba(181, 31, 36, 0.55);
  border-radius: 999px;
  color: var(--mint);
  font-weight: 700;
}

.section-dark,
.section-light,
.cta-section {
  padding: clamp(84px, 11vw, 150px) clamp(20px, 8vw, 112px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(44px, 8vw, 96px);
  padding-top: 120px;
  background:
    radial-gradient(circle at 78% 18%, rgba(181, 31, 36, 0.28), transparent 28%),
    linear-gradient(135deg, #2b170d 0%, #431b05 48%, #2b170d 100%);
}

.hero h1,
.section-heading h2,
.cta-box h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 5.4vw, 5.25rem);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green-deep);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  color: rgba(246, 245, 239, 0.88);
  list-style: none;
}

.check-list li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--green);
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #d9413f);
  color: var(--paper);
  box-shadow: 0 16px 44px rgba(181, 31, 36, 0.3);
}

.diagnostic-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.diagnostic-panel::before {
  content: "";
  position: absolute;
  inset: -40% 12% auto;
  height: 260px;
  background: rgba(181, 31, 36, 0.3);
  filter: blur(55px);
}

.form-heading,
.lead-form {
  position: relative;
  z-index: 1;
}

.form-heading {
  margin-bottom: 16px;
}

.form-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.form-heading p {
  margin: 10px 0 0;
  color: rgba(246, 245, 239, 0.66);
  line-height: 1.5;
}

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

.lead-form label:nth-child(5),
.form-button {
  grid-column: 1 / -1;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(246, 245, 239, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 0 15px;
  background: rgba(5, 7, 6, 0.74);
  color: var(--paper);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input::placeholder {
  color: rgba(246, 245, 239, 0.35);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(181, 31, 36, 0.82);
  box-shadow: 0 0 0 4px rgba(181, 31, 36, 0.13);
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-button {
  width: 100%;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button-ghost {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
}

.form-note {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(246, 245, 239, 0.56);
  font-size: 0.83rem;
  line-height: 1.45;
}

.form-status {
  position: relative;
  z-index: 1;
  min-height: 22px;
  margin: 14px 0 0;
  color: rgba(246, 245, 239, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-success {
  color: #d9ffd7;
}

.form-status.is-error {
  color: #ffd0d0;
}

.hero-diagnostic-card {
  align-self: center;
}

.diagnostic-preview-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  color: rgba(246, 245, 239, 0.82);
  list-style: none;
}

.diagnostic-preview-list li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(5, 7, 6, 0.42);
}

.diagnostic-preview-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.diagnostic-page {
  min-height: 100vh;
}

.diagnostic-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
  padding-top: 120px;
  background:
    radial-gradient(circle at 74% 12%, rgba(181, 31, 36, 0.26), transparent 30%),
    linear-gradient(135deg, #2b170d 0%, #431b05 48%, #2b170d 100%);
}

.diagnostic-hero .diagnostic-panel {
  width: 100%;
}

.diagnostic-intro h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.diagnostic-intro p {
  max-width: 620px;
  margin: 28px 0 24px;
  color: rgba(246, 245, 239, 0.68);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.diagnostic-form label:nth-child(5),
.diagnostic-form label:nth-child(7),
.diagnostic-form .form-button {
  grid-column: 1 / -1;
}

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

.form-progress {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: rgba(246, 245, 239, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-progress div {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.form-progress i {
  display: block;
  width: 14.28%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.25s ease;
}

.form-step {
  display: none;
  min-height: 124px;
  align-content: center;
}

.form-step.is-active {
  display: grid;
}

.form-step label {
  font-size: 1rem;
}

.step-actions {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 10px;
}

.step-actions .form-button {
  grid-column: auto;
}

.step-actions [hidden] {
  display: none;
}

.panel-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(5, 7, 6, 0.72);
}

.panel-card.large,
.panel-card.wide {
  grid-column: 1 / -1;
}

.panel-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.panel-card strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
}

.progress {
  height: 10px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.panel-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 245, 239, 0.78);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  max-width: 880px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  color: #596159;
  font-size: 1.14rem;
  line-height: 1.6;
}

.pillars,
.testimonial-grid,
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.pillar,
.testimonial-card,
.tech-card {
  padding: 28px;
  border: 1px solid rgba(5, 7, 6, 0.1);
  border-radius: 18px;
  background: #fffdf6;
}

.pillar span {
  color: var(--green-deep);
  font-weight: 900;
}

.pillar h3,
.service-showcase h3 {
  margin: 18px 0 12px;
  font-size: 1.55rem;
}

.pillar p,
.testimonial-card p {
  color: #596159;
  line-height: 1.55;
}

.testimonials {
  padding-top: 40px;
}

.testimonial-card.featured {
  background: var(--coral);
  color: var(--paper);
}

.testimonial-card.featured p {
  color: rgba(242, 234, 216, 0.86);
  font-size: 1.15rem;
}

.stars {
  margin-bottom: 22px;
  color: #f4bf45;
  letter-spacing: 0.12em;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
}

.person small {
  display: block;
  color: inherit;
  opacity: 0.68;
}

.audience {
  background: #080b09;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.audience-list p {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: rgba(246, 245, 239, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.metrics div {
  padding: 26px;
  border-radius: 18px;
  background: var(--green);
  color: var(--paper);
}

.metrics strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.services {
  background: linear-gradient(180deg, #080b09 0%, #020302 100%);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 44px 0 24px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(246, 245, 239, 0.72);
  cursor: pointer;
  font: inherit;
}

.tab.is-active {
  border-color: var(--green);
  background: rgba(181, 31, 36, 0.18);
  color: var(--mint);
}

.service-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 32px;
  min-height: 420px;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 26px;
  background: var(--paper);
  color: var(--ink);
}

.service-showcase p {
  color: #596159;
  line-height: 1.65;
}

.service-kicker {
  color: var(--green-deep) !important;
  font-weight: 900;
  text-transform: uppercase;
}

.service-visual {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 28%, var(--mint), transparent 28%),
    linear-gradient(135deg, #ffffff, #e9eadf);
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.floating-chip:nth-child(1) {
  top: 34px;
  left: 36px;
}

.floating-chip:nth-child(2) {
  top: 86px;
  right: 48px;
}

.floating-chip:nth-child(3) {
  bottom: 38px;
  left: 46%;
}

.visual-calendar {
  position: absolute;
  right: 42px;
  bottom: 40px;
  display: grid;
  width: min(72%, 420px);
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.visual-calendar span {
  height: 54px;
  border-radius: 14px;
  background: rgba(181, 31, 36, 0.12);
}

.visual-calendar span:nth-child(3n) {
  background: var(--green);
}

.tech-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tech-card {
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  font-weight: 800;
}

.video-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(181, 31, 36, 0.22), transparent 30%),
    linear-gradient(180deg, var(--ink) 0%, #1c0e08 100%);
}

.video-carousel {
  display: grid;
  grid-auto-columns: minmax(190px, 240px);
  grid-auto-flow: column;
  gap: 18px;
  margin-top: 44px;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--green) rgba(255, 255, 255, 0.08);
}

.video-card {
  scroll-snap-align: start;
  display: block;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(181, 31, 36, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #160a06;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.04);
  opacity: 1;
}

.video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(181, 31, 36, 0.28), transparent 32%),
    var(--ink);
}

.cta-box {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.cta-box p {
  max-width: 720px;
  margin: 22px auto 30px;
  color: rgba(246, 245, 239, 0.72);
  font-size: 1.12rem;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: 42px;
}

details {
  border: 1px solid rgba(5, 7, 6, 0.1);
  border-radius: 16px;
  background: #fffdf6;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: #596159;
  line-height: 1.55;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 8vw, 112px);
  border-top: 1px solid var(--line);
  color: rgba(246, 245, 239, 0.68);
  background: var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(246, 245, 239, 0.2);
  border-radius: 999px;
  color: var(--paper);
  background: #1f7a4d;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #24905a;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .diagnostic-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero,
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .pillars,
  .testimonial-grid,
  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand {
    width: 86px;
  }

  .header-cta {
    display: none;
  }

  .section-dark,
  .section-light,
  .cta-section {
    padding: 58px 18px;
  }

  .hero {
    min-height: 100svh;
    align-content: start;
    gap: 18px;
    padding: 88px 18px 34px;
    background:
      radial-gradient(circle at 82% 4%, rgba(181, 31, 36, 0.18), transparent 30%),
      linear-gradient(145deg, #140804 0%, #251006 52%, #0f0704 100%);
  }

  .hero h1 {
    max-width: 12ch;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero .eyebrow {
    max-width: 30ch;
    margin-bottom: 10px;
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .check-list {
    gap: 7px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .hero .check-list li:nth-child(3) {
    display: none;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .hero-copy .button-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-diagnostic-card {
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
  }

  .hero-diagnostic-card .form-heading {
    margin-bottom: 10px;
  }

  .hero-diagnostic-card .form-heading span {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .hero-diagnostic-card .form-heading h2 {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .hero-diagnostic-card .form-heading p {
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero-diagnostic-card .diagnostic-preview-list {
    gap: 8px;
    margin: 14px 0;
    font-size: 0.82rem;
  }

  .hero-diagnostic-card .diagnostic-preview-list li {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .diagnostic-hero {
    min-height: auto;
    gap: 24px;
    padding: 92px 18px 42px;
    background:
      radial-gradient(circle at 82% 4%, rgba(181, 31, 36, 0.18), transparent 30%),
      linear-gradient(145deg, #140804 0%, #251006 52%, #0f0704 100%);
  }

  .diagnostic-intro h1,
  .section-heading h2,
  .cta-box h2 {
    font-family: "DM Sans", system-ui, sans-serif;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .diagnostic-intro h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .diagnostic-intro p {
    margin: 16px 0 18px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .section-heading h2,
  .cta-box h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .section-heading p:not(.eyebrow),
  .cta-box p {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .pillars,
  .testimonial-grid,
  .tech-grid {
    gap: 12px;
    margin-top: 24px;
  }

  .pillar,
  .testimonial-card,
  .tech-card,
  .panel-card {
    padding: 18px;
    border-radius: 14px;
  }

  .pillar h3,
  .service-showcase h3 {
    margin: 12px 0 8px;
    font-size: 1.22rem;
  }

  .pillar p,
  .testimonial-card p,
  .audience-list p,
  .service-showcase p,
  details p {
    font-size: 0.93rem;
    line-height: 1.48;
  }

  .stars {
    margin-bottom: 14px;
  }

  .person {
    margin-top: 18px;
  }

  .audience-list,
  .metrics,
  .service-tabs,
  .faq-list {
    margin-top: 24px;
  }

  .audience-list p,
  .metrics div {
    padding: 18px;
    border-radius: 14px;
  }

  .metrics {
    gap: 12px;
  }

  .metrics strong {
    font-size: 2rem;
  }

  .service-showcase {
    padding: 18px;
    border-radius: 18px;
  }

  .cta-box {
    padding: 24px 18px;
    border-radius: 22px;
  }

  summary {
    padding: 18px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .diagnostic-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .panel-grid,
  .audience-list,
  .metrics,
  .pillars,
  .testimonial-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

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

  .form-heading h2 {
    font-size: 1.55rem;
  }

  .form-step {
    min-height: 104px;
  }

  .form-step label {
    font-size: 0.95rem;
  }

  .panel-card {
    min-height: auto;
  }

  .service-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .tab {
    flex: 0 0 auto;
  }

  .service-showcase {
    min-height: auto;
  }

  .service-visual {
    min-height: 260px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    width: 52px;
    justify-content: center;
    gap: 0;
    padding: 8px;
    font-size: 0;
  }

  .whatsapp-float img {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
