/**
 * Homepage — minimal, clean design
 * Scoped under .page-home-modern
 */
.page-home-modern {
  --hm-font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --hm-color-bg: #fafafa;
  --hm-color-surface: #ffffff;
  --hm-color-text: #1a1a1a;
  --hm-color-text-muted: #6b7280;
  --hm-color-accent: #0d9488;
  --hm-color-accent-hover: #0f766e;
  --hm-radius: 12px;
  --hm-radius-sm: 8px;
  --hm-shadow: 0 1px 3px rgba(0,0,0,.06);
  --hm-shadow-md: 0 4px 12px rgba(0,0,0,.06);
  font-family: var(--hm-font-sans);
  color: var(--hm-color-text);
  background: var(--hm-color-bg);
}

/* ----- App hero: two phones + download ----- */
.page-home-modern .hm-app-hero {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #e0f2f1 0%, #f0fdfa 50%, var(--hm-color-bg) 100%);
}

.page-home-modern .hm-app-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  max-width: 1180px;
  margin: 0 auto;
}

.page-home-modern .hm-app-phones {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 380px;
}

/* Single image (mob.png 1000×1000, phones on image) — fixed size, +20% */
.page-home-modern .hm-app-phones--single-img {
  width: 384px;
  flex-shrink: 0;
}
.page-home-modern .hm-app-phones--single-img .hm-app-hero-img {
  display: block;
  width: 374px;
  height: 374px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .page-home-modern .hm-app-phones--single-img {
    width: 288px;
  }
  .page-home-modern .hm-app-phones--single-img .hm-app-hero-img {
    width: 288px;
    height: 288px;
  }
}

.page-home-modern .hm-phone-mockup {
  position: absolute;
  width: 140px;
  height: 280px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2), 0 0 0 2px rgba(255,255,255,.1);
}

.page-home-modern .hm-phone-mockup--left {
  left: 0;
  top: 20px;
  transform: rotate(-12deg);
}

.page-home-modern .hm-phone-mockup--right {
  right: 0;
  top: 40px;
  transform: rotate(12deg);
}

.page-home-modern .hm-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--hm-color-bg);
}

.page-home-modern .hm-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home-modern .hm-app-hero-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.page-home-modern .hm-app-hero-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hm-color-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.page-home-modern .hm-app-hero-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--hm-color-text);
}

.page-home-modern .hm-app-hero-desc {
  font-size: 0.95rem;
  color: var(--hm-color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.page-home-modern .hm-app-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* App Store / Google Play badge buttons */
.page-home-modern .hm-app-hero-buttons--badges {
  gap: 1rem;
  align-items: center;
}
.page-home-modern .hm-store-badge-link {
  display: inline-block;
  line-height: 0;
  transition: transform .2s, opacity .2s;
}
.page-home-modern .hm-store-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.page-home-modern .hm-store-badge {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.page-home-modern .hm-store-badge--svg {
  height: 40px;
}
.page-home-modern .hm-store-badge--android {
  height: 60px;
}

.page-home-modern .hm-app-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--hm-radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.page-home-modern .hm-app-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.page-home-modern .hm-app-hero-btn--play {
  background: #000;
  color: #fff;
}

.page-home-modern .hm-app-hero-btn--apple {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0,0,0,.15);
}

.page-home-modern .hm-app-hero .hm-hero-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--hm-color-accent);
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--hm-radius-sm);
  transition: background .2s;
}

.page-home-modern .hm-app-hero .hm-hero-cta:hover {
  background: var(--hm-color-accent-hover);
  color: #fff !important;
}

@media (max-width: 767px) {
  .page-home-modern .hm-app-hero {
    padding: 1.5rem 0;
  }
  .page-home-modern .hm-app-hero-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .page-home-modern .hm-app-phones {
    width: 180px;
    height: 320px;
  }
  .page-home-modern .hm-phone-mockup {
    width: 120px;
    height: 240px;
    padding: 8px;
    border-radius: 20px;
  }
  .page-home-modern .hm-phone-mockup--left {
    top: 10px;
    transform: rotate(-10deg);
  }
  .page-home-modern .hm-phone-mockup--right {
    top: 30px;
    transform: rotate(10deg);
  }
  .page-home-modern .hm-app-hero-text {
    order: -1;
  }
  .page-home-modern .hm-app-hero-title {
    font-size: 1.25rem;
  }
  .page-home-modern .hm-app-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-home-modern .hm-app-hero-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}

