/* ==========================================================================
   IHB — Modern Refresh Layer
   Loads AFTER style.css. Overrides only what's needed.
   Brand blue: #3B38EB (matches your template variable --color-primary)
   ========================================================================== */

:root {
  --ihb-primary:      #3B38EB;
  --ihb-primary-dark: #2a27d4;
  --ihb-primary-soft: rgba(59,56,235,.08);
  --ihb-ink:          #0E1230;
  --ihb-body:         #5B6070;
  --ihb-line:         #E8EAF2;
  --ihb-bg:           #FFFFFF;
  --ihb-bg-soft:      #F6F7FD;
  --ihb-radius:       14px;
  --ihb-radius-sm:    10px;
  --ihb-shadow-sm:    0 2px 8px rgba(14,18,48,.05);
  --ihb-shadow:       0 10px 30px rgba(14,18,48,.08);
  --ihb-shadow-lg:    0 20px 50px rgba(14,18,48,.12);
  --ihb-transition:   220ms cubic-bezier(.2,.7,.2,1);
  --ihb-container:    1240px;
}

/* ---------- Global refinements ---------- */
html { scroll-behavior: smooth; }
body.ihb-body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ihb-body);
  background: var(--ihb-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  font-family: 'Urbanist', system-ui, sans-serif;
  color: var(--ihb-ink);
  letter-spacing: -0.01em;
}
a { color: var(--ihb-primary); transition: color var(--ihb-transition); }
a:hover { color: var(--ihb-primary-dark); }

.container { max-width: var(--ihb-container); }

