/* ===================================================================
   Fastxpress — Brand Stylesheet
   Deliver Faster. Track Smarter.
   Deep Navy #1B2A6B  ·  Orange #F26522
   Type: Space Grotesk (headings) · DM Sans (body)
   =================================================================== */

:root {
  --fx-navy: #1B2A6B;
  --fx-navy-600: #16235C;
  --fx-navy-800: #0E1A3A;
  --fx-navy-900: #0A1330;
  --fx-orange: #F26522;
  --fx-orange-600: #E2560F;
  --fx-orange-400: #FF7C3C;
  --fx-ink: #14192E;
  --fx-muted: #647089;
  --fx-light: #F4F6FB;
  --fx-line: #E4E8F2;
  --fx-white: #FFFFFF;

  --fx-grad-orange: linear-gradient(120deg, #FF7C3C 0%, #F26522 55%, #E2560F 100%);
  --fx-grad-navy: linear-gradient(135deg, #26377F 0%, #1B2A6B 55%, #0E1A3A 100%);
  --fx-grad-hero: linear-gradient(140deg, #1B2A6B 0%, #16235C 45%, #0E1A3A 100%);

  --fx-shadow-sm: 0 2px 10px rgba(14, 26, 58, .07);
  --fx-shadow: 0 14px 34px rgba(14, 26, 58, .10);
  --fx-shadow-lg: 0 28px 64px rgba(14, 26, 58, .18);
  --fx-shadow-orange: 0 16px 34px rgba(242, 101, 34, .34);
  --fx-shadow-navy: 0 16px 34px rgba(27, 42, 107, .30);

  --fx-radius: 12px;
  --fx-radius-lg: 16px;
  --fx-radius-xl: 22px;

  --bs-body-font-family: 'DM Sans', system-ui, sans-serif;
  --bs-primary: #1B2A6B;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: #3A445C;
  background: var(--fx-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-head,
.navbar-nav .nav-link,
.btn,
.eyebrow,
.stat-num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

h1,
h2,
h3,
h4 {
  color: var(--fx-ink);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: var(--fx-navy);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--fx-orange);
}

.text-fx-navy {
  color: var(--fx-navy) !important;
}

.text-fx-orange {
  color: var(--fx-orange) !important;
}

.bg-light-soft {
  background: var(--fx-light);
}

.bg-fx-navy {
  background: var(--fx-navy);
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 66px 0;
}

/* -------- Eyebrow -------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--fx-orange);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--fx-orange);
  display: inline-block;
  transform: skewX(-18deg);
}

.eyebrow.center::before {
  display: none;
}

.eyebrow.light {
  color: var(--fx-orange-400);
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.lead-muted {
  color: var(--fx-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============ NAVBAR ============ */
.navbar-fx {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  transition: box-shadow .3s ease, background .3s ease, padding .3s ease;
  padding-top: .8rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid transparent;
}

.navbar-fx.scrolled {
  background: #fff;
  box-shadow: 0 6px 24px rgba(14, 26, 58, .09);
  border-bottom-color: var(--fx-line);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-fx .navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--fx-navy) 40%, var(--fx-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-top: 2px;
}

.navbar-fx .nav-link {
  color: var(--fx-ink);
  font-weight: 600;
  font-size: .94rem;
  margin: 0 .3rem;
  padding: .5rem .4rem;
  position: relative;
}

.navbar-fx .nav-link::after {
  content: "";
  position: absolute;
  left: .4rem;
  right: .4rem;
  bottom: .05rem;
  height: 3px;
  background: var(--fx-orange);
  transform: scaleX(0) skewX(-18deg);
  transform-origin: left;
  transition: transform .25s ease;
}

.navbar-fx .nav-link:hover,
.navbar-fx .nav-link.active {
  color: var(--fx-navy);
}

.navbar-fx .nav-link:hover::after,
.navbar-fx .nav-link.active::after {
  transform: scaleX(1) skewX(-18deg);
}

/* ============ BUTTONS — sharp, skew accent ============ */
.btn {
  font-weight: 600;
  border-radius: 10px;
  padding: .7rem 1.5rem;
  transition: all .22s ease;
}

.btn-lg {
  padding: .9rem 2rem;
  font-size: 1rem;
}

.btn-fx-orange {
  background: var(--fx-grad-orange);
  color: #fff;
  border: none;
}

.btn-fx-orange:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--fx-shadow-orange);
  filter: brightness(1.04);
}

.btn-fx-navy {
  background: var(--fx-navy);
  color: #fff;
  border: none;
}

.btn-fx-navy:hover {
  background: var(--fx-navy-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--fx-shadow-navy);
}

.btn-outline-navy {
  color: var(--fx-navy);
  border: 1.5px solid var(--fx-navy);
  background: transparent;
}

.btn-outline-navy:hover {
  background: var(--fx-navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  background: transparent;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--fx-navy);
}

.btn-ghost {
  color: var(--fx-ink);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--fx-navy);
}

/* ============ HERO — DARK NAVY ============ */
.hero {
  position: relative;
  padding: 150px 0 110px;
  color: #fff;
  background: var(--fx-grad-hero);
  overflow: hidden;
}

/* speed lines motif */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    linear-gradient(115deg, transparent 0 62%, rgba(242, 101, 34, .16) 62% 64%, transparent 64%),
    linear-gradient(115deg, transparent 0 70%, rgba(255, 255, 255, .05) 70% 71.5%, transparent 71.5%),
    radial-gradient(600px 400px at 100% 0%, rgba(242, 101, 34, .20), transparent 60%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.04;
}

.hero .lead-muted {
  color: rgba(255, 255, 255, .78);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 600;
  font-size: .82rem;
  padding: .42rem .95rem;
  border-radius: 100px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3DDC84;
  box-shadow: 0 0 0 4px rgba(61, 220, 132, .22);
}

.hero-stat .n {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.hero-stat .l {
  color: rgba(255, 255, 255, .65);
  font-size: .82rem;
}

/* Hero card */
.hero-panel {
  position: relative;
  border-radius: var(--fx-radius-xl);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--fx-shadow-lg);
  padding: 30px;
  backdrop-filter: blur(4px);
}

.hero-panel .row-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--fx-radius);
  padding: 16px 18px;
  margin-bottom: 12px;
}

