@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@700;800&display=swap');

/* IMOU Homepage Custom CSS for Journal-3
   Scoped styles with high specificity to override Journal theme cleanly */

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

.imou-homepage {
  --imou-bg: #ffffff;
  --imou-surface: #f4f6f8;
  --imou-card: #ffffff;
  --imou-border: rgba(0, 0, 0, .09);
  --imou-blue: #ff6200;
  --imou-blue-dim: #cc4e00;
  --imou-blue-glow: rgba(255, 98, 0, .13);
  --imou-text: #141414;
  --imou-muted: #6b7280;
  --imou-accent: #ff9500;
  --imou-success: #00b07a;
  --r: 10px;
  --r-lg: 16px;
  --ff: 'Barlow', Arial, sans-serif;
  --ff-cond: 'Barlow Condensed', 'Barlow', Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
  background: var(--imou-bg);
  color: var(--imou-text);
  font-family: var(--ff);
  font-size: 14px;
  line-height: 1.5;
}

.imou-homepage img {
  display: block;
  max-width: 100%;
}

.imou-homepage a {
  color: inherit;
  text-decoration: none;
}

.imou-homepage svg {
  flex-shrink: 0;
}

.imou-homepage .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.imou-homepage .grid-2,
.imou-homepage .grid-3,
.imou-homepage .grid-4,
.imou-homepage .grid-5 {
  display: grid;
}

.imou-homepage .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.imou-homepage .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.imou-homepage .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.imou-homepage .grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }

/* Badge Styles */
.imou-homepage .badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--imou-blue-glow);
  color: var(--imou-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 98, 0, .25);
}

.imou-homepage .badge-hot {
  background: rgba(255, 77, 0, .15);
  color: var(--imou-accent);
  border-color: rgba(255, 77, 0, .3);
}

.imou-homepage .badge-new {
  background: rgba(0, 214, 143, .12);
  color: var(--imou-success);
  border-color: rgba(0, 214, 143, .25);
}

/* Section Labels & Titles */
.imou-homepage .section-label {
  margin: 0 0 10px;
  color: var(--imou-blue) !important;
  font-family: var(--ff-cond) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .18em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.imou-homepage .section-title {
  margin: 0 0 12px !important;
  color: var(--imou-text) !important;
  font-family: var(--ff-cond) !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  text-transform: none !important;
}

.imou-homepage .section {
  padding: 72px 0;
}

.imou-homepage .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

/* Button Styles - High Specificity */
.imou-homepage .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 12px 24px !important;
  border-radius: var(--r) !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  cursor: pointer !important;
  font-family: var(--ff) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease !important;
}

.imou-homepage .btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.imou-homepage .btn-primary {
  background: var(--imou-blue) !important;
  border-color: var(--imou-blue) !important;
  color: #fff !important;
}

.imou-homepage .btn-primary:hover {
  background: var(--imou-blue-dim) !important;
  border-color: var(--imou-blue-dim) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.imou-homepage .btn-outline {
  background: rgba(255, 255, 255, .42) !important;
  border-color: rgba(20, 20, 20, .14) !important;
  color: var(--imou-text) !important;
}

.imou-homepage .btn-outline:hover {
  background: #fff !important;
  border-color: var(--imou-blue) !important;
  color: var(--imou-blue) !important;
  transform: translateY(-1px);
}

.imou-homepage .btn-ghost {
  min-height: auto !important;
  padding: 8px 0 !important;
  background: transparent !important;
  border-color: transparent !important;
  color: var(--imou-blue) !important;
  font-size: 13px !important;
}

.imou-homepage .btn-ghost::after {
  content: ' ->';
}

.imou-homepage .btn-ghost:hover {
  color: var(--imou-blue-dim) !important;
}

/* Hero Section */
.imou-homepage .hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  background: #fff7f2;
}

.imou-homepage .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255, 98, 0, .10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255, 149, 0, .07) 0%, transparent 60%);
  pointer-events: none;
}

.imou-homepage .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 98, 0, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 98, 0, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.imou-homepage .hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding-top: 64px;
  padding-bottom: 64px;
}

.imou-homepage .hero-content {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.imou-homepage .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--imou-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.imou-homepage .hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--imou-blue);
}

