*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: white;
  margin: 0;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

.hero {
  background: linear-gradient(
    180deg,
    #010d20 0%,
    #091c35 21%,
    #163e67 40.16%,
    #4a82b8 52.94%,
    #5b9bd5 61.98%,
    #85c8f5 70.89%,
    #ffffff 89.9%
  );
  padding-bottom: 0;
}

.nav {
  padding: 20px 100px 20px 100px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}

.calendly-cont {
  width: 100%;
  min-height: 700px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.calendly-inline-widget {
  width: 100%;
  max-width: 1240px;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
}

.logo h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}

.logo h1 span {
  color: #85c8f5;
}

.logo img {
  width: 47px;
  height: 47px;
}

.nav h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0%;
  margin: 0;
}

.menu {
  display: flex;
  gap: 16px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0%;
}
.menu a:hover {
  color: #85c8f5;
}
.demo-btn {
  background-color: #ffffff0d;
  padding: 8px 24px 8px 24px;
  border-radius: 100px;
  border: 1px solid #85c8f5;
  color: #85c8f5 !important;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.demo-btn:hover {
  background-color: #85c8f5;
  color: #0a1a2e !important;
  transform: translateY(-1px);
}

.hero-body {
  width: 100%;
  max-width: 1240px;
  margin-top: 70px !important;
  margin: 0 auto;
  padding-left: 52px;
  padding-right: 52px;
  gap: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.hero-callout {
  display: flex;
  justify-content: space-between;
}
.hero-text {
  width: 40% !important;
  font-weight: 400;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0;
}
.hero-desc {
  width: 383px !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-desc p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #ffffffcc;
  margin: 0;
}
.hero-desc-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.hero-demo-btn {
  border-radius: 100px;
  text-decoration: none;
  color: black;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #85c8f5;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  border: 1px solid #85c8f5;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-demo-btn:hover {
  background-color: #a7d8f8;
  border-color: #a7d8f8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(133, 200, 245, 0.35);
}
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero-see-btn {
  border-radius: 100px;
  text-decoration: none;
  color: #85c8f5;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff0d;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  border: 1px solid #85c8f5;
  position: relative;
  z-index: 0;
  transition:
    background-color 0.4s ease,
    opacity 0.4s ease;
}

.hero-see-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle),
    #85c8f5 0%,
    #4a9eda 25%,
    #ffffff 50%,
    #4a9eda 75%,
    #85c8f5 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.hero-see-btn:hover {
  background-color: #ffffff05;
  border-color: transparent;
}

.hero-see-btn:hover::before {
  opacity: 1;
  animation: border-flow 2.5s linear infinite;
}

@keyframes border-flow {
  to {
    --border-angle: 360deg;
  }
}

.trust-container {
  display: flex;
}

.trust-p {
  width: 200px !important;
  color: #ffffff;
  border-right: 1px solid #ffffff33;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.trust-companies {
  display: flex;
  padding-left: 32px;
  width: 100%;
  justify-content: space-between;
}

.trust-companies a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0%;
  font-style: medium;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.hero-scroll-zone {
  height: 140vh;
  position: relative;
}

.hero-dashboard {
  position: sticky;
  top: 10vh;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  z-index: 1;
}

.dashboard-stack {
  position: relative;
  width: 100%;
  max-width: 1240px;
  overflow: hidden;
  border-radius: 36px;
}

.dashboard-img {
  width: 100%;
  max-width: 1240px;
  border-radius: 36px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.dash-base {
  display: block;
}

.dash-overlay {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  transition: none;
  will-change: transform;
}

.broken {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  width: 100%;
}

.broken h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0%;
  color: #1a1a2e;
  margin: 0;
  width: 600px !important;
  text-align: center;
}

.b-slider-section {
  max-width: 1240px;
  width: 100%;
  margin-top: 60px;
}

.b-slider-stack {
  display: flex;
  gap: 32px;
}

.b-slider {
  height: 560px;
  background-size: cover;
  background-position: center;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  transition: flex 0.5s ease;
}

.slider-1 {
  background-image: url("/media/about/1.png");
}
.slider-2 {
  background-image: url("/media/about/2.png");
}
.slider-3 {
  background-image: url("/media/about/3.png");
}

.slider-active {
  flex: 2;
}
.slider-inactive {
  flex: 1;
}

.slider-details {
  background-color: #f6f7fa;
  border-radius: 36px;
  width: 100%;
  padding: 32px;
  box-sizing: border-box;
  opacity: 1;
  max-height: 300px;
  overflow: hidden;
  transition: opacity 0.27s ease 0.27s;
}

.slider-details-inactive {
  opacity: 0;
  max-height: 0;
  padding: 0 32px;
  transition:
    opacity 0.15s ease 0s,
    max-height 0s ease 0.15s,
    padding 0s ease 0.15s;
}

.slider-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.slider-tag {
  background-color: white;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #4a81b9;
}

.slider-details h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #1a1a2e;
  margin: 0;
  text-align: start;
}

.slider-details p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: start;
  color: #4a4a5a;
}

.slider-cta {
  margin-top: 32px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #f6f7fa;
  max-width: 1240px;
  width: 100%;
  padding: 32px;
  border-radius: 36px;
  box-sizing: border-box;
}

.slider-cta h3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 32px;
  letter-spacing: 0%;
  color: #1a1a2e;
  margin: 0;
}

