@import url("../expoia/styles.css");

:root {
  --bg: #020817;
  --surface: #071426;
  --surface-2: #0a1b31;
  --card: rgba(9, 22, 40, 0.72);
  --border: rgba(107, 152, 184, 0.18);
  --text: #f8fbff;
  --muted: #a2b4c4;
  --primary: #0ea5e9;
  --primary-2: #38c7ff;
  --accent: #00d4ff;
  --radius: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.42);
  --section-py: 72px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 18% 16%, rgba(14, 165, 233, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.72), rgba(2, 8, 23, 0.98)),
    url("../images/Background-2-optimized.jpg"),
    var(--bg);
  background-attachment: fixed;
  background-size: auto, auto, cover, auto;
  color: var(--text);
}

main {
  overflow: hidden;
}

.container {
  max-width: 1320px;
  padding: 0 clamp(20px, 4vw, 56px);
}

.section {
  scroll-margin-top: 86px;
}

.compact {
  padding: var(--section-py) 0;
}

.alt-bg {
  background:
    linear-gradient(90deg, rgba(3, 17, 34, 0.82), rgba(7, 22, 40, 0.78)),
    radial-gradient(circle at 0% 50%, rgba(0, 212, 255, 0.07), transparent 34%);
}

.alt-bg::after {
  display: none;
}

.section-sep {
  display: none;
}

.section .container > * + *,
.industries-layout > * + *,
.story-grid > * + *,
.implementation-layout > * + *,
.closing-grid > * + * {
  margin-top: 0;
}

.section-title {
  /*max-width: 760px;*/
  margin-bottom: clamp(24px, 3vw, 40px);
}

.section-copy .section-title,
.solution-panel .section-title,
.implementation-flow .section-title,
.closing-panel .section-title {
  margin-bottom: var(--space-4);
}

.story-section .section-title,
.closing-panel .section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.solution-panel .section-title,
.next-panel .section-title {
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
}

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

.overline {
  margin-bottom: var(--space-4);
  color: var(--accent);
  letter-spacing: 0.18em;
}

.overline::after {
  width: 38px;
  background: var(--accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-width: 0;
  padding: 8px clamp(18px, 3vw, 36px);
  background: rgba(8, 24, 40, 0.82);
  border-bottom: 1px solid rgba(119, 168, 200, 0.14);
  backdrop-filter: blur(18px) saturate(160%);
}

.brand,
.nav-actions {
  min-width: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 7px 13px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero-main {
  min-height: clamp(680px, 88vh, 860px);
  padding: clamp(112px, 14vh, 160px) 0 150px;
  align-items: flex-start;
  background: #031022;
}

.hero-main .hero-img {
  opacity: 0.78;
  object-position: 62% center;
  filter: saturate(1.08) contrast(1.08) brightness(0.72);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.83) 34%, rgba(2, 8, 23, 0.38) 66%, rgba(2, 8, 23, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.16), rgba(2, 8, 23, 0.98)),
    radial-gradient(circle at 18% 28%, rgba(0, 212, 255, 0.2), transparent 36%);
}

.hero-main .hero-content {
  width: min(100%, 820px);
  max-width: 820px;
}

.hero-main h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.95rem);
  line-height: 1;
  margin-bottom: var(--space-5);
}

.hero-main .lead {
  max-width: 700px;
  color: rgba(248, 251, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.75;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 20px;
  margin: var(--space-5) 0 0;
}

.hero-highlights li {
  padding: 0;
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.9rem;
  white-space: normal;
}

.hero-highlights li::before {
  background: var(--primary-2);
  color: #04111f;
}

.cta-row {
  margin-top: var(--space-6);
}

/* Proof */
.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -104px;
  padding: 0 0 44px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(56, 199, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(3, 14, 27, 0.82);
  box-shadow: var(--shadow-lg);
}

.proof-item {
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid rgba(107, 152, 184, 0.18);
  background: linear-gradient(180deg, rgba(13, 35, 59, 0.72), rgba(5, 17, 32, 0.74));
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.05;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* Industries */
.industries-section {
  padding-top: 72px;
}

.industries-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.section-copy {
  min-width: 0;
}

.section-copy .muted {
  max-width: 390px;
}

.industry-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 25%);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 2px 2px 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industry-rail::-webkit-scrollbar {
  display: none;
}

.industry-rail.is-dragging,
.industry-rail:hover,
.industry-rail:focus-within {
  scroll-snap-type: x mandatory;
}

.industry-item {
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(107, 152, 184, 0.2);
  border-radius: var(--radius-md);
  background: rgba(7, 20, 37, 0.82);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.industry-item:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 199, 255, 0.42);
  background: rgba(9, 26, 48, 0.95);
}

