@import url('https://fonts.googleapis.com/css2?family=Anton&family=Pacifico&family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #F26A1B;
  /* Laranja vibrante */
  --color-primary-light: #ff8533;
  --color-dark: #061A35;
  /* Azul-marinho profundo */
  --color-dark-lighter: #0a264a;
  --color-green-whatsapp: #22A33A;
  --color-green-light: #7AC943;
  --color-gold: #D6A23A;
  --color-gray-light: #f8fafc;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  overflow-x: hidden;
  background-color: var(--color-gray-light);
}

h1,
h2,
h3,
h4,
.font-anton {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.02em;
}

.font-pacifico {
  font-family: 'Pacifico', cursive;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

section[id] {
  scroll-margin-top: 5rem;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HERO SERVICOS */
.hero-services-bg {
  background: linear-gradient(135deg, var(--color-dark) 0%, #030e1d 100%);
  position: relative;
}

/* DECORATIVE ELEMENTS */
.curve-top-left {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 5px solid rgba(242, 106, 27, 0.55);
  box-shadow: 0 0 120px rgba(242, 106, 27, 0.25), inset 0 0 60px rgba(242, 106, 27, 0.08);
  opacity: 1;
  pointer-events: none;
}

.curve-bottom-right {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 4px dashed rgba(214, 162, 58, 0.2);
  opacity: 0.6;
  pointer-events: none;
}

.dots-bottom-right-orange {
  position: absolute;
  bottom: 4%;
  right: 2%;
  width: 380px;
  height: 380px;
  background-image: radial-gradient(rgba(242, 106, 27, 0.45) 2.5px, transparent 2.5px);
  background-size: 22px 22px;
  opacity: 0.75;
  pointer-events: none;
}

/* WA BUTTON */
.btn-whatsapp {
  background-color: var(--color-green-whatsapp);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px -5px rgba(34, 163, 58, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 35px -5px rgba(34, 163, 58, 0.6);
  border-color: var(--color-green-light);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

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

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 1s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.float-anim {
  animation: float 5s ease-in-out infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 20px rgba(242, 106, 27, 0.3);
  }

  50% {
    box-shadow: 0 0 50px rgba(242, 106, 27, 0.6);
  }

  100% {
    box-shadow: 0 0 20px rgba(242, 106, 27, 0.3);
  }
}

/* HERO BRAND TEXT — reflexo deslizante */
.hero-brand-text {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.32) 0%,
    rgba(255, 255, 255, 0.32) 38%,
    rgba(255, 255, 255, 0.90) 47%,
    rgba(242, 106, 27,  0.85) 50%,
    rgba(255, 255, 255, 0.90) 53%,
    rgba(255, 255, 255, 0.32) 62%,
    rgba(255, 255, 255, 0.32) 100%
  );
  background-size: 300% 100%;
  background-position: 200% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 5s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 30%  { background-position: 200% center; }
  70%, 100% { background-position: -100% center; }
}

/* ── GALLERY ── */
.gallery-item {
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px -1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background-color: #fff;
  border: 2px solid transparent;
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 26, 53, 0.05) 100%);
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -8px rgba(6, 26, 53, .15);
  border-color: var(--color-primary);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item img {
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── MODAL LIGHTBOX ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 53, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

.modal-content {
  background: white;
  border-radius: 30px;
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid var(--color-primary);
}

.modal.active .modal-content {
  transform: scale(1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 26, 53, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--color-dark);
}

.modal-close:hover {
  background: var(--color-primary);
  color: white;
  transform: rotate(90deg);
}

/* ── TEXT TICKER (HUB TECH) ── */
.ticker-container {
  height: 1.2em;
  line-height: 1.2em;
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: bottom;
}

.ticker-list {
  margin: 0;
  padding: 0;
  list-style: none;
  animation: ticker 8s infinite cubic-bezier(0.85, 0, 0.15, 1);
}

.ticker-list li {
  height: 1.2em;
  line-height: 1.2em;
  white-space: nowrap;
}

@keyframes ticker {

  0%,
  20% {
    transform: translateY(0);
  }

  25%,
  45% {
    transform: translateY(-1.2em);
  }

  50%,
  70% {
    transform: translateY(-2.4em);
  }

  75%,
  95% {
    transform: translateY(-3.6em);
  }

  100% {
    transform: translateY(-4.8em);
  }
}

/* ── INFINITE VERTICAL IMAGE CAROUSEL (OPÇÃO 2) ── */
.image-scroller-wrapper {
  height: 75vh;
  /* Ocupa quase toda a altura da tela */
  min-height: 550px;
  max-height: 800px;
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
  margin-top: -2rem;
  /* Sobe um pouco para aproveitar o topo */
  margin-bottom: -2rem;
  /* Desce um pouco para aproveitar a base */
}

.image-scroller-track {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  animation: scrollVertical 295s linear infinite;
  /* Tempo ajustado para a nova proporção */
}

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

.image-scroller-track img {
  width: 100%;
  max-width: 420px;
  /* Aumento expressivo do tamanho dos cards */
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.image-scroller-track img:hover {
  transform: scale(1.08);
  cursor: zoom-in;
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - 1.75rem));
  }

  /* gap/2 ajustado */
}

