:root {
  --bg: #090909;
  --bg-soft: #141414;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f4efe8;
  --muted: #c6b9a7;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #ffb91f;
  --amber: #ff8a1d;
  --orange: #ff5a1f;
  --blue: #4ba5ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 185, 31, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 90, 31, 0.18), transparent 24%),
    linear-gradient(145deg, #050505 0%, #101010 45%, #060606 100%);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 124px clamp(20px, 4vw, 52px) 64px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

.topbar,
.hero-content,
.section,
.contact-card {
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  top: 14px;
  left: clamp(20px, 4vw, 52px);
  right: clamp(20px, 4vw, 52px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  z-index: 30;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  z-index: 35;
}

.scroll-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--amber), var(--orange));
  box-shadow: 0 0 18px rgba(255, 138, 29, 0.45);
  transition: width 120ms ease-out;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 34px rgba(255, 138, 29, 0.22);
}

.brand-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small,
.topbar-links a,
.hero-text,
.section-text,
.service-card p,
.workflow-card p,
.package-card li,
.contact-card p,
.testimonial-card span,
.solution-card p {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.topbar-links {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.topbar-links a {
  transition: color 180ms ease;
}

.topbar-links a:hover,
.topbar-links a.is-active {
  color: var(--text);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero-copy h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  line-height: 1;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 7vw, 6.2rem);
  max-width: 11ch;
}

.hero-copy h1 span,
.about-stat strong {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), #ffd875, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 24px 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  border: 0;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #180d00;
  box-shadow: 0 18px 35px rgba(255, 138, 29, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(255, 185, 31, 0.45);
}

.floating-action {
  position: fixed;
  bottom: 24px;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.82);
  color: var(--text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  z-index: 40;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.floating-action:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 185, 31, 0.42);
}

.floating-icon {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}

.floating-image {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
}

.floating-whatsapp {
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.floating-top {
  right: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.floating-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero-stats,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  min-width: 148px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.hero-stats strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  animation: float 8s ease-in-out infinite;
}

.orb-one {
  width: 220px;
  height: 220px;
  top: 60px;
  right: 40px;
  background: radial-gradient(circle, rgba(255, 185, 31, 0.55), transparent 68%);
}

.orb-two {
  width: 260px;
  height: 260px;
  bottom: 40px;
  left: 20px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.35), transparent 68%);
  animation-delay: -4s;
}

.showcase-card {
  width: min(100%, 460px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-9deg) rotateX(4deg);
}

.showcase-head {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.signal {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.signal:first-child {
  background: #ff5f57;
}

.signal:nth-child(2) {
  background: #febc2e;
}

.signal:nth-child(3) {
  background: #28c840;
}

.logo-stack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.logo-frame {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(255, 185, 31, 0.16), rgba(255, 90, 31, 0.1));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo-image {
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.pixel-trail {
  display: grid;
  grid-template-columns: repeat(3, 14px);
  gap: 10px;
  transform: translateY(-30px);
}

.pixel-trail span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  animation: pulse 2.6s ease-in-out infinite;
}

.pixel-trail span:nth-child(2) {
  animation-delay: 0.2s;
}

.pixel-trail span:nth-child(3) {
  animation-delay: 0.4s;
}

.pixel-trail span:nth-child(4) {
  animation-delay: 0.6s;
}

.pixel-trail span:nth-child(5) {
  animation-delay: 0.8s;
}

.metric-grid,
.service-grid,
.workflow-grid,
.package-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.service-grid,
.solutions-grid,
.faq-list {
  align-items: start;
}

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

.metric-grid article,
.service-card,
.workflow-card,
.package-card,
.contact-card,
.testimonial-card,
.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
}

.metric-grid article {
  border-radius: 22px;
  padding: 18px;
}

.metric-grid small {
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.metric-grid strong {
  font-size: 1.25rem;
}

.section {
  padding: 40px clamp(20px, 4vw, 52px) 70px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-bottom: 14px;
}

.section-text {
  line-height: 1.7;
}

.service-grid,
.solutions-grid,
.package-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.service-card,
.workflow-card,
.package-card,
.testimonial-card {
  border-radius: 28px;
  padding: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 14px);
  min-width: 280px;
  min-height: 440px;
}

.service-card span,
.package-tier {
  color: var(--gold);
  font-weight: 700;
}

.service-card h3,
.workflow-card strong,
.package-card h3,
.testimonial-card strong {
  margin: 12px 0;
}

.service-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 18px 0 8px;
}

