:root {
  color-scheme: dark;
  --bg: #0b0b0f;
  --bg-elevated: rgba(18, 18, 26, 0.82);
  --surface: #12121a;
  --surface-strong: rgba(255, 255, 255, 0.06);
  --text: #f5f7ff;
  --muted: #a7afc4;
  --text-soft: #a7afc4;
  --text-strong: #f5f7ff;
  --on-accent: #ffffff;
  --toggle-bg: rgba(255, 255, 255, 0.06);
  --toggle-shadow: 0 8px 20px rgba(255, 122, 0, 0.24);
  --primary: #ff7a00;
  --secondary: #ff9a2a;
  --accent: #ff7a00;
  --line: rgba(255, 255, 255, 0.12);
  --nav-bg: rgba(11, 11, 15, 0.72);
  --nav-bg-scrolled: rgba(11, 11, 15, 0.88);
  --brand-ring: rgba(255, 122, 0, 0.12);
  --brand-glow: rgba(255, 122, 0, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 32px rgba(255, 122, 0, 0.22);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100vw - 64px));
  --heading-size: clamp(4.5rem, 5.2vw, 5rem);
  --heading-secondary: clamp(3.25rem, 4vw, 3.5rem);
  --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.light-theme {
  color-scheme: dark;
  --bg: #0b0b0f;
  --bg-elevated: rgba(18, 18, 26, 0.82);
  --surface: #12121a;
  --surface-strong: rgba(255, 255, 255, 0.06);
  --text: #f5f7ff;
  --muted: #a7afc4;
  --text-soft: #a7afc4;
  --text-strong: #f5f7ff;
  --on-accent: #ffffff;
  --toggle-bg: rgba(255, 255, 255, 0.06);
  --toggle-shadow: 0 8px 20px rgba(255, 122, 0, 0.24);
  --line: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(11, 11, 15, 0.72);
  --nav-bg-scrolled: rgba(11, 11, 15, 0.88);
  --brand-ring: rgba(255, 122, 0, 0.12);
  --brand-glow: rgba(255, 122, 0, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 32px rgba(255, 122, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(255, 154, 42, 0.08), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 122, 0, 0.06), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 36px 0 64px;
}

.noise {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.18;
  pointer-events: none;
  z-index: -2;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), transparent 62%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity var(--transition);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--nav-bg);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}

.site-header.scrolled .navbar {
  background: var(--nav-bg-scrolled);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-strong);
  line-height: 1;
  white-space: nowrap;
}

.brand-logo-wordmark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.brand-logo-text {
  color: #2b2f36;
}

.brand-logo-x {
  color: #ff9500;
}

.brand-logo-arrow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 34px;
  height: 34px;
  border-top: 8px solid #ff9500;
  border-right: 8px solid #ff9500;
  transform: rotate(10deg);
}

.brand-logo-arrow::after {
  content: "";
  position: absolute;
  top: -9px;
  right: -9px;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 18px solid #ff9500;
  transform: rotate(35deg);
}

body:not(.light-theme) .brand-logo-text {
  color: #f5f7ff;
}

.brand-footer .brand-logo-wordmark {
  font-size: 2.35rem;
}

.nav-links,
.nav-actions,
.hero-actions,
.trust-logos,
.contact-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  transition: color var(--transition);
}

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

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 52px;
  height: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex: 0 0 auto;
  align-self: center;
}

.toggle-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--toggle-bg);
}

.toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--toggle-shadow);
  transition: transform var(--transition);
}

body.light-theme .toggle-thumb {
  transform: translateX(20px);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
  overflow: hidden;
}

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

.btn-primary {
  color: var(--on-accent);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow:
    0 14px 32px rgba(255, 122, 0, 0.28),
    0 0 24px rgba(255, 122, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.06);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn-small {
  min-height: 46px;
  padding: 0 18px;
}

.ripple::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transform: scale(0);
}

.ripple:active::after {
  animation: ripple 520ms ease;
}

@keyframes ripple {
  from {
    opacity: 0.7;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(10);
  }
}

.hero {
  position: relative;
  padding-top: 54px;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
}

.hero-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 55fr 45fr;
}

.hero-container {
  width: min(1280px, calc(100vw - 64px));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 16px rgba(255, 122, 0, 0.32);
}

h1,
h2,
h3,
strong {
  line-height: 1.05;
}

h1 {
  margin: 0 0 18px;
  font-size: var(--heading-size);
  letter-spacing: -0.05em;
}

h2 {
  margin: 0 0 16px;
  font-size: var(--heading-secondary);
  letter-spacing: -0.04em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-subheadline,
.section-heading p {
  max-width: 62ch;
  font-size: 1.12rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.hero-actions {
  margin-top: 32px;
}

.trust-row {
  margin-top: 34px;
}

.trust-row > span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
}

.trust-logos {
  flex-wrap: wrap;
}

.trust-logos span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-soft);
}

.hero-bg,
.hero-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 122, 0, 0.16), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255, 154, 42, 0.1), transparent 30%);
  filter: blur(10px);
}

.hero-shape {
  width: 320px;
  height: 320px;
  border-radius: 34% 66% 58% 42% / 43% 40% 60% 57%;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.22), rgba(255, 154, 42, 0.1));
  filter: blur(14px);
  animation: float 12s ease-in-out infinite;
}

.hero-shape-one {
  top: 60px;
  left: -60px;
}

.hero-shape-two {
  top: 130px;
  right: 80px;
  animation-delay: -5s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.25) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px);
  background-size: 180px 180px;
  animation: drift 18s linear infinite;
  opacity: 0.45;
}

.glass,
.process-step {
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  min-height: 640px;
}

.hero-card {
  border-radius: var(--radius);
}