.hero-panel .row-item:last-child {
  margin-bottom: 0;
}

.hero-panel .ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 1.25rem;
  color: #fff;
  background: var(--fx-grad-orange);
  transform: skewX(-6deg);
}

.hero-panel .ico i {
  transform: skewX(6deg);
}

.hero-panel .track {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.hero-panel .route {
  font-weight: 600;
  color: #fff;
}

.hero-panel .pill {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 100px;
  background: rgba(61, 220, 132, .20);
  color: #8EF0B8;
}

.float-chip {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--fx-ink);
  border-radius: 12px;
  box-shadow: var(--fx-shadow-lg);
  padding: .7rem .95rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .85rem;
}

.float-chip .ci {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floaty {
  animation: floaty 4s ease-in-out infinite;
}

.floaty-slow {
  animation: floaty 6s ease-in-out infinite;
}

/* wave divider under hero */
.hero-cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
}

/* ============ TRACKING BAR ============ */
.track-card {
  background: #fff;
  border-radius: var(--fx-radius-lg);
  box-shadow: var(--fx-shadow-lg);
  border: 1px solid var(--fx-line);
  padding: 10px;
  margin-top: -34px;
  position: relative;
  z-index: 5;
}

.track-card .form-control {
  border: none;
  box-shadow: none;
  font-size: 1rem;
  padding: .9rem 1rem;
}

.track-card .form-control:focus {
  box-shadow: none;
}

/* ============ CARDS ============ */
.card-fx {
  background: #fff;
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-lg);
  box-shadow: var(--fx-shadow-sm);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card-fx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--fx-grad-orange);
  transition: width .3s ease;
}

.card-fx:hover {
  transform: translateY(-6px);
  box-shadow: var(--fx-shadow-lg);
  border-color: transparent;
}

.card-fx:hover::before {
  width: 100%;
}

.feature-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 18px;
  background: var(--fx-grad-navy);
  box-shadow: var(--fx-shadow-navy);
  transform: skewX(-6deg);
  transition: transform .3s ease;
}

.feature-ico i {
  transform: skewX(6deg);
}

.feature-ico.orange {
  background: var(--fx-grad-orange);
  box-shadow: var(--fx-shadow-orange);
}

.card-fx:hover .feature-ico {
  transform: skewX(-6deg) translateY(-3px);
}

.card-fx h5 {
  margin-bottom: .5rem;
}

.card-fx p {
  color: var(--fx-muted);
  font-size: .95rem;
  margin: 0;
  line-height: 1.65;
}

.card-link-arrow {
  color: var(--fx-navy);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
}

.card-fx:hover .card-link-arrow i {
  transform: translateX(4px);
}

.card-link-arrow i {
  transition: transform .25s ease;
}

/* ============ HOW IT WORKS ============ */
.step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.step-ico {
  width: 82px;
  height: 82px;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--fx-navy);
  background: #fff;
  border: 1px solid var(--fx-line);
  box-shadow: var(--fx-shadow);
  position: relative;
  transform: skewX(-5deg);
}

.step-ico i {
  transform: skewX(5deg);
}

.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--fx-grad-orange);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk';
  transform: skewX(-8deg);
}

/* ============ STATS BANNER ============ */
.stat-num {
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: #fff;
}

.stat-label {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  margin-top: .4rem;
}

/* ============ PARTNERS ============ */
.partner-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fx-muted);
  opacity: .85;
  transition: all .25s ease;
  letter-spacing: -.02em;
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: var(--fx-navy);
}