.imou-homepage .hero-title {
  margin: 0 0 20px !important;
  color: var(--imou-text) !important;
  font-family: var(--ff-cond) !important;
  font-size: clamp(46px, 6vw, 76px) !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: .96 !important;
  text-transform: none !important;
}

.imou-homepage .hero-title span {
  color: var(--imou-blue);
}

.imou-homepage .hero-desc {
  max-width: 470px;
  margin: 0 0 34px;
  color: var(--imou-muted);
  font-size: 16px;
  line-height: 1.7;
}

.imou-homepage .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.imou-homepage .hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 36px);
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--imou-border);
}

.imou-homepage .hero-stat-num {
  color: var(--imou-text);
  font-family: var(--ff-cond);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.imou-homepage .hero-stat-label {
  margin-top: 4px;
  color: var(--imou-muted);
  font-size: 12px;
}

.imou-homepage .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.imou-homepage .hero-img-wrap {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: min(100%, 480px);
  height: clamp(380px, 40vw, 480px);
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0e6 0%, #ffe8d6 100%);
  border: 1px solid rgba(255, 98, 0, .15);
  border-radius: var(--r-lg);
  box-shadow: 0 26px 60px rgba(255, 98, 0, .10);
}

.imou-homepage .hero-slider {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.imou-homepage .hero-slide {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  z-index: 1;
  width: 84% !important;
  height: 84% !important;
  max-width: 390px !important;
  max-height: 390px !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.96);
  filter: drop-shadow(0 22px 28px rgba(45, 24, 10, .16));
  animation: imouHeroSlide 12s infinite;
}

.imou-homepage .hero-slide:nth-child(2) { animation-delay: 4s; }
.imou-homepage .hero-slide:nth-child(3) { animation-delay: 8s; }

@keyframes imouHeroSlide {
  0% { opacity: 0; transform: translate(-50%, -48%) scale(.94); }
  7%, 28% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  35%, 100% { opacity: 0; transform: translate(-50%, -52%) scale(.96); }
}

.imou-homepage .hero-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 36px);
  padding: 10px 16px;
  background: rgba(255, 255, 255, .90);
  border: 1px solid var(--imou-border);
  border-radius: var(--r);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  color: var(--imou-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.imou-homepage .hero-tag.tag-live {
  top: 18px;
  right: 18px;
  color: var(--imou-success);
}

.imou-homepage .hero-tag.tag-live::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--imou-success);
  box-shadow: 0 0 0 3px rgba(0, 214, 143, .20);
  animation: imouPulse 2s infinite;
}

.imou-homepage .hero-tag.tag-res {
  bottom: 18px;
  left: 18px;
  color: var(--imou-blue);
}

@keyframes imouPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0, 214, 143, .20); }
  50% { box-shadow: 0 0 0 6px rgba(0, 214, 143, .05); }
}

/* Category Strip Navigation */
.imou-homepage .cat-strip {
  background: var(--imou-surface);
  border-top: 1px solid var(--imou-border);
  border-bottom: 1px solid var(--imou-border);
}

.imou-homepage .cat-strip .container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.imou-homepage .cat-strip .container::-webkit-scrollbar {
  display: none;
}

.imou-homepage .cat-item {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 132px;
  padding: 22px 28px;
  border-right: 1px solid var(--imou-border);
  color: var(--imou-muted) !important;
  font-size: 13px;
  font-weight: 600;
  transition: background-color .2s ease, color .2s ease;
}

.imou-homepage .cat-item::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--imou-blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.imou-homepage .cat-item:hover,
.imou-homepage .cat-item.active {
  background: rgba(255, 98, 0, .04);
  color: var(--imou-blue) !important;
}

.imou-homepage .cat-item:hover::after,
.imou-homepage .cat-item.active::after {
  transform: scaleX(1);
}

.imou-homepage .cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 98, 0, .10);
}

.imou-homepage .cat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--imou-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Promo Strip */
.imou-homepage .promo-strip {
  padding: 32px 0;
  background: var(--imou-surface);
  border-top: 1px solid var(--imou-border);
  border-bottom: 1px solid var(--imou-border);
}

.imou-homepage .promo-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.imou-homepage .promo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid var(--imou-border);
}

.imou-homepage .promo-item:last-child {
  border-right: 0;
}

