: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;
}

/* ==================================================
   REFINED BTS HOMEPAGE
   Story-led homepage sections
================================================== */

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

.home-kicker {
  display: inline-block;
  position: relative;
  margin: 0 0 24px;
  padding-top: 26px;
  color: #4A74E8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-kicker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  border-radius: 10px;
  background: #4A74E8;
}

.home-section-heading {
  max-width: 1040px;
  margin: 0 auto 62px;
  text-align: center;
}

.home-section-heading .home-kicker::before {
  left: 50%;
  transform: translateX(-50%);
}

.home-section-heading h2,
.home-story h2,
.home-process h2,
.home-proof h2 {
  margin: 0;
  color: #666666;
  font-size: clamp(42px, 4.3vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-section-heading > p {
  max-width: 850px;
  margin: 26px auto 0;
  color: #7A7A7A;
  font-size: 19px;
  line-height: 1.75;
}

.hero-content .hero-intro {
  max-width: 760px;
  margin: 26px auto 0;
  color: #ffffff !important;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.6;
}

.hero-content .hero-actions {
  margin-top: 4px;
}

/* WHO BTS IS */

.home-story {
  padding: 118px 0;
  background: #ffffff;
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
  align-items: start;
}

.home-story-heading h2 {
  max-width: 660px;
}

.home-story-copy {
  padding-top: 56px;
}

.home-story-copy p {
  margin: 0 0 24px;
  color: #7A7A7A;
  font-size: 18px;
  line-height: 1.8;
}

.home-story-copy .home-lead {
  color: #666666;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.55;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: #4A74E8;
  font-size: 16px;
  font-weight: 600;
}

.home-text-link i,
.solution-card > span i,
.home-primary-button i {
  transition: transform 0.25s ease;
}

.home-text-link:hover i,
.solution-card:hover > span i,
.home-primary-button:hover i {
  transform: translateX(5px);
}

/* THE BTS DIFFERENCE */

.home-difference {
  padding: 112px 0 122px;
  background: #F0F3FA;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.difference-card {
  position: relative;
  min-height: 340px;
  padding: 44px 40px 42px;
  overflow: hidden;
  border: 1px solid rgba(74, 116, 232, 0.08);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(35, 48, 82, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 116, 232, 0.22);
  box-shadow: 0 26px 58px rgba(35, 48, 82, 0.13);
}

.difference-number {
  position: absolute;
  top: 30px;
  right: 34px;
  color: #B5BDCF;
  font-size: 16px;
  font-weight: 700;
}

.difference-icon,
.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #EEF3FF;
  color: #4A74E8;
  font-size: 25px;
}

.difference-card h3 {
  margin: 34px 0 18px;
  color: #666666;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.difference-card p {
  margin: 0;
  color: #7A7A7A;
  font-size: 16px;
  line-height: 1.75;
}

/* SOLUTIONS */

.home-solutions {
  padding: 116px 0 124px;
  background: #ffffff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 38px;
  border: 1px solid #E7EAF1;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 15px 38px rgba(35, 48, 82, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-7px);
  border-color: rgba(74, 116, 232, 0.32);
  box-shadow: 0 24px 54px rgba(35, 48, 82, 0.12);
}

.solution-card h3 {
  margin: 26px 0 14px;
  color: #666666;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.3;
}

.solution-card p {
  margin: 0 0 26px;
  color: #7A7A7A;
  font-size: 16px;
  line-height: 1.7;
}

.solution-card > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #4A74E8;
  font-size: 15px;
  font-weight: 600;
}

/* PROCESS */

.home-process {
  padding: 118px 0;
  background: #F0F3FA;
}

.home-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
  align-items: center;
}

.process-intro > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #7A7A7A;
  font-size: 18px;
  line-height: 1.8;
}

.home-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  min-height: 60px;
  padding: 17px 28px;
  border-radius: 20px;
  background: #4A74E8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(74, 116, 232, 0.23);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-primary-button:hover {
  transform: translateY(-3px);
  background: #3763D8;
  box-shadow: 0 18px 36px rgba(74, 116, 232, 0.3);
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
  padding: 27px 30px;
  border: 1px solid rgba(74, 116, 232, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(35, 48, 82, 0.06);
}

.process-step > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: #EEF3FF;
  color: #4A74E8;
  font-size: 16px;
  font-weight: 700;
}

.process-step h3 {
  margin: 1px 0 7px;
  color: #666666;
  font-size: 21px;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  color: #7A7A7A;
  font-size: 15px;
  line-height: 1.65;
}

/* LOCAL PROOF + TESTIMONIAL */

