:root {
  --orange: #b64b24;
  --orange-dark: #aa421d;
  --form: #d8a08b;
  --footer: #5c5c5c;
  --white: #ffffff;
  --black: #111111;
  --body: #171717;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
    font-family: "Inter", Arial, sans-serif;
  color: var(--body);
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: -0.02em;
}

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

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

/* ==================================================
   HERO + HEADER
================================================== */


.hero-image {
  height: 520px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}


.hero {
  position: relative;
  min-height: 830px;

  color: #ffffff;

  background:
    url("../assets/hero-home.png")
    center center / cover no-repeat;

  background-color: #25292d;

  overflow: hidden;
}


/* Dark overlay over hero image */

.hero-overlay {
  position: absolute;
  inset: 0;

 background: linear-gradient(
    90deg,
    rgba(49, 66, 105, 0.48) 0%,
    rgba(67, 84, 126, 0.30) 55%,
    rgba(45, 58, 96, 0.18) 100%
  ) !important;
}

  pointer-events: none;
}


/* ==================================================
   HEADER
================================================== */

.section-title::before {
  content: "";
  display: block;

  width: 42px;
  height: 3px;

  margin: 0 auto 18px;

  background: #4A74E8;
  border-radius: 10px;
}


.site-header {
  position: relative;
  z-index: 5;

  padding-top: 48px;
}


/* Main navigation container */

.nav-shell {
  width: min(1535px, calc(100% - 80px));
  margin: 0 auto;

  min-height: 100px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: start;

  column-gap: 48px;
}


/* Left + right navigation */

.nav-left,
.nav-right {
  display: flex;
  align-items: center;

  gap: 42px;

  padding-top: 24px;
}


.nav-right {
  justify-content: flex-end;
}


/* Navigation links */

.nav-link {
  position: relative;

  color: #ffffff;

  font-size: 17px;
  line-height: 1;
  font-weight: 500;

  white-space: nowrap;

  border: 0;
  background: transparent;

  padding: 0 0 18px;

  cursor: pointer;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}


.nav-link:hover {
  color: #4A74E8;
}


/* Active navigation */

.nav-link.active {
  color: #4A74E8;
}


.nav-link.active::after {
  content: "";

  position: absolute;

  height: 3px;

  left: 0;
  right: 0;
  bottom: 0;

  background: #4A74E8;

  border-radius: 10px;
}


/* ==================================================
   PRODUCTS DROPDOWN
================================================== */

.dropdown {
  position: relative;
}


.dropdown-toggle i {
  margin-left: 7px;

  font-size: 12px;
}


.dropdown-menu {
  position: absolute;

  top: 42px;
  left: 0;

  min-width: 245px;

  padding: 10px;

  background: rgba(255, 255, 255, 0.98);

  border: 1px solid #eeeeee;
  border-radius: 14px;

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}


.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}


.dropdown-menu a {
  display: block;

  padding: 11px 14px;

  color: #666666;

  font-size: 14px;
  font-weight: 500;

  border-radius: 9px;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}


.dropdown-menu a:hover {
  color: #4A74E8;

  background: #F4F6FC;
}


/* ==================================================
   BTS LOGO
================================================== */

.header-logo {
  display: block;

  width: 220px;
  max-width: 220px;

  justify-self: center;
}


.header-logo img {
  display: block;

  width: 100%;
  height: auto;
}


/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.mobile-menu-button {
  display: none;

  border: 0;

  background: transparent;

  color: #ffffff;

  cursor: pointer;
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {
  position: relative;
  z-index: 3;

  width: min(1320px, calc(100% - 70px));

  margin: 150px auto 0;

  text-align: center;
}


/* Main hero heading */

.hero-content h1 {
  max-width: 1250px;

  margin: 0 auto;

  color: #ffffff;

  font-size: clamp(48px, 4vw, 70px);
  line-height: 1.08;

  font-weight: 500;

  letter-spacing: -0.03em;

  text-transform: none;
}


/* ==================================================
   HERO BUTTON
================================================== */

.hero-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-top: 40px;

  width: auto;

  min-width: 0;
  min-height: 0;

  padding: 14px 30px;

  background: #4A74E8;
  color: #ffffff;

  border: 1px solid #4A74E8;
  border-radius: 18px;

  font-size: 17px;
  line-height: 1;
  font-weight: 600;

  text-decoration: none;

  box-shadow:
    0 8px 22px rgba(74, 116, 232, 0.28);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.hero-button:hover {
  background: #3763D8;

  border-color: #3763D8;

  transform: translateY(-3px);

  box-shadow:
    0 12px 28px rgba(74, 116, 232, 0.34);
}

/* ==================================================
   HARDWARE SHOWCASE - FLOATING PRODUCT STYLE
================================================== */

.hardware-section {
  position: relative;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(74, 116, 232, 0.055) 0%,
      rgba(74, 116, 232, 0.018) 35%,
      transparent 65%
    ),
    #FFFFFF;

  padding: 95px 0 105px;

  color: #666666;

  overflow: hidden;
}


/* Main container */

.hardware-shell {
  width: min(1450px, calc(100% - 80px));
  margin: 0 auto;
}


/* ==================================================
   HEADING
================================================== */

.hardware-heading {
  max-width: 900px;

  margin: 0 auto 65px;

  text-align: center;
}


/* Small blue line */

.hardware-heading-line {
  display: block;

  width: 42px;
  height: 3px;

  margin: 0 auto 20px;

  background: #4A74E8;

  border-radius: 10px;
}


.hardware-heading h2 {
  margin: 0;

  color: #666666;

  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.08;

  font-weight: 500;

  letter-spacing: -0.03em;

  text-transform: none;
}


.hardware-heading p {
  max-width: 760px;

  margin: 24px auto 0;

  color: #7A7A7A;

  font-size: 17px;
  line-height: 1.6;

  font-weight: 400;
}


/* ==================================================
   CAROUSEL
================================================== */

.hardware-carousel {
  position: relative;

  display: grid;

  grid-template-columns: 55px 1fr 55px;

  align-items: center;

  gap: 20px;
}


.hardware-viewport {
  overflow: hidden;

  padding: 25px 0 40px;
}


.hardware-track {
  display: flex;

  align-items: stretch;

  gap: 20px;

  transition:
    transform 0.6s cubic-bezier(.22, .61, .36, 1);

  will-change: transform;
}


/* ==================================================
   INDIVIDUAL PRODUCT
   NO CARD / NO BORDER / NO BOX
================================================== */

.hardware-card {
  position: relative;

  flex: 0 0 calc((100% - 60px) / 3);

  min-width: 0;

  display: flex;
  flex-direction: column;

  align-items: center;

  padding: 10px 20px 15px;

  background: transparent !important;

  border: none !important;

  border-radius: 0 !important;

  box-shadow: none !important;

  overflow: visible;

  transition:
    transform 0.35s ease;
}


.hardware-card:hover {
  transform: translateY(-4px);
}


/* ==================================================
   CATEGORY LABEL
================================================== */

.hardware-category {
  display: inline-block;

  position: static;

  margin-bottom: 14px;

  padding: 0;

  background: transparent;

  color: #4A74E8;

  font-size: 11px;
  line-height: 1.2;

  font-weight: 600;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* ==================================================
   PRODUCT IMAGE AREA
================================================== */

.hardware-image {
  position: relative;

  width: 100%;
  height: 310px;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 10px 20px 25px;
}


/* Soft floating shadow under the device */

.hardware-image::after {
  content: "";

  position: absolute;

  left: 22%;
  right: 22%;

  bottom: 18px;

  height: 20px;

  background: rgba(40, 50, 70, 0.13);

  filter: blur(13px);

  border-radius: 50%;

  z-index: 0;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}


/* Product image */

.hardware-image img {
  position: relative;

  z-index: 1;

  display: block;

  max-width: 100%;
  max-height: 275px;

  width: auto;
  height: auto;

  object-fit: contain;

  mix-blend-mode: multiply;

  filter:
    drop-shadow(0 10px 14px rgba(0, 0, 0, 0.08));

  transition:
    transform 0.45s cubic-bezier(.22, .61, .36, 1),
    filter 0.45s ease;
}


/* Product movement */

.hardware-card:hover .hardware-image img {
  transform:
    translateY(-9px)
    scale(1.045);

  filter:
    drop-shadow(0 18px 20px rgba(0, 0, 0, 0.12));
}


.hardware-card:hover .hardware-image::after {
  transform: scaleX(0.88);

  opacity: 0.65;
}


/* ==================================================
   PRODUCT INFORMATION
================================================== */

.hardware-content {
  display: flex;

  flex-direction: column;

  align-items: center;

  flex-grow: 1;

  width: 100%;

  text-align: center;
}


.hardware-content h3 {
  margin: 0 0 11px;

  color: #666666;

  font-size: 20px;
  line-height: 1.3;

  font-weight: 500;
}


.hardware-content p {
  max-width: 300px;

  margin: 0 auto 18px;

  color: #7A7A7A;

  font-size: 14px;
  line-height: 1.55;

  font-weight: 400;
}


/* ==================================================
   VIEW HARDWARE LINK
================================================== */

.hardware-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: auto;

  color: #4A74E8;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  transition:
    gap 0.25s ease,
    color 0.25s ease;
}


.hardware-link i {
  font-size: 10px;
}


.hardware-link:hover {
  gap: 12px;

  color: #3763D8;
}


/* ==================================================
   CAROUSEL ARROWS
================================================== */

.hardware-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  margin: 0 auto;

  padding: 0;

  border: none;

  background: transparent;

  color: #4A74E8;

  font-size: 26px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}


.hardware-arrow:hover {
  color: #3763D8;

  transform: scale(1.13);
}


.hardware-arrow:disabled {
  opacity: 0.22;

  cursor: default;

  transform: none;
}


/* ==================================================
   BOTTOM CTA
================================================== */

.hardware-footer {
  margin-top: 25px;

  text-align: center;
}


/* Keep this much lighter than the other blue buttons */

