/* PowerTech GCC — 2026 Home redesign */

:root {
  --home-ink: #0c0d1a;
  --home-navy: #16183a;
  --home-violet: #3d3f8f;
  --home-gold: #c9a227;
  --home-gold-dim: #a47b1a;
  --home-mist: #f3f4f8;
  --home-paper: #fafafb;
  --home-muted: #8b8ca8;
  --home-line: rgba(255, 255, 255, 0.12);
}

body.home-2026 {
  background: var(--home-paper);
  color: var(--home-ink);
  overflow-x: hidden;
}

/* —— Hero —— */
.hm-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  background: var(--home-ink);
  color: #fff;
  overflow: hidden;
}

.hm-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hm-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.08);
  animation: hm-zoom 22s ease-out forwards;
}

.hm-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(12, 13, 26, 0.97) 0%, rgba(12, 13, 26, 0.55) 42%, rgba(12, 13, 26, 0.35) 100%),
    linear-gradient(90deg, rgba(12, 13, 26, 0.85) 0%, transparent 55%);
  z-index: 1;
}

.hm-hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hm-hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 7rem) var(--pt-pad-x, 1.5rem) clamp(2.5rem, 5vw, 4.5rem);
}

.hm-brand {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: var(--pt-fs-display, clamp(1.85rem, 1.35rem + 2.2vw, 3.25rem));
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
  opacity: 0;
  animation: hm-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  word-break: break-word;
  max-width: 100%;
}

.hm-brand span {
  display: block;
  background: linear-gradient(105deg, #fff 20%, #c9a227 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hm-shine 8s linear infinite;
}

.hm-headline {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1rem + 1.2vw, 1.85rem);
  line-height: 1.25;
  max-width: 28ch;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  animation: hm-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.hm-lead {
  font-size: var(--pt-fs-lead, 1.05rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 36rem;
  line-height: 1.65;
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: hm-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.hm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: hm-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hm-btn-primary {
  background: var(--home-gold);
  color: var(--home-ink);
}

.hm-btn-primary:hover {
  background: #e0b82e;
  transform: translateY(-2px);
}

.hm-btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.hm-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hm-hero-foot {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--home-line);
  background: rgba(12, 13, 26, 0.55);
  backdrop-filter: blur(12px);
}

@media (min-width: 768px) {
  .hm-hero-foot {
    display: flex;
    flex-wrap: wrap;
  }
}

.hm-hero-stat {
  flex: 1 1 140px;
  padding: 1rem 1.15rem;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  min-width: 0;
}

@media (min-width: 768px) {
  .hm-hero-stat {
    border-bottom: none;
    padding: 1.35rem 1.5rem;
  }

  .hm-hero-stat:last-child {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .hm-hero-stat:nth-child(2n) {
    border-right: none;
  }

  .hm-hero-stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

.hm-hero-stat strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 800;
  color: var(--home-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hm-hero-stat span {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* —— Marquee band —— */
.hm-ticker {
  background: var(--home-gold);
  color: var(--home-ink);
  overflow: hidden;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hm-ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: hm-marquee 28s linear infinite;
}

.hm-ticker-track span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.75rem;
  white-space: nowrap;
}

.hm-ticker-track span::after {
  content: "◆";
  margin-left: 1.75rem;
  opacity: 0.45;
  font-size: 0.55rem;
  vertical-align: middle;
}

/* —— Section shell —— */
.hm-section {
  padding: var(--pt-section-y, clamp(3rem, 6vw, 5.5rem)) 0;
}

.hm-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pt-pad-x, 1.5rem);
}

@media (min-width: 1600px) {
  .hm-wrap {
    max-width: 1280px;
  }
}

.hm-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-gold-dim);
  margin-bottom: 0.85rem;
}

.hm-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--home-gold);
}

.hm-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: var(--pt-fs-h1, clamp(1.55rem, 1.2rem + 1.5vw, 2.35rem));
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--home-ink);
  max-width: 22ch;
}

.hm-title-md {
  font-size: var(--pt-fs-h2, clamp(1.35rem, 1.1rem + 1.1vw, 2rem));
  max-width: 28ch;
}

.hm-title-sm {
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.75rem);
  max-width: 30ch;
}

.hm-title-light {
  color: #fff;
}