/* HUB DE SOLUCOES */
.hub-intro {
  padding: 5.5rem 0 2rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(242, 106, 27, .1), transparent 25rem),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hub-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px -38px rgba(6, 26, 53, .35);
}

.hub-eyebrow {
  display: inline-block;
  margin-bottom: .65rem;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hub-search-panel h2,
.hub-section-heading h2,
.support-copy h2 {
  color: var(--color-dark);
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hub-search-panel p,
.hub-section-heading p {
  max-width: 580px;
  margin-top: .85rem;
  color: #64748b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 1.7;
}

.hub-search {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 64px;
  padding: .65rem .75rem .65rem 1.1rem;
  border: 1px solid #dbe3ed;
  border-radius: 18px;
  background: #f8fafc;
  color: #94a3b8;
}

.hub-search svg {
  width: 22px;
  flex: 0 0 auto;
}

.hub-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #475569;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
}

.hub-search>span {
  padding: .55rem .75rem;
  border-radius: 10px;
  background: #e2e8f0;
  color: #64748b;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hub-categories {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
  padding-bottom: .75rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.hub-categories::-webkit-scrollbar {
  display: none;
}

.hub-category {
  flex: 0 0 auto;
  padding: .75rem 1.15rem;
  border: 1px solid #dbe3ed;
  border-radius: 999px;
  background: #fff;
  color: #64748b;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem;
  font-weight: 700;
}

.hub-category.is-active {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: #fff;
}

.hub-tools {
  padding: 5rem 0 7rem;
  background: #f8fafc;
}

.hub-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 0;
  padding: 1.5rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px -35px rgba(6, 26, 53, .45);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.tool-card::after {
  content: '';
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(242, 106, 27, .055);
}

.tool-card:hover {
  transform: translateY(-7px);
  border-color: rgba(242, 106, 27, .45);
  box-shadow: 0 28px 65px -35px rgba(6, 26, 53, .45);
}

.tool-card-featured {
  border-color: rgba(242, 106, 27, .35);
  background: linear-gradient(145deg, #fff 35%, #fff7ed 100%);
}

.tool-card-assist {
  background: linear-gradient(145deg, #fff 30%, #eff6ff 100%);
}

.tool-card-top,
.tool-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.tool-status {
  padding: .45rem .65rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-popular {
  background: #ffedd5;
  color: #c2410c;
}

.status-free {
  background: #dcfce7;
  color: #15803d;
}

.status-local {
  background: #e0f2fe;
  color: #0369a1;
}

.status-assisted {
  background: #e0e7ff;
  color: #4338ca;
}

.status-building {
  background: #fef9c3;
  color: #854d0e;
}

.tool-number {
  color: #cbd5e1;
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
}

.tool-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  margin: 1.8rem 0;
  place-items: center;
  border-radius: 20px;
}

.tool-icon svg {
  width: 34px;
}

.icon-orange {
  background: #ffedd5;
  color: #ea580c;
}

.icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.icon-gold {
  background: #fef3c7;
  color: #b45309;
}

.icon-green {
  background: #dcfce7;
  color: #15803d;
}

.icon-purple {
  background: #f3e8ff;
  color: #7e22ce;
}

.icon-dark {
  background: var(--color-dark);
  color: #fff;
}

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

.tool-copy>span {
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tool-copy h3 {
  margin: .45rem 0 .7rem;
  color: var(--color-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.tool-copy p {
  color: #64748b;
  font-size: .88rem;
  line-height: 1.65;
}

.tool-benefits {
  display: grid;
  gap: .48rem;
  margin: 1.15rem 0 0;
  padding: 0;
  color: #334155;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 650;
  list-style: none;
}

.tool-benefits li::before {
  content: '✓';
  margin-right: .5rem;
  color: #16a34a;
  font-weight: 900;
}

.tool-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}

.tool-trust span {
  padding: .45rem .6rem;
  border-radius: 9px;
  background: #f0fdfa;
  color: #0f766e;
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 750;
}

.tool-footer {
  margin-top: .9rem;
  padding-top: 1.15rem;
  border-top: 1px solid #edf1f5;
}

.tool-footer>span {
  color: #94a3b8;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.tool-footer button {
  min-height: 44px;
  padding: .7rem .9rem;
  border-radius: 10px;
  background: #edf1f5;
  color: #94a3b8;
  cursor: not-allowed;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 800;
}

.tool-footer a {
  display: grid;
  min-height: 44px;
  padding: .7rem .9rem;
  place-items: center;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tool-footer a:hover {
  background: #d9540d;
  box-shadow: 0 10px 24px rgba(242, 106, 27, .24);
  transform: translateY(-2px);
}

.tool-footer a:focus-visible {
  outline: 3px solid rgba(242, 106, 27, .3);
  outline-offset: 3px;
}

.tool-professional {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 44px;
  margin-top: .65rem;
  padding: .72rem .8rem;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  border-radius: 11px;
  background: #f8fafc;
  color: #475569;
  font-family: 'Montserrat', sans-serif;
  font-size: .62rem;
  text-decoration: none;
}

.tool-professional span {
  font-weight: 750;
}

.tool-professional strong {
  flex: 0 0 auto;
  color: var(--color-dark);
}

.tool-professional:focus-visible,
.hub-category:focus-visible,
.tool-empty-state button:focus-visible {
  outline: 3px solid rgba(242, 106, 27, .3);
  outline-offset: 3px;
}

.tool-card[hidden] {
  display: none;
}

.tool-empty-state {
  margin-top: 1.5rem;
  padding: 2rem;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  background: #fff;
  color: #64748b;
  text-align: center;
}

.tool-empty-state strong,
.tool-empty-state span {
  display: block;
}

.tool-empty-state strong {
  color: var(--color-dark);
}

.tool-empty-state button {
  min-height: 44px;
  margin-top: 1rem;
  padding: .7rem 1rem;
  border: 0;
  border-radius: 10px;
  background: var(--color-dark);
  color: #fff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.hub-how {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 106, 27, .18), transparent 26rem),
    var(--color-dark);
}

.hub-section-heading-light h2 {
  color: #fff;
}

.hub-section-heading-light p {
  color: #cbd5e1;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.how-card {
  min-height: 220px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(10px);
}

.how-card span {
  color: var(--color-primary);
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
}

.how-card h3 {
  margin: 2rem 0 .65rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.how-card p {
  color: #94a3b8;
  font-size: .84rem;
  line-height: 1.65;
}

.hub-support {
  padding: 6rem 0;
  background: #fff;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) 1fr;
  overflow: hidden;
  border-radius: 30px;
  background: #f8fafc;
  box-shadow: 0 30px 80px -45px rgba(6, 26, 53, .45);
}

.support-visual {
  display: flex;
  min-height: 420px;
  padding: 3rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle, rgba(242, 106, 27, .2) 0, transparent 58%),
    var(--color-dark);
  color: #fff;
}

.support-lock {
  display: grid;
  width: 130px;
  height: 130px;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 36px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 0 55px rgba(242, 106, 27, .15);
}

.support-lock svg {
  width: 58px;
  color: var(--color-primary);
}

.support-visual>span {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.support-copy {
  padding: 4rem;
}

.support-copy p {
  margin: 1.2rem 0 1.5rem;
  color: #64748b;
  line-height: 1.75;
}

.support-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 2rem;
}

.support-points span {
  padding: .6rem .8rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
}

@media (max-width: 900px) {

  .hub-search-panel,
  .hub-section-heading,
  .support-panel {
    grid-template-columns: 1fr;
  }

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

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

  .support-visual {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hub-intro {
    padding-top: 4rem;
  }

  .hub-search-panel {
    width: 100%;
    min-width: 0;
    gap: 1.75rem;
    padding: 1.35rem;
    overflow: hidden;
  }

  .hub-search-panel > div,
  .hub-search {
    min-width: 0;
  }

  .hub-search-panel h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 10vw, 2.6rem);
    overflow-wrap: anywhere;
  }

  .hub-search {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hub-search input {
    width: calc(100% - 36px);
    flex: initial;
  }

  .hub-search>span {
    margin-left: 34px;
  }

  .hub-tools,
  .hub-how,
  .hub-support {
    padding: 4.5rem 0;
  }

  .hub-section-heading {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .tool-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 0;
    padding: 1.2rem;
  }

  .tool-icon {
    width: 58px;
    height: 58px;
    margin: 1.25rem 0;
  }

  .tool-benefits li:nth-child(n + 3) {
    display: none;
  }

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

  .tool-footer>span {
    align-self: flex-start;
  }

  .tool-footer a,
  .tool-footer button {
    width: 100%;
  }

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

  .support-copy {
    padding: 2rem 1.5rem;
  }
}
