:root {
  --bg: #f6f8fb;
  --bg-alt: #edf2f7;
  --bg-soft: #f9fbfd;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-muted: #f2f5f8;
  --text: #0f2340;
  --text-strong: #091a32;
  --muted: #5e6f85;
  --muted-strong: #42556c;
  --line: rgba(15, 35, 64, 0.09);
  --line-strong: rgba(15, 35, 64, 0.14);
  --silver: #93a4b7;
  --silver-soft: #cfd8e3;
  --blue: #1d6fe3;
  --blue-strong: #0b56bb;
  --blue-soft: #e9f2ff;
  --gold: #be9452;
  --success: #1f9d67;
  --shadow-xs: 0 10px 24px rgba(15, 35, 64, 0.05);
  --shadow-sm: 0 18px 40px rgba(15, 35, 64, 0.08);
  --shadow: 0 28px 70px rgba(15, 35, 64, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1200px;
  --nav-height: 82px;
  --font-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(29, 111, 227, 0.08), transparent 26%),
    radial-gradient(circle at top left, rgba(190, 148, 82, 0.08), transparent 18%),
    linear-gradient(180deg, #fcfdff 0%, #f6f8fb 42%, #eef3f8 100%);
  line-height: 1.72;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(29, 111, 227, 0.16);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-strong);
  box-shadow: var(--shadow-xs);
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 6px rgba(29, 111, 227, 0.08);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-family: var(--font-heading);
  color: var(--text-strong);
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

strong {
  color: var(--text-strong);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(15, 35, 64, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 32px rgba(15, 35, 64, 0.08);
  border-bottom-color: rgba(15, 35, 64, 0.1);
}

.nav-wrap {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  padding: 0.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 239, 248, 0.9)),
    linear-gradient(135deg, rgba(29, 111, 227, 0.08), rgba(190, 148, 82, 0.08));
  border: 1px solid rgba(15, 35, 64, 0.08);
  box-shadow: var(--shadow-sm);
}

.brand-title {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-strong);
}

.brand-subtitle {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.2rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text-strong);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 35, 64, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  border-radius: 15px;
  box-shadow: var(--shadow-xs);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  border: 1px solid transparent;
  will-change: transform;
}

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

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(29, 111, 227, 0.18);
  outline-offset: 2px;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1f78f2 0%, #135cc3 100%);
  box-shadow: 0 16px 32px rgba(29, 111, 227, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(29, 111, 227, 0.28);
}

.btn-secondary {
  color: var(--text-strong);
  background: linear-gradient(135deg, rgba(190, 148, 82, 0.18), rgba(29, 111, 227, 0.12));
  border-color: rgba(190, 148, 82, 0.22);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: rgba(29, 111, 227, 0.24);
}

.btn-outline {
  color: var(--text-strong);
  border-color: rgba(15, 35, 64, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-xs);
}

.btn-outline:hover {
  background: var(--surface-strong);
  border-color: rgba(29, 111, 227, 0.2);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3.8rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(29, 111, 227, 0.1), transparent 30%),
    radial-gradient(circle at left 15%, rgba(190, 148, 82, 0.08), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}

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

.hero-copy p {
  max-width: 720px;
  font-size: 1.1rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.7rem 0 1.45rem;
}

.badge-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.85rem;
}

.trust-badge,
.card,
.process-step,
.contact-card,
.quote-card,
.blog-card,
.service-panel,
.machine-card,
.metric {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-badge {
  padding: 1.15rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-badge::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(29, 111, 227, 0.75), rgba(190, 148, 82, 0.75));
}

.trust-badge strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-visual {
  position: relative;
}

.hero-panel {
  padding: 1.5rem;
  border-radius: 28px;
}

.placeholder-stack {
  display: grid;
  gap: 1rem;
}

