:root {
  --grad-start: #D95D6A;
  --grad-mid:   #9B3F9E;
  --grad-end:   #4A2BA0;
  --yellow:     #F5C518;
  --yellow-hover: #E6B800;
  --dark:       #0C0A1E;
  --off-white:  #F9F8FF;
  --white:      #FFFFFF;
  --text-body:  #2A2240;
  --text-muted: #6B6285;
  --border:     rgba(74,43,160,0.11);
  --shadow:     0 12px 48px rgba(74,43,160,0.11);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Avenir LT Pro', sans-serif;
  font-size: 17px;
  color: var(--text-body);
  background: var(--off-white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADINGS ─── */
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Avenir LT Pro', sans-serif;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo img {
  width: 160px;
}
/* ─── LAYOUT ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 108px 0; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.55rem;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none;
}
.nav-badges { display: flex; gap: 8px; align-items: center; }
.nbadge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 12px; border-radius: 100px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  color: white;
}
.nav-cta {
  background: var(--yellow); color: var(--dark);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 11px 24px; border-radius: 8px; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.nav-cta:hover { background: var(--yellow-hover); transform: translateY(-1px); }

.schdule_call span {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin: 5px 0 0 0;
}
.schdule_call {
  text-align: center;
}
.schdule_call .nav-cta {
  border-radius: 35px;
  color: #fff;
  background: #e60809;
  border: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.schdule_call .nav-cta img {
  width: 21px;
}
.prefer_call_btn {
  background: #e60809;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 25px;
  width: fit-content;
  border-radius: 35px;
  text-decoration: none;
  gap: 10px;
  margin: 25px 0 0 0;
  font-weight: 600;
  font-size: 15px;
}
.prefer_call_btn img{
 width: 21px;
}
/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-mid) 52%, var(--grad-end) 100%);
  position: relative; overflow: hidden;
  padding: 90px 0 80px;
  min-height: 100vh; display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  padding: 7px 18px; border-radius: 100px;
  color: white; font-size: 0.87rem; font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 3.2rem);
  font-weight: 700; color: white;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero h1 span { color: var(--yellow); }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.12rem;
  font-weight: 400;
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.8;
}
#cleint_carou_client .item {
	padding: 10px;
	border: 1px solid #eceff2;
	background: #fff;
	border-radius: 5px;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
}
#cleint_carou_client .item img {
	width: auto;
	max-height: 60px;
}
/* Trust pills row */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
}
.trust-stat { color: white; }
.trust-stat strong {
  font-family: 'Poppins', sans-serif;
  font-size: 18px; font-weight: 700; display: block;
}
.trust-stat span {
  font-size: 11px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.trust-div { width: 1px; height: 40px; background: rgba(255,255,255,0.22); }

/* ─── HERO FORM CARD ─── */
.hero-form-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 24px 80px rgba(14,11,31,0.35);
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--text-body);
  margin-bottom: 6px;
}
.hero-form-card p {
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); margin-bottom: 6px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input, .form-group select {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-body);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--grad-mid);
  background: white;
}
.form-submit {
  width: 100%;
  background: var(--yellow); color: var(--dark);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 15px 24px; border-radius: 10px; border: none;
  cursor: pointer; transition: all 0.2s;
  margin-top: 6px;
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
}
.form-submit:hover { background: var(--yellow-hover); transform: translateY(-2px); }
.form-note {
  text-align: center; font-size: 0.76rem; color: var(--text-muted);
  margin-top: 12px;
}
.form-badges {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 16px;
}
.form-badge {
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(74,43,160,0.07); color: var(--grad-mid);
  border: 1px solid rgba(74,43,160,0.12);
}

#cleint_carou_client .owl-nav {
  display: flex;
  justify-content: center;
  margin: 15px 0 0 0;
  gap: 7px;
}
#cleint_carou_client .owl-nav button {
  width: 35px;
  height: 35px;
  background: #3d3d3d;
  margin: 0;
  border-radius: 50px;
  font-size: 25px;
}
#cleint_carou_client .owl-nav button span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px 0;
}
/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--dark); color: white; padding: 22px 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: center;
}
.tbar-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.84rem; padding: 8px 16px;
  background: rgba(255,255,255,0.06); border-radius: 8px;
}
.tbar-item strong { color: var(--yellow); font-size: 1.05rem; }
.tbar-item span { color: rgba(255,255,255,0.58); font-size: 0.76rem; }

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grad-mid);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700; margin-bottom: 18px;
}
.section-sub {
  color: var(--text-muted); font-size: 1.06rem;
  max-width: 560px; line-height: 1.8;
}
.section-header { margin-bottom: 60px; }

/* ─── PAIN POINTS ─── */
.pain { background: white; }
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px;
}
.pain-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 18px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
}
.pain-icon { font-size: 2.2rem; margin-bottom: 18px; }
.pain-card h3 { font-size: 1.08rem; margin-bottom: 10px; font-weight: 600; }
.pain-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }

/* ─── WHY INDIA ─── */
.why-india { background: linear-gradient(135deg, #F8F6FF, #FFF0F5); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: white; border-radius: 16px; padding: 22px 26px;
  border: 1px solid var(--border); box-shadow: 0 2px 16px rgba(74,43,160,0.05);
}
.why-icon-wrap {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
}
.why-item h4 { font-size: 0.98rem; margin-bottom: 5px; font-weight: 600; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.savings-card {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-mid), var(--grad-end));
  border-radius: 24px; padding: 48px 40px; color: white;
  position: relative; overflow: hidden;
}
.savings-card::before {
  content: '';
  position: absolute; right: -40px; bottom: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.savings-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem; margin-bottom: 30px;
}
.savings-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 12px; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.13);
}
.savings-row:last-of-type { border-bottom: none; }
.savings-label { font-size: 0.92rem; color: rgba(255,255,255,0.82); }
.savings-local { font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: line-through; }
.savings-us {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--yellow);
}
.savings-footer {
  margin-top: 26px; background: rgba(255,255,255,0.1);
  border-radius: 12px; padding: 18px;
  font-size: 0.86rem; color: rgba(255,255,255,0.83); line-height: 1.7;
}
.trust-pill-row {
  margin-top: 22px; background: white; border-radius: 16px; padding: 22px 24px;
  border: 1px solid var(--border);
}
.trust-pill-row p {
  font-size: 0.78rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px;
}
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pill {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-body);
}

.thank-content h6 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 15px 0 10px 0;
}
.thank-content p {
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.thank-content ul {
  padding-left: 15px;
}

.thank-content ul li {
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.8;
  margin: 5px 0;
}
.thank-content {
  margin: 0 0 30px 0;
}
.pain-card-thank iframe {
  border-radius: 15px;
  height: 190px;
}
.pain-card-thank h3 a {
  display: block;
  font-size: 1.08rem;
  font-weight: 600;
  margin: 15px 0 0 0;
  color: var(--text-body);
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
}
.section-title-h3 {
  text-align: center;
  font-size: 26px;
}
.section-title-h3 a {
  text-decoration: none;
}
/* ─── SERVICES ─── */
.services { background: white; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px;
}
.service-card {
  border: 1.5px solid var(--border); border-radius: 18px; padding: 36px 32px;
  transition: all 0.22s; position: relative;
}
.service-card:hover { border-color: var(--grad-mid); box-shadow: var(--shadow); }
.service-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 20px;
  background: linear-gradient(90deg, rgba(217,93,106,0.09), rgba(74,43,160,0.09));
  color: var(--grad-mid); margin-bottom: 18px;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 12px; font-weight: 600; }
.service-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.75; }

/* ─── EXPERIENCE ─── */
.experience { background: var(--off-white); }
.exp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px; margin-bottom: 68px;
}
.exp-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 26px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.exp-card strong {
  display: block;
  font-family: 'Poppins', sans-serif; font-size: 2.6rem; font-weight: 700;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.exp-card span { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; display: block; }

.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.testimonial {
  background: white; border: 1px solid var(--border);
  border-radius: 18px; padding: 36px 32px;
}
.testimonial-text {
  font-size: 0.97rem; font-style: italic;
  color: var(--text-body); margin-bottom: 22px;
  line-height: 1.8; position: relative;
}
.testimonial-text::before {
  content: '"';
  color: var(--grad-mid); font-size: 2.4rem;
  font-family: 'Poppins', sans-serif;
  line-height: 0; vertical-align: -16px; margin-right: 3px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  display: grid; place-items: center;
  color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.93rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ─── HOW IT WORKS ─── */
.how { background: white; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; position: relative;
}
.step { padding: 36px 24px; position: relative; text-align: center; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -10px; top: 50px;
  font-size: 1.5rem; color: var(--grad-mid);
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: white; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 1.15rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 10px; font-weight: 600; }
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

.sme_img {
	width: 180px;
	height: 95px;
	/* max-height: 95px; */
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
}
.sme_img img {
	max-height: 100%;
	width: 100%;
}
/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-mid) 52%, var(--grad-end) 100%);
  text-align: center; padding: 110px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: 'Poppins', sans-serif;
  color: white; font-size: clamp(1.9rem, 4vw, 3.2rem); margin-bottom: 18px;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 540px; margin: 0 auto 44px; line-height: 1.8; }
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 580px; margin: 0 auto;
}
.cta-input {
  padding: 15px 20px; border-radius: 10px; border: none;
  font-size: 0.97rem; font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; background: rgba(255,255,255,0.95); color: var(--text-body);
}
.cta-input::placeholder { color: #aaa; }
.cta-submit {
  grid-column: 1 / -1;
  background: var(--yellow); color: var(--dark);
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem;
  padding: 16px 28px; border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 24px rgba(245,197,24,0.4);
}
.cta-submit:hover { background: var(--yellow-hover); transform: translateY(-2px); }
.cta-note { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 14px; }
.cta-badges {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 44px;
}
.cta-badge {
  background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 16px 24px; text-align: center; color: white;
}
.cta-badge strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 1.55rem; font-weight: 700; margin-bottom: 4px;
}
.cta-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.68); }

/* ─── FAQ ─── */
.faq { background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 32px;
}
.faq-item h4 { font-size: 1rem; margin-bottom: 12px; font-weight: 600; }
.faq-item p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.5);
  padding: 44px 0; font-size: 0.86rem; text-align: center;
}
footer a { color: var(--yellow); text-decoration: none; }
.footer-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.footer-badge {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 8px 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.68); font-weight: 600;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
  animation: fadeUp 0.7s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: 0.08s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.34s; }
.hero-left > *:nth-child(4) { animation-delay: 0.48s; }
.hero-form-card { animation: fadeUp 0.7s ease 0.3s both; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { max-width: 520px; }
  .hero h1 { font-size: 2.4rem; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .testimonials { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .nav-badges { display: none; }
  .steps { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .trust-div { display: none; }
    .nav-inner {
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar {
  padding: 22px 15px;
}

}