:root {
  --ink: #0f172a;
  --text-body: #485365;
  --orange: #f7941d;
  --orange-dark: #e6820c;
  --blue: #1a73e8;
  --navy: #0d1b2a;
  --hero-grad-start: #eaf5ff;
  --hero-grad-end: #ffffff;
  --card-bg: #eaf5ff;
  --badge-bg: #fff4e6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

.page-frame {
  width: 1440px;
  max-width: 100%;
  min-height: 2943px;
  margin: 0 auto;
  background: #ffffff;
  opacity: 1;
  transform: rotate(0deg);
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---------------- Header ---------------- */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1440px;
  max-width: 100%;
  height: 70px;
  padding: 0 48px;
  background: #1d1c1c;
  opacity: 1;
  transform: rotate(0deg);
  margin: 0 auto;
  box-sizing: border-box;
  z-index: 100;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-contact-mobile {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(160deg, #29b6f6, #1976d2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  flex: 0 0 auto;
}

.logo .text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo .brand-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo .fast {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.logo .info {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #29b6f6;
}

.logo .hub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #c7ccd6;
}

.logo .tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #8a94a6;
  margin-top: 4px;
}

.logo .tagline .sep {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: #4a5468;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-size: 15.5px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #29b6f6;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #1a73e8, #29b6f6);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 26px;
  white-space: nowrap;
}

.btn-contact .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

@media (max-width: 820px) {
  .navbar {
    padding: 0 20px;
    height: 64px;
  }

  .desktop-contact {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #141414;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:first-child {
    border-top: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
  }

  .nav-contact-mobile {
    display: block;
    padding: 14px 20px 20px;
  }

  .nav-contact-mobile .btn-contact {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
}

/* ---------------- Hero ---------------- */
.hero {
  /* height:557px; */
  /* margin:0 auto; */
  background: linear-gradient(180deg, #eaf5ff 34.2%, #ffffff 100%);
  opacity: 1;
  transform: rotate(0deg);
  padding: 62px 0;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  width: 1440px;
  max-width: 100%;
  min-height: 557px;
  margin: 3px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap:40px; */
}

/* .hero-copy{
    max-width:560px;
  } */

.trust-badge {
  display: inline-block;
  padding: 7px 14px 7px 8px;
  border: 1px solid #ff9147;
  border-radius: 30px;
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-copy h1 {
  /* font-size:38px;
    line-height:1.2;
    font-weight:800;
    color:var(--ink);
    margin-bottom:16px; */
  margin: 0;
  color: #000000;
  font-size: 37px;
  line-height: 52px;
  font-weight: 700;
  letter-spacing: 0px;
  margin-bottom: 0;
}

.line-dive {
  width: 39px;
  height: 2px;
  background: #ff8e1d;
  margin: 24px 0;
}
.hero-copy h1 .accent {
  color: var(--orange);
}

.hero-copy p {
  /* width:560px;
    max-width:100%;
    height:90px;
    font-family:'Inter',sans-serif;
    font-weight:500;
    font-size:20px;
    line-height:30px;
    letter-spacing:0%;
    color:var(--text-body);
    margin-bottom:24px; */
  margin: 0;
  color: #444444;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

.hero-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: fit-content;
  height: fit-content;
  margin-top: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.35);
  white-space: nowrap;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(247, 148, 29, 0.45);
}

/* ---------------- Hero visual ---------------- */
/* .hero-visual{
    position:absolute;
    top:43px;
    left:610px;
    width:662px;
    height:469px;
    transform:rotate(0deg);
    opacity:1;
  } */

.hero-visual img.people {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.badge-amazon {
  top: 0;
  left: 0;
}
.badge-zomato {
  top: 6px;
  right: 10px;
  color: #e23744;
}
.badge-meesho {
  top: 70px;
  right: -10px;
  color: #d9006c;
}
.badge-flipkart {
  top: 90px;
  left: -20px;
  color: #2874f0;
}
.badge-myntra {
  top: 150px;
  right: 0;
  color: #ff3f6c;
}
.badge-swiggy {
  top: 190px;
  left: -10px;
  color: #fc8019;
}

/* ---------------- Features / Form section ---------------- */
.features-section {
  padding: 62px 0;
}

.features-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.features-heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  opacity: 1;
  transform: rotate(0deg);
  color: var(--ink);
  margin-bottom: 35px;
}

.features-heading .accent {
  color: var(--blue);
}

/* .feature-grid{
    display:grid;
    grid-template-columns:repeat(4, 153px);
    justify-content:flex-start;
    gap:55px;
    margin-bottom:24px;
  } */
.feature-grid {
  /* display: grid;
  grid-template-columns: auto auto auto auto; */
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.feature-card {
  width: calc(100% / 4 - 15px);
  height: 100%;
  min-height: 210px;
  border-radius: 15px;
  padding: 20px 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #e6f8ff;
  box-shadow: 0px 1px 4px 0px rgba(16, 77, 103, 0.25);
  box-sizing: border-box;
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #7c8798;
}

.trust-strip {
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* gap:21px; */
  gap: 15px;
  opacity: 1;
}

.trust-strip span {
  /* width: 206px; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 39px;
  border-radius: 8px;
  background: #fff0d4;
  color: #1343c9;
  font-size: 15px;
  font-weight: 700;
  padding: 10px;
  box-sizing: border-box;
  white-space: nowrap;
  opacity: 1;
  transform: rotate(0deg);
}

/* .trust-strip span:nth-child(1){ width:206px; }
  .trust-strip span:nth-child(2){ width:189px; }
  .trust-strip span:nth-child(3){ width:179px; }
  .trust-strip span:nth-child(4){ width:169px; } */

/* ---------------- Consultation form card ---------------- */
.form-card {
  font-size: 14px;
  text-align: center;
  width: 393px;
  max-width: 100%;
  min-height: 467px;
  height: auto;
  border-radius: 20px;
  opacity: 1;
  transform: rotate(0deg);
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  box-shadow: 2px 1px 26px 0px rgba(0, 0, 0, 0.23);
  box-sizing: border-box;
  overflow: visible;
  transform: translateX(-10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-left: auto;
}

.form-card:hover {
  transform: translateX(-10px) translateY(-6px);
  box-shadow: 4px 12px 36px 0px rgba(15, 23, 42, 0.28);
}

.form-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
}

#marketplace-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 0;
  border: 1px solid #e2e6ee;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink);
  background: #fbfcfe;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field {
  margin-bottom: 10px;
  text-align: left;
}

.form-field-check {
  margin-bottom: 10px;
}

.form-field-check .form-check {
  margin-bottom: 4px;
}

.form-field.is-invalid input,
.form-field.is-invalid select {
  border-color: #e53935;
  background: #fff8f8;
  box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.1);
}

.field-error {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: #d32f2f;
  line-height: 1.3;
  margin-top: 4px;
  min-height: 0;
}

.field-error:empty {
  display: none;
}

#step1-error {
  margin-bottom: 8px;
  text-align: left;
}

.btn-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: #7c8798;
  margin-bottom: 10px;
  line-height: 1.45;
  text-align: left;
}

.form-check a {
  color: var(--blue);
  text-decoration: underline;
}

.btn-form-submit {
  width: 100%;
  text-align: center;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: auto;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-form-submit:hover {
  background: #1558b0;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26, 115, 232, 0.35);
}

/* ---------------- Multi-step form ---------------- */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef1f6;
  flex-shrink: 0;
}

.form-step-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.form-step-indicator .step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: #eef1f6;
  color: #9aa4b2;
  border: 1.5px solid #e2e6ee;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.form-step-indicator .step-label {
  font-size: 11px;
  font-weight: 600;
  color: #9aa4b2;
  white-space: nowrap;
  transition: color 0.2s ease;
  line-height: 1;
}

.form-step-indicator.active .step-num {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.28);
}