.main-card {
  position: relative;
  padding: 28px;
}

.card-header,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 122, 0, 0.35);
}

.card-metric {
  margin: 22px 0 30px;
}

.card-metric strong {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 8px;
  color: var(--accent);
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 160px;
}

.mini-chart span {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--secondary), rgba(255, 122, 0, 0.42));
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.18);
  animation: bars 3s ease-in-out infinite;
}

.mini-chart span:nth-child(1) { height: 48%; }
.mini-chart span:nth-child(2) { height: 62%; animation-delay: -0.4s; }
.mini-chart span:nth-child(3) { height: 57%; animation-delay: -0.8s; }
.mini-chart span:nth-child(4) { height: 74%; animation-delay: -1.2s; }
.mini-chart span:nth-child(5) { height: 86%; animation-delay: -1.6s; }
.mini-chart span:nth-child(6) { height: 100%; animation-delay: -2s; }

.metric-grid,
.proof-bar-grid,
.case-metrics {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.metric-grid div,
.proof-bar-grid div,
.case-metrics div {
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
}

.metric-grid strong,
.proof-bar-grid strong,
.case-metrics span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.floating-cards {
  position: absolute;
  inset: auto 0 0 auto;
}

.small-card {
  position: absolute;
  width: 260px;
  padding: 20px;
}

.offset-one {
  right: 12px;
  bottom: 90px;
  animation: float 10s ease-in-out infinite;
}

.offset-two {
  left: -36px;
  bottom: 12px;
  animation: float 12s ease-in-out infinite;
  animation-delay: -4s;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.badge-cyan {
  background: rgba(255, 122, 0, 0.12);
}

.badge-pink {
  background: rgba(255, 154, 42, 0.12);
}

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

.proof-bar-grid strong {
  font-size: clamp(3.8rem, 5vw, 4.5rem);
  line-height: 0.95;
}

.proof-bar-grid span {
  display: block;
  font-size: 1rem;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card,
.case-study-card,
.testimonial-card,
.contact-form,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-card {
  padding: 28px;
  min-height: 290px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card:hover,
.testimonial-card:hover,
.case-study-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 122, 0, 0.18),
    var(--glow);
}

.service-icon,
.step-number,
.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.22), rgba(255, 154, 42, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--accent);
}

.service-card ul {
  padding-left: 18px;
  color: var(--text-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: var(--text-soft);
}

.case-study-stack {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.case-study-card {
  display: grid;
  grid-template-columns: 340px 1fr;
}

.case-visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 30px;
}

.gradient-purple-blue {
  background: linear-gradient(160deg, rgba(255, 122, 0, 0.88), rgba(255, 154, 42, 0.72));
}

.gradient-pink-purple {
  background: linear-gradient(160deg, rgba(255, 122, 0, 0.92), rgba(199, 86, 0, 0.78));
}

.case-visual strong {
  font-size: 3rem;
}

.case-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.case-copy {
  padding: 30px;
}

.case-copy p + p {
  margin-top: 12px;
}

.case-metrics {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.section-testimonials {
  overflow: hidden;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 24px;
  overflow: hidden;
  margin-top: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  padding: 28px;
  min-height: 250px;
}

.testimonial-avatar {
  border-radius: 50%;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
  margin-top: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.12), rgba(255, 154, 42, 0.4), rgba(255, 122, 0, 0.12));
}

.process-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(255, 154, 42, 0.08)),
    var(--surface);
  border: 1px solid rgba(255, 122, 0, 0.16);
  box-shadow: var(--shadow), var(--glow);
}

.contact-form {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.contact-form label:last-of-type,
.contact-form button {
  grid-column: span 2;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: rgba(255, 122, 0, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.site-footer {
  padding: 40px 0 120px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, var(--surface));
}

.brand-footer {
  margin-bottom: 12px;
}

.whatsapp-float,
.mobile-sticky-cta {
  position: fixed;
  z-index: 25;
}

.whatsapp-float {
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.24);
}

.mobile-sticky-cta {
  display: none;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

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

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

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

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(18px); }
}

@keyframes bars {
  0%, 100% { transform: scaleY(0.95); }
  50% { transform: scaleY(1.05); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .proof-bar-grid,
  .process-grid,
  .services-layout,
  .case-study-card,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .process-grid::before {
    display: none;
  }

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

  .floating-cards {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
  }

  .small-card,
  .offset-one,
  .offset-two {
    position: relative;
    inset: auto;
    width: auto;
    animation: none;
  }

}

@media (max-width: 840px) {
  :root {
    --heading-size: clamp(3.2rem, 11vw, 4.4rem);
    --heading-secondary: clamp(2.5rem, 8vw, 3.1rem);
  }

  .brand-logo-wordmark {
    font-size: 2.2rem;
  }

  .brand-logo-arrow {
    top: -16px;
    right: -16px;
    width: 28px;
    height: 28px;
    border-top-width: 7px;
    border-right-width: 7px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .section {
    padding: 82px 0;
  }

  .metric-grid,
  .case-metrics,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label:last-of-type,
  .contact-form button {
    grid-column: auto;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .site-footer {
    padding-bottom: 150px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .brand-logo-wordmark {
    font-size: 1.8rem;
  }

  .brand-logo-arrow {
    top: -12px;
    right: -12px;
    width: 22px;
    height: 22px;
    border-top-width: 6px;
    border-right-width: 6px;
  }

  .navbar {
    padding: 14px 0;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .testimonial-track {
    grid-auto-columns: 86vw;
    width: auto;
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .testimonial-card {
    scroll-snap-align: start;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 92px;
  }
}

.logo,
.brand-logo {
  height: 45px;
  width: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;  /* 🔥 important */
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}