.home-proof {
  padding: 110px 0;
  background: linear-gradient(135deg, #4A68D8 0%, #7182E5 100%);
  color: #ffffff;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: 68px;
  align-items: stretch;
}

.home-kicker-light,
.home-proof .home-kicker {
  color: #ffffff;
}

.home-proof .home-kicker::before {
  background: rgba(255, 255, 255, 0.85);
}

.home-proof h2 {
  max-width: 680px;
  color: #ffffff;
}

.proof-copy > p {
  max-width: 680px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
}

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

.proof-stats > div {
  display: flex;
  flex-direction: column;
  min-height: 135px;
  justify-content: center;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-stats .proof-footprint {
  grid-column: 1 / -1;
}

.proof-stats strong {
  color: #ffffff;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
}

.proof-footprint strong {
  font-size: clamp(28px, 3vw, 44px);
}

.proof-stats span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.proof-testimonial {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.testimonial-mark {
  height: 58px;
  color: #ffffff;
  font-size: 80px;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.7;
}

.proof-testimonial > p {
  margin: 20px 0 34px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.65;
}

.proof-testimonial .testimonial-person {
  margin-top: auto;
}

.proof-testimonial .testimonial-person strong,
.proof-testimonial .testimonial-person span {
  display: block;
  color: #ffffff;
  text-align: left;
}

.proof-testimonial .testimonial-person strong {
  font-size: 15px;
  font-weight: 700;
}

.proof-testimonial .testimonial-person span {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.78;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.testimonial-controls > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.testimonial-controls > button:hover {
  background: #ffffff;
  color: #4A74E8;
}

.proof-testimonial .testimonial-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.proof-testimonial .testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.proof-testimonial .testimonial-dot.active {
  width: 24px;
  border-radius: 10px;
  background: #ffffff;
}

/* SUBTLE SCROLL REVEAL */

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.difference-card:nth-child(2),
.solution-card:nth-child(2),
.solution-card:nth-child(5) {
  transition-delay: 0.08s;
}

.difference-card:nth-child(3),
.solution-card:nth-child(3),
.solution-card:nth-child(6) {
  transition-delay: 0.16s;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .home-story-grid,
  .home-process-grid,
  .home-proof-grid {
    gap: 55px;
  }

  .difference-card,
  .solution-card {
    padding: 32px;
  }
}

@media (max-width: 900px) {
  .home-shell {
    width: min(100% - 48px, 760px);
  }

  .home-story,
  .home-difference,
  .home-solutions,
  .home-process,
  .home-proof {
    padding: 84px 0;
  }

  .home-story-grid,
  .home-process-grid,
  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-story-copy {
    padding-top: 0;
  }

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

  .home-section-heading {
    margin-bottom: 44px;
  }

  .proof-testimonial {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .home-shell {
    width: calc(100% - 32px);
  }

  .hero-content .hero-intro {
    font-size: 16px;
  }

  .home-story,
  .home-difference,
  .home-solutions,
  .home-process,
  .home-proof {
    padding: 68px 0;
  }

  .home-section-heading h2,
  .home-story h2,
  .home-process h2,
  .home-proof h2 {
    font-size: 38px;
  }

  .home-section-heading > p,
  .home-story-copy p,
  .process-intro > p,
  .proof-copy > p {
    font-size: 16px;
  }

  .home-story-copy .home-lead {
    font-size: 20px;
  }

  .difference-grid,
  .solution-grid,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .difference-card,
  .solution-card {
    min-height: 0;
  }

  .process-step {
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px 20px;
  }

  .process-step > span {
    width: 50px;
    height: 50px;
  }

  .proof-stats .proof-footprint {
    grid-column: auto;
  }

  .proof-testimonial {
    min-height: 0;
    padding: 32px 26px;
  }

  .proof-testimonial > p {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.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;
}

@media (max-width: 900px) {

  .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;
}

/* ==================================================
   ELEGANT HOMEPAGE INTERACTIONS
   Subtle, premium movement only — no jumping icons.
================================================== */

:root {
  --bts-blue: #4A74E8;
  --bts-blue-dark: #3763D8;
  --bts-shadow-soft: 0 16px 36px rgba(35, 48, 82, 0.075);
  --bts-shadow-hover: 0 20px 44px rgba(35, 48, 82, 0.11);
  --bts-ease: cubic-bezier(.22, 1, .36, 1);
}

/* Shared section heading detail: the small blue rule subtly grows */
.home-story,
.home-difference,
.home-solutions,
.home-process,
.home-proof,
.quote-section {
  position: relative;
}

.home-story .home-kicker::before,
.home-difference .home-kicker::before,
.home-solutions .home-kicker::before,
.home-process .home-kicker::before,
.home-proof .home-kicker::before {
  transform-origin: center;
  transition: width .45s var(--bts-ease), opacity .35s ease;
}

.home-story:hover .home-kicker::before,
.home-difference:hover .home-kicker::before,
.home-solutions:hover .home-kicker::before,
.home-process:hover .home-kicker::before,
.home-proof:hover .home-kicker::before {
  width: 66px;
}

/* HERO — refined entrance and button response */
.hero-content h1,
.hero-content .hero-intro,
.hero-content .hero-actions {
  animation: homeHeroFade .9s var(--bts-ease) both;
}

.hero-content .hero-intro { animation-delay: .10s; }
.hero-content .hero-actions { animation-delay: .20s; }

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

.hero-button,
.hero-button-secondary {
  transition: transform .28s var(--bts-ease), box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}

.hero-button:hover,
.hero-button-secondary:hover {
  transform: translateY(-2px);
}

/* PHILOSOPHY — text feels gently responsive, without turning it into a card */
.home-story-grid {
  transition: transform .45s var(--bts-ease);
}

.home-story:hover .home-story-grid {
  transform: translateY(-2px);
}

.home-text-link {
  position: relative;
  padding-bottom: 5px;
}

.home-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--bts-blue);
  transition: width .35s var(--bts-ease);
}

.home-text-link:hover::after {
  width: 100%;
}

/* BTS DIFFERENCE — restrained lift + elegant top rule */
.difference-card {
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(35, 48, 82, 0.055);
  transition: transform .35s var(--bts-ease), box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.difference-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, transparent 0%, var(--bts-blue) 18%, var(--bts-blue) 82%, transparent 100%);
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: center;
  transition: opacity .3s ease, transform .42s var(--bts-ease);
}

.difference-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 116, 232, 0.18);
  box-shadow: var(--bts-shadow-hover);
}

.difference-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.difference-icon {
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}

.difference-card:hover .difference-icon {
  background: #E9EFFF;
  color: var(--bts-blue-dark);
  box-shadow: 0 8px 18px rgba(74, 116, 232, .10);
}

/* Explicitly prevent any icon jump / rotation */
.difference-card:hover .difference-icon,
.difference-card:hover .difference-icon i {
  transform: none !important;
}

/* SOLUTIONS — same visual language, slightly lighter */
.solution-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(35, 48, 82, 0.045);
  transition: transform .35s var(--bts-ease), box-shadow .35s ease, border-color .35s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--bts-blue);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .28s ease, transform .4s var(--bts-ease);
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 116, 232, .20);
  box-shadow: var(--bts-shadow-hover);
}