.form-step-indicator.active .step-label {
  color: var(--blue);
}

.form-step-indicator.completed .step-num {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #a5d6a7;
  font-size: 0;
}

.form-step-indicator.completed .step-num::after {
  content: "\2713";
  font-size: 11px;
  font-weight: 800;
}

.form-step-indicator.completed .step-label {
  color: #2e7d32;
}

.form-step-line {
  flex: 0 0 28px;
  width: 28px;
  height: 1px;
  background: #dde3ec;
  margin: 0;
}

.form-step-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  animation: fadeSlideIn 0.3s ease;
}

.form-step-panel.active {
  display: flex;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card.form-card-expanded {
  width: 393px;
  max-width: 100%;
  height: auto;
  min-height: 467px;
  transform: translateX(-10px);
}

.form-card.form-card-expanded:hover {
  transform: translateX(-10px);
  box-shadow: 2px 1px 26px 0px rgba(0, 0, 0, 0.23);
}

#step-2.form-step-panel {
  gap: 6px;
}

.step2-header {
  margin: 0 0 4px;
  padding: 0 0 6px;
  border-bottom: 1px solid #eef1f6;
}

.step2-header h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  margin: 0;
  line-height: 1.25;
}

.step2-subtitle {
  font-size: 10px;
  color: #8a94a6;
  line-height: 1.3;
  margin: 2px 0 0;
  text-align: left;
}

