:root {
  --qs-orange: #F26522;
  --qs-orange-dark: #D9541A;
  --qs-orange-light: #FF7A35;
  --qs-orange-pale: #FEF0E8;
  --qs-orange-mid: #FDE2CC;
  --qs-text: #1C1C1E;
  --qs-text-mid: #444444;
  --qs-text-soft: #6B6B6B;
  --qs-white: #FFFFFF;
  --qs-off-white: #FAFAF8;
  --qs-gray-light: #F2F0EC;
  --qs-gray-border: #E5E2DC;
  --qs-gray-mid: #C4C0B8;
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--qs-text);
  background: var(--qs-white);
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 76px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--qs-gray-border);
  transition: box-shadow 0.3s, background 0.3s;
}

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

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--qs-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--qs-text);
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--qs-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--qs-text-soft);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--qs-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--qs-orange);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--qs-gray-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--qs-text-mid);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--qs-orange);
  color: var(--qs-orange);
}

.btn-fill {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: white;
  background: var(--qs-orange);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(242, 101, 34, 0.3);
}

.btn-fill:hover {
  background: var(--qs-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.35);
}

.hero {
  min-height: 100vh;
  background: var(--qs-off-white);
  padding: 120px 6% 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 101, 34, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--qs-orange-pale);
  border: 1px solid var(--qs-orange-mid);
  border-radius: 100px;
  margin-bottom: 26px;
  box-shadow: 0 2px 12px rgba(242, 101, 34, 0.1);
}

.bdot {
  width: 6px;
  height: 6px;
  background: var(--qs-orange);
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4)
  }
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--qs-orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--qs-text);
  margin-bottom: 20px;
}

.hero h1 .o {
  color: var(--qs-orange);
}

.hero-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--qs-text-soft);
  max-width: 480px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.btn-lg {
  padding: 14px 30px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-lg-fill {
  background: var(--qs-orange);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(242, 101, 34, 0.3);
}

.btn-lg-fill:hover {
  background: var(--qs-orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.35);
}

.btn-lg-out {
  background: white;
  color: var(--qs-text-mid);
  border: 1.5px solid var(--qs-gray-border);
}

.btn-lg-out:hover {
  border-color: var(--qs-orange);
  color: var(--qs-orange);
}

.hero-stats {
  display: flex;
  gap: 0;
}

.hero-stats>div {
  padding: 0 32px;
  border-right: 1px solid var(--qs-gray-border);
}

.hero-stats>div:first-child {
  padding-left: 0;
}

.hero-stats>div:last-child {
  border-right: none;
}

.snum {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--qs-text);
  line-height: 1;
  margin-bottom: 4px;
}

.snum span {
  color: var(--qs-orange);
}

.slbl {
  font-size: 11px;
  color: var(--qs-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-right {}

.rate-card {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--qs-gray-border);
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.09), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.rc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--qs-text);
  margin-bottom: 4px;
}

.rc-sub {
  font-size: 13px;
  color: var(--qs-text-soft);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.fg label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--qs-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}

.fg select,
.fg input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--qs-gray-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--qs-text);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.fg select:focus,
.fg input:focus {
  border-color: var(--qs-orange);
}

.dimensions label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--qs-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}

.dimensions .input-group {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dim-separator {
  font-size: 12px;
  font-weight: 700;
  color: var(--qs-text-soft);
}

.dimensions input {
  width: 30%;
  padding: 10px 13px;
  border: 1.5px solid var(--qs-gray-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--qs-text);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.btn-calc {
  width: 100%;
  padding: 13px;
  background: var(--qs-orange);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-calc:hover {
  background: var(--qs-orange-dark);
}

.btn-calc:disabled {
  cursor: wait;
  opacity: 0.8;
}

.quote-feedback {
  margin-top: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.quote-feedback-success {
  background: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
}

.quote-feedback-error {
  background: #fef3f2;
  border: 1px solid #fecdca;
  color: #b42318;
}

.quote-results {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.quote-results-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--qs-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.quote-rate-card {
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--qs-gray-border);
  background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

.quote-rate-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.quote-rate-head h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--qs-text);
}

.quote-rate-head p {
  margin: 0;
  font-size: 12px;
  color: var(--qs-text-soft);
}

.quote-rate-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--qs-orange-dark);
  white-space: nowrap;
}

.quote-rate-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
}