.solution-card:hover::before {
  opacity: .9;
  transform: scaleX(1);
}

.solution-icon {
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}

.solution-card:hover .solution-icon {
  background: #EAF0FF;
  color: var(--bts-blue-dark);
  box-shadow: 0 8px 18px rgba(74, 116, 232, .09);
}

.solution-card:hover .solution-icon,
.solution-card:hover .solution-icon i {
  transform: none !important;
}

/* PROCESS — subtle horizontal response + left accent */
.process-step {
  position: relative;
  overflow: hidden;
  transition: transform .32s var(--bts-ease), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--bts-blue);
  opacity: 0;
  transform: scaleY(.45);
  transition: opacity .28s ease, transform .35s var(--bts-ease);
}

.process-step:hover {
  transform: translateX(4px);
  border-color: rgba(74, 116, 232, .18);
  box-shadow: 0 18px 38px rgba(35, 48, 82, .085);
}

.process-step:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.process-step > span {
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}

.process-step:hover > span {
  background: var(--bts-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(74, 116, 232, .16);
}

/* LOCAL PROOF — glass cards gently brighten */
.proof-stats > div,
.proof-testimonial {
  transition: transform .35s var(--bts-ease), background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.proof-stats > div:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .44);
  box-shadow: 0 14px 30px rgba(38, 50, 110, .12);
}

.proof-testimonial:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .48);
  box-shadow: 0 18px 38px rgba(38, 50, 110, .13);
}

.testimonial-controls > button {
  transition: transform .25s var(--bts-ease), background .25s ease, color .25s ease;
}

.testimonial-controls > button:hover {
  transform: translateY(-2px);
}

/* QUOTE — premium focus states and restrained section lift */
.quote-section {
  transition: transform .38s var(--bts-ease), box-shadow .38s ease;
}

.quote-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(35, 48, 82, .10) !important;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--bts-ease), background .25s ease !important;
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
  border-color: rgba(74, 116, 232, .32) !important;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  transform: translateY(-1px);
}

/* FOOTER / CONTACT — tiny movement only */
.contact-item {
  transition: transform .28s var(--bts-ease), opacity .28s ease;
}

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

.footer-column a {
  position: relative;
  padding-bottom: 2px;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--bts-blue);
  transition: width .3s var(--bts-ease);
}

.footer-column a:hover::after {
  width: 100%;
}

/* Existing reveal becomes softer and more editorial */
[data-reveal] {
  transform: translateY(22px);
  transition: opacity .72s ease, transform .78s var(--bts-ease);
}

[data-reveal].is-visible {
  transform: translateY(0);
}