/* ---------------- Step 2: Service blocks ---------------- */
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 250px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 2px;
  margin-bottom: 2px;
  scrollbar-width: thin;
  scrollbar-color: #c5cdd8 transparent;
}

.services-wrapper::-webkit-scrollbar {
  width: 5px;
}

.services-wrapper::-webkit-scrollbar-thumb {
  background: #c5cdd8;
  border-radius: 10px;
}

.service-block {
  background: #f9fbfd;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 10px;
  transition: border-color 0.2s ease;
}

.service-block:hover {
  border-color: #d0dff0;
}

.service-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.service-block-title-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  text-align: left;
  min-width: 0;
}

.service-type-badge {
  display: inline-block;
  width: fit-content;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

.service-type-badge.multi {
  background: #fff4e6;
  color: var(--orange-dark);
}

.service-type-badge.single {
  background: #eaf5ff;
  color: var(--blue);
}

.service-block-header h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  text-align: left;
  margin: 0;
}

.service-block-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  background: #eaf5ff;
  padding: 2px 7px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  overflow: hidden;
}

.package-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border: 1px solid #e2e6ee;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  user-select: none;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  transform: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.package-option:hover {
  border-color: #b8d4f8;
  background: #f8fbff;
}

.package-option.selected,
.package-option:has(input:checked) {
  border-color: var(--blue);
  background: #f0f6ff;
  transform: none;
}

.package-option:has(input:checked) .package-check {
  background: var(--blue);
  border-color: var(--blue);
}

.package-option:has(input:checked) .package-check svg {
  opacity: 1;
}

.package-option:active,
.package-option:has(input:checked):active {
  transform: none;
}

.package-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.package-check {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid #c5cdd8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
  background: #fff;
  box-sizing: border-box;
}

.package-option input[type="radio"] ~ .package-check {
  border-radius: 50%;
}

.package-check svg {
  width: 9px;
  height: 9px;
  opacity: 0;
  color: #fff;
  stroke: #fff;
  transition: opacity 0.15s ease;
}