.hardware-main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 11px 26px;

  background: #4A74E8;
  color: #FFFFFF;

  border: 1px solid #4A74E8;

  border-radius: 18px;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  box-shadow:
    0 8px 20px rgba(74, 116, 232, 0.20);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hardware-main-button:hover {
  background: #3763D8;
  border-color: #3763D8;

  transform: translateY(-2px);

  box-shadow:
    0 12px 25px rgba(74, 116, 232, 0.28);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

  .hardware-section {
    padding: 80px 0 90px;
  }


  .hardware-shell {
    width: calc(100% - 50px);
  }


  .hardware-carousel {
    grid-template-columns: 42px 1fr 42px;

    gap: 8px;
  }


  .hardware-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }


  .hardware-image {
    height: 285px;
  }


  .hardware-image img {
    max-height: 245px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

  .hardware-section {
    padding: 65px 0 75px;
  }


  .hardware-shell {
    width: calc(100% - 30px);
  }


  .hardware-heading {
    margin-bottom: 42px;
  }


  .hardware-heading h2 {
    font-size: 34px;
  }


  .hardware-heading p {
    font-size: 15px;
  }


  .hardware-carousel {
    grid-template-columns: 34px 1fr 34px;

    gap: 3px;
  }


  .hardware-card {
    flex: 0 0 100%;

    padding-inline: 10px;
  }


  .hardware-image {
    height: 270px;
  }


  .hardware-image img {
    max-height: 235px;
  }


  .hardware-content h3 {
    font-size: 19px;
  }


  .hardware-content p {
    font-size: 14px;
  }


  .hardware-arrow {
    width: 34px;
    height: 42px;

    font-size: 20px;
  }
}


/* ==================================================
   HERO RESPONSIVE - TABLET
================================================== */

@media (max-width: 1040px) {

  .hero {
    min-height: 720px;
  }


  .site-header {
    padding-top: 28px;
  }


  .nav-shell {
    width: calc(100% - 40px);

    grid-template-columns: 1fr auto;

    align-items: center;
  }


  .nav-left,
  .nav-right {
    display: none;
  }


  .header-logo {
    width: 150px;

    justify-self: start;
  }


  .mobile-menu-button {
    display: block;

    justify-self: end;

    font-size: 32px;
  }


  .hero-content {
    width: calc(100% - 50px);

    margin-top: 160px;
  }


  .hero-content h1 {
    font-size: clamp(42px, 6vw, 58px);

    line-height: 1.1;
  }


  .hero-button {
    margin-top: 35px;
  }
}


/* ==================================================
   HERO RESPONSIVE - MOBILE
================================================== */

@media (max-width: 700px) {

  .hero {
    min-height: 620px;
  }


  .header-logo {
    width: 135px;
  }


  .hero-content {
    width: calc(100% - 36px);

    margin-top: 130px;
  }


  .hero-content h1 {
    font-size: 36px;

    line-height: 1.1;

    letter-spacing: -0.02em;
  }


  .hero-button {
    margin-top: 30px;

    padding: 12px 24px;

    border-radius: 16px;

    font-size: 16px;
  }
}

/* ---------- INTRO ---------- */

.intro {
  padding: 95px 0 105px;
  background: #ffffff;
}

/* Keeps the whole section nicely contained */
.intro .wide-shell {
  width: min(1280px, calc(100% - 100px));
  margin: 0 auto;
  text-align: center;
}

/* Main heading */

.intro h2 {
  max-width: 800px;
  margin: 0 auto 42px;

  color: #5F5F5F;

  font-size: clamp(46px, 4.5vw, 74px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.035em;

  text-transform: none !important;
}

/* Supporting line */
.intro h3 {
  max-width: 800px;
  margin: 0 auto 38px;

  color: #747474;

  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.5;
  font-weight: 400;

  text-transform: none;
}

/* Body copy */
.intro p {
  max-width: 800px;
  margin: 0 auto 18px;

  color: #969696;

  font-size: 20px;
  line-height: 1.6;
  font-weight: 100;
}

/* Tablet */
@media (max-width: 600px) {
  .intro {
    padding: 75px 0 80px;
  }

  .intro .wide-shell {
    width: min(100% - 50px, 1280px);
  }

  .intro h2 {
    font-size: 44px;
  }

  .intro p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 300px) {
  .intro {
    padding: 60px 0 65px;
  }

  .intro .wide-shell {
    width: calc(100% - 32px);
  }

  .intro h2 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 28px;
  }

  .intro h3 {
    font-size: 17px;
    margin-bottom: 28px;
  }

  .intro p {
    font-size: 17px;
    line-height: 1.6;
  }
}

/* ---------- SHARED ORANGE SECTIONS ---------- */



.orange-section {
  background: var(--orange);
  color: #fff;
}

.solutions-section {
   background: #2D3656;
}

.section-shell {
  width: min(1920px, 100%);
  margin: 0 auto;
  padding: 68px 90px 60px;
}

.section-title {
  text-align: center;
  font-size: 35px;
  line-height: 1.2;
  margin: 0 0 80px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  width: min(1600px, calc(100% - 180px));
  margin: 0 auto;
}

.carousel-frame {
  position: relative;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.carousel-arrow.left {
  left: 0;
}

.carousel-arrow.right {
  right: 0;
}

.feature-card {
  min-height: 512px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 58px 46px;
  text-align: center;
}

.feature-card h3 {
  margin: 0 0 36px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.feature-card p {
  max-width: 440px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  min-height: 59px;
  padding: 10px 24px;
  border: 2px solid #fff;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 600;
}

/* ---------- SOLUTIONS ---------- */

/* ==================================================
   OUR SOLUTIONS - LARGER / MORE VISUAL IMPACT
================================================== */

.solutions-section {
  position: relative;

  background: #F0F3FA;

  color: #666666;

  padding: 100px 0 115px;

  overflow: hidden;
}


/* Very subtle blue glow behind the cards */
.solutions-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 420px;

  left: 50%;
  top: 52%;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(74, 116, 232, 0.075) 0%,
    rgba(74, 116, 232, 0.025) 42%,
    transparent 72%
  );

  pointer-events: none;
}


/* ==================================================
   SECTION HEADING
================================================== */

.solutions-section .section-title {
  position: relative;

  z-index: 2;

  margin: 0 0 65px;

  color: #666666;

  text-align: center;

  font-size: 46px;
  line-height: 1.1;

  font-weight: 500;

  letter-spacing: -0.03em;

  text-transform: none;
}


/* Blue line above heading */

.solutions-section .section-title::before {
  content: "";

  display: block;

  width: 44px;
  height: 3px;

  margin: 0 auto 20px;

  background: #4A74E8;

  border-radius: 10px;
}


/* ==================================================
   CAROUSEL AREA
================================================== */

.solutions-section .carousel-frame {
  position: relative;

  z-index: 2;
}


/* Make entire group approximately 20% larger */

.solutions-section .card-grid {
  width: min(1160px, calc(100% - 150px));

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 34px;
}


/* ==================================================
   SOLUTION CARDS
================================================== */

.solutions-section .feature-card {
  position: relative;

  min-height: 340px;

  padding: 42px 38px 34px;

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  background: #FFFFFF;

  border:
    1px solid rgba(74, 116, 232, 0.10);

  border-radius: 25px;

  overflow: hidden;

  box-shadow:
    0 14px 34px rgba(35, 45, 70, 0.065);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


/* Subtle blue accent at top of each card */

.solutions-section .feature-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  transform: translateX(-50%);

  background: #4A74E8;

  border-radius: 0 0 10px 10px;

  transition: width 0.35s ease;
}


/* Card hover */

.solutions-section .feature-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(74, 116, 232, 0.28);

  box-shadow:
    0 22px 44px rgba(74, 116, 232, 0.12);
}


/* Blue accent grows gently on hover */

.solutions-section .feature-card:hover::before {
  width: 72px;
}


/* ==================================================
   CARD TITLE
================================================== */

.solutions-section .feature-card h3 {
  margin: 0 0 22px;

  color: #626262;

  font-size: 21px;
  line-height: 1.25;

  font-weight: 500;
}


/* ==================================================
   CARD COPY
================================================== */

.solutions-section .feature-card p {
  max-width: 285px;

  margin: 0 auto 28px;

  color: #7A7A7A;

  font-size: 15px;
  line-height: 1.58;

  font-weight: 400;
}


/* ==================================================
   READ MORE BUTTON
================================================== */