/* Accessibility: respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .home-story:hover .home-story-grid,
  .difference-card:hover,
  .solution-card:hover,
  .process-step:hover,
  .proof-stats > div:hover,
  .proof-testimonial:hover,
  .quote-section:hover,
  .contact-item:hover {
    transform: none;
  }
}


/* =========================================================
   BTS HOMEPAGE — REFINED MOTION SYSTEM
   Elegant, restrained interactions. Layout/content unchanged.
========================================================= */

:root {
  --motion-blue: #4A74E8;
  --motion-blue-dark: #3763D8;
  --motion-blue-hover: #5E72D9;
  --motion-ease: cubic-bezier(.22, 1, .36, 1);
  --motion-shadow: 0 18px 42px rgba(35, 48, 82, .10);
}

/* ---------------------------------------------------------
   SCROLL REVEALS — smaller movement, better pacing
--------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .68s ease,
    transform .76s var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms) !important;
}

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

/* ---------------------------------------------------------
   HERO — staggered entrance, no dramatic travel
--------------------------------------------------------- */

.hero-content h1,
.hero-content .hero-intro,
.hero-content .hero-actions {
  opacity: 0;
  transform: translateY(16px);
  animation: btsHeroIn .82s var(--motion-ease) forwards;
}

.hero-content .hero-intro { animation-delay: .10s; }
.hero-content .hero-actions { animation-delay: .20s; }

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

.hero-button,
.hero-button-secondary {
  transition:
    transform .26s var(--motion-ease),
    box-shadow .26s ease,
    background-color .26s ease,
    color .26s ease,
    border-color .26s ease;
}

.hero-button:hover,
.hero-button-secondary:hover {
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   PHILOSOPHY — editorial line + link animation
--------------------------------------------------------- */

.home-story .home-kicker::before {
  transform-origin: left center;
  transition: width .42s var(--motion-ease);
}

.home-story:hover .home-kicker::before {
  width: 62px;
}

.home-text-link {
  position: relative;
  padding-bottom: 5px;
}

.home-text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--motion-blue);
  transition: width .32s var(--motion-ease);
}

.home-text-link:hover::after {
  width: 100%;
}

/* ---------------------------------------------------------
   BTS DIFFERENCE — subtle lift + elegant top rule
--------------------------------------------------------- */

.difference-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(35, 48, 82, .055);
  transition:
    transform .34s var(--motion-ease),
    box-shadow .34s ease,
    border-color .34s ease;
}

.difference-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: var(--motion-blue);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity .25s ease,
    transform .38s var(--motion-ease);
}

.difference-card:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 116, 232, .20);
  box-shadow: var(--motion-shadow);
}

.difference-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.difference-icon,
.difference-icon i {
  transition:
    background-color .30s ease,
    color .30s ease,
    box-shadow .30s ease !important;
  transform: none !important;
}

.difference-card:hover .difference-icon {
  background: #EAF0FF;
  color: var(--motion-blue-dark);
  box-shadow: 0 7px 16px rgba(74, 116, 232, .10);
}

/* ---------------------------------------------------------
   SOLUTIONS — strongest interaction on the page
   White card -> BTS blue, white copy, frosted icon tile
--------------------------------------------------------- */

.solution-card {
  position: relative;
  overflow: hidden;
  transition:
    transform .38s var(--motion-ease),
    background-color .38s ease,
    border-color .38s ease,
    box-shadow .38s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: rgba(255,255,255,.78);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity .28s ease,
    transform .40s var(--motion-ease);
}

.solution-card h3,
.solution-card p,
.solution-card > span,
.solution-icon,
.solution-icon i {
  transition:
    color .30s ease,
    background-color .30s ease,
    border-color .30s ease,
    box-shadow .30s ease !important;
}

.solution-card:hover {
  background: var(--motion-blue-hover);
  border-color: var(--motion-blue-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(49, 67, 145, .18);
}

.solution-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.solution-card:hover h3,
.solution-card:hover p,
.solution-card:hover > span {
  color: #fff;
}

.solution-card:hover .solution-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
  box-shadow: none;
  transform: none !important;
}

.solution-card:hover .solution-icon i {
  color: #fff;
  transform: none !important;
}

.solution-card > span i {
  transition: transform .28s var(--motion-ease) !important;
}

.solution-card:hover > span i {
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   PROCESS — horizontal cue, not another floating-card effect
--------------------------------------------------------- */

.process-step {
  position: relative;
  overflow: hidden;
  transition:
    transform .32s var(--motion-ease),
    box-shadow .32s ease,
    border-color .32s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--motion-blue);
  opacity: 0;
  transform: scaleY(.35);
  transition:
    opacity .26s ease,
    transform .34s var(--motion-ease);
}

.process-step:hover {
  transform: translateX(4px);
  border-color: rgba(74, 116, 232, .20);
  box-shadow: 0 16px 34px rgba(35, 48, 82, .08);
}