.imou-homepage .promo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: rgba(255, 98, 0, .10);
  border-radius: 12px;
}

.imou-homepage .promo-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--imou-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.imou-homepage .promo-label {
  color: var(--imou-text);
  font-size: 14px;
  font-weight: 700;
}

.imou-homepage .promo-sub {
  color: var(--imou-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Feature Cards */
.imou-homepage .features-section {
  background: var(--imou-surface);
  border-top: 1px solid var(--imou-border);
}

.imou-homepage .feature-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: var(--imou-card);
  border: 1px solid var(--imou-border);
  border-radius: var(--r-lg);
  transition: border-color .2s ease;
}

.imou-homepage .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--imou-blue), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.imou-homepage .feature-card:hover {
  border-color: rgba(255, 98, 0, .25);
}

.imou-homepage .feature-card:hover::before {
  opacity: 1;
}

.imou-homepage .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  background: var(--imou-blue-glow);
  border: 1px solid rgba(255, 98, 0, .20);
  border-radius: 14px;
}

.imou-homepage .feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--imou-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.imou-homepage .feature-title {
  margin-bottom: 8px;
  color: var(--imou-text);
  font-size: 17px;
  font-weight: 800;
}

.imou-homepage .feature-desc {
  color: var(--imou-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Split Banner */
.imou-homepage .split-banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--imou-border);
  border-radius: var(--r-lg);
}

.imou-homepage .split-panel {
  position: relative;
  overflow: hidden;
  padding: 56px 48px;
}

.imou-homepage .split-panel-dark {
  background: #fff4ee;
}

.imou-homepage .split-panel-blue {
  background: linear-gradient(135deg, #ff6200 0%, #e05500 100%);
}

.imou-homepage .split-panel::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
}

.imou-homepage .split-panel-dark::before {
  background: rgba(255, 98, 0, .07);
}

.imou-homepage .split-panel-blue::before {
  background: rgba(255, 255, 255, .08);
}

.imou-homepage .split-panel-title {
  margin: 12px 0 16px !important;
  color: var(--imou-text) !important;
  font-family: var(--ff-cond) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

.imou-homepage .split-panel-desc {
  max-width: 340px;
  margin: 0 0 28px;
  color: var(--imou-muted);
  font-size: 14px;
  line-height: 1.7;
}

.imou-homepage .split-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.imou-homepage .split-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--imou-muted);
  font-size: 14px;
}

.imou-homepage .split-check svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--imou-success);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.imou-homepage .split-panel-blue .split-panel-title,
.imou-homepage .split-panel-blue .split-panel-desc,
.imou-homepage .split-panel-blue .split-check {
  color: #fff !important;
}

.imou-homepage .split-panel-blue .split-check svg {
  stroke: #fff;
}

.imou-homepage .split-panel-blue .badge-new {
  background: rgba(255, 255, 255, .20);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.imou-homepage .split-panel-blue .btn-outline {
  background: rgba(255, 255, 255, .14) !important;
  border-color: rgba(255, 255, 255, .55) !important;
  color: #fff !important;
}

.imou-homepage .split-panel-blue .btn-outline:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--imou-blue) !important;
}

/* App Banner */
.imou-homepage .app-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff4ee 0%, #ffebe0 50%, #fff4ee 100%);
  border-top: 1px solid var(--imou-border);
  border-bottom: 1px solid var(--imou-border);
}

.imou-homepage .app-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 98, 0, .12) 0%, transparent 70%);
  pointer-events: none;
}

.imou-homepage .app-banner .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
}

.imou-homepage .app-store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.imou-homepage .store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 98, 0, .08);
  border: 1px solid rgba(255, 98, 0, .20);
  border-radius: var(--r);
  color: inherit !important;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}

.imou-homepage .store-btn:hover {
  background: rgba(255, 98, 0, .15);
  border-color: rgba(255, 98, 0, .35);
}

.imou-homepage .store-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--imou-blue);
}

.imou-homepage .store-sub {
  display: block;
  color: var(--imou-muted);
  font-size: 10px;
  line-height: 1.2;
}