.solutions-section .read-more {
  margin-top: auto;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 132px;
  min-height: 42px;

  padding: 10px 20px;

  background: #4A74E8;

  border: 1px solid #4A74E8;

  border-radius: 18px;

  color: #FFFFFF;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  box-shadow:
    0 7px 16px rgba(74, 116, 232, 0.18);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.solutions-section .read-more:hover {
  background: #3763D8;

  transform: translateY(-2px);

  box-shadow:
    0 10px 22px rgba(74, 116, 232, 0.27);
}


/* ==================================================
   CAROUSEL ARROWS
================================================== */

.solutions-section .carousel-arrow {
  color: #4A74E8;

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}


.solutions-section .carousel-arrow:hover {
  color: #3763D8;

  transform: scale(1.15);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

  .solutions-section .card-grid {
    width: min(900px, calc(100% - 100px));

    gap: 25px;
  }


  .solutions-section .feature-card {
    min-height: 330px;

    padding: 36px 28px 30px;
  }


  .solutions-section .feature-card h3 {
    font-size: 19px;
  }


  .solutions-section .feature-card p {
    font-size: 14px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

  .solutions-section {
    padding: 70px 0 80px;
  }


  .solutions-section .section-title {
    font-size: 36px;

    margin-bottom: 45px;
  }


  .solutions-section .card-grid {
    width: min(500px, calc(100% - 70px));

    grid-template-columns: 1fr;
  }


  .solutions-section .feature-card {
    min-height: 320px;
  }
}

/* ==================================================
   SCROLL REVEAL
================================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(.22, .61, .36, 1);
}

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


/* Optional stagger for cards/items */

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

/* ---------- PAYROLL ---------- */
.payroll-section {
  background: #F0F3FA;
  color: #666666;

  padding: 90px 0 100px;
}


/* Main inner container */

.payroll-section .section-shell {
  padding-top: 0;
}


/* ==================================================
   MAIN HEADING
================================================== */

.payroll-heading {
  position: relative;

  max-width: 950px;

  margin: 0 auto;

  padding-top: 0;

  text-align: center;

  color: #666666;

  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.08;

  font-weight: 500;

  letter-spacing: -0.03em;

  text-transform: none;
}


/* Small blue accent line above heading */

.payroll-heading::before {
  content: "";

  display: block;

  width: 42px;
  height: 3px;

  margin: 0 auto 20px;

  background: #4A74E8;

  border-radius: 10px;
}


/* ==================================================
   SUBHEADING
================================================== */

.payroll-subheading {
  max-width: 850px;

  margin: 28px auto 58px;

  text-align: center;

  color: #7A7A7A;

  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;

  font-weight: 400;

  text-transform: none;
}


/* ==================================================
   PAYROLL CARDS
================================================== */

.payroll-section .feature-card {
  min-height: 390px;

  background: #FFFFFF;

  border: 1px solid rgba(74, 116, 232, 0.10);

  border-radius: 24px;

  color: #666666;

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


/* Card headings */

.payroll-section .feature-card h3 {
  color: #666666;

  font-weight: 500;
}


/* Card paragraph text */

.payroll-section .feature-card p {
  color: #7A7A7A;

  line-height: 1.55;
}


/* ==================================================
   CARD HOVER
================================================== */

.payroll-section .feature-card:hover {
  transform: translateY(-6px);

  border-color: rgba(74, 116, 232, 0.30);

  box-shadow:
    0 18px 38px rgba(74, 116, 232, 0.10);
}


/* ==================================================
   READ MORE BUTTON
================================================== */

.payroll-section .read-more {
  background: #4A74E8;

  color: #FFFFFF;

  border: 1px solid #4A74E8;

  border-radius: 18px;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.payroll-section .read-more:hover {
  background: #3763D8;

  border-color: #3763D8;

  transform: translateY(-2px);

  box-shadow:
    0 8px 18px rgba(74, 116, 232, 0.22);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  .payroll-section {
    padding: 70px 0 80px;
  }


  .payroll-heading {
    font-size: 38px;
  }


  .payroll-subheading {
    margin: 24px auto 45px;

    font-size: 18px;
  }


  .payroll-section .feature-card {
    min-height: 340px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .payroll-section {
    padding: 60px 0 70px;
  }


  .payroll-heading {
    font-size: 32px;
  }


  .payroll-heading::before {
    width: 36px;

    margin-bottom: 16px;
  }


  .payroll-subheading {
    margin: 22px auto 38px;

    font-size: 16px;
  }


  .payroll-section .feature-card {
    min-height: 320px;
  }
}

/* ---------- QUOTE ---------- */

.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 750px;
  border-top: 10px solid #666;
}

.quote-image {
  min-height: 750px;
  background: url("../assets/quote-fingerprint.jpg") center center / cover no-repeat;
}

.quote-panel {
    background: #28323C;
  color: #fff;
}

.quote-inner {
  padding: 20px 37px 32px 40px;
}

.quote-inner h2 {
  margin: 0 0 28px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 700;
}

.quote-form {
  display: grid;
  gap: 31px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: #3A4652;
  border-radius: 20px;
  padding: 12px 17px;
  font-size: 17px;
}

.quote-form input,
.quote-form select {
  height: 50px;
}

.quote-form textarea {
  min-height: 170px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #fff;
  opacity: 1;
}

.quote-form select {
  appearance: auto;
}

.submit-button {
  justify-self: start;
  min-width: 103px;
  min-height: 52px;
  padding: 8px 22px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 600;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials-section {
  min-height: 755px;
  padding: 0 0 78px;
  background: #fff;
}

.testimonial-shell {
  width: min(1450px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

.testimonials-section h2 {
  font-size: clamp(43px, 3.2vw, 63px);
  padding-top: 0;
}

.testimonials-section h3 {
  margin: 26px 0 72px;
  color: var(--orange);
  font-size: 23px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
}

.testimonial-arrow {
  border: 0;
  background: transparent;
  color: var(--orange);
  font-size: 34px;
  cursor: pointer;
}

.testimonial-card {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  padding: 20px 42px;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 18px solid #f8f8f8;
}

.testimonial-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.testimonial-person {
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-person strong {
  font-size: 18px;
}

.testimonial-person span {
  color: #7A7A7A;
  font-size: 17px;
  font-weight: 600;
}

.testimonial-dots {
  margin-top: 51px;
  display: flex;
  justify-content: center;
  gap: 13px;
}

.testimonial-dot {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 50%;
  background: #050505;
  padding: 0;
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--orange);
}

/* ---------- FOOTER ---------- */

/* ==================================================
   FOOTER
================================================== */
/* ==================================================
   FOOTER - FINAL
================================================== */

.footer-main {
  background: #E7E7E7 !important;
  color: #666666;

  padding: 70px 0 28px;
}


/* Main four-column layout */

.footer-shell {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;

  display: grid !important;

  grid-template-columns:
    1.15fr
    0.75fr
    1.15fr
    0.8fr !important;

  gap: 55px;

  align-items: start;
}


/* ==================================================
   COLUMN 1 - BTS / JARRISON
================================================== */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* BTS logo */

.footer-bts-logo {
  display: block;

  width: 145px;
  height: auto;

  margin: 0 0 24px;
}


/* Powered by text */

.footer-brand p {
  margin: 0 0 25px;

  color: #666666;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;

  text-transform: uppercase;
}


/* Jarrison logo */

.jarrison-logo {
  display: block;

  width: 155px;
  height: auto;
}


/* ==================================================
   FOOTER COLUMN HEADINGS
================================================== */

.footer-column h4 {
  margin: 0 0 25px;

  color: #5F5F5F;

  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;

  text-transform: uppercase;
}


/* ==================================================
   SITEMAP
================================================== */

.footer-column a {
  display: block;

  width: fit-content;

  margin: 0 0 8px;

  color: #666666;

  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;

  text-decoration: none;

  transition: color 0.25s ease;
}


.footer-column a:hover {
  color: #4A74E8;
}


/* ==================================================
   SUPPORT
================================================== */

.support-column p {
  margin: 0;

  color: #666666;

  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}


/* ==================================================
   FOLLOW US
================================================== */

.socials {
  display: flex;
  align-items: center;

  gap: 22px;

  margin: 0 0 30px;
}


.socials a {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  margin: 0;

  color: #666666;

  font-size: 23px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.socials a:hover {
  color: #4A74E8;

  transform: translateY(-2px);
}


/* B-BBEE badge */

.bbbee-logo {
  display: block;

  width: 95px;
  height: auto;

  margin-top: 28px;
}


/* ==================================================
   COPYRIGHT
================================================== */

.copyright {
  width: min(1200px, calc(100% - 80px));

  margin: 65px auto 0;

  padding-top: 24px;

  border-top: 1px solid #BDBDBD;

  text-align: center;

  color: #777777;

  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
}
/* ---------- WHY BTS ---------- */
/* ==================================================
   WHY BUSINESSES CHOOSE BTS - FINAL LAYOUT
   KEEP AT VERY BOTTOM OF STYLE.CSS
================================================== */
/* ==================================================
   WHY CHOOSE BTS - EXPANDING SLIDER
================================================== */

.why-bts-section {
  padding: 100px 0 110px;
  background: #ffffff;
  overflow: hidden;
}

.why-bts-shell {
  width: min(1500px, calc(100% - 80px));
  margin: 0 auto;
}

.why-bts-line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 0 auto 20px;
  background: #4A74E8;
  border-radius: 10px;
}

.why-bts-heading {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 52px;
}

.why-bts-heading h2 {
  margin: 0 0 18px;
  color: #666666;
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.why-bts-heading p {
  margin: 0;
  color: #7A7A7A;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.why-bts-panels {
  display: flex;
  gap: 14px;
  align-items: stretch;
  min-height: 500px;
}

.why-bts-panel {
  position: relative;
  flex: 0.85;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #E9EEF8;
  transition:
    flex 0.65s cubic-bezier(.22, .61, .36, 1),
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 14px 34px rgba(20, 30, 50, 0.08);
}

.why-bts-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(20, 30, 50, 0.12);
}

.why-bts-panel.active {
  flex: 4.2;
}

.why-bts-image {
  position: absolute;
  inset: 0;
}

.why-bts-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.why-bts-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(28, 42, 70, 0.18) 0%,
      rgba(28, 42, 70, 0.32) 50%,
      rgba(28, 42, 70, 0.48) 100%
    );
  transition: background 0.35s ease;
}

.why-bts-panel.active .why-bts-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(32, 52, 86, 0.52) 0%,
      rgba(32, 52, 86, 0.64) 50%,
      rgba(32, 52, 86, 0.74) 100%
    );
}

.why-bts-plus {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2F4365;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.why-bts-panel.active .why-bts-plus {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.85);
}

.why-bts-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  text-align: center;
}

.why-bts-content-inner {
  max-width: 720px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.why-bts-panel.active .why-bts-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.why-bts-number {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-bts-content h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(28px, 2.3vw, 46px);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.why-bts-content p {
  margin: 0 auto;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.why-bts-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.why-bts-arrow {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #4A74E8;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(74, 116, 232, 0.22);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-bts-arrow:hover {
  background: #3763D8;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(74, 116, 232, 0.28);
}

.why-bts-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-bts-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(74, 116, 232, 0.22);
  padding: 0;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.why-bts-dot.active {
  background: #4A74E8;
  transform: scale(1.15);
}

/* Tablet */
@media (max-width: 1100px) {
  .why-bts-shell {
    width: calc(100% - 40px);
  }

  .why-bts-panels {
    min-height: 440px;
    gap: 10px;
  }

  .why-bts-panel {
    flex: 0.95;
  }

  .why-bts-panel.active {
    flex: 3.5;
  }

  .why-bts-content {
    padding: 36px;
  }

  .why-bts-content h3 {
    font-size: 34px;
  }

  .why-bts-content p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .why-bts-section {
    padding: 75px 0 80px;
  }

  .why-bts-shell {
    width: calc(100% - 28px);
  }

  .why-bts-heading {
    margin-bottom: 34px;
  }

  .why-bts-heading p {
    font-size: 16px;
  }

  .why-bts-panels {
    display: block;
    min-height: auto;
  }

  .why-bts-panel {
    display: none;
    width: 100%;
    min-height: 420px;
    border-radius: 20px;
  }

  .why-bts-panel.active {
    display: block;
  }

  .why-bts-plus {
    display: none;
  }

  .why-bts-content {
    padding: 34px 22px;
  }

  .why-bts-content-inner {
    opacity: 1;
    transform: none;
  }

  .why-bts-content h3 {
    font-size: 28px;
  }

  .why-bts-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .why-bts-controls {
    margin-top: 24px;
    gap: 16px;
  }

  .why-bts-arrow {
    width: 44px;
    height: 44px;
  }
}

/* ---------- SUPPORTING LINE ---------- */

.why-section h3 {
  max-width: 900px;
  margin: 0 auto 60px;

  text-align: center;

  color: #7A7A7A;

  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;

  text-transform: none;
}


/* ==================================================
   DESKTOP LAYOUT
   Text | Image | Text
================================================== */

.why-layout {
  display: grid;

  grid-template-columns:
    210px
    minmax(400px, 470px)
    210px;

  justify-content: center;
  align-items: stretch;

  gap: 45px;
}


/* ---------- IMAGE ---------- */

.why-image-wrap {
  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.why-image-wrap img {
  display: block;

  width: 100%;
  height: 500px;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.why-image-wrap:hover img {
  transform: scale(1.025);
}


/* ---------- COPY COLUMNS ---------- */

.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 18px 0;
}

.why-copy article {
  position: relative;

  width: 100%;
  max-width: 210px;

  padding-top: 18px;
}


/* ---------- BLUE ACCENT LINE ---------- */

.why-copy article::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 36px;
  height: 3px;

  background: #4A74E8;

  border-radius: 20px;
}


/* ---------- BENEFIT HEADING ---------- */

.why-copy h4 {
  margin: 0 0 14px;

  color: #666666;

  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}


/* ---------- BENEFIT TEXT ---------- */

.why-copy p {
  margin: 0;

  color: #7A7A7A;

  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}


/* Right side benefits */

.right-copy article {
  margin-left: auto;
}



/* ==================================================
   TABLET / NARROW PREVIEW
   Image left | 2 benefit columns right
================================================== */

@media (min-width: 601px) and (max-width: 1100px) {

  .why-section {
    padding: 75px 0 85px;
  }

  .why-shell {
    width: min(960px, calc(100% - 50px));
  }

  .why-section h2 {
    font-size: clamp(34px, 4vw, 46px);
  }

  .why-section h3 {
    margin-bottom: 48px;
  }


  .why-layout {
    display: grid !important;

    grid-template-columns:
      minmax(280px, 360px)
      minmax(170px, 1fr)
      minmax(170px, 1fr) !important;

    gap: 30px;

    align-items: stretch;
  }


  /* Image on left */

  .why-image-wrap {
    grid-column: 1 !important;
    grid-row: 1 !important;

    width: 100%;
    margin: 0;

    order: unset !important;
  }

  .why-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 440px;

    object-fit: cover;
  }


  /* First 2 benefits */

  .left-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;

    order: unset !important;
  }


  /* Second 2 benefits */

  .right-copy {
    grid-column: 3 !important;
    grid-row: 1 !important;

    order: unset !important;
  }


  .why-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 32px;

    padding: 8px 0;
  }


  .why-copy article,
  .right-copy article {
    width: 100%;
    max-width: 100%;

    margin: 0;
  }


  .why-copy h4 {
    font-size: 15px;
  }


  .why-copy p {
    font-size: 13.5px;
    line-height: 1.55;
  }
}



/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .why-section {
    padding: 60px 0 70px;
  }

  .why-shell {
    width: calc(100% - 36px);
  }


  .why-section h2 {
    font-size: 34px;
    line-height: 1.1;

    margin-bottom: 18px;
  }


  .why-section h3 {
    font-size: 16px;

    margin-bottom: 38px;
  }


  .why-layout {
    display: flex !important;
    flex-direction: column !important;

    width: 100%;

    gap: 35px;
  }


  /* Image first */

  .why-image-wrap {
    order: 1 !important;
  }

  .why-image-wrap img {
    height: 340px;
  }


  /* Benefits underneath */

  .left-copy {
    order: 2 !important;
  }

  .right-copy {
    order: 3 !important;
  }


  .why-copy {
    gap: 35px;

    padding: 0;
  }


  .why-copy article,
  .right-copy article {
    width: 100%;
    max-width: 100%;

    margin: 0;
  }


  .why-copy h4 {
    font-size: 18px;
  }


  .why-copy p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ==================================================
   PAYROLL / WORKFORCE SECTION
================================================== */

.payroll-section {
  background: #F5F5F5;
  padding: 90px 0 100px;
  color: #7A7A7A;
}

.payroll-section .section-title {
  max-width: 900px;
  margin: 0 auto 22px;
  text-align: center;

  color: #666666;

  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;

  text-transform: none;
}

.payroll-section .section-subtitle {
  max-width: 800px;
  margin: 0 auto 55px;

  text-align: center;

  color: #7A7A7A;

  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.payroll-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  width: min(1080px, calc(100% - 120px));
  margin: 0 auto;

  gap: 32px;
}

.payroll-section .feature-card {
  background: #FFFFFF;

  border: 1px solid #E7E7E7;
  border-radius: 24px;

  padding: 38px 32px;
  min-height: 340px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.045);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.payroll-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
}

.payroll-section .feature-card h3 {
  margin: 0 0 20px;

  color: #666666;

  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

.payroll-section .feature-card p {
  max-width: 270px;

  margin: 0 0 26px;

  color: #7A7A7A;

  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.payroll-section .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  min-width: 0;
  min-height: 0;

  margin-top: auto;

  padding: 10px 22px;

  background: #4A74E8;
  color: #FFFFFF;

  border: 1px solid #4A74E8;
  border-radius: 20px;

  font-size: 14px;
  line-height: 1;
  font-weight: 600;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.payroll-section .read-more:hover {
  background: #3763D8;
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(74, 116, 232, 0.22);
}

.payroll-section .carousel-arrow {
  color: #4A74E8;
}

/* ==================================================
   GET A QUOTE
================================================== */


.quote-section {
  width: min(1280px, calc(100% - 80px)) !important;
  margin: 80px auto !important;

  display: grid !important;
  grid-template-columns: 1fr 1fr !important;

  background: #F3F3F3 !important;

  border-radius: 24px !important;
  overflow: hidden !important;

  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05) !important;
}


/* ---------- LEFT IMAGE ---------- */

.quote-image {
  min-height: 520px !important;

  background-image: url("../assets/quote-fingerprint.jpg") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}


/* ---------- RIGHT FORM PANEL ---------- */

.quote-content {
  background: #F3F3F3 !important;

  display: flex !important;
  align-items: center !important;

  color: #7A7A7A !important;
}


.quote-inner {
  width: 100% !important;

  padding: 48px 44px !important;

  background: #F3F3F3 !important;
}


/* ---------- HEADING ---------- */

.quote-inner h2 {
  max-width: 440px !important;

  margin: 0 0 28px !important;

  color: #666666 !important;

  font-size: clamp(34px, 2.7vw, 46px) !important;
  line-height: 1.08 !important;

  font-weight: 500 !important;

  letter-spacing: -0.03em !important;

  text-transform: none !important;
}


/* ---------- FORM ---------- */

.quote-form {
  display: flex !important;
  flex-direction: column !important;

  gap: 14px !important;
}


/* First name / last name etc */

.form-row.two {
  display: grid !important;

  grid-template-columns: 1fr 1fr !important;

  gap: 14px !important;
}


/* ---------- FORM FIELDS ---------- */

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100% !important;

  margin: 0 !important;

  background: #FFFFFF !important;

  color: #7A7A7A !important;

  border: 1px solid #E3E3E3 !important;

  border-radius: 14px !important;

  padding: 13px 16px !important;

  font-family: inherit !important;

  font-size: 14px !important;
  font-weight: 400 !important;

  outline: none !important;

  box-shadow: none !important;

  box-sizing: border-box !important;
}


/* Normal field height */

.quote-form input,
.quote-form select {
  min-height: 48px !important;
  height: 48px !important;
}


/* Message */

.quote-form textarea {
  min-height: 115px !important;
  height: 115px !important;

  resize: vertical !important;
}


/* Placeholder colour */

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9A9A9A !important;

  opacity: 1 !important;
}