.package-info {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.package-name {
  font-size: 10.5px !important;
  font-weight: 500 !important;
  color: var(--ink);
  line-height: 1.2 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.package-option:has(input:checked) .package-name {
  color: var(--ink);
}

.package-price {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: var(--orange);
  line-height: 1.2 !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.package-option:has(input:checked) .package-price {
  color: var(--orange-dark);
}

/* lock size — override any global .selected / :checked styles */
.marketplace-page .package-option,
.marketplace-page .package-option:hover,
.marketplace-page .package-option:has(input:checked),
.marketplace-page .package-option:active,
.marketplace-page .package-option:focus,
.marketplace-page .package-option:focus-within {
  transform: none !important;
  scale: 1 !important;
  zoom: 1 !important;
  padding: 5px 7px !important;
  margin: 0 !important;
  font-size: 10.5px !important;
  line-height: 1.2 !important;
  height: 26px !important;
  min-height: 26px !important;
  max-height: 26px !important;
  box-sizing: border-box !important;
}

.marketplace-page .package-option .package-name,
.marketplace-page .package-option:hover .package-name,
.marketplace-page .package-option:has(input:checked) .package-name {
  font-size: 10.5px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.marketplace-page .package-option .package-price,
.marketplace-page .package-option:hover .package-price,
.marketplace-page .package-option:has(input:checked) .package-price {
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.marketplace-page .service-block,
.marketplace-page .service-block:hover {
  transform: none !important;
  scale: 1 !important;
}

/* ---------------- Price summary ---------------- */
.price-summary {
  background: linear-gradient(160deg, #0d1b2a 0%, #1a3a5e 100%);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  margin-top: 2px;
}

.price-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.marketplace-count-badge {
  background: rgba(247, 148, 29, 0.25);
  color: #ffc978;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0;
}

.price-summary-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
  min-height: 20px;
}

.price-summary-empty {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.price-summary-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-summary-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-summary-line-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.price-summary-line-label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.price-summary-line-detail {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

.price-summary-line-amount {
  font-size: 11px;
  font-weight: 700;
  color: #ffc978;
  white-space: nowrap;
  flex: 0 0 auto;
}

.price-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.price-summary-total strong {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.price-summary-note {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 5px;
  text-align: center;
}

.form-error {
  font-size: 12px;
  font-weight: 600;
  color: #d32f2f;
  background: #fdecea;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: left;
}

.form-step-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.btn-form-back {
  flex: 0 0 auto;
  background: #f0f4f8;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid #e2e6ee;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-form-back:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.form-step-actions .btn-form-submit {
  flex: 1;
}

/* ---------------- Marketplace strip ---------------- */
.marketplace-strip {
  position: relative;

  min-height: 295px;
  background: #e6f8ff;
  text-align: center;
  padding: 62px 0;
  opacity: 1;
  transform: rotate(0deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.marketplace-content {
  width: 1254px;
  max-width: 100%;
  min-height: 164px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 1;
  transform: rotate(0deg);
}

.marketplace-strip h2 {
  width: 455px;
  max-width: 100%;
  min-height: 78px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  opacity: 1;
  transform: rotate(0deg);
  color: var(--ink);
}

.marketplace-strip h2 .accent {
  color: var(--orange);
}

.marketplace-logos {
  /* width:1254px;
    max-width:100%; */
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 1;
  transform: rotate(0deg);
  margin: 25px 0;
}

.marketplace-logos img {
  height: 54px;
  width: auto;
  opacity: 1;
  transform: rotate(0deg);
  display: block;
}

.marketplace-logos img.logo-amazon {
  width: 190px;
}
.marketplace-logos img.logo-flipkart {
  width: 204px;
}
.marketplace-logos img.logo-meesho {
  width: 194px;
}
.marketplace-logos img.logo-myntra {
  width: 171px;
}
.marketplace-logos img.logo-zomato {
  width: 171px;
}
.marketplace-logos img.logo-swiggy {
  width: 184px;
}

.marketplace-more {
  width: 116px;
  height: 17px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  opacity: 1;
  transform: rotate(0deg);
  color: #070707;
}

/* ---------------- Pricing section ---------------- */
.pricing-section {
  padding: 92px 0 62px;
  background: #ffffff;
}

.pricing-heading {
  text-align: center;
  margin-bottom: 36px;
}

.pricing-heading h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}

.pricing-heading h2 .accent {
  color: var(--blue);
}

.price-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e7ecf2;
  border-radius: 20px;
  height: 100%;
  padding: 30px 26px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
  border-color: #d4dbe6;
}
/* 
  .pricing-grid .price-card:nth-child(1){
    width:361.33px;
    height: 523.8px;
  }

  .pricing-grid .price-card:nth-child(3){
    width:374px;
    height:550px;
  } */

.price-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 16px 34px rgba(247, 148, 29, 0.18);
  height: calc(100% + 30px);
  margin-top: -30px;
}

.price-card.featured:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 46px rgba(247, 148, 29, 0.32);
  border-color: var(--orange);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-row .amount {
  font-size: 27px;
  font-weight: 800;
  color: var(--ink);
}

.price-card.featured .price-row .amount {
  color: var(--blue);
  font-size: 30px;
}

.price-row .unit {
  font-size: 14px;
  color: #7c8798;
}

.price-plan-label {
  font-size: 13px;
  color: #9aa4b2;
  margin-bottom: 18px;
}

.price-features {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #485365;
  padding: 6px 0;
}

.price-features li .tick {
  color: var(--blue);
  font-weight: 700;
  flex: 0 0 auto;
}

.price-note {
  font-size: 12.5px;
  color: var(--blue);
  line-height: 1.5;
  text-align: center;
  background: #eaf5ff;
  border: 1px solid #cfe6fb;
  border-radius: 0;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.price-note a {
  color: var(--blue);
  text-decoration: underline;
}

.btn-price {
  display: block;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  padding: 13px;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.btn-price:hover {
  background: #1c3a5e;
  transform: translateY(-2px);
}

.price-card.featured .btn-price {
  background: var(--orange);
}

.price-card.featured .btn-price:hover {
  background: var(--orange-dark);
}

/* ---------------- CTA Banner ---------------- */
.cta-banner {
  min-height: 140px;
  padding: 0 0 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 1;
  transform: rotate(0deg);
  box-sizing: border-box;
}
.cta-banner-text {
  background: #005fff;
  padding: 40px 100px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.cta-banner-text h3 {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 0px;
}

.cta-banner-text p {
  color: #d6e6fd;
  font-size: 16px;
  font-weight: 500;
}

.btn-cta-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-cta-banner:hover {
  background: var(--orange-dark);
  /* transform:translateY(-3px); */
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

/* ---------------- Footer ---------------- */

/* ============ Tablet (<=960px) ============ */
@media (max-width: 960px) {
  .navbar {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
    min-height: 0;
  }

  .hero {
    height: auto;
    overflow: visible;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .hero-inner {
    flex-direction: column;
    min-height: 0;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-copy p {
    width: 100%;
    height: auto;
  }
  .hero-visual {
    position: static;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 24px auto 0;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }
  /* Form appears right after the hero on tablet/mobile, before the feature copy */
  .features-inner > div:first-child {
    order: 2;
  }
  .form-card {
    order: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    margin-bottom: 8px;
    transform: none;
  }
  .form-card.form-card-expanded {
    max-width: 100%;
    transform: none;
    min-height: auto;
  }
  .form-card:hover {
    transform: none;
  }

  .package-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-wrapper {
    max-height: 280px;
  }

  .features-heading {
    width: 100%;
    height: auto;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
  .feature-card {
    width: 185px;
  }
  .feature-grid {
    padding-right: 0;
  }
  .trust-strip span {
    flex: 1 1 auto;
    width: auto !important;
  }

  .marketplace-logos {
    flex-wrap: wrap;
    height: auto;
    gap: 20px 28px;
  }
  .marketplace-logos img {
    height: 38px;
    width: auto !important;
    max-width: 28%;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ============ Mobile (<=600px) ============ */
@media (max-width: 600px) {
  .marketplace-page {
    overflow-x: hidden;
  }

  .navbar {
    padding-left: 16px;
    padding-right: 16px;
  }
  .logo .fast,
  .logo .info {
    font-size: 19px;
  }
  .logo .tagline {
    display: none;
  }

  .trust-badge {
    font-size: 11.5px;
    padding: 6px 12px;
  }
  .hero-copy h1 {
    font-size: 26px;
  }
  .hero-copy p {
    font-size: 15px;
    line-height: 1.55;
  }
  .btn-primary {
    justify-content: center;
    padding: 10px 18px;
    font-size: 14px;
  }
  .hero-cta-row {
    width: 100%;
  }

  .features-section {
    padding-top: 15px;
    padding-bottom: 40px;
    overflow-x: hidden;
  }
  .features-inner {
    gap: 24px;
  }
  .features-heading {
    font-size: 24px;
    text-align: center;
  }
  .feature-grid {
    gap: 12px;
  }

  .trust-strip {
    gap: 8px;
  }
  .trust-strip span {
    height: auto;
    padding: 8px 10px;
    font-size: 12px;
    flex: 1 1 45%;
  }

  .form-card,
  .form-card.form-card-expanded {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 14px 12px 16px;
    margin: 0;
    transform: none !important;
  }

  .form-card:hover,
  .form-card.form-card-expanded:hover {
    transform: none !important;
    animation: none !important;
    box-shadow: 2px 1px 26px 0px rgba(0, 0, 0, 0.23);
  }

  .form-steps {
    margin-bottom: 6px;
    padding-bottom: 6px;
    gap: 6px;
  }

  .form-step-indicator .step-num {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .form-step-indicator .step-label {
    font-size: 9px;
  }

  .form-step-line {
    flex: 0 0 16px;
    width: 16px;
  }

  #step-2.form-step-panel {
    gap: 8px;
  }

  .step2-header {
    margin-bottom: 6px;
    padding-bottom: 6px;
  }

  .step2-header h3 {
    font-size: 12px;
  }

  .step2-subtitle {
    font-size: 9.5px;
  }

  .service-block {
    padding: 8px;
  }

  .service-block-header h4 {
    font-size: 11px;
  }

  .service-block-price {
    font-size: 10px;
    padding: 2px 6px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .services-wrapper {
    max-height: none;
    overflow: visible;
    gap: 8px;
  }

  .marketplace-page .package-option,
  .marketplace-page .package-option:hover,
  .marketplace-page .package-option:has(input:checked),
  .marketplace-page .package-option:active,
  .marketplace-page .package-option:focus,
  .marketplace-page .package-option:focus-within {
    height: auto !important;
    min-height: 34px !important;
    max-height: none !important;
    padding: 8px 10px !important;
  }

  .marketplace-page .package-option .package-name,
  .marketplace-page .package-option:hover .package-name,
  .marketplace-page .package-option:has(input:checked) .package-name {
    font-size: 11px !important;
    white-space: normal;
  }

  .marketplace-page .package-option .package-price,
  .marketplace-page .package-option:hover .package-price,
  .marketplace-page .package-option:has(input:checked) .package-price {
    font-size: 10.5px !important;
  }

  .package-check {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }

  .price-summary {
    padding: 10px;
    border-radius: 8px;
  }

  .price-summary-total strong {
    font-size: 15px;
  }

  .form-step-actions {
    flex-direction: row;
    gap: 8px;
    margin-top: 6px;
  }

  .btn-form-back {
    flex: 0 0 72px;
    width: auto;
    padding: 11px 8px;
    font-size: 12px;
  }

  .form-step-actions .btn-form-submit {
    flex: 1;
    padding: 11px 10px;
    font-size: 13px;
  }

  .form-error {
    font-size: 11px;
    padding: 6px 10px;
  }

  .marketplace-strip {
    padding: 36px 20px;
    min-height: 0;
    overflow: hidden;
  }
  .marketplace-content {
    gap: 22px;
  }
  .marketplace-strip h2 {
    font-size: 24px;
    width: 100%;
    min-height: 0;
  }
  .marketplace-logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    height: auto;
    width: max-content;
    gap: 20px 28px;
    animation: marquee-scroll 18s linear infinite;
  }
  .marketplace-logos img {
    height: 34px;
    width: auto !important;
    max-width: none;
    flex: 0 0 auto;
  }

  @keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .pricing-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .pricing-heading h2 {
    font-size: 22px;
  }
  .pricing-grid {
    gap: 18px;
  }
  .price-card {
    padding: 24px 18px 20px;
    height: auto;
  }
  .pricing-grid .price-card:nth-child(1),
  .pricing-grid .price-card:nth-child(3) {
    width: 100%;
    height: auto;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px 0;
  }
}
@media (max-width: 1400px) {
  .feature-card {
    min-height: 235px;
  }
}

@media (max-width: 1200px) {
  .hero-copy h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .hero-cta-row {
    margin-top: 20px;
  }
  .line-dive {
    margin: 15px 0;
  }
  .feature-grid {
    grid-template-columns: auto auto;
    gap: 25px;
    padding-right: 15px;
  }
  .features-heading {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .feature-card {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 800px) {
  .hero-copy h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .pricing-section {
    .col-md-6 {
      margin-bottom: 20px;
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
  .price-card.featured {
    height: 100%;
    margin-top: 0;
  }
  .cta-banner-text {
    padding: 40px 70px;
    text-align: center;
  }
  .hero-visual {
    margin: 35px auto 0;
  }
}

@media (max-width: 767px) {
  .line-dive {
    display: none;
  }
  .hero-copy p {
    font-size: 18px;
    margin: 15px 0 0;
  }
  .features-section {
    .row {
      flex-direction: column-reverse;
      .form-card {
        margin-bottom: 35px;
      }
    }
  }
  .feature-grid {
    padding-right: 0;
    display: flex;
    flex-wrap: wrap;
  }
  .feature-card {
    width: calc(100% / 2 - 13px);
  }
  .feature-card {
    min-height: 175px;
    padding: 20px 15px;
    border-radius: 20px;
  }
  .feature-card h4 {
    font-size: 16px;
  }
  .cta-banner-text {
    padding: 35px 20px;
    text-align: center;
  }
  .cta-banner-text h3 {
    font-size: 24px;
  }
  .feature-grid {
    padding-right: 0;
  }
  .price-card.featured .price-row .amount,
  .price-row .amount {
    font-size: 24px;
  }
}

@media (max-width: 395px) {
  .hero-copy h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  .features-heading {
    font-size: 24px;
  }
  .feature-grid {
    gap: 10px;
  }
  .feature-card {
    width: calc(100% / 2 - 5px);
  }
  .feature-card h4 {
    font-size: 14px;
  }
  .feature-card {
    padding: 20px 12px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .trust-strip span {
    font-size: 11px;
  }
  .marketplace-strip h2 {
    font-size: 18px;
  }
  .btn-price {
    font-size: 13.5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .price-card.featured .price-row .amount,
  .price-row .amount {
    font-size: 22px;
  }
  .price-row {
    margin-bottom: 5px;
  }
  .price-features li {
    gap: 5px;
    font-size: 14px;
    color: #485365;
    padding: 4px 0;
  }
}