/* ----- Section common ----- */
.page-home-modern .hm-section {
  padding: 4rem 0;
}

.page-home-modern .hm-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--hm-color-text);
}

.page-home-modern .hm-section-lead {
  font-size: 1rem;
  color: var(--hm-color-text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ----- Features (4 icons) ----- */
.page-home-modern .hm-features {
  background: var(--hm-color-surface);
  padding: 4rem 0;
}

.page-home-modern .hm-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.page-home-modern .hm-feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--hm-radius);
  transition: box-shadow .2s;
}

.page-home-modern .hm-feature-card:hover {
  box-shadow: var(--hm-shadow-md);
}

.page-home-modern .hm-feature-card .hm-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: var(--hm-radius-sm);
  background: var(--hm-color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-home-modern .hm-feature-card .hm-feature-icon img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

.page-home-modern .hm-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.page-home-modern .hm-feature-card p {
  font-size: 0.9rem;
  color: var(--hm-color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ----- About our water (PAR MŪSU ŪDENI) ----- */
.page-home-modern .hm-about {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(180deg, var(--hm-color-bg) 0%, var(--hm-color-surface) 100%);
}

.page-home-modern .hm-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .page-home-modern .hm-about-inner {
    grid-template-columns: 1fr;
  }
}

.page-home-modern .hm-about-img {
  border-radius: var(--hm-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.08), 0 2px 12px rgba(0,0,0,.04);
}

/* Photo ends ~ at level of items 3–4 (same visual height as the 4 cards block) */
.page-home-modern .hm-about-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 490px;
  object-fit: cover;
  object-position: center top;
}

.page-home-modern .hm-about-content {
  min-width: 0;
}

.page-home-modern .hm-about-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hm-color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.page-home-modern .hm-about-title {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: var(--hm-color-text);
}

.page-home-modern .hm-about-lead {
  font-size: 0.95rem;
  color: var(--hm-color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 540px;
}

.page-home-modern .hm-about-water .hm-about-lead {
  margin-bottom: 1rem;
}

.page-home-modern .hm-about-water .hm-about-lead:last-of-type {
  margin-bottom: 1.5rem;
}

/* Numbered grid (old style 1–10) */
.page-home-modern .hm-about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}

@media (max-width: 575px) {
  .page-home-modern .hm-about-grid {
    grid-template-columns: 1fr;
  }
}

.page-home-modern .hm-about-item {
  background: var(--hm-color-bg);
  border-radius: var(--hm-radius);
  padding: 1.25rem 1.35rem;
  padding-left: 3rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
  transition: box-shadow .2s, border-color .2s;
  position: relative;
}

.page-home-modern .hm-about-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.08);
}

.page-home-modern .hm-about-item-num {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--hm-color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.page-home-modern .hm-about-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  line-height: 1.35;
  color: var(--hm-color-text);
}