.industry-media {
  height: 128px;
  margin: 0;
  overflow: hidden;
  background: #061426;
}

.industry-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.78);
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.industry-item:hover .industry-media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.08) brightness(0.88);
}

.industry-body {
  padding: 18px;
}

.industry-icon,
.silica-icon,
.metric-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 13px;
  color: var(--accent);
}

.industry-item h3,
.silica-node strong,
.benefit-row h3,
.metric-item strong {
  overflow-wrap: anywhere;
}

.industry-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.industry-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Problem + solution story */
.story-section {
  padding: clamp(72px, 8vw, 104px) 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.98), rgba(5, 17, 32, 0.9)),
    radial-gradient(circle at 72% 30%, rgba(0, 212, 255, 0.1), transparent 34%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
}

.story-copy,
.solution-panel {
  min-width: 0;
}

.story-image {
  align-self: stretch;
  min-height: 420px;
}

.story-image img {
  height: 100%;
  min-height: 360px;
}

.media-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(107, 152, 184, 0.17);
  border-radius: var(--radius-md);
  background: rgba(3, 14, 27, 0.8);
}

.media-panel img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.media-panel figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.story-list,
.compact-list {
  gap: 13px;
}

.list li {
  color: rgba(248, 251, 255, 0.88);
}

.list li::before {
  background: var(--primary-2);
  box-shadow: 0 0 14px rgba(56, 199, 255, 0.5);
}

.solution-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 3vw, 36px);
  border-left: 1px solid rgba(56, 199, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(7, 26, 47, 0.86), rgba(3, 13, 26, 0.72)),
    url("../images/Background-3-optimized.jpg");
  background-size: cover;
  box-shadow: inset 3px 0 0 rgba(0, 212, 255, 0.8);
}

.solution-panel .overline,
.solution-panel .section-title,
.solution-panel > .muted {
  grid-column: 1;
}

.solution-panel .compact-list {
  grid-column: 2;
  grid-row: 1 / span 4;
}

.solution-panel .btn {
  grid-column: 1;
  margin-top: var(--space-5);
  justify-self: start;
}

/* Value cards */
.silica-map,
.benefit-rows,
.metric-grid {
  display: grid;
  gap: 14px;
}

.silica-map {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit-rows {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.silica-node,
.benefit-row,
.metric-item {
  min-width: 0;
  border: 1px solid rgba(107, 152, 184, 0.16);
  border-radius: var(--radius);
  background: rgba(9, 23, 42, 0.76);
  padding: clamp(18px, 2vw, 24px);
}

.silica-node:hover,
.benefit-row:hover,
.metric-item:hover {
  border-color: rgba(56, 199, 255, 0.36);
  background: rgba(10, 30, 54, 0.88);
}

.silica-node strong,
.benefit-row h3,
.metric-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.98rem;
}

.benefit-row h3,
.metric-item strong {
  color: var(--primary-2);
}

.silica-node p,
.benefit-row p,
.metric-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Implementation */
.implementation-section {
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.98), rgba(5, 19, 35, 0.94)),
    radial-gradient(circle at 88% 42%, rgba(0, 212, 255, 0.11), transparent 34%);
}

.implementation-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}

.implementation-media {
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(107, 152, 184, 0.2);
}

.implementation-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.7);
}

.implementation-flow {
  align-self: center;
  min-width: 0;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  padding: 28px 0 0;
  list-style: none;
  counter-reset: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  border-top: 2px dotted rgba(56, 199, 255, 0.55);
}

.process-step {
  position: relative;
  min-width: 0;
  padding-top: 74px;
  text-align: center;
}

.step-orb {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(56, 199, 255, 0.35);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #075985, #0ea5e9);
  color: #e9fbff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  box-shadow: 0 0 0 9px rgba(14, 165, 233, 0.1);
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Metrics */
.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(107, 152, 184, 0.15);
  border-radius: var(--radius-md);
  background: rgba(7, 19, 35, 0.66);
  padding: 10px;
}

.metric-item {
  border-radius: var(--radius);
  border-width: 1px;
  background: rgba(9, 23, 42, 0.46);
}

.metric-icon {
  width: 30px;
  height: 30px;
}

/* Closing */
.closing-section {
  padding: clamp(64px, 7vw, 96px) 0 42px;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.96), rgba(2, 8, 23, 0.88)),
    radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.09), transparent 32%);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.9fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.closing-panel {
  min-width: 0;
  padding: clamp(22px, 2.5vw, 32px);
  border: 1px solid rgba(107, 152, 184, 0.16);
  border-radius: var(--radius-md);
  background: rgba(9, 23, 42, 0.74);
}

