:root {
  --brand-blue-900: #002070;
  --brand-blue-800: #003080;
  --brand-blue-700: #0050A0;
  --brand-blue-500: #0070C0;
  --brand-orange-600: #F09010;
  --brand-orange-500: #F0A010;
  --brand-gold-500: #F0B000;
  --text-dark: #111827;
  --text-muted: #404040;
  --bg-white: #FFFFFF;
  --bg-soft: #F8F9FA;
  --border: #E5E7EB;
  --surface-blue: #F1F7FC;
  --surface-orange: #FFF7EA;
  --success: #11845B;
  --warning: #B7791F;
  --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 18px 48px rgba(17, 24, 39, 0.14);
  --shadow-blue: 0 18px 48px rgba(0, 80, 160, 0.18);
  --radius: 8px;
  --container: 1180px;
  --nav-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-dark);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 38%, #FFFFFF 100%);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text-dark);
  line-height: 1.12;
}

p {
  color: var(--text-muted);
}

section {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--brand-blue-900);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.78);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav.scrolled,
.nav.open {
  border-color: rgba(0, 112, 192, 0.18);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

.nav-bar {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  line-height: 0;
}

.brand__logo {
  width: 232px;
  max-width: min(48vw, 232px);
  max-height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1F2937;
  font-weight: 700;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 9px 12px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover {
  background: var(--surface-blue);
  color: var(--brand-blue-800);
}

.nav-cta {
  margin-left: 4px;
  background: var(--brand-blue-800);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(0, 48, 128, 0.18);
}

.nav-cta:hover {
  background: var(--brand-blue-700) !important;
  color: #fff !important;
}

.nav-cta.mobile-only {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand-blue-900);
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 5px;
}

.menu-icon span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

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

.section {
  padding: 76px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, var(--bg-soft), #FFFFFF);
}

.section-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    linear-gradient(rgba(0, 32, 112, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 32, 112, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #FFFFFF 0%, #F6FAFF 52%, #FFF8EF 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(0, 112, 192, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-blue-800);
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-orange-600);
  box-shadow: 0 0 0 5px rgba(240, 144, 16, 0.16);
}

h1 {
  font-size: 3.2rem;
}

.lead {
  max-width: 740px;
  color: #374151;
  font-size: 1.12rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0, 112, 192, 0.16);
  background: var(--surface-blue);
  color: var(--brand-blue-800);
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.actions,
.card-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary,
.btn:not(.btn-secondary):not(.btn-quiet):not(.btn-card):not(.ghost):not(.btn--ghost) {
  background: linear-gradient(135deg, var(--brand-blue-900), var(--brand-blue-500));
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(0, 80, 160, 0.24);
}

.btn-secondary,
.btn.ghost,
.btn--ghost {
  border-color: rgba(240, 144, 16, 0.34);
  background: linear-gradient(135deg, var(--brand-orange-600), var(--brand-gold-500));
  color: #3F2500;
  box-shadow: 0 12px 28px rgba(240, 144, 16, 0.18);
}

.btn-quiet {
  border-color: rgba(0, 112, 192, 0.22);
  background: #fff;
  color: var(--brand-blue-800);
}

.btn-card {
  min-height: 40px;
  background: var(--brand-blue-800);
  color: #fff;
  padding: 9px 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--brand-blue-700);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-visual {
  min-width: 0;
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 112, 192, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(0, 32, 112, 0.96), rgba(0, 80, 160, 0.94) 58%, rgba(17, 24, 39, 0.98));
  color: #fff;
  box-shadow: 0 28px 70px rgba(0, 32, 112, 0.28);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.35));
  pointer-events: none;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
}

.dashboard-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.dashboard-topbar strong {
  margin-left: auto;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  padding: 16px;
}

.signal-panel,
.event-list,
.mini-chart,
.shield-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.signal-panel {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.panel-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-panel strong,
.shield-panel strong {
  color: #fff;
  line-height: 1.2;
}

.signal-ring {
  position: relative;
  width: 154px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 8px auto 0;
}

.signal-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.signal-ring circle {
  fill: none;
  stroke-width: 10;
}

.ring-base {
  stroke: rgba(255, 255, 255, 0.16);
}

.ring-progress {
  stroke: var(--brand-gold-500);
  stroke-linecap: round;
  stroke-dasharray: 289;
  stroke-dashoffset: 18;
}

.signal-ring span {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
}

.event-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.event-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 10px;
}

.event-list p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.event-ok,
.event-warn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.event-ok {
  background: #4ADE80;
}

.event-warn {
  background: var(--brand-gold-500);
}

.mini-chart {
  min-height: 112px;
  display: flex;
  align-items: end;
  gap: 9px;
  padding: 16px;
}

.mini-chart span {
  flex: 1;
  min-width: 10px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--brand-gold-500), var(--brand-orange-600));
}

.shield-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.shield-panel svg {
  width: 54px;
  height: 54px;
}

.shield-panel path:first-child {
  fill: rgba(240, 176, 0, 0.16);
  stroke: var(--brand-gold-500);
  stroke-width: 2;
}