.hm-copy {
  font-size: var(--pt-fs-lead, 1.05rem);
  line-height: 1.7;
  color: #5a5b75;
  max-width: 38rem;
}

/* —— About editorial (collage + tower bg) —— */
.hm-about {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hm-about-tower {
  position: absolute;
  right: -2%;
  top: 0;
  width: min(58%, 560px);
  height: 100%;
  background: url("../images/an-img-01.png") right center / contain no-repeat;
  opacity: 0.14;
  filter: invert(1) contrast(1.1);
  pointer-events: none;
  z-index: 0;
}

.hm-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 960px) {
  .hm-about-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

.hm-about-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  position: relative;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .hm-about-collage {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .hm-about-collage {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .hm-about-seal {
    width: 5.5rem;
    height: 5.5rem;
  }

  .hm-about-seal b {
    font-size: 0.72rem;
  }

  .hm-about-exp {
    min-height: 110px;
    padding: 0.9rem 1rem;
  }

  .hm-about-exp strong {
    font-size: 1.05rem;
  }

  .hm-about-collage-side {
    min-height: 110px;
  }
}

.hm-about-collage-main {
  grid-column: 1 / -1;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.hm-about-collage-main img,
.hm-about-collage-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hm-about-exp {
  background: linear-gradient(145deg, #1e1f45, #32367a);
  border-radius: 1.25rem;
  padding: 1.25rem 1.35rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}

.hm-about-exp strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #c9a227;
  line-height: 1.2;
}

.hm-about-exp span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.hm-about-collage-side {
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 140px;
}

.hm-about-seal {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 32px rgba(30, 31, 69, 0.18);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  padding: 0.5rem;
}

.hm-about-seal b {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #1e1f45;
  display: block;
  line-height: 1.15;
}

.hm-about-seal small {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a47b1a;
  font-weight: 700;
}

.hm-about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .hm-about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.hm-about-feat h4 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: #1e1f45;
}

.hm-about-feat p {
  margin: 0;
  font-size: 0.88rem;
  color: #5a5b75;
  line-height: 1.5;
}

.hm-about-feat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(164, 123, 26, 0.15);
  color: #a47b1a;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.hm-about-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.hm-about-call {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.hm-about-call-ico {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #1e1f45;
  color: #c9a227;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.hm-about-call strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  color: #1e1f45;
}

.hm-about-call span {
  font-size: 0.75rem;
  color: #5a5b75;
}

/* —— Trading image cards (3×2) —— */
.hm-trading {
  background: #f5f6fa;
}

.hm-trade-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .hm-trade-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .hm-trade-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hm-trade-card {
  position: relative;
  display: block;
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  color: #fff;
  background: #1e1f45;
}

.hm-trade-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hm-trade-card:hover img {
  transform: scale(1.07);
}

.hm-trade-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(12, 13, 26, 0.88) 100%);
}

.hm-trade-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.25rem 1.35rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.hm-trade-card-body h3 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.2;
}

.hm-trade-bolt {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

/* —— Testimonials cards slider —— */
.hm-testimonials {
  background: linear-gradient(180deg, #eef0f8 0%, #f8f9fc 100%);
}

.hm-testi-viewport {
  overflow: hidden;
  margin-top: 2.5rem;
}

.hm-testi-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hm-testi-slide {
  flex: 0 0 100%;
  padding: 0 0.25rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hm-testi-slide {
    flex: 0 0 33.333%;
    padding: 0 0.55rem;
  }
}

@media (min-width: 700px) and (max-width: 1099px) {
  .hm-testi-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1100px) {
  .hm-testi-slide {
    flex: 0 0 33.333%;
  }
}

.hm-testi-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid rgba(66, 68, 151, 0.08);
  box-shadow: 0 12px 36px rgba(30, 31, 69, 0.06);
  display: flex;
  flex-direction: column;
}

.hm-testi-stars {
  color: #c9a227;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.hm-testi-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #3a3b55;
  flex: 1;
}

.hm-testi-card footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eceef5;
  font-weight: 700;
  font-family: "Syne", sans-serif;
  color: #1e1f45;
  font-size: 0.95rem;
}

.hm-testi-card footer span:first-child {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1e1f45;
  margin-top: 0;
}