.process-step:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.process-step > span {
  transition:
    background-color .30s ease,
    color .30s ease,
    box-shadow .30s ease;
}

.process-step:hover > span {
  background: var(--motion-blue);
  color: #fff;
  box-shadow: 0 7px 16px rgba(74, 116, 232, .15);
}

/* ---------------------------------------------------------
   LOCAL EXPERTISE — glass interaction + number reveal
--------------------------------------------------------- */

.proof-stats > div,
.proof-testimonial {
  transition:
    transform .34s var(--motion-ease),
    background-color .34s ease,
    border-color .34s ease,
    box-shadow .34s ease;
}

.proof-stats > div:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.46);
  box-shadow: 0 14px 28px rgba(38, 50, 110, .11);
}

.proof-testimonial:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.48);
  box-shadow: 0 16px 34px rgba(38, 50, 110, .12);
}

.proof-stats strong {
  transition:
    opacity .35s ease,
    transform .45s var(--motion-ease);
}

.proof-stats strong.bts-count-ready {
  opacity: .45;
  transform: translateY(5px);
}

.proof-stats strong.bts-count-done {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth testimonial content change */
#testimonialQuote,
#testimonialName,
#testimonialRole {
  transition:
    opacity .22s ease,
    transform .26s var(--motion-ease);
}

.proof-testimonial.is-changing #testimonialQuote,
.proof-testimonial.is-changing #testimonialName,
.proof-testimonial.is-changing #testimonialRole {
  opacity: 0;
  transform: translateY(5px);
}

/* ---------------------------------------------------------
   QUOTE — keep the section still; animate the controls
--------------------------------------------------------- */

.quote-form input,
.quote-form select,
.quote-form textarea {
  transition:
    border-color .24s ease,
    box-shadow .24s ease,
    background-color .24s ease !important;
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
  border-color: rgba(74, 116, 232, .30) !important;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(74, 116, 232, .60) !important;
  box-shadow: 0 0 0 4px rgba(74, 116, 232, .08) !important;
}

.submit-button {
  transition:
    transform .26s var(--motion-ease),
    box-shadow .26s ease,
    background-color .26s ease;
}

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

/* ---------------------------------------------------------
   FOOTER — tiny, deliberate responses
--------------------------------------------------------- */

.contact-item {
  transition: transform .26s var(--motion-ease);
}

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

.footer-column a {
  position: relative;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--motion-blue);
  transition: width .30s var(--motion-ease);
}

.footer-column a:hover::after {
  width: 100%;
}

/* ---------------------------------------------------------
   ACCESSIBILITY / TOUCH
--------------------------------------------------------- */

@media (max-width: 900px) {
  .home-story:hover .home-kicker::before {
    width: 48px;
  }

  .difference-card:hover,
  .solution-card:hover,
  .process-step:hover,
  .proof-stats > div:hover,
  .proof-testimonial:hover,
  .contact-item:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==================================================
   HOME SOLUTIONS — SLOW BLUE FADE, NO TOP LINE
================================================== */

.solution-card::before {
  display: none !important;
  content: none !important;
}

.solution-card {
  transition:
    background-color 0.65s ease,
    border-color 0.65s ease,
    box-shadow 0.45s ease,
    transform 0.35s cubic-bezier(.22, 1, .36, 1) !important;
}

.solution-card h3,
.solution-card p,
.solution-card > span,
.solution-card .solution-icon,
.solution-card .solution-icon i {
  transition:
    color 0.5s ease,
    background-color 0.5s ease,
    border-color 0.5s ease !important;
}

.solution-card:hover {
  background: #5E72D9 !important;
  border-color: #5E72D9 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 18px 38px rgba(49, 67, 145, 0.16) !important;
}

.solution-card:hover h3,
.solution-card:hover p,
.solution-card:hover > span {
  color: #FFFFFF !important;
}

.solution-card:hover .solution-icon {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  transform: none !important;
}

.solution-card:hover .solution-icon i {
  color: #FFFFFF !important;
  transform: none !important;
}

.solution-card > span i {
  transition: transform 0.3s ease !important;
}

.solution-card:hover > span i {
  transform: translateX(4px) !important;
}

/* ==================================================
   RESTORED HOMEPAGE — BUSINESS PARTNERS
   Added without altering existing homepage styling.
================================================== */

.partners-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 88px;
  background: #ffffff;
  color: #666666;
}

.partners-container {
  width: min(1500px, calc(100% - 96px));
  margin: 0 auto;
}

.partners-header {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.partners-header::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 10px;
  background: #4A74E8;
}

.partners-header h2 {
  margin: 0;
  color: #666666;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.partners-header p {
  max-width: 800px;
  margin: 20px auto 0;
  color: #7A7A7A;
  font-size: 16px;
  line-height: 1.7;
}

.partners-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 74px;
  animation: btsPartnersScroll 34s linear infinite;
  will-change: transform;
}

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