/* ============ TESTIMONIALS ============ */
.quote-card {
  background: #fff;
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: var(--fx-shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}

.quote-card:hover {
  box-shadow: var(--fx-shadow);
  transform: translateY(-4px);
}

.quote-card .stars {
  color: var(--fx-orange);
  font-size: .95rem;
  margin-bottom: 14px;
}

.quote-card p {
  color: #48526B;
  line-height: 1.7;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Space Grotesk';
  background: var(--fx-grad-navy);
  flex: none;
  transform: skewX(-6deg);
}

.avatar span {
  transform: skewX(6deg);
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--fx-grad-navy);
  border-radius: var(--fx-radius-xl);
  color: #fff;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(242, 101, 34, .42), transparent 70%);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 66%, rgba(255, 255, 255, .05) 66% 68%, transparent 68%);
}

/* ============ PAGE HEADER ============ */
.page-head {
  padding: 150px 0 72px;
  text-align: center;
  color: #fff;
  background: var(--fx-grad-hero);
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background: radial-gradient(600px 300px at 82% 0%, rgba(242, 101, 34, .22), transparent 60%), linear-gradient(115deg, transparent 0 64%, rgba(242, 101, 34, .12) 64% 66%, transparent 66%);
}

.page-head .container {
  position: relative;
  z-index: 2;
}

.page-head h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-head .lead-muted {
  color: rgba(255, 255, 255, .78);
}

.breadcrumb-fx {
  display: inline-flex;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  align-items: center;
  justify-content: center;
}

.breadcrumb-fx a {
  color: rgba(255, 255, 255, .6);
}

.breadcrumb-fx a:hover {
  color: #fff;
}

.breadcrumb-fx .active {
  color: var(--fx-orange-400);
  font-weight: 600;
}

/* ============ FORMS ============ */
.form-label {
  font-weight: 600;
  color: var(--fx-ink);
  font-size: .9rem;
  margin-bottom: .4rem;
}

.form-control,
.form-select {
  border: 1.5px solid var(--fx-line);
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .95rem;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--fx-navy);
  box-shadow: 0 0 0 4px rgba(27, 42, 107, .10);
}

.input-icon {
  position: relative;
}

.input-icon .bi {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fx-muted);
}

.input-icon .form-control {
  padding-left: 42px;
}

.calc-card {
  background: #fff;
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-xl);
  box-shadow: var(--fx-shadow-lg);
  padding: 40px;
}

.result-card {
  background: var(--fx-grad-navy);
  color: #fff;
  border-radius: var(--fx-radius-xl);
  padding: 34px;
  box-shadow: var(--fx-shadow-lg);
  position: relative;
  overflow: hidden;
}

.result-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 101, 34, .42), transparent 70%);
}

.rate-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.rate-row:last-child {
  border-bottom: none;
}

.rate-row .ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex: none;
}

.rate-row .k {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .72;
}

.rate-row .v {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-size: 1.15rem;
}

/* ============ CONTACT ============ */
.contact-tile {
  background: #fff;
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-lg);
  padding: 26px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--fx-shadow);
}

.contact-tile .ico {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
  background: var(--fx-grad-orange);
  transform: skewX(-6deg);
}

.contact-tile .ico i {
  transform: skewX(6deg);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .85rem;
  color: #48526B;
}

.list-check li .bi {
  color: var(--fx-orange);
  margin-top: .15rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--fx-navy-900);
  color: #B9C2DA;
  padding: 74px 0 28px;
}

.footer .foot-logo {
  height: 42px;
  margin-bottom: 18px;
}

.footer h6 {
  color: #fff;
  font-family: 'Space Grotesk';
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 1.1rem;
  font-size: .95rem;
  text-transform: uppercase;
}

.footer a {
  color: #B9C2DA;
  display: inline-block;
  margin-bottom: .65rem;
  font-size: .92rem;
}

.footer a:hover {
  color: var(--fx-orange-400);
}

.footer .foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-grid;
  place-items: center;
  margin: 0 .4rem 0 0;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 1.05rem;
}

.footer .foot-social a:hover {
  background: var(--fx-orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer .foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 44px;
  padding-top: 24px;
  font-size: .85rem;
  color: #8090B0;
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1080;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}

.wa-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .55);
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: .55;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.wa-float .wa-tip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--fx-navy-900);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: .5rem .8rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  box-shadow: var(--fx-shadow);
}

.wa-float:hover .wa-tip {
  opacity: 1;
}

@media (max-width:575px) {
  .wa-float {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
    right: 16px;
    bottom: 16px;
  }

  .wa-float .wa-tip {
    display: none;
  }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width:991px) {
  .section {
    padding: 66px 0;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .cta-banner {
    padding: 40px;
  }

  .calc-card {
    padding: 26px;
  }

  .page-head {
    padding: 120px 0 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .floaty,
  .floaty-slow {
    animation: none;
  }

  .wa-float::before {
    animation: none;
  }
}