.imou-homepage .store-name {
  display: block;
  color: var(--imou-text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.imou-homepage .app-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.imou-homepage .phone-mock {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 120px;
  height: 220px;
  overflow: hidden;
  background: #fff0e6;
  border: 2px solid rgba(255, 98, 0, .20);
  border-radius: 18px;
}

.imou-homepage .phone-mock:first-child { transform: rotate(-6deg) translateY(10px); }
.imou-homepage .phone-mock:last-child { transform: rotate(6deg) translateY(10px); }

.imou-homepage .phone-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88%;
  height: 88%;
  overflow: hidden;
  background: linear-gradient(160deg, #ffe8d6 0%, #ffd4b8 100%);
  border-radius: 12px;
}

.imou-homepage .phone-app-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Newsletter */
.imou-homepage .newsletter {
  padding: 56px 0;
  background: var(--imou-surface);
  border-top: 1px solid var(--imou-border);
}

.imou-homepage .newsletter .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.imou-homepage .newsletter p {
  margin: 0;
  color: var(--imou-muted);
  font-size: 14px;
}

.imou-homepage .newsletter-form {
  display: flex;
  flex: 1;
  gap: 12px;
  min-width: 280px;
  max-width: 480px;
}

.imou-homepage .newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  background: var(--imou-card);
  border: 1px solid var(--imou-border);
  border-radius: var(--r);
  color: var(--imou-text);
  font-family: var(--ff);
  font-size: 14px;
  outline: 0;
  transition: border-color .2s ease;
}

.imou-homepage .newsletter-form input:focus {
  border-color: var(--imou-blue);
}

/* Information Card Grid */
.imou-homepage .imou-info-section .container {
  max-width: 1320px;
}

.imou-homepage .imou-info-head {
  align-items: flex-start;
}

.imou-homepage .info-intro {
  max-width: 620px;
  margin: 0;
  color: var(--imou-muted);
  font-size: 15px;
  line-height: 1.7;
}

.imou-homepage .info-grid {
  --info-gap: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--info-gap);
  align-items: stretch;
}

.imou-homepage .info-card {
  min-width: 0;
  overflow: hidden;
  background: var(--imou-card);
  border: 1px solid var(--imou-border);
  border-radius: var(--r-lg);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.imou-homepage .info-card:hover {
  border-color: rgba(255, 98, 0, .30);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08), 0 0 0 1px rgba(255, 98, 0, .10);
  transform: translateY(-3px);
}

.imou-homepage .info-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / .78;
  overflow: hidden;
  background: linear-gradient(135deg, #fff4ee 0%, #ffece0 100%);
}

.imou-homepage .info-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 108%, rgba(255, 98, 0, .13) 0%, transparent 64%);
  pointer-events: none;
}

.imou-homepage .info-main-img,
.imou-homepage .info-hover-img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity .38s ease, transform .38s ease;
}

.imou-homepage .info-hover-img {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.04);
}

.imou-homepage .info-card:hover .info-main-img,
.imou-homepage .info-card:focus-within .info-main-img {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.98);
}

.imou-homepage .info-card:hover .info-hover-img,
.imou-homepage .info-card:focus-within .info-hover-img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.imou-homepage .info-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  max-width: calc(100% - 28px);
  padding: 5px 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(255, 98, 0, .28);
  border-radius: 6px;
  color: var(--imou-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .07);
}

.imou-homepage .info-body {
  padding: 18px;
}

.imou-homepage .info-name {
  margin: 0 0 6px !important;
  color: var(--imou-text) !important;
  font-family: var(--ff-cond) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.12 !important;
  text-transform: none !important;
}

.imou-homepage .info-model {
  display: block !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--imou-blue) !important;
  font-family: var(--ff) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-transform: none !important;
  white-space: normal !important;
}

.imou-homepage .info-desc {
  margin: 0 0 14px;
  color: var(--imou-muted);
  font-size: 13px;
  line-height: 1.65;
}

.imou-homepage .info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.imou-homepage .info-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  background: var(--imou-surface);
  border: 1px solid var(--imou-border);
  border-radius: 5px;
  color: var(--imou-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.imou-homepage .info-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.imou-homepage .info-points li {
  position: relative;
  padding-left: 16px;
  color: var(--imou-text);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}

.imou-homepage .info-points li::before {
  content: '';
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--imou-blue);
  border-radius: 50%;
}