.partners-track img {
  display: block;
  width: auto;
  max-width: 150px;
  height: 62px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.68;
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}

.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes btsPartnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 37px)); }
}

@media (max-width: 700px) {
  .partners-section {
    padding: 64px 0 70px;
  }

  .partners-container {
    width: calc(100% - 32px);
  }

  .partners-track {
    gap: 48px;
  }

  .partners-track img {
    max-width: 120px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

/* ==================================================
   HOMEPAGE WIDTH + HARDWARE HEADING REFINEMENT
   Keeps all existing layout/content intact.
================================================== */

/* Narrow the overall homepage content area so the page
   has more breathing room on the left and right. */
.home-shell {
  width: min(1320px, calc(100% - 120px)) !important;
}

/* Match the hardware section to the same content width. */
.hardware-shell {
  width: min(1320px, calc(100% - 120px)) !important;
}

/* Make the hardware heading match the other main homepage headings. */
.hardware-heading {
  max-width: 1040px !important;
}

.hardware-heading h2 {
  font-size: clamp(42px, 4.3vw, 72px) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
}

/* Match the supporting copy spacing/scale more closely too. */
.hardware-heading p {
  max-width: 850px !important;
  margin-top: 26px !important;
  font-size: 19px !important;
  line-height: 1.75 !important;
}

/* Responsive breathing room */
@media (max-width: 1100px) {
  .home-shell,
  .hardware-shell {
    width: min(100% - 64px, 1320px) !important;
  }
}

@media (max-width: 700px) {
  .home-shell,
  .hardware-shell {
    width: calc(100% - 32px) !important;
  }
}

/* ==================================================
   HOMEPAGE WIDTH — REDUCED LEFT / RIGHT MARGINS
   Wider content area on desktop, existing layout preserved.
================================================== */

/* Main homepage sections */
.home-shell,
.hardware-shell,
.partners-container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* Keep the heading width controlled so text doesn't become too long */
.home-section-heading,
.hardware-heading,
.partners-header {
  max-width: 1040px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .home-shell,
  .hardware-shell,
  .partners-container {
    width: calc(100% - 48px) !important;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .home-shell,
  .hardware-shell,
  .partners-container {
    width: calc(100% - 28px) !important;
  }
}

/* ==================================================
   FINAL HOMEPAGE WIDTH FIX
   This MUST remain at the very end of the stylesheet.
   It overrides earlier 1320px / 1500px width rules.
================================================== */

@media (min-width: 901px) {
  .home-shell,
  .hardware-shell,
  .partners-container {
    width: calc(100% - 48px) !important;
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Bring the two-column sections together so they don't feel stretched */
  .home-story-grid,
  .home-process-grid {
    gap: 60px !important;
  }

  /* Keep the copy comfortably readable inside the narrower layout */
  .home-story-heading h2 {
    max-width: 500px !important;
  }

  .home-story-copy {
    padding-top: 56px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .home-shell,
  .hardware-shell,
  .partners-container {
    width: calc(100% - 48px) !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .home-shell,
  .hardware-shell,
  .partners-container {
    width: calc(100% - 32px) !important;
    max-width: none !important;
  }
}

/* ==================================================
   CUSTOMER TESTIMONIALS — REMOVE EXCESS WHITE SPACE
   Final override
================================================== */

.testimonials-section {
  min-height: 0 !important;
  padding: 80px 0 80px !important;
  background: #ffffff;
}

.testimonial-shell {
  width: min(1100px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

.testimonials-section h2 {
  margin: 0 !important;
  padding-top: 0 !important;
}

.testimonials-section h3 {
  margin: 22px 0 44px !important;
}

.testimonial-carousel {
  margin: 0 !important;
}

.testimonial-person {
  margin-top: 27px !important;
}

.testimonial-dots {
  margin-top: 30px !important;
}

/* Pull the partners section closer to testimonials */
.partners-section {
  padding-top: 72px !important;
}

@media (max-width: 700px) {
  .testimonials-section {
    padding: 64px 0 68px !important;
  }

  .testimonial-shell {
    width: calc(100% - 32px) !important;
  }

  .testimonials-section h3 {
    margin-bottom: 36px !important;
  }

  .testimonial-dots {
    margin-top: 26px !important;
  }

  .partners-section {
    padding-top: 60px !important;
  }
}

/* ==================================================
   HOMEPAGE CONTACT CTA
   Replaces the large quote form with a compact CTA.
================================================== */

.home-contact-cta {
  padding: 78px 24px;
  background: #ffffff;
}

.home-contact-cta-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 54px 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  border-radius: 30px;
  background: linear-gradient(135deg, #5B73E6 0%, #7B85DD 100%);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(74, 116, 232, 0.13);
}

.home-contact-cta-copy {
  max-width: 760px;
}

.home-contact-cta-copy p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.94);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.home-contact-cta-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.25vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.home-contact-cta-button {
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 62px;
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.home-contact-cta-button i {
  transition: transform 0.3s ease;
}

.home-contact-cta-button:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.72);
  transform: translateY(-2px);
}

.home-contact-cta-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .home-contact-cta {
    padding: 64px 24px;
  }

  .home-contact-cta-inner {
    padding: 44px 40px;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .home-contact-cta {
    padding: 52px 16px;
  }

  .home-contact-cta-inner {
    padding: 36px 26px;
    border-radius: 24px;
  }

  .home-contact-cta-copy h2 {
    font-size: 34px;
  }

  .home-contact-cta-button {
    width: 100%;
    min-width: 0;
  }
}

.bts-team-difference {
background:#f4f6fc;
padding:100px 0;
}


.bts-team-heading {
text-align:center;
max-width:900px;
margin:auto;
}


.bts-team-heading h2 {
font-size:60px;
line-height:1.1;
font-weight:400;
color:#666;
margin:20px 0;
}


.bts-team-heading p {
font-size:18px;
color:#777;
line-height:1.6;
}



.bts-team-grid {

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
margin-top:60px;

}



.bts-team-card {

background:white;
border-radius:30px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,.06);

}



.bts-team-image {

height:300px;
display:flex;
align-items:center;
justify-content:center;
background:#fafbff;
padding:25px;

}



.bts-team-image img {

max-width:100%;
max-height:260px;
object-fit:contain;

}



.bts-team-copy {

padding:35px;

}



.bts-team-copy span {

font-size:11px;
letter-spacing:.2em;
color:#5875e8;
font-weight:bold;

}



.bts-team-copy h3 {

font-size:25px;
color:#555;
margin:15px 0;

}



.bts-team-copy p {

font-size:16px;
line-height:1.7;
color:#777;

}



@media(max-width:900px){

.bts-team-grid{
grid-template-columns:1fr;
}

}


/* ==========================================
   BTS DIFFERENCE - FULL IMAGE CARD SECTION
========================================== */


/* GRID */

.difference-modern-grid {

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:35px;
    margin-top:70px;

}



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


.difference-modern-card {

    background:#ffffff;

    border-radius:32px;

    overflow:hidden;

    border:1px solid rgba(80,110,200,.08);

    box-shadow:
    0 20px 50px rgba(30,40,80,.07);

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}



.difference-modern-card:hover {

    transform:translateY(-8px);

    box-shadow:
    0 35px 70px rgba(30,40,80,.12);

}



/* ==========================================
   IMAGE - FULL WIDTH TOP AREA
========================================== */


.difference-image {

    width:100%;

    height:360px;

    padding:0;

    margin:0;

    overflow:hidden;

    position:relative;

    background:#eef2f8;

}



/* Image */

.difference-image img {

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    transition:
    transform .5s ease;

}



/* Hover image movement */

.difference-modern-card:hover 
.difference-image img {

    transform:scale(1.05);

}



/* Optional soft gradient overlay */

.difference-image:after {

    content:"";

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    height:80px;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.08),
    transparent
    );

    pointer-events:none;

}



/* ==========================================
   TEXT CONTENT
========================================== */


.difference-text {

    padding:40px 38px 45px;

}



.difference-text span {

    display:block;

    margin-bottom:16px;

    color:#5875e8;

    font-size:11px;

    font-weight:700;

    letter-spacing:.25em;

    text-transform:uppercase;

}



.difference-text h3 {

    margin:0 0 18px;

    color:#606060;

    font-size:28px;

    line-height:1.25;

    font-weight:600;

}



.difference-text p {

    margin:0;

    color:#777;

    font-size:16px;

    line-height:1.8;

}



/* ==========================================
   RESPONSIVE
========================================== */


@media(max-width:1100px){


    .difference-modern-grid {

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:900px){


    .difference-modern-grid {

        grid-template-columns:1fr;

    }


    .difference-image {

        height:320px;

    }


}



@media(max-width:600px){


    .difference-modern-card {

        border-radius:24px;

    }


    .difference-image {

        height:280px;

    }


    .difference-text {

        padding:30px;

    }


    .difference-text h3 {

        font-size:24px;

    }


}



/* ==========================================
   BACK TO TOP BUTTON
========================================== */

.back-to-top {

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 52px;
    height: 52px;

    border-radius:50%;

    border:none;

    background:#4A74E8;

    color:#ffffff;

    font-size:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:
    opacity .3s ease,
    transform .3s ease,
    background .3s ease;

    z-index:9999;

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

}


.back-to-top:hover {

    background:#3763D8;

    transform:translateY(-3px);

}



.back-to-top.show {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



@media(max-width:600px){

    .back-to-top {

        right:20px;

        bottom:20px;

        width:46px;

        height:46px;

    }

  
}

.back-to-top {

    position:fixed;

    left: 30px;
    bottom: 30px;

    width:52px;
    height:52px;

    border-radius:50%;

    border:none;

    background:#4A74E8;

    color:white;

    font-size:18px;

    display:flex;

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

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

    z-index:99999;

}


.back-to-top.show {

    opacity:1;

    visibility:visible;

}


/* ==================================================
   BTS WHATSAPP CHAT WIDGET
================================================== */


/* ==================================================
   FLOATING WHATSAPP BUTTON
================================================== */

.whatsapp-button {

    position: fixed;

    right: 30px;
    bottom: 30px;

    width: 58px;
    height: 58px;

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

    background: #25D366;

    border: none;

    border-radius: 50%;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

    z-index: 9999;

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

    transition:
        transform .3s ease,
        background .3s ease;

}



.whatsapp-button:hover {

    background:#20bd5a;

    transform:translateY(-5px);

}



/* ==================================================
   POPUP CONTAINER
================================================== */

.whatsapp-popup {

    position:fixed;

    right:30px;

    bottom:105px;


    width:320px;


    background:#ffffff;


    border-radius:24px;


    overflow:hidden;


    box-shadow:
        0 25px 70px rgba(0,0,0,.20);


    z-index:9998;


    opacity:0;

    visibility:hidden;


    transform:translateY(20px);


    transition:

        opacity .35s ease,

        transform .35s ease,

        visibility .35s ease;

}



/* Popup visible */

.whatsapp-popup.active {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



/* Speech bubble pointer */

.whatsapp-popup::after {

    content:"";

    position:absolute;


    right:48px;

    bottom:-10px;


    width:22px;

    height:22px;


    background:#ffffff;


    transform:rotate(45deg);

}



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

.whatsapp-popup-header {

    position:relative;


    padding:25px 28px;


    background:#6675D9;


    color:#ffffff;

}



.whatsapp-popup-header h3 {

    margin:0;


    font-size:22px;


    line-height:1.35;


    font-weight:500;

}



.whatsapp-popup-header i {

    display:block;

    margin-bottom:10px;


    font-size:30px;

}



/* Close button */

.whatsapp-close {

    position:absolute;


    top:15px;


    right:18px;


    background:none;


    border:none;


    color:#ffffff;


    font-size:28px;


    cursor:pointer;


    line-height:1;


    opacity:.9;

}



.whatsapp-close:hover {

    opacity:1;

}



/* ==================================================
   POPUP BODY
================================================== */


.whatsapp-popup-body {


    padding:28px;


    color:#46505f;


    font-size:16px;


    line-height:1.65;

}



.whatsapp-popup-body h4 {


    margin:0 0 12px;


    font-size:20px;


    color:#111111;


    font-weight:700;

}



.whatsapp-popup-body p {


    margin:0 0 20px;

}



/* ==================================================
   WHATSAPP ACTION BUTTON
================================================== */


.whatsapp-popup-link {


    display:flex;


    align-items:center;


    justify-content:center;


    gap:12px;


    width:100%;


    padding:14px 20px;


    border-radius:50px;


    background:#25D366;


    color:#ffffff;


    text-decoration:none;


    font-size:18px;


    font-weight:600;


    transition:.3s ease;

}



.whatsapp-popup-link:hover {


    background:#20bd5a;


    transform:translateY(-3px);


    color:#ffffff;

}



.whatsapp-popup-link i {


    font-size:25px;

}



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


@media(max-width:600px){


    .whatsapp-button {


        width:55px;


        height:55px;


        right:20px;


        bottom:20px;


        font-size:28px;

    }



    .whatsapp-popup {


        width:calc(100% - 40px);


        right:20px;


        bottom:90px;

    }



    .whatsapp-popup-header {


        padding:22px;

    }



    .whatsapp-popup-header h3 {


        font-size:20px;

    }



    .whatsapp-popup-body {


        padding:24px;

    }

}

/* ==================================================
   BACK TO TOP BUTTON
================================================== */


.back-to-top {

    position:fixed;

    left:30px;

    bottom:30px;


    width:52px;

    height:52px;


    display:flex;

    align-items:center;

    justify-content:center;


    background:#586FE5;


    color:#ffffff;


    border:none;


    border-radius:50%;


    font-size:18px;


    cursor:pointer;


    z-index:9999;


    opacity:0;

    visibility:hidden;


    transform:translateY(20px);


    transition:.3s ease;


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

}



.back-to-top:hover {


    background:#4359d2;


    transform:translateY(-5px);

}



/* Show button */

.back-to-top.show {


    opacity:1;


    visibility:visible;


    transform:translateY(0);

}




@media(max-width:600px){


    .back-to-top {


        width:48px;

        height:48px;


        left:20px;


        bottom:20px;

    }

}

.hero::before {
    background: rgba(30,45,80,0.25);
}