.faq-panel {
  background: transparent;
  border-color: transparent;
  padding-left: 0;
}

.accordion {
  gap: 10px;
}

.accordion-item {
  border-color: rgba(107, 152, 184, 0.14);
  border-radius: var(--radius);
  background: rgba(9, 23, 42, 0.72);
}

.accordion-header {
  min-height: 48px;
  padding: 12px 14px;
  font-size: 0.9rem;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  padding: 6px;
  color: var(--primary-2);
  background: rgba(14, 165, 233, 0.12);
}

.accordion-item[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: rgba(14, 165, 233, 0.22);
}

.next-steps {
  gap: 18px;
}

.next-steps .step {
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.9rem;
}

.contact-name {
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-detail-row,
.contact-detail-col,
.contact-actions {
  min-width: 0;
}

.contact-detail-row {
  margin-bottom: 18px;
}

.contact-detail-col {
  display: grid;
  gap: 8px;
}

.contact-detail-col a {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--primary-2);
  font-size: 0.9rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.qr img {
  width: clamp(112px, 9vw, 148px);
  display: block;
  border: 1px solid rgba(107, 152, 184, 0.18);
  border-radius: 4px;
}

/* Footer */
.site-footer {
  margin-top: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(107, 152, 184, 0.14);
  background: rgba(2, 8, 23, 0.92);
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand,
.footer-nav,
.footer-contact,
.footer-copy {
  min-width: 0;
}

.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-weight: 700;
}

.footer-logo {
  width: 30px;
  height: 30px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact {
  display: none;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

/* Floating CTA */
.whatsapp-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.32), 0 8px 22px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.4), 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Reveal animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
  }

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

@media (max-width: 1180px) {
  .industries-layout,
  .implementation-layout {
    grid-template-columns: 1fr;
  }

  .industry-rail {
    grid-auto-columns: minmax(240px, 31%);
  }

  .story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  }

  .solution-panel {
    grid-column: 1 / -1;
  }

  .closing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-py: 60px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item {
    border-bottom: 1px solid rgba(107, 152, 184, 0.18);
  }

  .proof-item:nth-child(n + 3) {
    border-bottom: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

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

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }

  .brand-name {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 16px;
    background: rgba(2, 8, 23, 0.98);
    border-bottom: 1px solid rgba(107, 152, 184, 0.18);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 11px 12px;
  }

  .hamburger {
    display: inline-flex;
  }

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

  .hero-main {
    min-height: auto;
    padding: 96px 0 112px;
  }

  .hero-main .hero-img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 8, 23, 0.98), rgba(2, 8, 23, 0.7)),
      linear-gradient(180deg, rgba(2, 8, 23, 0.15), rgba(2, 8, 23, 0.98));
  }

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

  .story-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 300px;
  }

  .story-image img {
    min-height: 280px;
  }

  .solution-panel {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .solution-panel .overline,
  .solution-panel .section-title,
  .solution-panel > .muted,
  .solution-panel .compact-list,
  .solution-panel .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .faq-panel {
    grid-row: auto;
    padding-left: 22px;
  }

  .closing-panel,
  .faq-panel {
    padding: 22px;
    border-color: rgba(107, 152, 184, 0.16);
    background: rgba(9, 23, 42, 0.74);
  }

  .contact-info {
    grid-column: auto;
  }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .hero-main h1 {
    font-size: clamp(2.35rem, 13vw, 3.3rem);
  }

  .cta-row {
    align-items: stretch;
  }

  .cta-row .btn {
    justify-content: center;
  }

  .proof-strip {
    margin-top: -78px;
  }

  .proof-grid,
  .silica-map,
  .benefit-rows,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2),
  .proof-item:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid rgba(107, 152, 184, 0.18);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .industry-rail {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .industry-media {
    height: 156px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    padding-top: 4px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding-top: 0;
    text-align: left;
  }

  .step-orb {
    position: static;
    transform: none;
    grid-row: span 2;
  }

  .process-step p {
    grid-column: 2;
  }

  .whatsapp-fab {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .hero-main {
    padding: 84px 0 102px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .btn {
    width: 100%;
  }

  .nav-actions .btn {
    width: auto;
  }

  .closing-panel {
    padding: 18px;
  }

  .accordion-header {
    align-items: flex-start;
  }

  .qr img {
    width: 118px;
  }

  .footer-nav {
    gap: 14px;
  }
}