.imou-homepage .imou-info-more {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 24px auto 0;
  padding: 12px 24px;
  background: var(--imou-blue);
  border: 1px solid var(--imou-blue);
  border-radius: var(--r);
  color: #fff;
  cursor: pointer;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.imou-homepage .imou-info-more:hover {
  background: var(--imou-blue-dim);
  border-color: var(--imou-blue-dim);
}

.imou-homepage .info-grid.is-carousel {
  display: flex;
  gap: var(--info-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.imou-homepage .info-grid.is-carousel::-webkit-scrollbar {
  display: none;
}

.imou-homepage .info-grid.is-carousel .info-card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}

.imou-homepage .info-grid.is-carousel.info-cols-6 .info-card {
  flex-basis: calc((100% - 100px) / 6);
}

/* Large Screen Enhancements */
@media (min-width: 1800px) {
  .imou-homepage .imou-info-section .container {
    max-width: 1760px;
  }

  .imou-homepage .info-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* Tablet Adjustments */
@media (max-width: 1024px) {
  .imou-homepage .hero .container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 34px;
  }

  .imou-homepage .hero-img-wrap {
    height: 400px;
  }

  .imou-homepage .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile Tablet */
@media (max-width: 900px) {
  .imou-homepage .hero {
    min-height: auto;
  }

  .imou-homepage .hero .container {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 44px;
    text-align: center;
  }

  .imou-homepage .hero-eyebrow,
  .imou-homepage .hero-actions,
  .imou-homepage .hero-stats {
    justify-content: center;
  }

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

  .imou-homepage .hero-visual {
    display: none;
  }

  .imou-homepage .split-banner {
    grid-template-columns: 1fr;
  }

  .imou-homepage .app-banner .container {
    grid-template-columns: 1fr;
  }

  .imou-homepage .promo-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .imou-homepage .promo-item {
    padding: 12px 16px;
    border-right: 0;
  }

  .imou-homepage .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .imou-homepage .info-grid.is-mobile-collapsed .info-card:nth-child(n+7) {
    display: none;
  }

  .imou-homepage .imou-info-more.has-extra {
    display: inline-flex;
  }
}

/* Small Mobile */
@media (max-width: 700px) {
  .imou-homepage .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .imou-homepage .section {
    padding: 48px 0;
  }

  .imou-homepage .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .imou-homepage .grid-2,
  .imou-homepage .grid-3,
  .imou-homepage .grid-4 {
    grid-template-columns: 1fr;
  }

  .imou-homepage .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .imou-homepage .hero-title {
    font-size: clamp(42px, 13vw, 62px) !important;
  }

  .imou-homepage .hero-stats {
    gap: 22px;
  }

  .imou-homepage .hero-desc {
    width: 100% !important;
    max-width: 340px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    overflow-wrap: break-word;
  }

  .imou-homepage .split-panel {
    padding: 36px 24px;
  }

  .imou-homepage .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .imou-homepage .newsletter-form .btn {
    width: 100%;
  }

  .imou-homepage .info-grid {
    gap: 12px;
  }

  .imou-homepage .info-img {
    aspect-ratio: 1 / .86;
  }

  .imou-homepage .info-body {
    padding: 13px;
  }

  .imou-homepage .info-name {
    font-size: 18px !important;
  }

  .imou-homepage .info-desc {
    font-size: 12.5px;
  }

  .imou-homepage .info-tags span,
  .imou-homepage .info-points li,
  .imou-homepage .info-model {
    font-size: 11px !important;
  }
}

/* Extra Small Mobile */
@media (max-width: 520px) {
  .imou-homepage .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100%, 270px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .imou-homepage .hero-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .imou-homepage .hero-stats {
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
  }

  .imou-homepage .hero-stat-num {
    font-size: 24px;
  }

  .imou-homepage .info-grid {
    width: 100% !important;
    overflow: hidden;
  }

  .imou-homepage .info-card,
  .imou-homepage .info-body,
  .imou-homepage .info-name,
  .imou-homepage .info-model,
  .imou-homepage .info-desc,
  .imou-homepage .info-tags,
  .imou-homepage .info-tags span,
  .imou-homepage .info-points,
  .imou-homepage .info-points li {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }

  .imou-homepage .info-tags span {
    white-space: normal;
  }
}