.italic {
  font-style: italic;
}

.slider-cta p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 600px;
}

.system {
  background: linear-gradient(180deg, #010d20 0%, #091c35 50%, #163e67 100%);
  padding: 100px;
  display: flex;
  flex-direction: column;
  gap: 90px;
  align-items: center;
  justify-content: start;
}

.system-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.system-header h3 {
  margin: 0;
  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 400 !important;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.system-steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  position: relative;
}

.system-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 1240px;
  max-width: 90vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 10%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.15) 90%,
    rgba(255, 255, 255, 0) 100%
  );
}

.system-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  width: 320px !important;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e2c40;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-inner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4a81b9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.system-step h4 {
  margin: 0;
  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}

.system-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  max-width: 260px;
}

/* Active step highlighting */
.system-step .step-number {
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.system-step .step-inner {
  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.system-step h4,
.system-step p {
  transition:
    opacity 0.4s ease,
    color 0.4s ease;
}

.system-step.step-active .step-number {
  background: #2a4a6e;
  box-shadow: 0 0 16px rgba(133, 200, 245, 0.35);
}

.system-step.step-active .step-inner {
  background: #85c8f5;
  transform: scale(1.15);
}

.system-step:not(.step-active) h4 {
  color: rgba(255, 255, 255, 0.4);
}

.system-step:not(.step-active) p {
  color: rgba(255, 255, 255, 0.25);
}

/* System vis wrapper with arrows */
.system-vis-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
}

.system-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.system-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.system-vis-container {
  width: 100%;
  max-width: 980px;
  height: 580px;
  background-color: #ffffff1a;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

/* Progress track — hidden on desktop, shown on mobile */
.system-progress-track {
  display: none;
}

.system-cta-btn {
  background-color: #85c8f5;
  color: black;
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.system-cta-btn:hover {
  background-color: #4a81b9;
  color: white;
}

.managed {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 100px;
  gap: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  box-sizing: border-box;
}

.managed-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.managed-header h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.managed-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  max-width: 400px;
}

.features-cont {
  max-width: 1240px;
  width: 100%;
}

.features-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-sizing: border-box;
}

.feature {
  width: 100%;
  background-color: #f6f7fa;
  border-radius: 36px;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  text-align: start;
}

.feature img {
  padding: 16px;
  background-color: #ffffff;
  border-radius: 16px;
}

.feature h4 {
  font-family: Manrope;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin: 0px;
}

.feature p {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  margin: 0px;
}

.feature-ai {
  width: 100%;
  background-image: url(/media/feature-icons/ai-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 36px;
  background-color: #f6f7fa;
  position: relative;
  overflow: hidden;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.feature-ai h4,
.feature-ai p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: white;
}

.feature-ai h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}

.feature-ai p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
}

.feature-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #055cb4ab;
  border-radius: 36px;
}

.howitworks {
  width: 100%;
  padding: 100px;
  gap: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  background: linear-gradient(180deg, #010d20 0%, #091c35 50%, #163e67 100%);
}

.hiw-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 600px;
}

.hiw-header h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  color: white;
  margin: 0;
}

.hiw-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffffcc !important;
}

.hiw-cont {
  width: 1240px;
  height: 486px;
  gap: 60px;
  opacity: 1;
  border-radius: 36px;
  padding-top: 32px;
  padding-right: 60px;
  padding-bottom: 32px;
  padding-left: 32px;
  background-color: #ffffff1a;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.hiw-vis {
  flex: 1;
  background-color: #ffffff1a;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

.hiw-images {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
}

.hiw-images-active {
  pointer-events: auto;
}

.hiw-img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.7) translateX(60px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    right 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
}

.hiw-img-center {
  cursor: pointer;
}