.service-price strong {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), #ffd875, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-cta {
  width: 100%;
  margin-top: 20px;
}

.service-card .detail-toggle {
  margin-top: auto;
}

.detail-toggle {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffd36a;
  font-weight: 700;
  cursor: pointer;
}

.detail-toggle::after {
  content: " +";
}

.detail-toggle[aria-expanded="true"]::after {
  content: " -";
}

.detail-panel {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition:
    grid-template-rows 280ms ease,
    margin-top 280ms ease,
    opacity 220ms ease;
}

.detail-panel[hidden] {
  display: none;
}

.detail-panel.is-open {
  grid-template-rows: 1fr;
  margin-top: 18px;
  opacity: 1;
}

.detail-panel-content {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.detail-panel h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.detail-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.detail-panel ul,
.package-card ul,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-panel li,
.contact-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.55;
}

.detail-panel li::before,
.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

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

.workflow-card strong {
  display: block;
  font-size: 1.2rem;
}

.about,
.solutions,
.packages,
.testimonials,
.faq {
  position: relative;
}

.about-text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.about-stat {
  padding: 28px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  text-align: center;
}

.about-stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
}

.about-stat span {
  color: var(--muted);
}

.solutions::before,
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 4%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 31, 0.1), transparent 72%);
  filter: blur(24px);
  pointer-events: none;
}

.solutions-grid {
  display: grid;
  gap: 20px;
}

.solution-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(11, 11, 11, 0.78);
  backdrop-filter: blur(20px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 185, 31, 0.28);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.solution-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 185, 31, 0.2), rgba(255, 90, 31, 0.16));
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.solution-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.packages::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 31, 0.14), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.package-grid {
  align-items: stretch;
}

.package-card {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
}

.package-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.package-card.featured {
  border-color: rgba(255, 185, 31, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 185, 31, 0.14), rgba(255, 90, 31, 0.05)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(255, 90, 31, 0.12);
}

.package-badge {
  position: absolute;
  top: 22px;
  right: -34px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 48px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2c1800;
  background: linear-gradient(135deg, #ffd36a, #ff9f3d);
  transform: rotate(41deg);
  z-index: 2;
}

.package-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(54, 134, 255, 0.2), rgba(18, 119, 255, 0.12));
  color: #60b5ff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.featured-icon {
  background: linear-gradient(135deg, rgba(255, 185, 31, 0.26), rgba(255, 90, 31, 0.18));
  color: #ffcf62;
}

.package-description {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.price-line {
  margin: 18px 0 20px;
}

.price-line strong {
  display: block;
  font-size: 1.4rem;
}

.price-line span {
  color: var(--muted);
}

.package-card ul {
  margin: 0 0 28px;
}

.package-card li {
  position: relative;
  padding: 0 0 14px 22px;
  margin-bottom: 14px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(75, 165, 255, 0.14);
}

.package-card.featured li::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 185, 31, 0.14);
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(255, 185, 31, 0.2);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.quote {
  margin: 0 0 22px;
  line-height: 1.8;
  color: var(--text);
}

.contact-card {
  border-radius: 32px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: start;
  gap: 24px;
}

.contact-copy p {
  max-width: 56ch;
}

.contact-points {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: #efe4d4;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.66);
  color: var(--text);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 185, 31, 0.52);
  box-shadow: 0 0 0 4px rgba(255, 185, 31, 0.08);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  color: #ffd36a;
}

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

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


.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 24px;
  padding: 22px 24px;
}

.faq-item .detail-toggle {
  margin-top: 0;
  color: var(--text);
  font-size: 1.02rem;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .hero-content,
  .service-grid,
  .workflow-grid,
  .about-stats,
  .solutions-grid,
  .package-grid,
  .testimonial-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .service-card {
    flex-basis: 100%;
    min-height: auto;
  }

  .showcase-card {
    transform: none;
  }

  .package-card.featured {
    transform: none;
  }

  .topbar {
    top: 10px;
  }
}

@media (max-width: 760px) {
  .topbar {
    left: 14px;
    right: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .topbar-links {
    display: none;
    width: 100%;
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .topbar-links.is-open {
    display: flex;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

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

  .logo-frame {
    width: 150px;
    height: 150px;
  }

  .metric-grid,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .btn,
  .contact-actions a {
    width: 100%;
  }

  .floating-action {
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp {
    left: 18px;
  }

  .floating-top {
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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