.quote-rate-facts span {
  font-size: 12px;
  color: var(--qs-text-mid);
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--qs-gray-border);
}

.divider span {
  font-size: 12px;
  color: var(--qs-text-mid);
}

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

.track-row input {
  flex: 1;
  padding: 10px 13px;
  border: 1.5px solid var(--qs-gray-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.track-row input::placeholder {
  color: var(--qs-gray-mid);
}

.track-row input:focus {
  border-color: var(--qs-orange);
}

.btn-track {
  padding: 10px 16px;
  background: var(--qs-text);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-track:hover {
  background: var(--qs-orange);
}

.marquee-wrap {
  background: var(--qs-orange);
  overflow: hidden;
  padding: 13px 0;
}

.marquee-inner {
  display: flex;
  animation: mscroll 30s linear infinite;
  white-space: nowrap;
}

.mi {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.ms {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes mscroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

section {
  padding: 96px 6%;
}

.inner {
  max-width: 1320px;
  margin: 0 auto;
}

.sec-lbl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--qs-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.sec-lbl::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--qs-orange);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--qs-text);
  margin-bottom: 14px;
}

.sec-title span {
  color: var(--qs-orange);
}

.sec-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--qs-text-soft);
  max-width: 520px;
}

.why-section {
  background: var(--qs-gray-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wcard {
  background: white;
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1.5px solid var(--qs-gray-border);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
}

.wcard:hover {
  transform: translateX(6px);
  border-color: var(--qs-orange);
  border-left-color: var(--qs-orange);
  box-shadow: 0 8px 32px rgba(242, 101, 34, 0.1);
}

.wcard-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--qs-orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcard-icon svg {
  width: 22px;
  height: 22px;
}

.wcard h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--qs-text);
  margin-bottom: 5px;
}

.wcard p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--qs-text-soft);
}

.cov-panel {
  background: white;
  border-radius: 24px;
  border: 1.5px solid var(--qs-gray-border);
  padding: 34px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.cov-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--qs-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.cov-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.cov-box {
  background: var(--qs-orange-pale);
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid var(--qs-orange-mid);
}

.cov-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--qs-text);
  line-height: 1;
}

.cov-num span {
  color: var(--qs-orange);
}

.cov-lbl {
  font-size: 11px;
  color: var(--qs-text-soft);
  margin-top: 4px;
}

.svc-section {
  background: white;
}

.svc-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  border: 1.5px solid var(--qs-gray-border);
  border-radius: 20px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  background: white;
  transition: all 0.35s ease;
}

.svc-card:hover {
  border-color: var(--qs-orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(242, 101, 34, 0.12);
}

.svc-card.hl {
  background: var(--qs-orange);
  border-color: var(--qs-orange);
}

.svc-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--qs-orange-pale);
  color: var(--qs-orange);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.svc-card.hl .svc-pill {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.svc-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--qs-orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.svc-card.hl .svc-ico {
  background: rgba(255, 255, 255, 0.2);
}

.svc-ico svg {
  width: 24px;
  height: 24px;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--qs-text);
  margin-bottom: 5px;
}

.svc-card.hl h3 {
  color: white;
}

.svc-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--qs-orange);
  margin-bottom: 10px;
}

.svc-card.hl .svc-time {
  color: rgba(255, 255, 255, 0.8);
}

.svc-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--qs-text-soft);
}

.svc-card.hl p {
  color: rgba(255, 255, 255, 0.65);
}