.shield-panel path:last-child {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head h2,
.why-copy h2,
.contact-panel h2 {
  font-size: 2.35rem;
}

.section-head p,
.why-copy p,
.contact-panel p {
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.solution-card,
.service-card,
.card,
.contact-panel,
.metric-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.solution-card,
.service-card,
.card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-card:hover,
.service-card:hover,
article.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 112, 192, 0.24);
  box-shadow: var(--shadow-md);
}

.solution-card h3,
.service-card h3,
.card h3 {
  font-size: 1.18rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-blue), #fff);
  color: var(--brand-blue-800);
  border: 1px solid rgba(0, 112, 192, 0.14);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon path,
.card-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mini-list,
.list,
.reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mini-list,
.list {
  display: grid;
  gap: 8px;
}

.mini-list li,
.list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--text-muted);
}

.mini-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--brand-orange-600);
}

.check {
  color: var(--brand-orange-600);
  font-weight: 900;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section-contrast {
  background:
    linear-gradient(135deg, var(--brand-blue-900), var(--brand-blue-700));
  color: #fff;
}

.section-contrast h2,
.section-contrast h3,
.section-contrast strong {
  color: #fff;
}

.section-contrast p,
.section-contrast li {
  color: rgba(255, 255, 255, 0.78);
}

.section-contrast .section-kicker {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1fr);
  align-items: center;
  gap: 42px;
}

.why-copy {
  display: grid;
  gap: 16px;
}

.reason-list {
  display: grid;
  gap: 20px;
  margin-top: 6px;
}

.reason-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.reason-dot {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange-600), var(--brand-gold-500));
}

.reason-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.reason-copy strong,
.reason-copy p {
  margin: 0;
}

.reason-copy strong {
  display: block;
  font-weight: 800;
}

.reason-copy p {
  line-height: 1.6;
}

.metric-grid,
.kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.kpi {
  min-height: 134px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
}

.metric-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.metric-card strong {
  font-size: 1.68rem;
  line-height: 1.1;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.kpi {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text-dark);
}

.contact-section {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 26px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.contact-panel > div:first-child {
  display: grid;
  gap: 12px;
}

.notice {
  grid-column: 1 / -1;
  color: #6B7280;
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.footer-logo {
  width: 204px;
  max-height: 40px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
  color: var(--brand-blue-800);
  font-weight: 800;
}

.footer-copy {
  grid-column: 1 / -1;
  color: #6B7280;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
}

.floating-whatsapp a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-blue-800);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(0, 48, 128, 0.24);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.blog-hero {
  padding: 44px 0 22px;
}

form {
  display: grid;
  gap: 12px;
}

.label {
  color: var(--brand-blue-900);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--text-dark);
  background: #fff;
}

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

.input-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.form-message {
  min-height: 22px;
  font-size: 0.9rem;
}

.form-message.error {
  color: #B91C1C;
}

.form-message.success {
  color: var(--success);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-visual {
  animation: hero-rise 0.7s ease both;
}

.hero-visual {
  animation-delay: 0.12s;
}

:focus-visible {
  outline: 3px solid var(--brand-orange-600);
  outline-offset: 3px;
}

.nav-links a:focus-visible,
.btn:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--brand-orange-600);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-visual {
    max-width: 720px;
  }

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

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

@media (max-width: 768px) {
  :root {
    --nav-height: 66px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand__logo {
    width: 184px;
    max-width: 58vw;
    max-height: 38px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-height);
    display: none;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.97);
    padding: 14px 16px 18px;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .nav-cta.mobile-only {
    display: inline-flex;
    justify-content: center;
    margin-left: 0;
  }

  .section,
  .section-hero {
    padding: 54px 0;
  }

  h1 {
    font-size: 2.35rem;
  }

  .section-head h2,
  .why-copy h2,
  .contact-panel h2 {
    font-size: 1.9rem;
  }

  .lead {
    font-size: 1rem;
  }

  .actions {
    align-items: stretch;
  }

  .actions .btn {
    width: 100%;
  }

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

  .reason-item {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 12px;
  }

  .reason-dot {
    width: 12px;
    height: 12px;
    margin-top: 7px;
  }

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

  .signal-ring {
    width: 134px;
  }

  .saas-grid,
  .services-grid,
  .metric-grid,
  .kpis,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: stretch;
  }

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

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

  .floating-whatsapp {
    display: block;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-bar {
    gap: 10px;
  }

  .brand__logo {
    width: 162px;
    max-width: 54vw;
  }

  h1 {
    font-size: 2rem;
  }

  .section-head h2,
  .why-copy h2,
  .contact-panel h2 {
    font-size: 1.6rem;
  }

  .badge-row {
    gap: 6px;
  }

  .badge,
  .tag {
    font-size: 0.76rem;
  }

  .solution-card,
  .service-card,
  .card,
  .contact-panel {
    padding: 16px;
  }

  .card-actions {
    align-items: stretch;
  }

  .card-actions .btn,
  .card-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .mini-chart {
    min-height: 86px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1280px;
  }

  h1 {
    font-size: 3.55rem;
  }
}

@media (min-width: 1800px) {
  :root {
    --container: 1360px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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