.hiw-img-expanded {
  z-index: 10 !important;
  top: 50% !important;
  left: 50% !important;
  bottom: auto !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transition:
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    right 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Exiting: slide left and fade out */
.hiw-images-exit .hiw-img {
  opacity: 0;
  transform: scale(0.7) translateX(-60px);
  transition:
    opacity 0.25s ease-in,
    transform 0.3s ease-in;
  transition-delay: 0s !important;
}

/* Staggered delays for each child image */
.hiw-images-active .hiw-img:nth-child(1) {
  transition-delay: 0.05s;
}
.hiw-images-active .hiw-img:nth-child(2) {
  transition-delay: 0.15s;
}
.hiw-images-active .hiw-img:nth-child(3) {
  transition-delay: 0.25s;
}
.hiw-images-active .hiw-img:nth-child(4) {
  transition-delay: 0.35s;
}
.hiw-images-active .hiw-img:nth-child(5) {
  transition-delay: 0.45s;
}

/* Center images need translate(-50%,-50%) in all states */
.hiw-img-center {
  transform: translate(-50%, -50%) scale(0.7) translateX(60px);
}
.hiw-images-active .hiw-img-center {
  transform: translate(-50%, -50%) scale(1) translateX(0);
}
.hiw-images-exit .hiw-img-center {
  transform: translate(-50%, -50%) scale(0.7) translateX(-60px);
}

/* Configure step images */
.configure-1 {
  width: 88%;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.hiw-images-active .configure-1 {
  opacity: 1;
}

.configure-2 {
  width: 40%;
  bottom: 8%;
  left: 2%;
  z-index: 2;
}
.hiw-images-active .configure-2 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.configure-3 {
  width: 36%;
  top: 8%;
  right: 2%;
  z-index: 2;
}
.hiw-images-active .configure-3 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

/* Rules step images */
.rules-1 {
  width: 88%;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.hiw-images-active .rules-1 {
  opacity: 1;
}

.rules-2 {
  width: 30%;
  bottom: 4%;
  left: 4%;
  z-index: 2;
}
.hiw-images-active .rules-2 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.rules-3 {
  width: 36%;
  bottom: 8%;
  right: 2%;
  z-index: 2;
}
.hiw-images-active .rules-3 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.rules-4 {
  width: 56%;
  top: 12%;
  right: 2%;
  z-index: 2;
}
.hiw-images-active .rules-4 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

/* Customize step images */
.customize-1 {
  width: 92%;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.hiw-images-active .customize-1 {
  opacity: 1;
}

.customize-2 {
  width: 30%;
  bottom: 4%;
  left: 2%;
  z-index: 2;
}
.hiw-images-active .customize-2 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.customize-3 {
  width: 36%;
  top: 4%;
  right: 2%;
  z-index: 2;
}
.hiw-images-active .customize-3 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.customize-4 {
  width: 36%;
  bottom: 8%;
  right: 2%;
  z-index: 2;
}
.hiw-images-active .customize-4 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.customize-5 {
  width: 26%;
  top: 2%;
  left: 2%;
  z-index: 2;
}
.hiw-images-active .customize-5 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

/* Embed step images */
.embed-1 {
  width: 75%;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.hiw-images-active .embed-1 {
  opacity: 1;
}

.embed-2 {
  width: 30%;
  bottom: 4%;
  right: 2%;
  z-index: 2;
}
.hiw-images-active .embed-2 {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}

.hiw-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hiw-slider {
  background-color: #ffffff0d;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
}

.hiw-slider button {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  border: none;
  background: transparent;
  color: #ffffffcc;
  padding-top: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiw-slider button:hover {
  color: white;
  background-color: #ffffff1a;
}

.hiw-active {
  gap: 10px;
  opacity: 1;
  border-radius: 100px;
  padding-top: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
  border: none;
  background-color: #ffffff !important;
  font-family: "Manrope", sans-serif !important;
  font-weight: 700 !important;
  font-style: Bold !important;
  font-size: 14px !important;
  line-height: 20px !important;
  letter-spacing: 0% !important;
  text-align: center !important;
  vertical-align: middle !important;
  color: black !important;
}

.hiw-details-wrap {
  display: grid;
  flex: 1;
}

.hiw-details {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hiw-details-active {
  opacity: 1;
  pointer-events: auto;
}

.hiw-details h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin: 0;
  color: white;
}

.hiw-details p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #ffffffcc;
}

.hiw-callout {
  width: fit-content;
  opacity: 1;
  border-radius: 100px;
  padding-top: 5px;
  padding-right: 16px;
  padding-bottom: 7px;
  padding-left: 16px;
  background-color: #ffffff1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: white;
}

.hiw-progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background-color: #ffffff0d;
  position: relative;
}

.hiw-progress-indicator {
  height: 100%;
  border-radius: 4px;
  background-color: #4a81b9;
  width: 25%;
  transition: width 0.3s ease;
}

.integrations {
  width: 100%;
  padding: 100px;
  gap: 100px;
  opacity: 1;
  box-sizing: border-box;
  background: linear-gradient(180deg, #010d20 0%, #091c35 50%, #163e67 100%);
}

.integrations-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.integrations-header h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: white;
}

.integrations-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  max-width: 400px;
  color: #ffffffcc;
}

.integrations-list {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.integration {
  background-color: #ffffff1a;
  width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  opacity: 1;
  border-radius: 36px;
  box-sizing: border-box;
}

.integration img {
  background-color: #ffffff1a;
  padding: 16px;
  border-radius: 16px;
}

.shopify-app-store {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-style: Bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  gap: 10px;
  opacity: 1;
  border-radius: 100px;
  padding-top: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
  border: 1px solid #85c8f5;
  background-color: #85c8f5;
  color: #0a1a2e;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.shopify-app-store:hover {
  background-color: #a7d8f8;
  border-color: #a7d8f8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(133, 200, 245, 0.35);
}

.integrations-contact {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: Bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  gap: 10px;
  opacity: 1;
  border-radius: 100px;
  padding-top: 8px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
  border: 1px solid #a0a0aa;
  color: #a0a0aa;
  background-color: #ffffff00;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.integrations-contact:hover {
  color: white;
  border-color: #85c8f5;
  background-color: rgba(133, 200, 245, 0.1);
  transform: translateY(-1px);
}

.pricing {
  width: 100%;
  padding: 100px;
  gap: 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-header {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-header h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}

.pricing-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
}

.pricing-selection {
  width: auto;
  height: 44px;
  opacity: 1;
  padding: 4px 4px;
  border-radius: 100px;
  background-color: #f1f2f9;
  display: flex;
  gap: 4px;
  align-items: center;
}

.period-selection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 100%;
  height: 100%;
  position: relative;
}

.period-selection .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100px;
  background-color: white;
  transition:
    transform 0.3s ease,
    width 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.period-btn {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  border: none;
  background-color: transparent;
  white-space: nowrap;
  cursor: pointer;
  padding: 8px 24px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.period-active {
  font-weight: 600;
}

.period-btn:hover {
  font-weight: 600;
}
.period-btn span {
  width: 68px;
  height: 20px !important;
  opacity: 1;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
  border-radius: 100px;
  background-color: #d0dbec;
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-style: Bold;
  font-size: 10px;
  line-height: 6px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #4a81b9;
  margin: 0px;
  margin-left: 4px;
}

.pricing-plans {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.plan {
  flex: 1 1 0;
  min-width: 0;
  max-width: 420px;
  min-height: 727px;
  opacity: 1;
  gap: 24px;
  border-radius: 36px;
  background-color: #f6f7fa;
  box-shadow: 0px 2px 20px 0px #00000003;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.plan-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.plan-header h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
}
.plan-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
}

.plan-price {
  display: flex;
  width: 100%;
  align-items: end;
  gap: 2px;
}
.plan-price-amount {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
  transition: opacity 0.25s ease;
}
.plan-price-period {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin: 0px;
  margin-bottom: 4px;
}

.plan-save-badge {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #16a34a;
  background-color: #dcfce7;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.plan-save-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.plan-benefits {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
.plan-benefits h5 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  margin: 0px;
  background-color: white;
  border-radius: 100px;
  padding: 8px 12px;
  box-shadow: 0px 2px 20px 0px #00000003;
}
.plan-benefits ul {
  margin: 0;
  padding-left: 0px;
  list-style-type: none;
}

.plan-benefits li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0px;
}

.plan-benefits li.featured {
  font-weight: 600;
  color: #4a81b9;
}

.system-vis-container {
  width: 100%;
  max-width: 980px;
  height: 580px;
  background-color: #ffffff1a;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}

/* Wrapper for each layered step image */
.step-img-wrap {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
  opacity: 0;
  pointer-events: none;
}

/* Images that have appeared (current or previous steps) */
.step-img-wrap.step-img-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Active images scale up slightly */
.step-img-wrap.step-img-active {
  transform: scale(1.04);
}

.step-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* White overlay on each image */
.step-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.301);
  backdrop-filter: blur(1px);
  border-radius: 16px;
  pointer-events: none;
}

/* Remove overlay for active images */
.step-img-wrap.step-img-active::after {
  display: none;
}

/* Image 1 — back-left */
.step-1 {
  width: 800px;
  top: 40px;
  left: 30px;
  z-index: 1;
}

/* Image 2 — centre, overlapping image 1 */
.step-2 {
  width: 700px;
  bottom: 40px;
  left: 220px;
  z-index: 2;
}

/* Image 3 — add positioning here */
.step-3 {
  width: 450px;
  top: 30px;
  right: 370px;
  z-index: 3;
}

/* Image 4 — add positioning here */
.step-4 {
  width: 360px;
  bottom: 130px;
  left: 100px;
  z-index: 4;
}

.step-6 {
  width: 380px;
  top: 20px;
  right: 30px;
  z-index: 6;
}

.faq {
  background-color: #f6f7fa;
  width: 100%;
  padding: 100px;
  gap: 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-header {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-header h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}

.faq-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  margin: 0;
}

.faq-questions {
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-q {
  background-color: white;
  border-radius: 32px;
  padding: 8px 16px 8px 24px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-q.is-open {
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.06);
}

.faq-q-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.faq-actions {
  flex-shrink: 0;
  padding: 16px;
  border-radius: 16px;
  background-color: #f6f7fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.25s ease;
}

.faq-q-header:hover .faq-actions {
  background-color: #e0e3eb;
}

.faq-icon {
  display: block;
  width: 16px;
  height: 16px;
  transition:
    opacity 0.25s ease,
    transform 0.3s ease;
}

.faq-icon-open {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq-icon-closed {
  position: absolute;
  opacity: 1;
  transform: rotate(0deg);
}

.faq-q.is-open .faq-icon-open {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-q.is-open .faq-icon-closed {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-q h4 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  color: #1a1a2e;
}

.faq-q-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-q.is-open .faq-q-body {
  grid-template-rows: 1fr;
}

.faq-q-body > * {
  overflow: hidden;
  min-height: 0;
}

.faq-q-body p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4a4a5a;
  margin: 4px 0 16px;
  padding-right: 80px;
}

.footer {
  width: 100%;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #163e67 0%, #091c35 50%, #010d20 100%);
}

.cta-container {
  background-image: url(/media/cta-bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 1100px;
  height: 400px;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

.cta-container h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0px;
  color: white;
  margin: 0;
  max-width: 728px;
}

.cta-container a {
  width: fit-content;
  padding: 12px 32px;
}

.footer-links {
  width: 100%;
  color: white;
  padding: 80px 100px 40px;
  box-sizing: border-box;
  border-top: 1px solid #ffffff1a;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 220px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 36px;
  height: 36px;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.footer-logo em {
  font-style: normal;
  color: #5b9bd5;
}

.footer-brand p {
  margin: 0;
  font-size: 15px;
  color: #8899aa;
}

.footer-columns {
  display: flex;
  gap: 100px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8899aa;
}

.footer-col a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #5b9bd5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ffffff1a;
  padding-top: 30px;
  font-size: 14px;
  color: #8899aa;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-divider {
  color: #ffffff30;
}

/* ── Hamburger button (hidden on desktop) ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* ── Responsive: Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .nav {
    padding: 20px 40px;
  }

  .hero-body {
    margin-top: 48px !important;
    padding-left: 32px;
    padding-right: 32px;
    gap: 60px;
  }

  .hero-callout {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .hero-text {
    width: 100% !important;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
  }

  .hero-desc {
    width: 100% !important;
    max-width: 500px;
    align-items: center;
    text-align: center;
  }

  .hero-desc-btns {
    width: 100%;
    max-width: 440px;
  }

  .trust-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .trust-p {
    width: auto !important;
    border-right: none;
    text-align: center;
    padding-right: 0;
  }

  .trust-companies {
    padding-left: 0;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .dashboard-stack {
    border-radius: 24px;
  }

  .dashboard-img {
    border-radius: 24px;
  }

  .hero-scroll-zone {
    height: 120vh;
  }

  /* ── How It Works section ── */
  .howitworks {
    padding: 60px 20px;
    gap: 40px;
  }

  .hiw-header h3 {
    font-size: 36px;
    line-height: 44px;
  }

  .hiw-header p {
    font-size: 15px;
  }

  .hiw-cont {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .hiw-info {
    order: -1;
    padding-top: 0;
    padding-bottom: 24px;
    gap: 16px;
  }

  .hiw-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-shrink: 0;
  }

  .hiw-slider::-webkit-scrollbar {
    display: none;
  }

  .hiw-slider button {
    font-size: 13px;
    padding: 7px 16px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hiw-details h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .hiw-details p {
    font-size: 13px;
    line-height: 22px;
  }

  .hiw-vis {
    width: 100%;
    min-height: 280px;
    aspect-ratio: 4 / 3;
    flex: none;
    border-radius: 20px;
  }

  /* ── Broken section ── */
  .broken {
    margin-top: 40px;
    padding: 0 20px;
  }

  .broken h3 {
    width: 100% !important;
    font-size: 32px;
    line-height: 40px;
  }

  .b-slider-section {
    margin-top: 40px;
    height: auto;
  }

  .b-slider-stack {
    flex-direction: column;
    gap: 16px;
  }

  .b-slider {
    position: relative;
    width: 100%;
    height: 360px;
    flex: none !important;
    border-radius: 20px;
    transform: none !important;
  }

  .b-slider .slider-details {
    opacity: 1 !important;
    max-height: 300px !important;
    padding: 24px !important;
    border-radius: 24px;
  }

  .b-slider .slider-details-inactive {
    opacity: 1 !important;
    max-height: 300px !important;
    padding: 24px !important;
  }

  .slider-details h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .slider-cta {
    margin-top: 24px;
    margin-bottom: 40px;
    padding: 24px;
    border-radius: 24px;
  }

  .slider-cta h3 {
    font-size: 22px;
    line-height: 30px;
  }

  /* ── System section ── */
  .system {
    height: auto;
    padding: 60px 24px;
    gap: 40px;
  }

  .system-header h3 {
    font-size: 36px;
    line-height: 44px;
  }

  .system-steps {
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 48px;
    max-width: 100%;
  }

  .system-steps::before {
    display: none;
  }

  .system-progress-track {
    display: block;
    position: absolute;
    top: 0;
    left: 17px;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }

  .system-progress-fill {
    width: 100%;
    height: 0%;
    background: #85c8f5;
    border-radius: 2px;
    transition: height 0.15s linear;
  }

  .system-step {
    align-items: flex-start;
    text-align: left;
    width: 100% !important;
    padding: 16px 0;
    position: relative;
    gap: 6px;
  }

  .system-step .step-number {
    position: absolute;
    left: -48px;
    top: 16px;
  }

  .system-step h4 {
    font-size: 16px;
    line-height: 22px;
  }

  .system-step p {
    max-width: 100%;
    font-size: 13px;
    line-height: 20px;
  }

  /* Hide desktop arrows, make vis sticky */
  .system-arrow {
    display: none;
  }

  .system-vis-wrapper {
    max-width: 100%;
    gap: 0;
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .system-vis-container {
    width: 100%;
    max-width: 100%;
    height: 50vw;
    min-height: 220px;
    border-radius: 20px;
    background-color: #294360;
  }

  .system-cta-btn {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
  }

  /* Reposition step images for mobile container */
  .step-1 {
    width: 70%;
    top: 5%;
    left: 3%;
  }
  .step-2 {
    width: 60%;
    bottom: 5%;
    left: 18%;
  }
  .step-3 {
    width: 45%;
    top: 5%;
    right: 25%;
    left: auto;
  }
  .step-4 {
    width: 35%;
    bottom: 15%;
    left: 8%;
  }
  .step-6 {
    width: 40%;
    top: 3%;
    right: 3%;
  }

  /* ── Managed / Features section ── */
  .managed {
    height: auto;
    padding: 60px 20px;
    gap: 40px;
  }

  .managed-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .managed-header h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .managed-header p {
    max-width: 100%;
    font-size: 15px;
  }

  .features-cont {
    height: auto;
    position: static;
  }

  .features-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: static;
    height: auto;
    overflow: visible;
    border-radius: 0;
  }

  .feature,
  .feature-ai {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 24px;
    will-change: auto;
    transform: none !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .feature {
    transform: none !important;
  }

  .feature:first-child {
    transform: none !important;
    z-index: auto;
  }

  .feature-ai {
    position: relative !important;
    transform: none !important;
    order: 99;
    grid-column: span 2;
    overflow: hidden;
  }

  .feature img {
    padding: 12px;
    border-radius: 12px;
  }

  .feature h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .feature p {
    font-size: 13px;
    line-height: 20px;
  }

  /* ── Integrations section ── */
  .integrations {
    padding: 60px 20px;
    gap: 40px;
  }

  .integrations-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
  }

  .integrations-header h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .integrations-header p {
    max-width: 100%;
    font-size: 15px;
  }

  .integrations-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .integration {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-radius: 24px;
    align-items: center;
    text-align: center;
  }

  .shopify-app-store,
  .integrations-contact {
    font-size: 12px;
    padding: 7px 16px;
    width: 100%;
  }

  /* ── Pricing section ── */
  .pricing {
    padding: 60px 20px;
    gap: 40px;
  }

  .pricing-header h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .pricing-header p {
    font-size: 15px;
  }

  .pricing-plans {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
  }

  .plan {
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
    height: auto;
    min-height: 0;
    border-radius: 24px;
    padding: 24px;
    gap: 20px;
  }
}

/* ── Responsive: Mobile (≤768px) ── */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .menu {
    display: none;
  }

  .nav {
    padding: 16px 20px;
  }

  .hero-body {
    margin-top: 32px !important;
    padding-left: 20px;
    padding-right: 20px;
    gap: 48px;
  }

  .hero-text {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-desc p {
    font-size: 15px;
    line-height: 24px;
  }

  .hero-desc-btns {
    margin-top: 24px;
    max-width: 100%;
  }

  .hero-demo-btn,
  .hero-see-btn {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 14px;
  }

  .trust-companies a {
    font-size: 14px;
    gap: 8px;
  }

  .trust-companies a img {
    width: 28px;
    height: 28px;
  }

  .hero-scroll-zone {
    height: 120vh;
  }

  .hero-dashboard {
    margin-top: 40px;
    padding: 0 20px;
  }

  .dashboard-stack {
    border-radius: 16px;
  }

  .dashboard-img {
    border-radius: 16px;
  }

  /* ── How It Works section ── */
  .howitworks {
    padding: 48px 16px;
    gap: 32px;
  }

  .hiw-header h3 {
    font-size: 30px;
    line-height: 38px;
  }

  .hiw-header p {
    font-size: 14px;
    line-height: 22px;
  }

  .hiw-cont {
    padding: 20px;
    border-radius: 20px;
  }

  .hiw-slider button {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hiw-active {
    font-size: 12px !important;
    padding: 6px 14px;
  }

  .hiw-details h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .hiw-details p {
    font-size: 13px;
    line-height: 20px;
  }

  .hiw-callout {
    font-size: 11px;
    padding: 4px 12px 6px;
  }

  .hiw-vis {
    min-height: 240px;
  }

  .hiw-progress-bar {
    height: 6px;
  }

  /* ── Managed / Features section ── */
  .managed {
    padding: 48px 16px;
    gap: 32px;
  }

  .managed-header h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .managed-header p {
    font-size: 14px;
  }

  .features-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature,
  .feature-ai {
    border-radius: 20px;
    padding: 20px;
  }

  .feature-ai {
    border-radius: 20px;
    grid-column: span 2;
  }

  .feature-ai::before {
    border-radius: 20px;
  }

  /* ── Integrations section ── */
  .integrations {
    padding: 48px 16px;
  }

  .integrations-header {
    margin-bottom: 32px;
  }

  .integrations-header h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .integrations-header p {
    font-size: 14px;
    line-height: 22px;
  }

  .integrations-list {
    gap: 10px;
  }

  .integration {
    padding: 16px;
    border-radius: 20px;
    gap: 12px;
  }

  .integration img {
    padding: 12px;
    border-radius: 12px;
  }

  .shopify-app-store,
  .integrations-contact {
    font-size: 11px;
    padding: 6px 12px;
  }

  /* ── Pricing section ── */
  .pricing {
    padding: 48px 16px;
    gap: 32px;
  }

  .pricing-header h3 {
    font-size: 28px;
    line-height: 36px;
  }

  .pricing-header p {
    font-size: 14px;
    line-height: 22px;
  }

  .pricing-selection {
    height: 40px;
  }

  .period-btn {
    font-size: 13px;
    padding: 6px 16px;
    height: 40px !important;
  }

  .plan {
    border-radius: 20px;
    padding: 20px;
  }

  .plan-header h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .plan-price-amount {
    font-size: 32px;
    line-height: 36px;
  }

  .plan-price-period {
    font-size: 16px;
  }
}

/* ── Responsive: Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-text {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-desc p {
    font-size: 14px;
    line-height: 22px;
  }

  .hero-desc-btns {
    gap: 12px;
  }

  .hero-demo-btn,
  .hero-see-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 13px;
  }

  .trust-companies {
    gap: 16px;
  }

  .trust-companies a {
    font-size: 12px;
    gap: 6px;
  }

  .trust-companies a img {
    width: 24px;
    height: 24px;
  }

  .dashboard-stack {
    border-radius: 12px;
  }

  .dashboard-img {
    border-radius: 12px;
  }

  .hero-scroll-zone {
    height: 115vh;
  }

  /* ── How It Works section ── */
  .howitworks {
    padding: 40px 12px;
    gap: 24px;
  }

  .hiw-header h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .hiw-cont {
    padding: 16px;
    border-radius: 16px;
    gap: 0;
  }

  .hiw-info {
    gap: 12px;
    padding-bottom: 16px;
  }

  .hiw-slider button {
    font-size: 11px;
    padding: 5px 12px;
  }

  .hiw-active {
    font-size: 11px !important;
    padding: 5px 12px;
  }

  .hiw-details h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .hiw-details p {
    font-size: 12px;
    line-height: 18px;
  }

  .hiw-callout {
    font-size: 10px;
    padding: 3px 10px 5px;
  }

  .hiw-vis {
    min-height: 200px;
    border-radius: 16px;
  }

  .hiw-images {
    border-radius: 16px;
  }

  /* ── Managed / Features section ── */
  .managed {
    padding: 40px 12px;
    gap: 24px;
  }

  .managed-header h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .managed-header p {
    font-size: 13px;
    line-height: 20px;
  }

  .features-stack {
    gap: 10px;
  }

  .feature,
  .feature-ai {
    border-radius: 16px;
    padding: 16px;
    gap: 10px;
  }

  .feature img {
    padding: 10px;
    border-radius: 10px;
  }

  .feature h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .feature p {
    font-size: 12px;
    line-height: 18px;
  }

  .feature-ai {
    border-radius: 16px;
    grid-column: span 2;
  }

  .feature-ai::before {
    border-radius: 16px;
  }

  .feature-ai h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .feature-ai p {
    font-size: 12px;
    line-height: 18px;
  }

  /* ── Integrations section ── */
  .integrations {
    padding: 40px 12px;
  }

  .integrations-header {
    margin-bottom: 24px;
    gap: 12px;
  }

  .integrations-header h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .integrations-header p {
    font-size: 13px;
    line-height: 20px;
  }

  .integrations-list {
    gap: 8px;
  }

  .integration {
    padding: 14px;
    border-radius: 16px;
    gap: 10px;
  }

  .integration img {
    padding: 10px;
    border-radius: 10px;
  }

  .shopify-app-store,
  .integrations-contact {
    font-size: 10px;
    padding: 5px 10px;
  }

  /* ── Pricing section ── */
  .pricing {
    padding: 40px 12px;
    gap: 24px;
  }

  .pricing-header {
    max-width: 100%;
  }

  .pricing-header h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .pricing-header p {
    font-size: 13px;
    line-height: 20px;
  }

  .pricing-selection {
    height: 36px;
  }

  .period-btn {
    font-size: 12px;
    padding: 5px 12px;
    height: 36px !important;
  }

  .period-btn span {
    font-size: 9px;
    padding: 3px 6px;
  }

  .plan {
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
  }

  .plan-header h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .plan-header p {
    font-size: 13px;
  }

  .plan-price-amount {
    font-size: 28px;
    line-height: 32px;
  }

  .plan-price-period {
    font-size: 14px;
  }

  .plan-benefits h5 {
    font-size: 12px;
    padding: 6px 10px;
  }

  .plan-benefits li {
    font-size: 13px;
    line-height: 20px;
    gap: 6px;
    margin: 8px 0;
  }
}

/* ── Mobile menu open state ── */
@media (max-width: 768px) {
  .menu.menu-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #010d20 0%, #091c35 60%, #163e67 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 24px 40px;
    z-index: 90;
  }

  .menu.menu-open a {
    color: white !important;
    font-size: 22px;
    font-weight: 500;
  }

  .menu.menu-open a.demo-btn {
    padding: 14px 36px;
    font-size: 16px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.menu-open-lock {
    overflow: hidden;
  }

  /* Dark-nav pages (about, contact, legal) need dark hamburger lines */
  .nav.nav-dark .menu-toggle span {
    background: #1a1a2e;
  }
  .nav.nav-dark .menu-toggle.is-open span {
    background: white;
  }
}

/* ── Hover refinements ── */
.logo {
  transition: opacity 0.25s ease;
}
.logo:hover {
  opacity: 0.85;
}

.trust-companies a {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.trust-companies a:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.footer-col a {
  position: relative;
}

/* ── Contact page ── */
.contact-main {
  padding: 60px 100px 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
}

.contact-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background-color: #f6f7fa;
  border-radius: 36px;
  padding: 60px;
  box-sizing: border-box;
}

.contact-intro h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: #1a1a2e;
  margin: 0 0 16px;
}

.contact-intro h2 span {
  color: #4a81b9;
}

.contact-intro p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #4a4a5a;
  margin: 0 0 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.contact-info-item .label {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #8899aa;
}

.contact-info-item .value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item a.value:hover {
  color: #4a81b9;
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #1a1a2e;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid #e0e3eb;
  border-radius: 12px;
  background: #f6f7fa;
  color: #1a1a2e;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #85c8f5;
  background: white;
  box-shadow: 0 0 0 4px rgba(133, 200, 245, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.contact-submit {
  margin-top: 8px;
  background-color: #85c8f5;
  color: #0a1a2e;
  border: 1px solid #85c8f5;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-submit:hover {
  background-color: #a7d8f8;
  border-color: #a7d8f8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(133, 200, 245, 0.35);
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.form-status {
  margin: 4px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  min-height: 20px;
}

.form-status.is-success {
  color: #16a34a;
}

.form-status.is-error {
  color: #c0392b;
}

.form-note {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  color: #8899aa;
  margin: 0;
}

/* ── Legal (terms / privacy) pages ── */
.legal-main {
  padding: 60px 100px 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
}

.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #f6f7fa;
  border-radius: 36px;
  padding: 60px;
  box-sizing: border-box;
}

.legal-header {
  border-bottom: 1px solid #e0e3eb;
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.legal-header h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.legal-header p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  color: #8899aa;
  margin: 0;
}

.legal-wrap h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #1a1a2e;
  margin: 32px 0 12px;
}

.legal-wrap h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 26px;
  color: #1a1a2e;
  margin: 20px 0 8px;
}

.legal-wrap p,
.legal-wrap li {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: #4a4a5a;
  margin: 0 0 12px;
}

.legal-wrap ul {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-wrap strong {
  color: #1a1a2e;
  font-weight: 600;
}

.legal-wrap code {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
  background: #e9ecf2;
  padding: 1px 6px;
  border-radius: 6px;
  color: #1a1a2e;
}

.legal-wrap a {
  color: #4a81b9;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 129, 185, 0.3);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.legal-wrap a:hover {
  color: #1a1a2e;
  border-color: #1a1a2e;
}

/* ── Responsive: contact + legal ── */
@media (max-width: 1024px) {
  .contact-main,
  .legal-main {
    padding: 40px 32px 80px;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }
  .legal-wrap {
    padding: 40px;
  }
  .contact-intro h2,
  .legal-header h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 768px) {
  .contact-main,
  .legal-main {
    padding: 24px 16px 60px;
  }
  .contact-wrap,
  .legal-wrap {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .contact-form {
    padding: 22px;
    border-radius: 18px;
  }
  .contact-form .field-row {
    grid-template-columns: 1fr;
  }
  .contact-intro h2,
  .legal-header h1 {
    font-size: 26px;
    line-height: 34px;
  }
  .legal-wrap h2 {
    font-size: 19px;
    line-height: 26px;
  }
}

/* ── Responsive: FAQ + footer ── */
@media (max-width: 1024px) {
  .faq {
    padding: 60px 24px;
    gap: 40px;
  }
  .faq-header h3 {
    font-size: 36px;
    line-height: 44px;
  }
  .faq-header p {
    font-size: 15px;
  }
  .faq-questions {
    width: 100%;
  }
  .faq-q {
    border-radius: 24px;
    padding: 6px 12px 6px 20px;
  }
  .faq-actions {
    padding: 12px;
    border-radius: 12px;
  }
  .faq-q-body p {
    padding-right: 40px;
  }

  .footer {
    padding-top: 60px;
    gap: 60px;
  }
  .cta-container {
    height: auto;
    padding: 48px 32px;
    border-radius: 24px;
    margin: 0 24px;
    width: calc(100% - 48px);
  }
  .cta-container h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .footer-links {
    padding: 60px 40px 32px;
  }
  .footer-top {
    flex-direction: column;
    gap: 48px;
    padding-bottom: 48px;
  }
  .footer-columns {
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 48px 16px;
    gap: 32px;
  }
  .faq-header h3 {
    font-size: 28px;
    line-height: 36px;
  }
  .faq-header p {
    font-size: 14px;
    line-height: 22px;
  }
  .faq-q {
    border-radius: 20px;
    padding: 4px 10px 4px 16px;
  }
  .faq-q-header {
    gap: 12px;
    align-items: flex-start;
  }
  .faq-q h4 {
    font-size: 15px;
    line-height: 22px;
    margin: 6px 0 0;
  }
  .faq-q-body p {
    font-size: 13px;
    line-height: 20px;
    padding-right: 0;
    margin: 4px 0 12px;
  }
  .faq-actions {
    padding: 10px;
    border-radius: 10px;
  }
  .faq-actions .faq-icon {
    width: 14px;
    height: 14px;
  }

  .footer {
    padding-top: 48px;
    gap: 48px;
  }
  .cta-container {
    padding: 40px 24px;
    border-radius: 20px;
    margin: 0 16px;
    width: calc(100% - 32px);
    gap: 20px;
  }
  .cta-container h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .cta-container a {
    width: 100%;
    padding: 14px 24px;
  }
  .footer-links {
    padding: 40px 20px 24px;
  }
  .footer-top {
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer-brand {
    min-width: 0;
    gap: 12px;
  }
  .footer-brand p {
    font-size: 14px;
  }
  .footer-logo img {
    width: 32px;
    height: 32px;
  }
  .footer-logo span {
    font-size: 20px;
  }
  .footer-columns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .footer-col h4 {
    font-size: 12px;
  }
  .footer-col a {
    font-size: 14px;
  }
  .footer-bottom {
    padding-top: 24px;
    font-size: 13px;
  }
  .footer-bottom-right {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 40px 12px;
    gap: 24px;
  }
  .faq-header h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .faq-header p {
    font-size: 13px;
    line-height: 20px;
  }
  .faq-q {
    border-radius: 16px;
    padding: 4px 8px 4px 14px;
  }
  .faq-q h4 {
    font-size: 14px;
    line-height: 20px;
  }
  .faq-q-body p {
    font-size: 12px;
    line-height: 18px;
    margin: 4px 0 10px;
  }

  .cta-container {
    padding: 32px 20px;
    border-radius: 16px;
    margin: 0 12px;
    width: calc(100% - 24px);
  }
  .cta-container h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .footer-links {
    padding: 32px 16px 20px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