/* ---------- Top info bar ---------- */
.ihb-topbar {
  background: var(--ihb-ink);
  color: #C9CCE0;
  font-size: 13.5px;
  padding: 8px 0;
}
.ihb-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.ihb-topbar__left, .ihb-topbar__right { display: flex; align-items: center; gap: 22px; }
.ihb-topbar a { color: #C9CCE0; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.ihb-topbar a:hover { color: #fff; }
.ihb-topbar i { color: var(--ihb-primary); }
.ihb-topbar__wa {
  background: #25D366; color: #fff !important;
  padding: 5px 12px; border-radius: 999px; font-weight: 600;
}
.ihb-topbar__wa i { color: #fff !important; }
.ihb-topbar__wa:hover { background: #1ebe5b; }
@media (max-width: 767px) {
  .ihb-topbar__hours { display: none; }
  .ihb-topbar { font-size: 12.5px; padding: 6px 0; }
  .ihb-topbar__inner { justify-content: center; }
  .ihb-topbar__left a:nth-child(2) { display: none; }
}

/* ---------- Header ---------- */
.ihb-header { background: #fff; }
.header--sticky.sticky { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); }
.ihb-logo img { max-height: 88px; width: 300px; }
.ihb-header-right { gap: 10px; }
.ihb-cta { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Buttons ---------- */
.rts-btn {
  border-radius: var(--ihb-radius) !important;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
}
.rts-btn.btn-primary {
  background: var(--ihb-primary) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(59,56,235,.22);
}
.rts-btn.btn-primary::before { background: var(--ihb-primary-dark) !important; border-radius: var(--ihb-radius) !important; }
.rts-btn.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(59,56,235,.32); }

.rts-btn.btn-secondary { background: var(--ihb-primary-soft) !important; color: var(--ihb-primary) !important; }
.rts-btn.btn-secondary::before { background: var(--ihb-primary) !important; border-radius: var(--ihb-radius) !important; }
.rts-btn.btn-secondary:hover { color: #fff !important; }

.ihb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--ihb-radius);
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition), background var(--ihb-transition);
}
.ihb-btn--wa { background: #25D366; color: #fff !important; box-shadow: 0 8px 20px rgba(37,211,102,.25); }
.ihb-btn--wa:hover { background: #1ebe5b; transform: translateY(-2px); }

/* ---------- Section titles ---------- */
.title-area span, .ihb-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ihb-primary);
  margin-bottom: 10px;
}
.title-area .title { font-weight: 800; letter-spacing: -0.02em; }
.title-area .title + p { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- Cards: services, team, blog ---------- */
.rts-single-service-one,
.blog-single-two-wrapper,
.single-product-one .inner-content,
.single-pricing-area-h2,
.single-testimonial-one,
.single-team-two {
  border-radius: var(--ihb-radius) !important;
  border: 1px solid var(--ihb-line);
  box-shadow: var(--ihb-shadow-sm);
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition), border-color var(--ihb-transition);
}
.rts-single-service-one:hover,
.blog-single-two-wrapper:hover,
.single-pricing-area-h2:hover {
  transform: translateY(-6px);
  box-shadow: var(--ihb-shadow);
  border-color: rgba(59,56,235,.25);
}

/* ---------- Working process ---------- */
.single-working-process-one .inner { border-radius: var(--ihb-radius); }
.single-working-process-one .inner .title { font-weight: 700; }

/* ---------- Counter strip ---------- */
.counter-bg { border-radius: var(--ihb-radius); overflow: hidden; }
.counter-up-wrapper-one .counter-single h2 { font-weight: 800; }

/* ---------- Portfolio / case study ---------- */
.single-product-one .thumbnail img { transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.single-product-one:hover .thumbnail img { transform: scale(1.04); }

/* ---------- CTA strip ---------- */
.ihb-cta-strip { padding: 40px 0; }
.ihb-cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--ihb-primary) 0%, #5d5aff 100%);
  border-radius: 22px;
  padding: 44px 48px;
  box-shadow: 0 24px 60px rgba(59,56,235,.28);
  position: relative;
  overflow: hidden;
}
.ihb-cta-strip__inner::after {
  content: "";
  position: absolute; inset: auto -60px -80px auto;
  width: 300px; height: 300px;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent);
  pointer-events: none;
}
.ihb-cta-strip__inner .ihb-eyebrow { color: rgba(255,255,255,.85); }
.ihb-cta-strip__title { color: #fff !important; margin: 0; font-size: 34px; font-weight: 800; }
.ihb-cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ihb-cta-strip__actions .rts-btn.btn-primary {
  background: #fff !important; color: var(--ihb-primary) !important; box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.ihb-cta-strip__actions .rts-btn.btn-primary::before { background: var(--ihb-ink) !important; }
.ihb-cta-strip__actions .rts-btn.btn-primary:hover { color: #fff !important; }
@media (max-width: 767px) {
  .ihb-cta-strip__inner { padding: 28px 22px; border-radius: 16px; }
  .ihb-cta-strip__title { font-size: 24px; }
}

/* ---------- Footer ---------- */
.ihb-footer {
  background: var(--ihb-ink);
  color: #A9ADC5;
  padding: 80px 0 0;
  font-size: 15px;
  line-height: 1.7;
}
.ihb-footer__top { row-gap: 40px; }
.ihb-footer__logo { max-height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.ihb-footer__about { color: #A9ADC5; }
.ihb-footer__about strong { color: #fff; }
.ihb-footer__title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.ihb-footer__title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--ihb-primary); border-radius: 2px;
}
.ihb-footer__title--mt { margin-top: 32px; }
.ihb-footer__list { list-style: none; padding: 0; margin: 0; }
.ihb-footer__list li { margin-bottom: 10px; }
.ihb-footer__list a { color: #A9ADC5; text-decoration: none; transition: color var(--ihb-transition), padding-left var(--ihb-transition); }
.ihb-footer__list a:hover { color: #fff; padding-left: 4px; }
.ihb-footer__list--plain li { color: #A9ADC5; }

.ihb-social { list-style: none; padding: 0; display: flex; gap: 10px; margin: 22px 0 0; }
.ihb-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff; text-decoration: none;
  transition: background var(--ihb-transition), transform var(--ihb-transition);
}
.ihb-social a:hover { background: var(--ihb-primary); transform: translateY(-3px); }

.ihb-contact-list { list-style: none; padding: 0; margin: 0; }
.ihb-contact-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; color: #A9ADC5; }
.ihb-contact-list i {
  width: 38px; height: 38px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(59,56,235,.5);
  color: var(--ihb-primary); font-size: 14px;
}
.ihb-contact-list a { color: #A9ADC5; display: block; text-decoration: none; }
.ihb-contact-list a:hover { color: #fff; }

/* ---------- Trust badges ---------- */
.ihb-badges {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 60px;
  padding: 40px 0;
}
.ihb-badges__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}
.ihb-badges__grid a {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border-radius: var(--ihb-radius-sm);
  padding: 12px;
  transition: transform var(--ihb-transition), background var(--ihb-transition);
}
.ihb-badges__grid a:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.ihb-badges__grid img { max-height: 90px; width: auto; opacity: .85; transition: opacity var(--ihb-transition); }
.ihb-badges__grid a:hover img { opacity: 1; }
@media (max-width: 991px) { .ihb-badges__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 575px) { .ihb-badges__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Copyright ---------- */
.ihb-copyright { border-top: 1px solid rgba(255,255,255,.06); padding: 22px 0; }
.ihb-copyright__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; font-size: 14px;
}
.ihb-copyright p { margin: 0; color: #8D91A8; }
.ihb-copyright a { color: #A9ADC5; text-decoration: none; }
.ihb-copyright a:hover { color: #fff; }
.ihb-copyright strong { color: #fff; }
.ihb-sep { color: rgba(255,255,255,.2); margin: 0 6px; }
@media (max-width: 767px) {
  .ihb-copyright__inner { justify-content: center; text-align: center; }
}

/* ---------- Floating WhatsApp ---------- */
.ihb-wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1000;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff !important;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
}
.ihb-wa-float i { font-size: 18px; }
.ihb-wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(37,211,102,.45); }
.ihb-wa-float__label { display: inline; }
@media (max-width: 575px) {
  .ihb-wa-float { right: 14px; bottom: 14px; padding: 14px; }
  .ihb-wa-float__label { display: none; }
}

/* ---------- Dark mode adjustments ---------- */
html.rts-dark body.ihb-body { background: #181C25; color: #C9CCE0; }
html.rts-dark .ihb-topbar { background: #0A0D1A; }
html.rts-dark .ihb-header { background: #181C25; }
html.rts-dark .header--sticky.sticky { background: rgba(24,28,37,.9); }
html.rts-dark .rts-single-service-one,
html.rts-dark .blog-single-two-wrapper,
html.rts-dark .single-pricing-area-h2,
html.rts-dark .single-testimonial-one {
  background: #21242E;
  border-color: #2C3040;
}
html.rts-dark .ihb-footer { background: #0F121C; }
html.rts-dark .ihb-cta-strip__inner { box-shadow: 0 24px 60px rgba(0,0,0,.5); }

/* ---------- Small polish on native components ---------- */
.rts-breadcrumb-area { border-radius: 0 0 24px 24px; overflow: hidden; }
.rts-breadcrumb-area .bread-tag { box-shadow: var(--ihb-shadow-sm); }

/* ---------- Hide old template styling we replaced ---------- */
.ihb-page-index .banner-shape-area-one { opacity: .9; }

/* ---------- Accessibility: focus rings ---------- */
a:focus-visible, button:focus-visible, .rts-btn:focus-visible, .ihb-btn:focus-visible {
  outline: 3px solid rgba(59,56,235,.45);
  outline-offset: 2px;
  border-radius: var(--ihb-radius-sm);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ==========================================================================
   Batch 2 — Hero, Process, Services, Team, Testimonials, Blog, 404, forms
   ========================================================================== */

/* ---------- HERO ---------- */
.ihb-hero {
  position: relative;
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #F4F5FF 0%, #FFFFFF 100%);
  overflow: hidden;
}
html.rts-dark .ihb-hero {
  background: linear-gradient(180deg, #1A1D2B 0%, #14172A 100%);
}
.ihb-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.ihb-hero__blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
}
.ihb-hero__blob--1 { width: 420px; height: 420px; background: #B7B6FF; top: -120px; right: -120px; }
.ihb-hero__blob--2 { width: 320px; height: 320px; background: #C8F5FF; bottom: -100px; left: -60px; }
.ihb-hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(59,56,235,.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
}
.ihb-hero__inner { position: relative; z-index: 2; }
.ihb-hero__copy { padding: 40px 0; }
.ihb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(59,56,235,.1);
  color: var(--ihb-primary);
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.ihb-pill i { font-size: 11px; }
.ihb-hero__title {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 22px 0 20px;
}
.ihb-grad {
  background: linear-gradient(90deg, #3B38EB 0%, #7B79FF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.ihb-hero__lead {
  font-size: 17.5px;
  line-height: 1.7;
  max-width: 540px;
  color: var(--ihb-body);
}
.ihb-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 40px; }
.ihb-btn-lg { padding: 16px 28px; font-size: 16px; }
.ihb-btn--ghost {
  background: transparent;
  border: 2px solid rgba(59,56,235,.2);
  color: var(--ihb-primary);
}
.ihb-btn--ghost:hover { border-color: var(--ihb-primary); background: rgba(59,56,235,.06); }

.ihb-hero__meta {
  display: flex; gap: 36px; flex-wrap: wrap;
  border-top: 1px solid var(--ihb-line); padding-top: 26px;
}
.ihb-hero__meta-item strong {
  display: block; font-size: 26px; font-weight: 800; color: var(--ihb-ink);
  font-family: 'Urbanist', sans-serif;
}
.ihb-hero__meta-item span { font-size: 13px; color: var(--ihb-body); text-transform: uppercase; letter-spacing: .08em; }

.ihb-hero__art { position: relative; min-height: 460px; }
.ihb-hero__card {
  position: absolute; top: 20px; left: 0; z-index: 3;
  width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(14,18,48,.14);
  overflow: hidden;
  border: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-hero__card { background: #22263A; border-color: #2E324A; }
.ihb-hero__card-top {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; background: #F6F7FD;
  border-bottom: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-hero__card-top { background: #1A1E33; border-color: #2E324A; }
.ihb-dot { width: 10px; height: 10px; border-radius: 50%; background: #E0E2EE; }
.ihb-dot:nth-child(1) { background: #FF5F57; }
.ihb-dot:nth-child(2) { background: #FFBD2E; }
.ihb-dot:nth-child(3) { background: #27C93F; }
.ihb-hero__card-title { margin-left: auto; font-size: 12px; color: var(--ihb-body); font-weight: 600; }
.ihb-hero__card-body { padding: 20px; }
.ihb-hero__stat { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.ihb-hero__stat-label { font-size: 12.5px; color: var(--ihb-body); text-transform: uppercase; letter-spacing: .08em; }
.ihb-hero__stat strong { color: #1EAA5A; font-size: 22px; font-weight: 800; font-family: 'Urbanist', sans-serif; }
.ihb-hero__chart { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-bottom: 20px; }
.ihb-hero__chart span {
  flex: 1; height: var(--h); background: linear-gradient(180deg, #3B38EB 0%, #7B79FF 100%);
  border-radius: 6px 6px 0 0;
  animation: ihbBar 1.2s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes ihbBar { from { height: 0; } }
.ihb-hero__row { display: flex; flex-direction: column; gap: 8px; }
.ihb-hero__row-item { font-size: 13px; color: var(--ihb-body); display: flex; gap: 8px; align-items: center; }
.ihb-hero__row-item i { color: #1EAA5A; }

.ihb-hero__image {
  position: absolute; bottom: 0; right: 0;
  max-width: 78%; height: auto;
  filter: drop-shadow(0 30px 40px rgba(14,18,48,.18));
  z-index: 2;
}
@media (max-width: 991px) {
  .ihb-hero__art { min-height: 380px; margin-top: 40px; }
  .ihb-hero__card { position: relative; width: 100%; margin-bottom: 20px; }
  .ihb-hero__image { position: relative; max-width: 100%; }
}
@media (max-width: 575px) {
  .ihb-hero { padding: 50px 0 60px; }
  .ihb-hero__meta { gap: 24px; }
  .ihb-hero__meta-item strong { font-size: 20px; }
}

/* ---------- LOGOS STRIP ---------- */
.ihb-logos { padding: 40px 0 60px; border-bottom: 1px solid var(--ihb-line); }
.ihb-logos__label {
  text-align: center; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ihb-body); margin-bottom: 24px;
}
.ihb-logos__swiper { padding: 8px 0; }
.ihb-logos__swiper .swiper-slide {
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(1); opacity: .6; transition: filter .3s, opacity .3s;
}
.ihb-logos__swiper .swiper-slide:hover { filter: grayscale(0); opacity: 1; }
.ihb-logos__swiper img { max-height: 55px; width: auto; }

/* ---------- GENERIC SECTION ---------- */
.ihb-section { padding: 90px 0; }
.ihb-section__head { margin-bottom: 60px; }
.ihb-section__title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.ihb-section__title--left { margin-left: 0; }
.ihb-section__lead {
  color: var(--ihb-body); max-width: 620px; margin: 0 auto;
  font-size: 16.5px; line-height: 1.7;
}
@media (max-width: 767px) { .ihb-section { padding: 60px 0; } .ihb-section__head { margin-bottom: 40px; } }

/* ---------- PROCESS ---------- */
.ihb-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.ihb-process__step {
  background: #fff; padding: 32px 26px;
  border-radius: var(--ihb-radius);
  border: 1px solid var(--ihb-line);
  position: relative;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
}
html.rts-dark .ihb-process__step { background: #21243A; border-color: #2E324A; }
.ihb-process__step:hover { transform: translateY(-6px); box-shadow: var(--ihb-shadow); }
.ihb-process__num {
  position: absolute; top: 20px; right: 22px;
  font-size: 40px; font-weight: 800; color: rgba(59,56,235,.1);
  font-family: 'Urbanist', sans-serif; line-height: 1;
}
.ihb-process__icon { width: 44px; height: 44px; margin-bottom: 20px; }
.ihb-process__title { margin-bottom: 10px; font-weight: 700; font-size: 19px; }
.ihb-process__desc { font-size: 15px; line-height: 1.65; margin: 0; color: var(--ihb-body); }
@media (max-width: 991px) { .ihb-process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ihb-process { grid-template-columns: 1fr; } }

/* ---------- COUNTER ---------- */
.ihb-counter {
  background: linear-gradient(135deg, #3B38EB 0%, #5A57FF 100%);
  padding: 60px 0;
  border-radius: 24px;
  margin: 20px 15px;
  position: relative;
  overflow: hidden;
}
.ihb-counter::before {
  content: ""; position: absolute; inset: -50% -20% auto auto;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(255,255,255,.15), transparent);
}
.ihb-counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.ihb-counter__item { text-align: center; color: #fff; }
.ihb-counter__item h3 {
  color: #fff; font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  margin: 0 0 6px; font-family: 'Urbanist', sans-serif; line-height: 1;
}
.ihb-counter__item p { margin: 0; color: rgba(255,255,255,.85); font-size: 14.5px; letter-spacing: .04em; }
@media (max-width: 767px) { .ihb-counter__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }

/* ---------- ABOUT ---------- */
.ihb-about__media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--ihb-shadow-lg); }
.ihb-about__media img { width: 100%; height: auto; display: block; }
.ihb-about__badge {
  position: absolute; bottom: 20px; left: 20px;
  background: #fff; padding: 14px 20px; border-radius: var(--ihb-radius);
  box-shadow: var(--ihb-shadow);
  display: flex; flex-direction: column;
}
.ihb-about__badge strong {
  font-size: 28px; font-weight: 800; color: var(--ihb-primary); line-height: 1;
  font-family: 'Urbanist', sans-serif;
}
.ihb-about__badge span { font-size: 12.5px; color: var(--ihb-body); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }
.ihb-checks { list-style: none; padding: 0; margin: 22px 0 26px; }
.ihb-checks li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; font-size: 15.5px; }
.ihb-checks i { color: #1EAA5A; margin-top: 4px; }

/* ---------- SERVICES ---------- */
.ihb-services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ihb-service {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition), border-color var(--ihb-transition);
}
html.rts-dark .ihb-service { background: #21243A; border-color: #2E324A; }
.ihb-service:hover { transform: translateY(-6px); box-shadow: var(--ihb-shadow); border-color: rgba(59,56,235,.3); color: inherit; }
.ihb-service__icon { width: 48px; height: 48px; margin-bottom: 18px; }
.ihb-service__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.ihb-service__desc { font-size: 15px; line-height: 1.6; margin: 0 0 16px; color: var(--ihb-body); flex-grow: 1; }
.ihb-service__more { color: var(--ihb-primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 1199px) { .ihb-services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .ihb-services__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .ihb-service { padding: 22px 18px; } }
@media (max-width: 479px) { .ihb-services__grid { grid-template-columns: 1fr; } }

/* ---------- APPOINT / CONTACT FORM ---------- */
.ihb-appoint__card {
  background: #fff; border-radius: 22px;
  border: 1px solid var(--ihb-line);
  box-shadow: var(--ihb-shadow);
  overflow: hidden;
}
html.rts-dark .ihb-appoint__card { background: #21243A; border-color: #2E324A; }
.ihb-appoint__left { padding: 60px 40px; background: linear-gradient(135deg, #F5F6FF, #EEF0FF); }
html.rts-dark .ihb-appoint__left { background: linear-gradient(135deg, #1A1E33, #22263A); }
.ihb-appoint__right { padding: 60px 40px; }
@media (max-width: 991px) {
  .ihb-appoint__left, .ihb-appoint__right { padding: 40px 26px; }
}
.ihb-contact-card {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px;
  padding: 16px 18px;
  background: #fff; border-radius: var(--ihb-radius-sm);
  border: 1px solid var(--ihb-line);
  box-shadow: var(--ihb-shadow-sm);
}
html.rts-dark .ihb-contact-card { background: #181C2E; border-color: #2E324A; }
.ihb-contact-card img { width: 36px; height: 36px; }
.ihb-contact-card div { display: flex; flex-direction: column; }
.ihb-contact-card span { font-size: 12.5px; color: var(--ihb-body); text-transform: uppercase; letter-spacing: .08em; }
.ihb-contact-card a { color: var(--ihb-ink); font-weight: 700; font-size: 16px; text-decoration: none; }
html.rts-dark .ihb-contact-card a { color: #fff; }

.ihb-field { margin-bottom: 18px; }
.ihb-field label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--ihb-ink); margin-bottom: 6px;
}
html.rts-dark .ihb-field label { color: #E8EAF2; }
.ihb-field input,
.ihb-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--ihb-line);
  background: #F9FAFF;
  border-radius: var(--ihb-radius-sm);
  font-size: 15px; color: var(--ihb-ink);
  transition: border-color var(--ihb-transition), box-shadow var(--ihb-transition);
  font-family: inherit;
}
html.rts-dark .ihb-field input,
html.rts-dark .ihb-field textarea { background: #181C2E; border-color: #2E324A; color: #fff; }
.ihb-field input:focus,
.ihb-field textarea:focus {
  outline: none; border-color: var(--ihb-primary);
  box-shadow: 0 0 0 4px rgba(59,56,235,.12);
}
.ihb-field textarea { resize: vertical; min-height: 120px; }

.ihb-submit { width: 100%; justify-content: center; }

.ihb-form-msg {
  display: none; padding: 14px 18px; border-radius: var(--ihb-radius-sm);
  margin-bottom: 20px; font-size: 14.5px; font-weight: 500;
}
.ihb-form-msg.is-success { display: block; background: #E6F7EC; color: #1E7A45; border: 1px solid #B6E5C5; }
.ihb-form-msg.is-error   { display: block; background: #FDECEE; color: #B3253A; border: 1px solid #F5C4CB; }
html.rts-dark .ihb-form-msg.is-success { background: rgba(30,170,90,.15); color: #7BE1A5; border-color: rgba(30,170,90,.4); }
html.rts-dark .ihb-form-msg.is-error   { background: rgba(220,53,69,.15); color: #FFA0AA; border-color: rgba(220,53,69,.4); }

/* ---------- TEAM ---------- */
.ihb-team-card {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius); overflow: hidden;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
}
html.rts-dark .ihb-team-card { background: #21243A; border-color: #2E324A; }
.ihb-team-card:hover { transform: translateY(-6px); box-shadow: var(--ihb-shadow); }
.ihb-team-card__photo { aspect-ratio: 1/1; overflow: hidden; }
.ihb-team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.ihb-team-card:hover .ihb-team-card__photo img { transform: scale(1.06); }
.ihb-team-card__body { padding: 22px 22px 24px; }
.ihb-team-card__body h5 { margin: 0 0 4px; font-size: 18px; font-weight: 700; }
.ihb-team-card__body span { color: var(--ihb-primary); font-size: 13.5px; font-weight: 600; letter-spacing: .02em; }

/* ---------- CASE STUDIES ---------- */
.ihb-case__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.ihb-case__item {
  display: block; background: #fff; border-radius: var(--ihb-radius);
  overflow: hidden; border: 1px solid var(--ihb-line); text-decoration: none;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
  color: inherit;
}
html.rts-dark .ihb-case__item { background: #21243A; border-color: #2E324A; }
.ihb-case__item:hover { transform: translateY(-6px); box-shadow: var(--ihb-shadow-lg); color: inherit; }
.ihb-case__media { aspect-ratio: 16/10; overflow: hidden; }
.ihb-case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.ihb-case__item:hover .ihb-case__media img { transform: scale(1.05); }
.ihb-case__body { padding: 26px 28px 28px; }
.ihb-case__tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(59,56,235,.1); color: var(--ihb-primary);
  font-size: 12px; font-weight: 700; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.ihb-case__body h4 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.ihb-case__more { color: var(--ihb-primary); font-weight: 600; font-size: 14px; }
@media (max-width: 767px) { .ihb-case__grid { grid-template-columns: 1fr; } }

/* ---------- TESTIMONIALS ---------- */
.ihb-testimonials { background: #F7F8FD; }
html.rts-dark .ihb-testimonials { background: #1A1D2B; }
.ihb-testimonial {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius); padding: 34px 30px;
  height: 100%;
}
html.rts-dark .ihb-testimonial { background: #21243A; border-color: #2E324A; }
.ihb-testimonial__stars { color: #FFB629; margin-bottom: 18px; }
.ihb-testimonial__stars i { margin-right: 3px; }
.ihb-testimonial__quote { font-size: 15.5px; line-height: 1.7; color: var(--ihb-body); margin: 0 0 22px; }
.ihb-testimonial__author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--ihb-line); }
html.rts-dark .ihb-testimonial__author { border-color: #2E324A; }
.ihb-testimonial__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.ihb-testimonial__author strong { display: block; font-size: 15px; color: var(--ihb-ink); }
html.rts-dark .ihb-testimonial__author strong { color: #fff; }
.ihb-testimonial__author span { font-size: 13px; color: var(--ihb-body); }

.ihb-swiper-nav {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--ihb-primary);
  box-shadow: var(--ihb-shadow-sm);
  border: 1px solid var(--ihb-line);
}
.ihb-swiper-nav::after { font-size: 14px; font-weight: 900; }
html.rts-dark .ihb-swiper-nav { background: #21243A; border-color: #2E324A; }

/* ---------- BLOG ---------- */
.ihb-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ihb-blog-card {
  display: block; background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
}
html.rts-dark .ihb-blog-card { background: #21243A; border-color: #2E324A; }
.ihb-blog-card:hover { transform: translateY(-6px); box-shadow: var(--ihb-shadow); color: inherit; }
.ihb-blog-card__media { aspect-ratio: 16/10; overflow: hidden; }
.ihb-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.ihb-blog-card:hover .ihb-blog-card__media img { transform: scale(1.05); }
.ihb-blog-card__body { padding: 24px 26px 26px; }
.ihb-blog-card__meta {
  display: flex; gap: 18px; margin-bottom: 12px; font-size: 12.5px;
  color: var(--ihb-body); text-transform: uppercase; letter-spacing: .06em;
}
.ihb-blog-card__meta i { color: var(--ihb-primary); margin-right: 5px; }
.ihb-blog-card__body h5 { font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 14px; }
.ihb-blog-card__more { color: var(--ihb-primary); font-weight: 600; font-size: 14px; }
@media (max-width: 991px) { .ihb-blog__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .ihb-blog__grid { grid-template-columns: 1fr; } }

/* ---------- 404 PAGE ---------- */
.ihb-404 { padding: 120px 0; text-align: center; }
.ihb-404__inner { max-width: 640px; margin: 0 auto; }
.ihb-404__art {
  font-size: clamp(100px, 20vw, 200px);
  font-weight: 900;
  font-family: 'Urbanist', sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex; justify-content: center; align-items: center; gap: 4px;
  margin-bottom: 24px;
}
.ihb-404__num { color: var(--ihb-primary); }
.ihb-404__o {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(80px, 16vw, 160px); height: clamp(80px, 16vw, 160px);
  border-radius: 50%; background: linear-gradient(135deg, #3B38EB, #7B79FF);
  color: #fff;
  box-shadow: 0 30px 60px rgba(59,56,235,.4);
  animation: ihbBob 3s ease-in-out infinite;
}
@keyframes ihbBob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.ihb-404__title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.ihb-404__lead { font-size: 16.5px; color: var(--ihb-body); margin-bottom: 34px; }
.ihb-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.ihb-404__help p { font-size: 14.5px; color: var(--ihb-body); margin: 0; }
.ihb-404__help a { color: var(--ihb-primary); font-weight: 600; text-decoration: none; }
@media (max-width: 767px) { .ihb-404 { padding: 70px 0; } }

/* ---------- WhatsApp pulse ---------- */
.ihb-wa-float.is-pulse {
  animation: ihbWaPulse 1.6s ease-in-out 3;
}
@keyframes ihbWaPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.35); transform: translateY(-3px); }
  50% { box-shadow: 0 12px 45px rgba(37,211,102,.7); transform: translateY(-3px) scale(1.06); }
}

/* ==========================================================================
   Batch 3 — Page headers, MVV, services list, pricing, project, FAQ
   ========================================================================== */

/* ---------- PAGE HEAD ---------- */
.ihb-page-head {
  position: relative;
  padding: 80px 0 70px;
  background: linear-gradient(180deg, #F4F5FF 0%, #FFFFFF 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-page-head {
  background: linear-gradient(180deg, #1A1D2B 0%, #14172A 100%);
  border-color: #2E324A;
}
.ihb-page-head__bg { position: absolute; inset: 0; pointer-events: none; }
.ihb-page-head__blob {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(59,56,235,.18), transparent);
  top: -160px; right: -80px;
}
.ihb-page-head__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(59,56,235,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.ihb-page-head__inner { position: relative; z-index: 2; }
.ihb-bread {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: #fff; box-shadow: var(--ihb-shadow-sm);
  border: 1px solid var(--ihb-line);
  font-size: 13px; margin-bottom: 22px;
}
html.rts-dark .ihb-bread { background: #21243A; border-color: #2E324A; }
.ihb-bread a { color: var(--ihb-body); text-decoration: none; }
.ihb-bread a:hover { color: var(--ihb-primary); }
.ihb-bread i { font-size: 10px; color: var(--ihb-body); opacity: .6; }
.ihb-bread span { color: var(--ihb-ink); font-weight: 600; }
html.rts-dark .ihb-bread span { color: #fff; }
.ihb-page-head__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.ihb-page-head__lead {
  font-size: 17px; line-height: 1.7; max-width: 640px;
  color: var(--ihb-body); margin: 0;
}
@media (max-width: 767px) {
  .ihb-page-head { padding: 50px 0 40px; }
}

/* ---------- MVV (Mission / Vision / Values) ---------- */
.ihb-mvv__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ihb-mvv__card {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius); padding: 36px 30px;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
}
html.rts-dark .ihb-mvv__card { background: #21243A; border-color: #2E324A; }
.ihb-mvv__card:hover { transform: translateY(-6px); box-shadow: var(--ihb-shadow); }
.ihb-mvv__icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #3B38EB 0%, #7B79FF 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; margin-bottom: 22px;
  box-shadow: 0 12px 24px rgba(59,56,235,.28);
}
.ihb-mvv__card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.ihb-mvv__card p { margin: 0; color: var(--ihb-body); line-height: 1.65; font-size: 15.5px; }
@media (max-width: 767px) { .ihb-mvv__grid { grid-template-columns: 1fr; } }

/* ---------- SERVICES page — inline list under desc ---------- */
.ihb-service__list {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.ihb-service__list li {
  font-size: 14px; color: var(--ihb-body);
  display: flex; align-items: flex-start; gap: 10px;
}
.ihb-service__list i { color: #1EAA5A; font-size: 12px; margin-top: 4px; }

/* ---------- CTA mini (mid-page) ---------- */
.ihb-cta-mini__inner {
  background: linear-gradient(135deg, #F5F6FF 0%, #EEF0FF 100%);
  border-radius: 24px;
  padding: 60px 40px;
  border: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-cta-mini__inner {
  background: linear-gradient(135deg, #1A1E33 0%, #22263A 100%);
  border-color: #2E324A;
}
.ihb-cta-mini__actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-top: 26px;
}
@media (max-width: 767px) { .ihb-cta-mini__inner { padding: 40px 24px; } }

/* ---------- PRICING ---------- */
.ihb-pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.ihb-plan {
  position: relative;
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: 20px; padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition);
}
html.rts-dark .ihb-plan { background: #21243A; border-color: #2E324A; }
.ihb-plan:hover { transform: translateY(-6px); box-shadow: var(--ihb-shadow); }
.ihb-plan--popular {
  border: 2px solid var(--ihb-primary);
  box-shadow: 0 20px 50px rgba(59,56,235,.18);
  transform: translateY(-8px);
}
.ihb-plan--popular:hover { transform: translateY(-14px); }
.ihb-plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #3B38EB 0%, #7B79FF 100%);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .1em;
  box-shadow: 0 8px 20px rgba(59,56,235,.35);
  white-space: nowrap;
}
.ihb-plan__name { font-size: 18px; font-weight: 700; color: var(--ihb-primary); margin: 0 0 14px; }
.ihb-plan__price {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px;
}
.ihb-plan__price strong {
  font-size: 44px; font-weight: 800; color: var(--ihb-ink);
  font-family: 'Urbanist', sans-serif; line-height: 1; letter-spacing: -0.03em;
}
html.rts-dark .ihb-plan__price strong { color: #fff; }
.ihb-plan__price span { font-size: 15px; color: var(--ihb-body); font-weight: 500; }
.ihb-plan__desc {
  font-size: 14.5px; line-height: 1.6; color: var(--ihb-body);
  padding-bottom: 22px; border-bottom: 1px solid var(--ihb-line);
  margin-bottom: 22px;
}
html.rts-dark .ihb-plan__desc { border-color: #2E324A; }
.ihb-plan__features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px; flex-grow: 1;
}
.ihb-plan__features li {
  font-size: 14.5px; color: var(--ihb-body);
  display: flex; align-items: flex-start; gap: 10px;
}
.ihb-plan__features i { color: var(--ihb-primary); margin-top: 4px; }
.ihb-plan__btn { justify-content: center; text-align: center; }
.ihb-plan__features + .ihb-plan__btn { margin-top: auto; }

.ihb-pricing__note {
  text-align: center; font-size: 14.5px; color: var(--ihb-body);
  margin-top: 40px;
}
.ihb-pricing__note i { color: var(--ihb-primary); margin-right: 6px; }
.ihb-pricing__note a { color: var(--ihb-primary); font-weight: 600; text-decoration: none; }
.ihb-pricing__note a:hover { text-decoration: underline; }

@media (max-width: 991px) { .ihb-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ---------- FAQ ---------- */
.ihb-faq__list { max-width: 820px; margin: 0 auto; }
.ihb-faq__item {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius); margin-bottom: 14px;
  transition: box-shadow var(--ihb-transition), border-color var(--ihb-transition);
}
html.rts-dark .ihb-faq__item { background: #21243A; border-color: #2E324A; }
.ihb-faq__item[open] { border-color: rgba(59,56,235,.3); box-shadow: var(--ihb-shadow-sm); }
.ihb-faq__item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 16px; font-weight: 600; color: var(--ihb-ink);
}
html.rts-dark .ihb-faq__item summary { color: #fff; }
.ihb-faq__item summary::-webkit-details-marker { display: none; }
.ihb-faq__item summary i {
  color: var(--ihb-primary); font-size: 14px;
  transition: transform var(--ihb-transition);
  flex-shrink: 0;
}
.ihb-faq__item[open] summary i { transform: rotate(45deg); }
.ihb-faq__body {
  padding: 20px 24px 22px;
  color: var(--ihb-body); font-size: 15.5px; line-height: 1.7;
  border-top: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-faq__body { border-color: #2E324A; }

/* ---------- PROJECT DETAILS ---------- */
.ihb-project__hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: var(--ihb-shadow-lg);
}
.ihb-project__banner {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16/8; object-fit: cover;
}
.ihb-project__info {
  position: absolute;
  bottom: 0; right: 0;
  width: 380px; max-width: 100%;
  background: #fff;
  border-radius: 18px 0 20px 0;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(14,18,48,.1);
}
html.rts-dark .ihb-project__info { background: #21243A; }
.ihb-project__info-title {
  background: var(--ihb-primary); color: #fff;
  padding: 18px 26px; margin: 0;
  font-size: 17px; font-weight: 700;
}
.ihb-project__info-list { list-style: none; padding: 8px 0; margin: 0; }
.ihb-project__info-list li {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 26px;
  border-bottom: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-project__info-list li { border-color: #2E324A; }
.ihb-project__info-list li:last-child { border-bottom: none; }
.ihb-project__info-list i {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(59,56,235,.1); color: var(--ihb-primary);
  font-size: 15px; flex-shrink: 0;
}
.ihb-project__info-list div { display: flex; flex-direction: column; min-width: 0; }
.ihb-project__info-list span { font-size: 12.5px; color: var(--ihb-body); text-transform: uppercase; letter-spacing: .06em; }
.ihb-project__info-list strong { font-size: 15px; color: var(--ihb-ink); font-weight: 700; }
html.rts-dark .ihb-project__info-list strong { color: #fff; }

@media (max-width: 767px) {
  .ihb-project__hero { display: flex; flex-direction: column; border-radius: 16px; }
  .ihb-project__banner { aspect-ratio: 16/10; }
  .ihb-project__info { position: relative; width: 100%; border-radius: 0; }
}

.ihb-project__block { max-width: 900px; margin: 0 auto 60px; }
.ihb-project__block p { font-size: 16.5px; line-height: 1.75; color: var(--ihb-body); }

.ihb-project__quote {
  margin: 30px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, #F5F6FF, #EEF0FF);
  border-left: 4px solid var(--ihb-primary);
  border-radius: 12px;
  font-size: 18px; line-height: 1.6;
  font-style: italic; color: var(--ihb-ink);
  max-width: 100%;
}
html.rts-dark .ihb-project__quote { background: #1A1E33; color: #E8EAF2; }

.ihb-project__gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 40px 0 60px;
}
.ihb-project__gallery img {
  width: 100%; height: auto; border-radius: var(--ihb-radius);
  box-shadow: var(--ihb-shadow-sm);
  aspect-ratio: 4/3; object-fit: cover;
}
@media (max-width: 767px) { .ihb-project__gallery { grid-template-columns: 1fr; } }

.ihb-project__challenge-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px;
  margin-top: 22px;
}
.ihb-project__challenge {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 12px;
  background: #F9FAFF; border: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-project__challenge { background: #1A1E33; border-color: #2E324A; }
.ihb-project__challenge i { color: var(--ihb-primary); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.ihb-project__challenge p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ihb-body); }
@media (max-width: 767px) { .ihb-project__challenge-grid { grid-template-columns: 1fr; } }

.ihb-project__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin: 30px 0;
}
.ihb-project__stat {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius); padding: 26px 20px;
  text-align: center;
}
html.rts-dark .ihb-project__stat { background: #21243A; border-color: #2E324A; }
.ihb-project__stat strong {
  display: block; font-size: 38px; font-weight: 800;
  color: var(--ihb-primary); line-height: 1;
  font-family: 'Urbanist', sans-serif; letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.ihb-project__stat span { font-size: 13.5px; color: var(--ihb-body); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 767px) { .ihb-project__stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Section head — allow left-aligned variant ---------- */
.ihb-section__head--left { text-align: left; }
.ihb-section__head--left .ihb-section__lead { margin-left: 0; }

/* ==========================================================================
   Batch 4 — Contact cards, contact main (form+map), demand form, form note
   ========================================================================== */

/* ---------- Contact cards strip ---------- */
.ihb-contact-cards__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.ihb-contact-cards__item {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: var(--ihb-radius); padding: 30px 24px;
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none; color: inherit;
  transition: transform var(--ihb-transition), box-shadow var(--ihb-transition), border-color var(--ihb-transition);
}
html.rts-dark .ihb-contact-cards__item { background: #21243A; border-color: #2E324A; }
.ihb-contact-cards__item:hover { transform: translateY(-4px); box-shadow: var(--ihb-shadow); border-color: rgba(59,56,235,.3); color: inherit; }
.ihb-contact-cards__item--static:hover { transform: none; box-shadow: var(--ihb-shadow-sm); }
.ihb-contact-cards__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #3B38EB 0%, #7B79FF 100%);
  color: #fff; font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(59,56,235,.28);
}
.ihb-contact-cards__label {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ihb-body); margin-bottom: 6px;
}
.ihb-contact-cards__item strong {
  font-size: 16px; color: var(--ihb-ink); font-weight: 700; line-height: 1.4;
  word-break: break-word;
}
html.rts-dark .ihb-contact-cards__item strong { color: #fff; }
@media (max-width: 991px) { .ihb-contact-cards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .ihb-contact-cards__grid { grid-template-columns: 1fr; } }

/* ---------- Contact page main (form + map) ---------- */
.ihb-contact-main__form {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: 20px; padding: 40px 36px;
  box-shadow: var(--ihb-shadow-sm);
}
html.rts-dark .ihb-contact-main__form { background: #21243A; border-color: #2E324A; }
.ihb-contact-main__form p { font-size: 15.5px; color: var(--ihb-body); margin-bottom: 26px; }
@media (max-width: 767px) { .ihb-contact-main__form { padding: 28px 22px; } }

.ihb-contact-main__map {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--ihb-shadow-sm);
  border: 1px solid var(--ihb-line);
  aspect-ratio: 16/11;
  background: #F6F7FD;
}
.ihb-contact-main__map iframe {
  width: 100%; height: 100%; display: block; border: 0;
}
html.rts-dark .ihb-contact-main__map { border-color: #2E324A; }

.ihb-contact-main__info {
  margin-top: 24px;
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: 20px; padding: 30px 28px;
}
html.rts-dark .ihb-contact-main__info { background: #21243A; border-color: #2E324A; }
.ihb-contact-main__info h5 { font-size: 18px; font-weight: 700; margin: 0 0 20px; }
.ihb-contact-main__info ul { list-style: none; padding: 0; margin: 0; }
.ihb-contact-main__info li {
  display: flex; gap: 14px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--ihb-line);
}
html.rts-dark .ihb-contact-main__info li { border-color: #2E324A; }
.ihb-contact-main__info li:last-child { border-bottom: none; }
.ihb-contact-main__info i {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; background: rgba(59,56,235,.1);
  color: var(--ihb-primary); font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
}
.ihb-contact-main__info div { display: flex; flex-direction: column; }
.ihb-contact-main__info span { font-size: 12.5px; color: var(--ihb-body); text-transform: uppercase; letter-spacing: .06em; }
.ihb-contact-main__info a { color: var(--ihb-ink); font-weight: 700; font-size: 15px; text-decoration: none; }
html.rts-dark .ihb-contact-main__info a { color: #fff; }
.ihb-contact-main__info a:hover { color: var(--ihb-primary); }

/* ---------- Demand form ---------- */
.ihb-demand__card {
  background: #fff; border: 1px solid var(--ihb-line);
  border-radius: 20px; padding: 50px 48px;
  box-shadow: var(--ihb-shadow-sm);
  max-width: 920px; margin: 0 auto;
}
html.rts-dark .ihb-demand__card { background: #21243A; border-color: #2E324A; }
@media (max-width: 767px) { .ihb-demand__card { padding: 30px 22px; border-radius: 16px; } }

.ihb-demand__intro { margin-bottom: 32px; }
.ihb-demand__intro p { font-size: 15.5px; color: var(--ihb-body); margin: 0; }

.ihb-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px;
}
@media (max-width: 575px) { .ihb-grid-2 { grid-template-columns: 1fr; } }

/* ---------- Form note ---------- */
.ihb-form-note {
  font-size: 13px; color: var(--ihb-body);
  margin: 14px 0 0; display: flex; align-items: center; gap: 8px;
}
.ihb-form-note i { color: var(--ihb-primary); }