/* Select text */

.quote-form select {
  color: #7A7A7A !important;

  cursor: pointer !important;
}


/* Blue focus */

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #4A74E8 !important;

  box-shadow:
    0 0 0 3px rgba(74, 116, 232, 0.10) !important;
}


/* ---------- SUBMIT BUTTON ---------- */

.quote-form button,
.quote-submit {
  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  align-self: flex-start !important;

  width: auto !important;

  min-width: 120px !important;
  min-height: 0 !important;

  margin-top: 5px !important;

  padding: 12px 24px !important;

  background: #4A74E8 !important;

  color: #FFFFFF !important;

  border: 1px solid #4A74E8 !important;

  border-radius: 18px !important;

  font-family: inherit !important;

  font-size: 14px !important;
  font-weight: 600 !important;

  cursor: pointer !important;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease !important;
}


.quote-form button:hover,
.quote-submit:hover {
  background: #3763D8 !important;

  border-color: #3763D8 !important;

  transform: translateY(-2px) !important;

  box-shadow:
    0 8px 18px rgba(74, 116, 232, 0.22) !important;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 800px) {

  .quote-section {
    width: calc(100% - 40px) !important;

    grid-template-columns: 1fr !important;

    margin: 65px auto !important;
  }


  .quote-image {
    min-height: 300px !important;
  }


  .quote-inner {
    padding: 40px 30px 45px !important;
  }


  .quote-inner h2 {
    max-width: none !important;

    font-size: 36px !important;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .quote-section {
    width: calc(100% - 24px) !important;

    margin: 50px auto !important;

    border-radius: 18px !important;
  }


  .quote-image {
    min-height: 230px !important;
  }


  .quote-inner {
    padding: 32px 20px 36px !important;
  }


  .quote-inner h2 {
    font-size: 30px !important;

    margin-bottom: 24px !important;
  }


  .form-row.two {
    grid-template-columns: 1fr !important;
  }


  .quote-form {
    gap: 12px !important;
  }


  .quote-form button,
  .quote-submit {
    width: 100% !important;
  }
}

.quote-section {
  background: #F3F3F3 !important;
  border: none !important;
  outline: none !important;
}

.quote-content,
.quote-inner {
  background: #F3F3F3 !important;
  border: none !important;
  outline: none !important;
}

.quote-image {
  border: none !important;
  outline: none !important;
}

/* ==================================================
   TESTIMONIALS
================================================== */

.testimonials-section {
  background: #FFFFFF;
  padding: 85px 0 95px;
}

/* Main heading */
.testimonials-section h2 {
  color: #666666;
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: none;
}

/* Supporting line */
.testimonials-section h3 {
  color: #7A7A7A;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}

/* Testimonial quote */
.testimonial-card {
  background: #F6F6F6;
}

.testimonial-card p {
  color: #666666;
}

/* Customer name */
.testimonial-name {
  color: #666666;
}

/* Customer job title/company */
.testimonial-role {
  color: #7A7A7A;
}

/* Left and right arrows */
.testimonial-arrow,
.testimonial-carousel button {
  color: #4A74E8;
}

/* Dots */
.testimonial-dot {
  background: #D6D6D6;
}

/* Active dot */
.testimonial-dot.active {
  background: #4A74E8;
}

/* ==================================================
   CONTACT STRIP
================================================== */
.contact-strip {
  position: relative !important;
  z-index: 10 !important;

  width: min(1650px, calc(100% - 120px)) !important;
  margin: 0 auto -45px !important;

  display: grid !important;

  /* 3 items ACROSS, not stacked */
  grid-template-columns: 1fr 1.45fr 0.85fr !important;

  align-items: center !important;

  gap: 55px !important;

  padding: 26px 65px !important;

  background: #4A74E8 !important;

  border: none !important;
  border-radius: 34px !important;

  box-sizing: border-box !important;
}


/* EACH CONTACT ITEM */

.contact-strip .contact-item {
  display: flex !important;
  flex-direction: row !important;

  align-items: center !important;

  gap: 26px !important;

  width: auto !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 0 !important;
}


/* ICON CIRCLES */

.contact-strip .contact-item img {
  display: block !important;

  width: 92px !important;
  height: 92px !important;

  flex: 0 0 92px !important;

  object-fit: contain !important;

  margin: 0 !important;
}


/* TEXT WRAPPER */

.contact-strip .contact-item > div {
  width: auto !important;
  min-width: 0 !important;

  margin: 0 !important;
}


/* LOCATION / EMAIL / TEL */

.contact-strip .contact-item strong {
  display: block !important;

  margin: 0 0 8px !important;

  color: #FFFFFF !important;

  font-size: 21px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
}


/* DETAILS */

.contact-strip .contact-item span {
  display: block !important;

  margin: 0 !important;

  color: #FFFFFF !important;

  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;

  white-space: nowrap !important;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

  .contact-strip {
    width: calc(100% - 50px) !important;

    grid-template-columns: repeat(3, 1fr) !important;

    gap: 25px !important;

    padding: 22px 28px !important;
  }


  .contact-strip .contact-item {
    gap: 15px !important;
  }


  .contact-strip .contact-item img {
    width: 68px !important;
    height: 68px !important;

    flex-basis: 68px !important;
  }


  .contact-strip .contact-item strong {
    font-size: 16px !important;
  }


  .contact-strip .contact-item span {
    font-size: 13px !important;
  }
}


/* ==================================================
   PHONE
================================================== */

@media (max-width: 700px) {

  .contact-strip {
    width: calc(100% - 30px) !important;

    grid-template-columns: 1fr !important;

    gap: 22px !important;

    padding: 28px 25px !important;

    border-radius: 24px !important;

    margin-bottom: -35px !important;
  }


  .contact-strip .contact-item {
    width: 100% !important;
  }


  .contact-strip .contact-item img {
    width: 64px !important;
    height: 64px !important;

    flex-basis: 64px !important;
  }


  .contact-strip .contact-item strong {
    font-size: 17px !important;
  }


  .contact-strip .contact-item span {
    font-size: 14px !important;

    white-space: normal !important;
  }
}

/* ---------- RESPONSIVE ---------- */

.why-layout {
  grid-template-columns: 190px 380px 190px;
  gap: 35px;
}

.why-section {
  padding: 60px 0 70px;
}

.why-shell {
  width: calc(100% - 36px);
}

.why-section h3 {
  font-size: 17px;
  margin-bottom: 42px;
}

.why-image-wrap img {
  height: 420px;
}

  .nav-left,
  .nav-right {
    gap: 24px;
  }

  .nav-link {
    font-size: 16px;
  }

  .why-layout {
    grid-template-columns: 180px 330px 180px;
    gap: 30px;
  }

  .card-grid {
    width: calc(100% - 140px);
    gap: 28px;
  }

  .feature-card {
    padding-inline: 30px;
  }


@media (max-width: 900px) {

  .hero {
    min-height: 720px;
  }

  .solutions-section .card-grid {
    width: min(900px, calc(100% - 100px));
    gap: 28px;
  }

  .solutions-section .feature-card {
    aspect-ratio: auto;
    min-height: 330px;
    padding: 32px 28px;
  }

  .solutions-section .feature-card h3 {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .solutions-section .feature-card p {
    margin-bottom: 22px;
  }

  .solutions-section .read-more {
    margin-top: auto;
  }

}

.feature-card {
  aspect-ratio: auto;
  min-height: 330px;
  padding: 32px 28px;
}

  .site-header {
    padding-top: 28px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .header-logo {
    justify-self: start;
    transform: scale(.8);
    transform-origin: left top;
  }

  .mobile-menu-button {
    display: block;
    justify-self: end;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
  }

  .hero-content {
    margin-top: 190px;
  }

  .hero-content h1 {
    font-size: clamp(35px, 7vw, 52px);
  }

  .intro {
    min-height: auto;
    padding-block: 70px;
  }

  .intro h3 {
    margin: 45px auto 35px;
  }

  .intro p {
    font-size: 18px;
  }

  .section-shell {
    padding-inline: 25px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    width: min(540px, calc(100% - 70px));
  }

  .feature-card {
    min-height: 380px;
  }

  .carousel-arrow.left {
    left: -5px;
  }

  .carousel-arrow.right {
    right: -5px;
  }

.why-layout {
  display: flex;
  flex-direction: column;
  width: min(620px, 100%);
  margin: 0 auto;
  gap: 40px;
}

.why-image-wrap {
  order: 1;
}

.left-copy {
  order: 2;
}

.right-copy {
  order: 3;
}

  .why-copy {
    gap: 35px;
  }

  .why-copy article {
    max-width: none;
  }

  .why-copy h4 {
    font-size: 18px;
  }

  .why-copy p {
    font-size: 16px;
  }

   .contact-strip {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: -40px;
  }

  .footer-main {
    margin-top: -45px;
  }

  .footer-shell {
    grid-template-columns: 1fr 1fr;
    gap: 55px 30px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-top: 150px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .intro h2,
  .why-section h2,
  .testimonials-section h2 {
    font-size: 34px;
  }

  .intro h3 {
    font-size: 18px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .quote-form {
    gap: 18px;
  }

  .testimonial-carousel {
    grid-template-columns: 36px 1fr 36px;
  }

  .testimonial-card {
    padding-inline: 20px;
  }

  .testimonial-card p {
    font-size: 16px;
  }

  .contact-item img {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .contact-item strong {
    font-size: 20px;
  }

  .contact-item span {
    font-size: 15px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }
}
.quote-section {
  align-items: stretch !important;
  background: #F3F3F3 !important;
}

/* Let the form side stretch to the same height as the image */
.quote-content {
  height: 100% !important;
  min-height: 100% !important;
  background: #F3F3F3 !important;
  align-self: stretch !important;
}

/* Make the light grey fill the full right-hand side */
.quote-inner {
  height: 100% !important;
  min-height: 100% !important;
  box-sizing: border-box !important;

  background: #F3F3F3 !important;
}

/* Image fills its grid column */
.quote-image {
  height: 100% !important;
}

/* ==================================================
   PAYROLL SECTION - FINAL COLOUR OVERRIDE
================================================== */


.payroll-section {
  background: #F0F3FA !important;

  /* remove any old oversized section height */
  min-height: auto !important;

  padding: 75px 0 90px !important;
}


/* Main container */
.payroll-section .section-shell {
  padding-top: 0 !important;
  padding-bottom: 0 !important;

  min-height: auto !important;
}


/* MAIN HEADING */
.payroll-heading {
  position: relative !important;

  max-width: 950px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  text-align: center !important;

  color: #666666 !important;

  font-size: clamp(34px, 3vw, 50px) !important;
  line-height: 1.08 !important;

  font-weight: 500 !important;

  letter-spacing: -0.03em !important;
}


/* BLUE LINE - KEEP IT CLOSE TO HEADING */
.payroll-heading::before {
  content: "" !important;

  position: static !important;

  display: block !important;

  width: 42px !important;
  height: 3px !important;

  margin: 0 auto 20px !important;

  background: #4A74E8 !important;

  border-radius: 10px !important;
}


/* SUBHEADING */
.payroll-subheading {
  max-width: 850px !important;

  margin: 28px auto 55px !important;
  padding: 0 !important;

  text-align: center !important;

  color: #7A7A7A !important;

  font-size: 18px !important;
  line-height: 1.5 !important;

  font-weight: 400 !important;
}


/* CARDS */
.payroll-section .card-grid {
  margin-top: 0 !important;
}

/* ==================================================
   HEADER MENU - FINAL DESKTOP / MOBILE FIX
================================================== */
.site-header {
  position: relative;
  z-index: 20;

  padding-top: 30px;
}


/* Main header row */

.nav-shell {
  width: min(1500px, calc(100% - 100px));
  margin: 0 auto;

  display: grid !important;

  grid-template-columns: 1fr auto 1fr !important;

  align-items: start !important;

  column-gap: 55px;
}


/* LEFT + RIGHT MENUS */

.nav-left,
.nav-right {
  display: flex !important;

  align-items: center;

  gap: 48px;

  padding-top: 26px;
}


/* Left menu sits against centre logo */

.nav-left {
  justify-content: flex-end;
}


/* Right menu starts after centre logo */

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


/* ==================================================
   NAVIGATION LINKS
================================================== */

.nav-link {
  position: relative;

  display: inline-block;

  color: #FFFFFF !important;

  font-size: 17px;
  line-height: 1;

  font-weight: 600;

  text-decoration: none;

  white-space: nowrap;

  padding: 0 0 18px;

  border: 0;

  background: transparent;

  cursor: pointer;

  transition: color 0.25s ease;
}


.nav-link:hover {
  color: #FFFFFF !important;
}


/* Active item */

.nav-link.active {
  color: #FFFFFF !important;
}


/* Active underline */

.nav-link.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 3px;

  background: #4A74E8;

  border-radius: 10px;
}


/* ==================================================
   CENTRE LOGO
================================================== */

.header-logo {
  display: block !important;

  width: 190px !important;
  max-width: 190px !important;

  margin: 0 !important;

  justify-self: center !important;

  transform: none !important;
}


.header-logo img {
  display: block;

  width: 100%;
  height: auto;
}


/* ==================================================
   DROPDOWN
================================================== */

.dropdown {
  position: relative;
}


.dropdown-toggle i {
  margin-left: 7px;

  font-size: 12px;
}


.dropdown-menu {
  position: absolute;

  top: 40px;
  left: 0;

  min-width: 240px;

  padding: 10px 0;

  background: #FFFFFF;

  border-radius: 12px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition: all 0.2s ease;
}


.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}


.dropdown-menu a {
  display: block;

  padding: 11px 18px;

  color: #666666;

  font-size: 14px;

  text-decoration: none;
}


.dropdown-menu a:hover {
  color: #4A74E8;

  background: #F3F5FA;
}


/* ==================================================
   HAMBURGER
   HIDDEN ON DESKTOP
================================================== */

.mobile-menu-button {
  display: none !important;
}


/* ==================================================
   TABLET / MOBILE
================================================== */

@media (max-width: 900px) {

  .site-header {
    padding-top: 25px;
  }


  .nav-shell {
    width: calc(100% - 45px);

    grid-template-columns: 1fr auto !important;

    align-items: center !important;
  }


  .nav-left,
  .nav-right {
    display: none !important;
  }


  .header-logo {
    width: 175px !important;
    max-width: 175px !important;

    justify-self: start !important;
  }


  .mobile-menu-button {
    display: block !important;

    justify-self: end;

    padding: 0;

    border: 0;

    background: transparent;

    color: #FFFFFF;

    font-size: 31px;

    cursor: pointer;
  }
}

/* ==================================================
   HARDWARE - STRONGER HEADINGS + BUTTONS
================================================== */

/* Product headings */
.hardware-content h3 {
  margin: 0 0 16px;

  color: #5F5F5F;

  font-size: 22px;
  line-height: 1.25;

  font-weight: 600;

  letter-spacing: -0.02em;
}


/* Small blue category heading above each product */
.hardware-category {
  color: #4A74E8;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* Turn VIEW HARDWARE into a proper blue button */
.hardware-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  min-width: 155px;

  margin-top: 8px;

  padding: 11px 20px;

  background: #4A74E8;

  color: #FFFFFF !important;

  border-radius: 18px;

  font-size: 13px;

  font-weight: 600;

  text-decoration: none;

  box-shadow:
    0 8px 18px rgba(74, 116, 232, 0.22);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.hardware-link:hover {
  background: #3763D8;

  transform: translateY(-3px);

  box-shadow:
    0 12px 24px rgba(74, 116, 232, 0.30);
}


/* Small arrow inside button */
.hardware-link i {
  font-size: 11px;

  transition: transform 0.25s ease;
}


.hardware-link:hover i {
  transform: translateX(3px);
}

/* ==================================================
   HERO - FINAL CTA LAYOUT
================================================== */

.hero-content {
  position: relative;
  z-index: 3;

  width: min(1320px, calc(100% - 70px));

  margin: 150px auto 0;

  text-align: center;
}


/* HERO BUTTON ROW */

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  margin-top: 38px;
}


/* Reset old button spacing */

.hero-actions .hero-button {
  margin-top: 0 !important;
}


/* PRIMARY BUTTON */

.hero-button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 14px 30px;

  background: #4A74E8;
  color: #ffffff;

  border: 1px solid #4A74E8;
  border-radius: 18px;

  font-size: 16px;
  font-weight: 600;

  box-shadow:
    0 8px 22px rgba(74, 116, 232, 0.28);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-button-primary:hover {
  background: #3763D8;
  border-color: #3763D8;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(74, 116, 232, 0.34);
}


/* SECONDARY BUTTON */

.hero-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  min-height: 48px;

  padding: 13px 27px;

  color: #ffffff;

  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 18px;

  background: rgba(255,255,255,0.06);

  font-size: 16px;
  font-weight: 500;

  text-decoration: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.hero-button-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: #ffffff;

  transform: translateY(-2px);
}

.hero-button-secondary i {
  font-size: 11px;
}


/* TRUST / CREDIBILITY LINE */

.hero-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

  gap: 11px;

  margin-top: 28px;

  color: rgba(255,255,255,0.88);

  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.hero-dot {
  color: #6F8DFF;
  font-size: 16px;
  font-weight: 700;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1040px) {

  .hero-content {
    width: calc(100% - 50px);
    margin-top: 150px;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

  .hero-content {
    width: calc(100% - 36px);
    margin-top: 115px;
  }

  .hero-actions {
    flex-direction: column;

    gap: 12px;

    margin-top: 30px;
  }

  .hero-button-primary,
  .hero-button-secondary {
    min-width: 190px;
  }

  .hero-trust-line {
    max-width: 330px;

    margin: 24px auto 0;

    gap: 7px;

    font-size: 12px;
  }

  .hero-dot {
    font-size: 13px;
  }

}

/* ==================================================
   OUR SOLUTIONS - PREMIUM HOVER EFFECT
================================================== */

.solutions-section .feature-card,
.solutions-section .solution-card {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


/* ==================================================
   BLUE LINE AT TOP
================================================== */

.solutions-section .feature-card::before,
.solutions-section .solution-card::before {
  content: "";

  display: block !important;

  position: absolute;

  top: 0;
  left: 50%;

  width: 0;
  height: 4px;

  transform: translateX(-50%);

  background: #4A74E8;

  border-radius: 0 0 8px 8px;

  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: 5;
}


/* ==================================================
   CARD MOVEMENT + SHADOW
================================================== */

.solutions-section .feature-card:hover,
.solutions-section .solution-card:hover {
  transform: translateY(-10px);

  border-color: rgba(74, 116, 232, 0.25);

  box-shadow:
    0 28px 55px rgba(35, 45, 70, 0.16),
    0 8px 18px rgba(74, 116, 232, 0.08);
}


/* Line grows when card is hovered */

.solutions-section .feature-card:hover::before,
.solutions-section .solution-card:hover::before {
  width: 78px;
}


/* ==================================================
   ICON MOVEMENT
   Only affects redesigned cards with icons
================================================== */

.solutions-section .solution-icon {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.solutions-section .solution-card:hover .solution-icon {
  transform: translateY(-4px) scale(1.04);

  background: #E7EDFF;

  box-shadow:
    0 8px 18px rgba(74, 116, 232, 0.12);
}


/* ==================================================
   TITLE MOVEMENT
================================================== */

.solutions-section .feature-card h3,
.solutions-section .solution-card h3 {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease;
}

.solutions-section .feature-card:hover h3,
.solutions-section .solution-card:hover h3 {
  transform: translateY(-2px);

  color: #4A74E8;
}


/* ==================================================
   EXPLORE LINK MOVEMENT
================================================== */

.solutions-section .solution-link {
  transition:
    gap 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.solutions-section .solution-card:hover .solution-link {
  gap: 14px;

  transform: translateX(3px);

  color: #3763D8;
}


/* ==================================================
   OLD READ MORE BUTTON
   In case some cards still use it
================================================== */

.solutions-section .read-more {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.solutions-section .feature-card:hover .read-more {
  transform: translateY(-3px);

  box-shadow:
    0 10px 22px rgba(74, 116, 232, 0.24);
}


/* ==================================================
   WHY BTS - MORE ELEGANT / REFINED
================================================== */

/* Softer inactive image overlay */

.why-bts-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(42, 48, 58, 0.18) 0%,
      rgba(42, 48, 58, 0.28) 55%,
      rgba(42, 48, 58, 0.38) 100%
    );
}


/* Active panel - less blue, more neutral slate */

.why-bts-panel.active .why-bts-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(40, 47, 60, 0.38) 0%,
      rgba(40, 47, 60, 0.50) 55%,
      rgba(40, 47, 60, 0.60) 100%
    );
}


/* Smaller, more elegant plus */

.why-bts-plus {
  width: 48px;
  height: 48px;

  background: rgba(255, 255, 255, 0.90);

  color: #606773;

  font-size: 18px;

  border: 1px solid rgba(255, 255, 255, 0.75);

  box-shadow:
    0 6px 16px rgba(20, 30, 50, 0.12);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}


/* Slight reaction on hover */

.why-bts-panel:not(.active):hover .why-bts-plus {
  transform:
    translate(-50%, -50%)
    scale(1.06);

  background: #ffffff;
}


/* Slightly less rounded - more sophisticated */

.why-bts-panel {
  border-radius: 18px;

  box-shadow:
    0 12px 30px rgba(35, 45, 70, 0.08);
}


/* Cleaner typography */

.why-bts-content h3 {
  font-weight: 500;

  font-size: clamp(28px, 2.1vw, 40px);

  letter-spacing: -0.025em;
}


.why-bts-content p {
  max-width: 650px;

  font-size: 17px;
  line-height: 1.65;

  font-weight: 400;
}


/* Make slide counter more subtle */

.why-bts-number {
  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;

  letter-spacing: 0.16em;
}


/* Smaller navigation arrows */

.why-bts-arrow {
  width: 42px;
  height: 42px;

  font-size: 14px;

  box-shadow:
    0 7px 18px rgba(74, 116, 232, 0.18);
}


/* Slightly smaller dots */

.why-bts-dot {
  width: 8px;
  height: 8px;
}

/* ==================================================
   GET A QUOTE - PREMIUM BTS REDESIGN
================================================== */

.quote-section {
  width: min(1320px, calc(100% - 80px)) !important;

  margin: 90px auto !important;

  display: grid !important;
  grid-template-columns: 0.95fr 1.05fr !important;

  background: #F4F5F7 !important;

  border-radius: 26px !important;

  overflow: hidden !important;

  box-shadow:
    0 20px 55px rgba(35, 45, 70, 0.09) !important;
}


/* ==================================================
   LEFT IMAGE
================================================== */

.quote-image {
  position: relative !important;

  min-height: 650px !important;
  height: 100% !important;

  /*
     TEMPORARILY USE ONE OF YOUR NEW BTS IMAGES.
     You can replace this with a dedicated quote image later.
  */

  background-image:
    url("../assets/why-bts-1.png") !important;

  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;

  overflow: hidden;
}


.quote-image-shade {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(31, 38, 48, 0.06) 25%,
      rgba(31, 38, 48, 0.68) 100%
    );
}


/* Copy positioned over bottom of image */

.quote-image-message {
  position: absolute;

  left: 48px;
  right: 48px;
  bottom: 45px;

  z-index: 2;

  color: #FFFFFF;
}


.quote-image-message span {
  display: block;

  margin-bottom: 10px;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.78);
}


.quote-image-message h3 {
  max-width: 470px;

  margin: 0 0 13px;

  color: #FFFFFF;

  font-size: 30px;
  line-height: 1.18;

  font-weight: 500;

  letter-spacing: -0.025em;
}


.quote-image-message p {
  max-width: 460px;

  margin: 0;

  color: rgba(255, 255, 255, 0.88);

  font-size: 15px;
  line-height: 1.6;
}


/* ==================================================
   RIGHT PANEL
================================================== */

.quote-panel,
.quote-inner {
  background: #F4F5F7 !important;
}


.quote-inner {
  padding: 60px 56px !important;
}


/* Small heading */

.quote-kicker {
  display: block;

  margin-bottom: 12px;

  color: #4A74E8;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


/* Main heading */

.quote-inner h2 {
  max-width: 520px !important;

  margin: 0 0 17px !important;

  color: #626262 !important;

  font-size: clamp(38px, 3vw, 50px) !important;
  line-height: 1.08 !important;

  font-weight: 500 !important;

  letter-spacing: -0.035em !important;
}


/* Intro */

.quote-intro {
  max-width: 570px;

  margin: 0 0 24px;

  color: #7A7A7A;

  font-size: 16px;
  line-height: 1.65;
}


/* ==================================================
   REASSURANCE POINTS
================================================== */

.quote-benefits {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 26px;

  margin-bottom: 30px;
}


.quote-benefits span {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #666666;

  font-size: 13px;
  font-weight: 500;
}


.quote-benefits i {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: #E8EDFF;

  color: #4A74E8;

  font-size: 9px;
}


/* ==================================================
   FORM
================================================== */

.quote-form {
  display: grid !important;

  gap: 13px !important;
}


.form-row.two {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 13px !important;
}


.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;

  border:
    1px solid #DDDFE4 !important;

  outline: none !important;

  background: #FFFFFF !important;

  color: #666666 !important;

  border-radius: 14px !important;

  padding: 13px 16px !important;

  font-size: 14px !important;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}


.quote-form input,
.quote-form select {
  height: 48px !important;
}


.quote-form textarea {
  min-height: 115px !important;

  resize: vertical;
}


.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9A9DA4 !important;

  opacity: 1;
}


/* Focus state */

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #4A74E8 !important;

  box-shadow:
    0 0 0 3px rgba(74, 116, 232, 0.09);
}