.svc-arr {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--qs-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.svc-card:hover .svc-arr {
  background: var(--qs-orange);
  border-color: var(--qs-orange);
}

.svc-card:hover .svc-arr svg {
  stroke: white;
}

.svc-card.hl .svc-arr {
  border-color: rgba(255, 255, 255, 0.35);
}

.svc-card.hl .svc-arr svg {
  stroke: white;
}

.svc-card.hl:hover .svc-arr {
  background: white;
  border-color: white;
}

.svc-card.hl:hover .svc-arr svg {
  stroke: var(--qs-orange);
}

.how-section {
  background: var(--qs-gray-light);
}

.how-center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.how-center .sec-lbl {
  justify-content: center;
  display: flex;
}

.how-center .sec-desc {
  margin: 0 auto;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 29px;
  left: 12%;
  right: 12%;
  height: 1.5px;
  background: repeating-linear-gradient(to right, var(--qs-orange-mid) 0, var(--qs-orange-mid) 8px, transparent 8px, transparent 16px);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.step-circ {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--qs-orange-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.step:hover .step-circ {
  background: var(--qs-orange);
  border-color: var(--qs-orange);
}

.step-circ svg {
  width: 24px;
  height: 24px;
  stroke: var(--qs-orange);
  transition: stroke 0.3s;
}

.step:hover .step-circ svg {
  stroke: white;
}

.step h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--qs-text);
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qs-text-soft);
}

.pricing-section {
  background: white;
}

.pricing-center {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 54px;
}

.pricing-center .sec-lbl {
  justify-content: center;
  display: flex;
}

.pricing-center .sec-desc {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pcard {
  border-radius: 20px;
  padding: 32px 26px;
  border: 1.5px solid var(--qs-gray-border);
  background: white;
  position: relative;
  transition: all 0.3s;
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.07);
}

.pcard.pop {
  background: var(--qs-orange);
  border-color: var(--qs-orange);
}

.pop-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--qs-text);
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pcard h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--qs-text);
  margin-bottom: 4px;
}

.pcard.pop h3 {
  color: white;
}

.p-sub {
  font-size: 13px;
  color: var(--qs-text-soft);
  margin-bottom: 22px;
}

.pcard.pop .p-sub {
  color: rgba(255, 255, 255, 0.65);
}

.p-amt {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--qs-text);
  line-height: 1;
  margin-bottom: 4px;
}

.pcard.pop .p-amt {
  color: white;
}

.p-per {
  font-size: 13px;
  color: var(--qs-text-soft);
  margin-bottom: 24px;
}

.pcard.pop .p-per {
  color: rgba(255, 255, 255, 0.6);
}

.p-list {
  list-style: none;
  margin-bottom: 26px;
}

.p-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--qs-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--qs-gray-border);
}

.pcard.pop .p-list li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.p-list li:last-child {
  border-bottom: none;
}

.chk {
  color: var(--qs-orange);
  font-weight: 700;
  font-size: 14px;
}

.pcard.pop .chk {
  color: white;
}

.btn-plan {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-plan-bd {
  background: transparent;
  border: 1.5px solid var(--qs-text);
  color: var(--qs-text);
}

.btn-plan-bd:hover {
  background: var(--qs-text);
  color: white;
}

.btn-plan-wh {
  background: white;
  border: none;
  color: var(--qs-orange);
  font-weight: 600;
}

.btn-plan-wh:hover {
  background: rgba(255, 255, 255, 0.9);
}

.int-section {
  background: var(--qs-white);
}

.int-head {
  text-align: center;
  margin-bottom: 50px;
}

.int-head .sec-lbl {
  justify-content: center;
  display: flex;
}

.int-head .sec-desc {
  margin: 0 auto;
  text-align: center;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.int-tile {
  border-radius: 20px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.int-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}

.int-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.int-tile:hover::before {
  opacity: 1;
}

.int-tile .it-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.int-tile:hover .it-icon {
  transform: scale(1.08);
}

.int-tile .it-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
  transition: color 0.2s;
}

.int-tile .it-tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.6;
  margin-top: -8px;
}

.it-shopify {
  background: #F6FBF4;
  border-color: #D4EDCC;
}

.it-shopify:hover {
  border-color: #96BF48;
  background: #EDF7E6;
}

.it-shopify .it-name {
  color: #1D4620;
}