.page-home-modern .hm-about-item p {
  font-size: 0.82rem;
  color: var(--hm-color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.page-home-modern .hm-about-item h4 + p {
  margin-top: 0.25rem;
}

/* Only first 4 cards in grid */
.page-home-modern .hm-about-grid-four {
  margin-bottom: 0;
}

/* Block below image + 4 cards — full width, separated from photo */
.page-home-modern .hm-about-blog {
  margin-top: 4.5rem;
  width: 100%;
  max-width: none;
}

.page-home-modern .hm-about-widgets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 767px) {
  .page-home-modern .hm-about-widgets {
    grid-template-columns: 1fr;
  }
}

.page-home-modern .hm-about-widget {
  background: var(--hm-color-surface);
  border-radius: var(--hm-radius);
  padding: 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: box-shadow .2s, transform .2s;
}

.page-home-modern .hm-about-widget:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.page-home-modern .hm-about-widget-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--hm-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.page-home-modern .hm-about-widget-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hm-color-text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.page-home-modern .hm-about-widget p {
  font-size: 0.9rem;
  color: var(--hm-color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Icons at section headings */
.page-home-modern .hm-about-label .fa {
  margin-right: 0.4rem;
  opacity: 0.9;
}

.page-home-modern .hm-about-title .fa {
  margin-right: 0.5rem;
  opacity: 0.9;
  color: var(--hm-color-accent);
}

.page-home-modern .hm-about-text-heading .fa {
  margin-right: 0.5rem;
  color: var(--hm-color-accent);
}


/* ----- Catalog category filter ----- */
.catalog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.catalog-cat-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--hm-radius-sm, 8px);
  background: var(--hm-color-surface, #fff);
  color: var(--hm-color-text, #1a1a1a);
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.1);
  transition: background .2s, border-color .2s, color .2s;
}
.catalog-cat-btn:hover {
  background: #f0fdfa;
  border-color: var(--hm-color-accent, #0d9488);
  color: var(--hm-color-accent, #0d9488);
}
.catalog-cat-btn.active {
  background: var(--hm-color-accent, #0d9488);
  border-color: var(--hm-color-accent, #0d9488);
  color: #fff !important;
}

/* ----- Products (Populāri produkti) ----- */
.page-home-modern .hm-products {
  background: var(--hm-color-surface);
  padding: 2rem 0 3rem;
}

.page-home-modern .hm-products-catalog {
  padding: 0 0 2rem;
  background: transparent;
}

.page-home-modern .hm-products .hm-section-title {
  margin-bottom: 2.25rem;
  text-align: center;
}

.page-home-modern .hm-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.page-home-modern .hm-product-card {
  background: #fff;
  border-radius: var(--hm-radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
}

.page-home-modern .hm-product-card:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  transform: translateY(-3px);
  border-color: rgba(0,0,0,.08);
}

.page-home-modern .hm-product-card .hm-product-img-wrap {
  padding: 0;
  overflow: hidden;
  position: relative;
  display: block;
  aspect-ratio: 1;
  width: 100%;
  background: #f8fafc;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.page-home-modern .hm-product-card .hm-product-img-wrap::after {
  content: none;
}

.page-home-modern .hm-product-card .hm-product-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .25s;
}

.page-home-modern .hm-product-card:hover .hm-product-img-wrap img {
  transform: scale(1.03);
}

.page-home-modern .hm-product-card .hm-product-body {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.page-home-modern .hm-product-card .hm-product-name-link {
  text-decoration: none;
  color: inherit;
}

.page-home-modern .hm-product-card .hm-product-name-link:hover .hm-product-name {
  color: var(--hm-color-accent);
}

.page-home-modern .hm-product-card .hm-product-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  color: var(--hm-color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home-modern .hm-product-card .hm-product-meta {
  font-size: 0.8rem;
  color: var(--hm-color-text-muted);
  margin-bottom: 0.4rem;
}

.page-home-modern .hm-product-card .hm-product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.page-home-modern .hm-product-card .hm-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hm-color-text);
  letter-spacing: -0.02em;
}

.page-home-modern .hm-product-card .hm-product-price-old {
  font-size: 0.88rem;
  color: var(--hm-color-text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.page-home-modern .hm-product-card .hm-product-deposit {
  font-size: 0.78rem;
  color: var(--hm-color-text-muted);
  margin-bottom: 0;
}

.page-home-modern .hm-product-card .hm-product-contact-only {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hm-color-accent, #0d9488);
  margin: 0.5rem 0 0;
}

.page-home-modern .hm-product-card .hm-product-footer {
  padding: 0 1.1rem 1rem;
  flex-shrink: 0;
  margin-top: auto;
}

/* Reset global .addproduct (position:absolute) so button stays in card */
.page-home-modern .hm-product-card .hm-product-add.addproduct {
  position: static;
  bottom: auto;
  right: auto;
  width: 100%;
}

.page-home-modern .hm-product-card .hm-product-add {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid var(--hm-color-accent);
  background: transparent;
  color: var(--hm-color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--hm-radius-sm);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  flex-shrink: 0;
}

.page-home-modern .hm-product-card .hm-product-add:hover:not(:disabled) {
  background: var(--hm-color-accent);
  color: #fff;
  transform: translateY(-1px);
}

.page-home-modern .hm-product-card .hm-product-add:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-home-modern .hm-product-card .hm-product-add img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ----- Video / Quality ----- */
.page-home-modern .hm-video-section {
  padding: 4rem 0;
}

.page-home-modern .hm-video-wrap {
  border-radius: var(--hm-radius);
  overflow: hidden;
  box-shadow: var(--hm-shadow-md);
  margin-bottom: 2rem;
  background: #000;
}

.page-home-modern .hm-video-wrap iframe,
.page-home-modern .hm-video-wrap video {
  width: 100%;
  display: block;
}

.page-home-modern .hm-video-wrap iframe {
  aspect-ratio: 16/9;
  height: auto;
  min-height: 320px;
}

.page-home-modern .hm-video-wrap video {
  max-height: 480px;
  object-fit: contain;
}

.page-home-modern .hm-video-caption {
  font-size: 0.9rem;
  color: var(--hm-color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.page-home-modern .hm-quality-only {
  padding: 3rem 0 4rem;
}

.page-home-modern .hm-quality-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: var(--hm-color-surface);
  border-radius: var(--hm-radius);
  box-shadow: var(--hm-shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.12);
}

.page-home-modern .hm-quality-title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  color: var(--hm-color-text);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.page-home-modern .hm-quality-desc {
  font-size: 1rem;
  color: var(--hm-color-text-muted);
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

.page-home-modern .hm-quality-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-home-modern .hm-quality-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--hm-color-text);
  padding: 0.5rem 0;
}

.page-home-modern .hm-quality-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--hm-color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  mask-size: 14px 14px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: 14px 14px;
}

@media (max-width: 576px) {
  .page-home-modern .hm-quality-card {
    padding: 1.5rem 1.25rem;
  }
  .page-home-modern .hm-quality-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* Внешняя оболочка: один блок, внутри — пункты */
.page-home-modern .hm-faq-block {
  background: var(--hm-color-bg);
  border-radius: var(--hm-radius);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

@media (max-width: 576px) {
  .page-home-modern .hm-faq-block {
    padding: 1.25rem;
  }
}

.page-home-modern .hm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-home-modern .hm-faq-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--hm-color-surface);
  border-radius: var(--hm-radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--hm-shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.12);
}

.page-home-modern .hm-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.page-home-modern .hm-faq-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--hm-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.page-home-modern .hm-faq-content {
  min-width: 0;
  flex: 1;
}

.page-home-modern .hm-faq-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hm-color-text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.page-home-modern .hm-faq-desc {
  font-size: 0.95rem;
  color: var(--hm-color-text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 576px) {
  .page-home-modern .hm-faq-item {
    padding: 1.25rem 1.5rem;
  }
}

/* ----- App CTA ----- */
.page-home-modern .hm-app {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2f1 100%);
  padding: 4rem 0;
}

.page-home-modern .hm-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 991px) {
  .page-home-modern .hm-app-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.page-home-modern .hm-app-img {
  border-radius: var(--hm-radius);
  overflow: hidden;
}

.page-home-modern .hm-app-img img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

.page-home-modern .hm-app-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--hm-color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.page-home-modern .hm-app-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.page-home-modern .hm-app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-home-modern .hm-app-buttons a {
  display: inline-block;
}

.page-home-modern .hm-app-buttons img {
  height: 44px;
  width: auto;
  display: block;
}

/* ----- Footer ----- */
.page-home-modern .footer {
  background: var(--hm-color-surface);
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* ----- Alert ----- */
.page-home-modern .hm-alert {
  margin-bottom: 1.5rem;
  border-radius: var(--hm-radius-sm);
  border: none;
  background: #d1fae5;
  color: #065f46;
}

/* ----- Responsive tweaks ----- */
@media (max-width: 767px) {
  .page-home-modern .hm-hero { min-height: 50vh; }
  .page-home-modern .hm-hero .carousel-item { min-height: 50vh; }
  .page-home-modern .hm-section { padding: 2.5rem 0; }
}