/* ==================================================
   SUBMIT
================================================== */

.quote-submit-row {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 5px;
}


.quote-form .submit-button {
  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  gap: 9px;

  width: auto !important;

  min-width: 175px !important;

  padding: 13px 23px !important;

  background: #4A74E8 !important;

  color: #FFFFFF !important;

  border:
    1px solid #4A74E8 !important;

  border-radius: 18px !important;

  font-size: 14px !important;
  font-weight: 600 !important;

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(74, 116, 232, 0.20);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.quote-form .submit-button i {
  font-size: 10px;

  transition:
    transform 0.25s ease;
}


.quote-form .submit-button:hover {
  background: #3763D8 !important;

  border-color: #3763D8 !important;

  transform: translateY(-2px);

  box-shadow:
    0 12px 25px rgba(74, 116, 232, 0.28);
}


.quote-form .submit-button:hover i {
  transform: translateX(3px);
}


.quote-small-print {
  color: #92959C;

  font-size: 12px;
  line-height: 1.4;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  .quote-section {
    width: calc(100% - 40px) !important;

    grid-template-columns: 1fr !important;

    margin: 70px auto !important;
  }


  .quote-image {
    min-height: 400px !important;
  }


  .quote-inner {
    padding: 46px 38px 50px !important;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .quote-section {
    width: calc(100% - 24px) !important;

    border-radius: 20px !important;
  }


  .quote-image {
    min-height: 330px !important;
  }


  .quote-image-message {
    left: 26px;
    right: 26px;
    bottom: 28px;
  }


  .quote-image-message h3 {
    font-size: 25px;
  }


  .quote-inner {
    padding: 36px 22px 40px !important;
  }


  .quote-inner h2 {
    font-size: 34px !important;
  }


  .form-row.two {
    grid-template-columns: 1fr;
  }


  .quote-benefits {
    flex-direction: column;

    gap: 10px;
  }


  .quote-submit-row {
    flex-direction: column;

    align-items: flex-start;
  }


  .quote-form .submit-button {
    width: 100% !important;
  }

}

/* ==================================================
   GET A QUOTE - FINAL CLEAN VERSION
================================================== */

.quote-section {
  width: min(1320px, calc(100% - 80px)) !important;

  margin: 90px auto !important;

  display: grid !important;

  grid-template-columns: 0.95fr 1.05fr !important;

  background: #F1F3F6 !important;

  border: none !important;

  border-radius: 26px !important;

  overflow: hidden !important;

  box-shadow:
    0 18px 50px rgba(35, 45, 70, 0.09) !important;
}


/* ==================================================
   LEFT IMAGE
================================================== */

.quote-image {
  min-height: 610px !important;
  height: 100% !important;

  background-image:
    url("../assets/why-bts-1.png") !important;

  background-position: center center !important;

  background-size: cover !important;

  background-repeat: no-repeat !important;

  border: none !important;

  outline: none !important;
}


/* ==================================================
   RIGHT SIDE
================================================== */

.quote-panel {
  display: flex !important;

  align-items: center !important;

  background: #F1F3F6 !important;

  color: #666666 !important;
}


.quote-inner {
  width: 100% !important;

  padding: 56px 56px 58px !important;

  background: #F1F3F6 !important;
}


/* Small blue heading */

.quote-kicker {
  display: block;

  margin-bottom: 13px;

  color: #4A74E8;

  font-size: 12px;

  line-height: 1;

  font-weight: 600;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* Main heading */

.quote-inner h2 {
  max-width: 600px !important;

  margin: 0 0 16px !important;

  color: #616161 !important;

  font-size: clamp(38px, 3vw, 50px) !important;

  line-height: 1.08 !important;

  font-weight: 500 !important;

  letter-spacing: -0.035em !important;

  text-transform: none !important;
}


/* Short intro */

.quote-intro {
  max-width: 560px;

  margin: 0 0 30px;

  color: #7A7A7A;

  font-size: 16px;

  line-height: 1.6;

  font-weight: 400;
}


/* ==================================================
   FORM
================================================== */

.quote-form {
  display: grid !important;

  gap: 13px !important;
}


.form-row.two {
  display: grid !important;

  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;

  gap: 13px !important;
}


/* Inputs */

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100% !important;

  box-sizing: border-box !important;

  border:
    1px solid #D9DDE5 !important;

  outline: none !important;

  background: #FFFFFF !important;

  color: #626262 !important;

  border-radius: 15px !important;

  padding: 13px 17px !important;

  font-family: inherit !important;

  font-size: 14px !important;

  font-weight: 400 !important;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


.quote-form input,
.quote-form select {
  height: 50px !important;
}


.quote-form textarea {
  min-height: 125px !important;

  resize: vertical;
}


/* Placeholder */

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #989CA5 !important;

  opacity: 1 !important;
}


/* Focus */

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #4A74E8 !important;

  background: #FFFFFF !important;

  box-shadow:
    0 0 0 3px rgba(74, 116, 232, 0.08) !important;
}


/* ==================================================
   BUTTON AREA
================================================== */

.quote-submit-row {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 7px;
}


.quote-form .submit-button {
  display: inline-flex !important;

  align-items: center !important;

  justify-content: center !important;

  gap: 9px !important;

  width: auto !important;

  min-width: 175px !important;

  min-height: 0 !important;

  padding: 13px 24px !important;

  background: #4A74E8 !important;

  color: #FFFFFF !important;

  border:
    1px solid #4A74E8 !important;

  border-radius: 18px !important;

  font-family: inherit !important;

  font-size: 14px !important;

  line-height: 1 !important;

  font-weight: 600 !important;

  cursor: pointer !important;

  box-shadow:
    0 8px 20px rgba(74, 116, 232, 0.19) !important;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease !important;
}


.quote-form .submit-button i {
  font-size: 10px;

  transition:
    transform 0.25s ease;
}


.quote-form .submit-button:hover {
  background: #3763D8 !important;

  border-color: #3763D8 !important;

  transform: translateY(-2px) !important;

  box-shadow:
    0 11px 24px rgba(74, 116, 232, 0.27) !important;
}


.quote-form .submit-button:hover i {
  transform: translateX(3px);
}


/* Small reassurance */

.quote-small-print {
  color: #92959C;

  font-size: 12px;

  line-height: 1.4;
}


/* ==================================================
   ACCESSIBILITY - HIDDEN LABELS
================================================== */

.sr-only {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0, 0, 0, 0) !important;

  white-space: nowrap !important;

  border: 0 !important;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  .quote-section {
    width: calc(100% - 40px) !important;

    grid-template-columns: 1fr !important;

    margin: 70px auto !important;
  }


  .quote-image {
    min-height: 380px !important;
  }


  .quote-inner {
    padding: 45px 38px 50px !important;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .quote-section {
    width: calc(100% - 24px) !important;

    margin: 55px auto !important;

    border-radius: 20px !important;
  }


  .quote-image {
    min-height: 300px !important;
  }


  .quote-inner {
    padding: 36px 22px 40px !important;
  }


  .quote-inner h2 {
    font-size: 34px !important;
  }


  .quote-intro {
    margin-bottom: 25px;

    font-size: 15px;
  }


  .form-row.two {
    grid-template-columns: 1fr !important;
  }


  .quote-submit-row {
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }


  .quote-form .submit-button {
    width: 100% !important;
  }

}

/* ==================================================
   QUOTE AREA - FINAL BACKGROUND MATCH
================================================== */

.quote-section {
  background: #F0F3FA !important;
}

.quote-panel,
.quote-inner {
  background: #F0F3FA !important;
}

/* ==================================================
   OUR SOLUTIONS - SLIGHTLY LARGER CARDS
================================================== */

.solutions-section .card-grid {
  width: min(1340px, calc(100% - 100px)) !important;
  gap: 34px !important;
}

.solutions-section .feature-card {
  min-height: 400px !important;

  padding: 46px 42px 38px !important;

  border-radius: 26px !important;

  box-shadow:
    0 16px 38px rgba(35, 45, 70, 0.09) !important;
}


/* Larger title */

.solutions-section .feature-card h3 {
  font-size: 24px !important;
  line-height: 1.25 !important;

  margin-bottom: 22px !important;
}


/* Slightly larger body copy */

.solutions-section .feature-card p {
  max-width: 320px !important;

  font-size: 16px !important;
  line-height: 1.6 !important;
}


/* Keep button proportional */

.solutions-section .read-more {
  padding: 12px 24px !important;

  min-width: 145px !important;

  font-size: 13px !important;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

  .solutions-section .card-grid {
    width: calc(100% - 90px) !important;
    gap: 24px !important;
  }

  .solutions-section .feature-card {
    min-height: 370px !important;
    padding: 38px 28px 32px !important;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

  .solutions-section .card-grid {
    width: calc(100% - 60px) !important;
  }

  .solutions-section .feature-card {
    min-height: 350px !important;
  }

}

/* ==================================================
   OUR SOLUTIONS - FINAL CARD PROPORTIONS
================================================== */

.solutions-section .card-grid {
  width: min(1420px, calc(100% - 120px)) !important;
  gap: 36px !important;
}


/* Wider, but not overly tall */

.solutions-section .feature-card {
  min-height: 350px !important;

  padding: 42px 42px 32px !important;

  border-radius: 25px !important;

  background: #FFFFFF !important;

  box-shadow:
    0 15px 36px rgba(35, 45, 70, 0.08) !important;
}


/* Heading */

.solutions-section .feature-card h3 {
  margin: 0 0 18px !important;

  font-size: 23px !important;
  line-height: 1.25 !important;

  font-weight: 500 !important;
}


/* Description */

.solutions-section .feature-card p {
  max-width: 320px !important;

  margin: 0 auto 25px !important;

  font-size: 15.5px !important;
  line-height: 1.6 !important;
}


/* Smaller button */

.solutions-section .read-more {
  min-width: 126px !important;

  padding: 10px 18px !important;

  font-size: 12px !important;

  border-radius: 17px !important;
}


/* ==================================================
   ALL SOLUTION-STYLE CARDS - HOVER EFFECT
   Applies to BOTH card sections
================================================== */

.orange-section.solutions-section .feature-card {
  position: relative !important;
  overflow: hidden !important;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease !important;
}


/* ==================================================
   TOP BLUE LINE
================================================== */

.orange-section.solutions-section .feature-card::before {
  content: "" !important;

  position: absolute !important;

  top: 0 !important;
  left: 50% !important;

  width: 0 !important;
  height: 4px !important;

  transform: translateX(-50%) !important;

  background: #4A74E8 !important;

  border-radius: 0 0 8px 8px !important;

  z-index: 5 !important;

  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
}


/* Line smoothly grows from centre */

.orange-section.solutions-section .feature-card:hover::before {
  width: 82px !important;
}


/* ==================================================
   CARD LIFT + SHADOW
================================================== */

.orange-section.solutions-section .feature-card:hover {
  transform: translateY(-9px) !important;

  border-color:
    rgba(74, 116, 232, 0.22) !important;

  box-shadow:
    0 25px 50px rgba(35, 45, 70, 0.14) !important;
}


/* ==================================================
   HEADING
================================================== */

.orange-section.solutions-section .feature-card h3 {
  transition:
    color 0.3s ease,
    transform 0.3s ease !important;
}


/* Heading turns blue */

.orange-section.solutions-section .feature-card:hover h3 {
  color: #4A74E8 !important;

  transform: translateY(-2px);
}


/* ==================================================
   BUTTON
================================================== */

.orange-section.solutions-section .read-more {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease !important;
}


/* Slight button movement */

.orange-section.solutions-section .feature-card:hover .read-more {
  transform: translateY(-2px) !important;

  box-shadow:
    0 10px 22px rgba(74, 116, 232, 0.22) !important;
}

.testimonial-card {
  background: #F0F3FA !important;
}

/* ==================================================
   OUR SOLUTIONS - HALF COLOUR BACKGROUND
================================================== */

.solutions-section {
  position: relative !important;

  background:
    linear-gradient(
      to bottom,
      #EEF3FF 0%,
      #EEF3FF 52%,
      #FFFFFF 52%,
      #FFFFFF 100%
    ) !important;

  padding: 95px 0 90px !important;

  overflow: hidden;
}


/* Keep everything above the background */

.solutions-section .section-shell {
  position: relative;
  z-index: 2;
}


/* Heading area */

.solutions-heading {
  text-align: center;

  margin-bottom: 52px;
}


.solutions-heading-line {
  display: block;

  width: 42px;
  height: 3px;

  margin: 0 auto 20px;

  border-radius: 10px;

  background: #4A74E8;
}


.solutions-section .section-title {
  margin: 0;

  color: #666666;

  font-size: 48px;
  line-height: 1.1;

  font-weight: 500;
}


.solutions-subtitle {
  max-width: 720px;

  margin: 17px auto 0;

  color: #727272;

  font-size: 16px;
  line-height: 1.55;
}

.solutions-section .section-title::before {
  display: none !important;
}

/* ==================================================
   OUR SOLUTIONS - BETTER HALF BACKGROUND
================================================== */

.solutions-section {
  position: relative !important;

  background:
    linear-gradient(
      to bottom,
      #EEF3FF 0%,
      #EEF3FF 68%,
      #FFFFFF 68%,
      #FFFFFF 100%
    ) !important;

  padding: 70px 0 85px !important;
}


/* Heading closer to cards */

.solutions-heading {
  margin-bottom: 34px !important;
}


/* Slightly larger cards */

.solutions-section .card-grid {
  width: min(1420px, calc(100% - 90px)) !important;
  gap: 28px !important;
}


.solutions-section .feature-card {
  min-height: 370px !important;

  padding: 42px 38px 32px !important;

  border-radius: 24px !important;

  box-shadow:
    0 18px 38px rgba(35, 45, 70, 0.10) !important;
}

/* ==================================================
   BTS - SLOW SCROLL REVEAL
   Paste at the VERY BOTTOM of style.css
================================================== */


/* --------------------------------------------------
   DEFAULT REVEAL
-------------------------------------------------- */

.bts-reveal {
  opacity: 0;

  /*
    Start 85px lower than the final position.
    We use translate rather than transform so it
    does not interfere with your card hover movement.
  */
  translate: 0 85px;

  transition:
    opacity 1.5s ease,
    translate 1.9s cubic-bezier(0.16, 1, 0.3, 1);

  transition-delay: var(--reveal-delay, 0s);

  will-change: opacity, translate;
}


/* --------------------------------------------------
   WHEN ELEMENT ENTERS THE SCREEN
-------------------------------------------------- */

.bts-reveal.bts-visible {
  opacity: 1;
  translate: 0 0;
}


/* ==================================================
   CARDS
================================================== */

.feature-card.bts-reveal,
.hardware-card.bts-reveal {
  translate: 0 95px;

  transition:
    opacity 1.45s ease,
    translate 1.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  transition-delay: var(--reveal-delay, 0s);
}


.feature-card.bts-reveal.bts-visible,
.hardware-card.bts-reveal.bts-visible {
  translate: 0 0;
}


/* ==================================================
   WHOLE QUOTE / CONTACT FORM SECTION
================================================== */

.quote-section.bts-reveal {
  translate: 0 110px;

  transition:
    opacity 1.6s ease,
    translate 2.1s cubic-bezier(0.16, 1, 0.3, 1);

  transition-delay: 0.05s;
}


.quote-section.bts-reveal.bts-visible {
  translate: 0 0;
}


/* ==================================================
   SECTION HEADINGS
================================================== */

.solutions-heading.bts-reveal,
.hardware-heading.bts-reveal,
.why-bts-heading.bts-reveal,
.payroll-process-heading.bts-reveal,
.testimonials-section h2.bts-reveal {
  translate: 0 55px;

  transition:
    opacity 1.3s ease,
    translate 1.6s cubic-bezier(0.16, 1, 0.3, 1);

  transition-delay: 0s;
}


.solutions-heading.bts-reveal.bts-visible,
.hardware-heading.bts-reveal.bts-visible,
.why-bts-heading.bts-reveal.bts-visible,
.payroll-process-heading.bts-reveal.bts-visible,
.testimonials-section h2.bts-reveal.bts-visible {
  translate: 0 0;
}


/* ==================================================
   KEEP YOUR EXISTING CARD HOVER
================================================== */

.feature-card:hover {
  transform: translateY(-9px) !important;
}


.hardware-card:hover {
  transform: translateY(-7px) !important;
}


/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

  .bts-reveal {
    opacity: 1 !important;
    translate: 0 0 !important;
    transition: none !important;
  }

}


/* ==================================================
   HARDWARE - GREY PRODUCT IMAGE PANELS
   Paste at the VERY BOTTOM of style.css
================================================== */

.hardware-card .hardware-image {
  position: relative !important;

  width: 100% !important;
  height: 320px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 28px 30px !important;

  /* LIGHT GREY PRODUCT BOX */
  background: #F1F3F7 !important;

  border-radius: 20px !important;

  overflow: hidden !important;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    background 0.4s ease !important;
}


/* REMOVE OLD FLOATING SHADOW UNDER PRODUCT */

.hardware-card .hardware-image::after {
  display: none !important;
}


/* PRODUCT IMAGE */

.hardware-card .hardware-image img {
  position: relative !important;

  z-index: 2 !important;

  max-width: 88% !important;
  max-height: 255px !important;

  width: auto !important;
  height: auto !important;

  object-fit: contain !important;

  mix-blend-mode: multiply;

  filter:
    drop-shadow(
      0 14px 18px rgba(30, 40, 60, 0.10)
    ) !important;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease !important;
}


/* ==================================================
   HOVER
================================================== */

.hardware-card:hover .hardware-image {
  transform: translateY(-6px) !important;

  background: #EEF1F7 !important;

  box-shadow:
    0 20px 40px rgba(35, 45, 70, 0.10) !important;
}


.hardware-card:hover .hardware-image img {
  transform:
    translateY(-5px)
    scale(1.035) !important;

  filter:
    drop-shadow(
      0 20px 24px rgba(30, 40, 60, 0.14)
    ) !important;
}


/* ==================================================
   CATEGORY - KEEP ABOVE IMAGE BOX
================================================== */

.hardware-card .hardware-category {
  margin-bottom: 16px !important;
}


/* ==================================================
   SPACE BETWEEN IMAGE BOX AND PRODUCT TITLE
================================================== */

.hardware-card .hardware-content {
  padding-top: 28px !important;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

  .hardware-card .hardware-image {
    height: 290px !important;
  }

  .hardware-card .hardware-image img {
    max-height: 230px !important;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

  .hardware-card .hardware-image {
    height: 270px !important;
    padding: 24px !important;
  }

  .hardware-card .hardware-image img {
    max-height: 215px !important;
  }

}

/* ==================================================
   BTS - FULL SLIDE UP FROM BOTTOM
================================================== */


/* --------------------------------------------------
   CARDS START WELL BELOW THEIR FINAL POSITION
-------------------------------------------------- */

.feature-card.bts-slide-card,
.hardware-card.bts-slide-card {

  /*
    45vh means approximately 45% of the browser
    window height.

    This makes the cards genuinely come up from
    below the visible screen rather than just
    moving 50px.
  */

  translate: 0 45vh;

  transition:
    translate 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;

  transition-delay: var(--slide-delay, 0s);

  will-change: translate;
}


/* --------------------------------------------------
   FINAL POSITION
-------------------------------------------------- */

.feature-card.bts-slide-card.bts-slide-visible,
.hardware-card.bts-slide-card.bts-slide-visible {

  translate: 0 0;
}


/* ==================================================
   SECTION HEADINGS
================================================== */

.bts-slide-heading {

  translate: 0 140px;

  transition:
    translate 1.45s cubic-bezier(0.16, 1, 0.3, 1);

  will-change: translate;
}


.bts-slide-heading.bts-slide-visible {

  translate: 0 0;
}


/* ==================================================
   QUOTE / FORM SECTION
================================================== */

.quote-section.bts-slide-section {

  translate: 0 35vh;

  transition:
    translate 1.9s cubic-bezier(0.16, 1, 0.3, 1);

  will-change: translate;
}


.quote-section.bts-slide-section.bts-slide-visible {

  translate: 0 0;
}


/* ==================================================
   KEEP EXISTING CARD HOVER
================================================== */

.feature-card:hover {

  transform: translateY(-9px) !important;
}


.hardware-card:hover {

  transform: translateY(-8px) !important;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {

  .feature-card.bts-slide-card,
  .hardware-card.bts-slide-card {

    translate: 0 32vh;
  }

}


/* ==================================================
   ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

  .feature-card.bts-slide-card,
  .hardware-card.bts-slide-card,
  .bts-slide-heading,
  .quote-section.bts-slide-section {

    translate: 0 0 !important;
    transition: none !important;
  }

}


.hardware-main-button {
  min-height: 58px !important;

  padding: 16px 36px !important;

  border-radius: 20px !important;

  font-size: 16px !important;
  font-weight: 600 !important;

  box-shadow:
    0 12px 28px rgba(74, 116, 232, 0.24) !important;
}