.it-shopify .it-tag {
  color: #5A8A2A;
}

.it-woo {
  background: #F9F3FC;
  border-color: #E8D4F4;
}

.it-woo:hover {
  border-color: #9B59B6;
  background: #F3E8FA;
}

.it-woo .it-name {
  color: #3B1A55;
}

.it-woo .it-tag {
  color: #7B3FA0;
}

.it-bigc {
  background: #F5F6FF;
  border-color: #C7D2FE;
}

.it-bigc:hover {
  border-color: #1B4FFF;
  background: #EEF2FF;
  box-shadow: 0 16px 40px rgba(27, 79, 255, 0.12);
}

.it-bigc .it-name {
  color: #34313F;
}

.it-bigc .it-tag {
  color: #1B4FFF;
}

.it-magento {
  background: #FFF4F0;
  border-color: #FFD4C0;
}

.it-magento:hover {
  border-color: #EE4B2B;
  background: #FFECE6;
}

.it-magento .it-name {
  color: #7A1A0A;
}

.it-magento .it-tag {
  color: #CC3311;
}

.it-api {
  background: #FEF0E8;
  border-color: #FDE2CC;
}

.it-api:hover {
  border-color: #F26522;
  background: #FDE2CC;
  box-shadow: 0 16px 40px rgba(242, 101, 34, 0.15);
}

.it-api .it-name {
  color: #1C1C1E;
}

.it-api .it-tag {
  color: #D9541A;
}

.testi-section {
  background: white;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.tcard {
  background: white;
  border-radius: 20px;
  padding: 34px 30px;
  border: 1.5px solid var(--qs-gray-border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  color: var(--qs-orange);
  opacity: 0.08;
  font-family: Georgia, serif;
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--qs-orange);
}

.t-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.t-quote {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--qs-text-mid);
  font-style: italic;
  margin-bottom: 24px;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--qs-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: white;
}

.t-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--qs-text);
}

.t-role {
  font-size: 11px;
  color: var(--qs-text-soft);
  margin-top: 2px;
}

.cta-section {
  background: linear-gradient(135deg, #FEF0E8 0%, #FDE2CC 100%);
  border-top: 1px solid var(--qs-orange-mid);
  text-align: center;
  padding: 110px 6%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(242, 101, 34, 0.1) 0%, transparent 70%);
}

.cta-section .sec-title,
.cta-section .sec-desc,
.cta-btns {
  position: relative;
  z-index: 1;
}

.cta-section .sec-desc {
  margin: 0 auto 42px;
  text-align: center;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

footer {
  background: #16161A;
  padding: 80px 6% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 54px;
  margin-bottom: 54px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.35);
  margin: 14px 0 22px;
  max-width: 250px;
}

.fsocials {
  display: flex;
  gap: 8px;
}

.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.fsoc:hover {
  background: var(--qs-orange);
  border-color: var(--qs-orange);
}

.fsoc svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, 0.45);
}

.fsoc:hover svg {
  stroke: white;
}

.fcol h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.fcol ul {
  list-style: none;
}

.fcol ul li {
  margin-bottom: 10px;
}

.fcol ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.fcol ul li a:hover {
  color: white;
}

.footer-btm {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-btm p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.flinks {
  display: flex;
  gap: 22px;
}

.flinks a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.flinks a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) {
  transition-delay: 0.1s
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s
}

.fade-up:nth-child(5) {
  transition-delay: 0.4s
}

.fade-up:nth-child(6) {
  transition-delay: 0.5s
}

@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-desc,
  .hero-actions,
  .hero-stats {
    justify-content: center
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto
  }

  .hero-right {
    display: none
  }

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

  .svc-grid {
    grid-template-columns: 1fr 1fr
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .steps-row::before {
    display: none
  }

  .int-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {

  .svc-grid,
  .pricing-grid,
  .int-grid {
    grid-template-columns: 1fr
  }

  .steps-row {
    grid-template-columns: 1fr 1fr
  }

  nav .nav-links {
    display: none
  }
}