.hm-testi-card footer span:last-child {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: #8b8ca8;
  margin-top: 0.2rem;
}

.hm-testi-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.hm-testi-nav button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #d8dae8;
  background: #fff;
  color: #1e1f45;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hm-testi-nav button:hover {
  background: #424497;
  border-color: #424497;
  color: #fff;
}

.hm-testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.hm-testi-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: none;
  background: #c5c7d8;
  padding: 0;
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.hm-testi-dots button.is-active {
  width: 1.5rem;
  background: #a47b1a;
}

/* —— Products —— */
.hm-products {
  background: var(--home-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hm-products::before {
  content: "POWER";
  position: absolute;
  right: -4%;
  top: 8%;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 22vw, 18rem);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  letter-spacing: -0.05em;
}

.hm-product-list {
  margin-top: 3rem;
  border-top: 1px solid var(--home-line);
}

.hm-product-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--home-line);
  text-decoration: none;
  color: inherit;
  transition: padding 0.35s ease, background 0.35s ease;
  position: relative;
}

@media (max-width: 480px) {
  .hm-product-row {
    gap: 0.65rem;
    padding: 1.1rem 0;
  }

  .hm-product-arrow {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.95rem;
  }
}

.hm-product-row:hover {
  padding-left: 0.75rem;
}

.hm-product-num {
  font-family: "Syne", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--home-gold);
  letter-spacing: 0.1em;
}

.hm-product-name {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 1rem + 2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  transition: color 0.3s ease;
  word-break: break-word;
}

.hm-product-row:hover .hm-product-name {
  color: var(--home-gold);
}

.hm-product-desc {
  display: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 28rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hm-product-desc {
    display: block;
  }

  .hm-product-row {
    grid-template-columns: 4rem 1fr 1.2fr auto;
  }
}

.hm-product-arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1rem;
}

.hm-product-row:hover .hm-product-arrow {
  background: var(--home-gold);
  border-color: var(--home-gold);
  color: var(--home-ink);
  transform: rotate(-45deg);
}

/* —— Services —— */
.hm-services {
  background: var(--home-mist);
}

.hm-service-stack {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hm-service {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

@media (min-width: 900px) {
  .hm-service {
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 280px;
  }

  .hm-service:nth-child(even) .hm-service-media {
    order: 2;
  }
}

.hm-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(22, 24, 58, 0.12);
}

.hm-service-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: var(--home-navy);
}

.hm-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.hm-service:hover .hm-service-media img {
  transform: scale(1.06);
}

.hm-service-body {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hm-service-body h3 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.hm-service-body p {
  margin: 0;
  color: #5a5b75;
  line-height: 1.6;
  max-width: 34rem;
}

.hm-service-link {
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--home-violet);
  font-size: 0.9rem;
}

.hm-service:hover .hm-service-link {
  color: var(--home-gold-dim);
}

/* —— Brands strip —— */
.hm-brands {
  background: #fff;
  border-block: 1px solid #eceef5;
}

.hm-brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hm-brands-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.hm-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hm-brand-pills span {
  padding: 0.55rem 1rem;
  border: 1px solid #d8dae8;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--home-violet);
}

.hm-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.hm-mosaic a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--home-mist);
}

.hm-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.hm-mosaic a:hover img {
  transform: scale(1.08);
}

/* —— Portfolio —— */
.hm-portfolio {
  background: var(--home-navy);
  color: #fff;
}

.hm-portfolio-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hm-port-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hm-port-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hm-port-item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: #fff;
  background: #0c0d1a;
}

.hm-port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s ease, opacity 0.4s ease;
}

.hm-port-item:hover img {
  transform: scale(1.08);
  opacity: 0.5;
}

.hm-port-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem;
  background: linear-gradient(transparent, rgba(12, 13, 26, 0.92));
}

.hm-port-cap h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
}

.hm-port-cap p {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* —— Why —— */
.hm-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid #e0e2ec;
}