.media-frame,
.placeholder-media {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  border: 1px dashed rgba(29, 111, 227, 0.18);
  background:
    linear-gradient(135deg, rgba(29, 111, 227, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 245, 250, 0.92)),
    repeating-linear-gradient(135deg, rgba(15, 35, 64, 0.03) 0, rgba(15, 35, 64, 0.03) 12px, transparent 12px, transparent 24px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.media-frame {
  min-height: 0;
  border-style: solid;
  border-color: rgba(15, 35, 64, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 253, 0.96));
  box-shadow: var(--shadow-xs);
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.media-frame video {
  background: #dce6f2;
}

.media-grid,
.video-grid {
  display: grid;
  gap: 1rem;
}

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

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

.media-caption {
  padding: 0.9rem 1rem 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.placeholder-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 15%, rgba(255, 255, 255, 0.42) 50%, transparent 85%);
  transform: translateX(-120%);
  animation: placeholder-shimmer 8s linear infinite;
}

.placeholder-media::before {
  content: attr(data-label);
  position: relative;
  z-index: 1;
  width: 76%;
  max-width: 340px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  text-align: center;
  font-weight: 800;
  color: var(--muted-strong);
  border: 1px solid rgba(15, 35, 64, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-xs);
}

@keyframes placeholder-shimmer {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

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

.mini-panel {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 35, 64, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.mini-panel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.3rem;
}

.section-head p,
.page-intro p {
  max-width: 760px;
}

.grid-2,
.grid-3,
.grid-4,
.contact-grid,
.footer-grid,
.metrics,
.machine-grid,
.blog-grid,
.proof-grid,
.services-grid,
.process-grid {
  display: grid;
  gap: 1.35rem;
}

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

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

.grid-4,
.metrics,
.machine-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.machine-card,
.service-panel,
.blog-card,
.contact-card,
.quote-card,
.process-step,
.metric {
  padding: 1.55rem;
}

.machine-card,
.service-panel,
.blog-card,
.proof-tile,
.quote-card,
.metric,
.contact-card,
.process-step,
.timeline-item,
details {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.machine-card:hover,
.service-panel:hover,
.blog-card:hover,
.proof-tile:hover,
.quote-card:hover,
.metric:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(29, 111, 227, 0.16);
}

.machine-card .placeholder-media,
.blog-card .placeholder-media,
.proof-tile .placeholder-media {
  min-height: 210px;
  margin-bottom: 1rem;
}

.machine-card .media-frame,
.blog-card .media-frame,
.proof-tile .media-frame {
  min-height: 210px;
  margin-bottom: 1rem;
}

.machine-card .media-frame img,
.blog-card .media-frame img,
.proof-tile .media-frame img,
.proof-tile .media-frame video {
  min-height: 210px;
}

.metric {
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--blue), var(--gold));
}

.metric strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.8rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  box-shadow: 0 0 0 6px rgba(29, 111, 227, 0.07);
}

.cta-band {
  padding: 2.3rem;
  background:
    linear-gradient(130deg, rgba(29, 111, 227, 0.09), transparent 62%),
    linear-gradient(180deg, #ffffff, #f6f9fd);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 4.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.timeline-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(29, 111, 227, 0.15);
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 10px 24px rgba(29, 111, 227, 0.25);
}

.form-shell {
  padding: 1.7rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  color: var(--muted-strong);
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 35, 64, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-strong);
  border-radius: 15px;
  padding: 0.95rem 1rem;
  box-shadow: inset 0 1px 2px rgba(15, 35, 64, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #8091a5;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(29, 111, 227, 0.18);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(29, 111, 227, 0.38);
  box-shadow: 0 0 0 4px rgba(29, 111, 227, 0.08);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.fine-print {
  font-size: 0.93rem;
  color: var(--muted);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--blue-strong);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.breadcrumbs a:hover {
  color: var(--blue-strong);
}

.page-hero {
  padding: 3.8rem 0 1.5rem;
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.proof-tile {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 253, 0.96));
  box-shadow: var(--shadow-sm);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  color: var(--text-strong);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-xs);
}

details[open] {
  border-color: rgba(29, 111, 227, 0.18);
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text-strong);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  font-size: 1.2rem;
  color: var(--blue-strong);
}

details[open] summary::after {
  content: "−";
}

.map-embed {
  min-height: 320px;
  border: 1px solid rgba(15, 35, 64, 0.08);
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--shadow-xs);
  background: #ffffff;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: grid;
  gap: 0.75rem;
}

.floating-contact a {
  min-width: 178px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  text-align: center;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.floating-contact a:hover {
  transform: translateY(-2px);
}

.floating-whatsapp {
  background: linear-gradient(135deg, rgba(31, 157, 103, 0.96), rgba(12, 115, 74, 0.96));
}

.floating-line {
  background: linear-gradient(135deg, rgba(29, 111, 227, 0.94), rgba(12, 86, 187, 0.96));
}

.site-footer {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, #eef3f7, #e6edf5);
  border-top: 1px solid rgba(15, 35, 64, 0.08);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1fr;
}

.footer-links {
  display: grid;
  gap: 0.68rem;
}

.footer-links strong {
  font-size: 0.96rem;
}

.footer-links a:hover {
  color: var(--blue-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  margin-top: 1.8rem;
  border-top: 1px solid rgba(15, 35, 64, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
}

th,
td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 35, 64, 0.08);
}

th {
  color: var(--text-strong);
}

.article {
  max-width: 860px;
}

.article h2 {
  margin-top: 2.3rem;
}

.article h3 {
  margin-top: 1.6rem;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 35, 64, 0.1);
  color: var(--muted-strong);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-feature,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .metrics,
  .machine-grid,
  .blog-grid,
  .proof-grid,
  .services-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  :root {
    --nav-height: 74px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(15, 35, 64, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-grid,
  .metrics,
  .machine-grid,
  .blog-grid,
  .proof-grid,
  .services-grid,
  .process-grid,
  .footer-grid,
  .split-feature,
  .form-grid,
  .badge-row,
  .media-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact a {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-actions,
  .cta-actions,
  .article-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .floating-contact {
    right: 0.8rem;
    left: 0.8rem;
  }

  .floating-contact a {
    width: 100%;
  }
}