@media (min-width: 768px) {
  .hm-why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hm-why-item {
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid #e0e2ec;
}

@media (min-width: 768px) {
  .hm-why-item {
    border-bottom: none;
    border-right: 1px solid #e0e2ec;
    padding: 2rem 1.75rem 2rem 0;
  }

  .hm-why-item:last-child {
    border-right: none;
    padding-right: 0;
  }

  .hm-why-item:not(:first-child) {
    padding-left: 1.75rem;
  }
}

.hm-why-item em {
  font-family: "Syne", sans-serif;
  font-style: normal;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: rgba(61, 63, 143, 0.18);
  line-height: 1;
  display: block;
}

.hm-why-item h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
}

.hm-why-item p {
  margin: 0;
  font-size: 0.92rem;
  color: #5a5b75;
  line-height: 1.55;
}

/* —— Testimonials —— */
.hm-quote-band {
  background: linear-gradient(135deg, var(--home-violet) 0%, var(--home-navy) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hm-quote-band blockquote {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 42rem;
  margin: 1.5rem auto 0;
}

.hm-quote-band footer {
  margin-top: 1.5rem;
  color: var(--home-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

/* —— CTA —— */
.hm-cta {
  position: relative;
  overflow: hidden;
}

.hm-cta-panel {
  background: var(--home-ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
}

@media (min-width: 900px) {
  .hm-cta-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hm-cta-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  filter: blur(60px);
  right: -40px;
  top: -60px;
  pointer-events: none;
}

.hm-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.hm-form input,
.hm-form select,
.hm-form textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  border-radius: 0;
  outline: none;
}

.hm-form input::placeholder,
.hm-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hm-form select {
  color: rgba(255, 255, 255, 0.75);
}

.hm-form select option {
  color: #111;
}

.hm-form input:focus,
.hm-form select:focus,
.hm-form textarea:focus {
  border-color: var(--home-gold);
}

.hm-form button {
  padding: 1.05rem;
  background: var(--home-gold);
  color: var(--home-ink);
  border: none;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.hm-form button:hover {
  background: #e0b82e;
}

/* —— Clients —— */
.hm-clients {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid #eceef5;
  overflow: hidden;
}

.hm-clients p {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a9bb0;
  margin: 0 0 1.5rem;
}

.hm-clients-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: hm-marquee 35s linear infinite;
  align-items: center;
}

.hm-clients-track img {
  height: 84px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
}

.hm-clients-track img:hover {
  opacity: 1;
  filter: none;
}

/* —— FAQ compact —— */
.hm-faq {
  background: var(--home-mist);
}

.hm-faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hm-faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}

.hm-faq .faq-item {
  background: #fff;
}

/* —— Reveal —— */
.hm-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hm-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hm-d1 { transition-delay: 0.1s; }
.hm-d2 { transition-delay: 0.2s; }
.hm-d3 { transition-delay: 0.3s; }

/* —— Placeholder —— */
.hm-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background:
    linear-gradient(145deg, #2a2c5c, #16183a);
  color: rgba(255, 255, 255, 0.45);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* —— Animations —— */
@keyframes hm-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hm-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

@keyframes hm-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes hm-shine {
  from { background-position: 0% center; }
  to { background-position: 200% center; }
}

@media (prefers-reduced-motion: reduce) {
  .hm-hero-media img,
  .hm-ticker-track,
  .hm-clients-track,
  .hm-brand span,
  .hm-headline,
  .hm-lead,
  .hm-actions,
  .hm-brand {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hm-reveal {
    opacity: 1;
    transform: none;
  }
}

/* —— Extra breakpoints: tablet / small laptop / large desktop —— */
@media (max-width: 1024px) {
  .hm-service {
    min-height: 0;
  }

  .hm-service-media {
    min-height: 200px;
  }

  .hm-port-item {
    aspect-ratio: 4 / 5;
  }

  .hm-cta-panel {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .hm-actions {
    width: 100%;
  }

  .hm-btn {
    width: 100%;
    justify-content: center;
  }

  .hm-about-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hm-trade-card {
    aspect-ratio: 16 / 11;
  }

  .hm-trade-card-body h3 {
    font-size: 1rem;
  }

  .hm-testi-card {
    padding: 1.35rem;
  }

  .hm-rel,
  .pp-rel {
    grid-template-columns: 90px 1fr;
  }

  .hm-clients-track img {
    height: 60px;
  }
}

@media (min-width: 1400px) {
  .hm-hero {
    min-height: min(100svh, 920px);
  }
}
