/* =========================
   root.html — 1-ci səhifə
   Section 1: Orbit Hero
   styles/root.css
   ========================= */

.gr-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.35), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.35), transparent 60%),
    radial-gradient(circle at 50% 110%, rgba(44, 167, 255, 0.18), transparent 70%),
    linear-gradient(150deg, #020813, #050b18 45%, #040615);
}

.gr-hero-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gr-hero-orbit {
  position: absolute;
  inset: 10% 5% 18% 10%;
  background:
    radial-gradient(circle at 20% 0, rgba(79, 242, 255, 0.6), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 95, 183, 0.55), transparent 60%);
  filter: blur(var(--gr-blur-strong));
  opacity: 0.7;
  pointer-events: none;
}

.gr-hero-ribbon {
  position: absolute;
  left: -10%;
  right: -10%;
  top: 54%;
  height: 160px;
  background: conic-gradient(
    from 210deg,
    rgba(79, 242, 255, 0.1),
    rgba(255, 95, 183, 0.45),
    rgba(79, 242, 255, 0.3),
    transparent
  );
  opacity: 0.3;
  filter: blur(32px);
  transform: translateY(-50%) rotate(-3deg);
  pointer-events: none;
}

/* Mətn bloku */

.gr-hero-copy {
  position: relative;
  z-index: 1;
  padding: 22px 24px 24px;
  border-radius: var(--gr-radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(8, 16, 36, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--gr-shadow-soft);
}

.gr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--gr-radius-pill);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gr-text-muted);
  background: rgba(8, 19, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gr-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, #ffffff, #4ff2ff);
  box-shadow: 0 0 14px rgba(79, 242, 255, 1);
}

.gr-hero-heading {
  margin: 16px 0 10px;
  font-family: "GlowRiverDisplay", system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.gr-hero-heading-glow {
  display: inline-block;
  background: linear-gradient(120deg, #4ff2ff, #00ffc0, #ff5fb7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 14px rgba(79, 242, 255, 0.8),
    0 0 28px rgba(0, 255, 192, 0.7);
  animation: gr-hero-neon 3.2s ease-in-out infinite alternate;
}

.gr-hero-lead {
  margin: 10px 0 8px;
  font-size: 15px;
  color: var(--gr-text);
}

.gr-hero-text {
  margin: 6px 0 12px;
  font-size: 14px;
  color: var(--gr-text-muted);
}

.gr-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.gr-chip {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.6), transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--gr-text);
  white-space: nowrap;
}

.gr-hero-flowrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

/* İşıq “metri” */

.gr-hero-meter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: center;
  font-size: 12px;
  color: var(--gr-text-muted);
}

.gr-hero-meter-label {
  grid-column: 1 / 2;
}

.gr-hero-meter-value {
  grid-column: 1 / 3;
}

.gr-hero-meter-bar {
  position: relative;
  grid-column: 2 / 3;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.gr-hero-meter-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #00ffc0, #4ff2ff, #ff5fb7);
  transform-origin: left center;
  animation: gr-meter-flow 4s ease-in-out infinite;
}

/* Şəkil bloku */

.gr-hero-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  justify-items: center;
}

.gr-hero-shot {
  position: relative;
  padding: 10px;
  border-radius: var(--gr-radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 65%),
    rgba(7, 14, 32, 0.96);
  border: 1px solid var(--gr-border-soft);
  box-shadow: var(--gr-shadow-soft);
  overflow: hidden;
}

.gr-hero-shot img {
  border-radius: 18px;
}

.gr-hero-shot figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--gr-text-muted);
}

/* Orbit yerləşmə */

.gr-hero-shot--main {
  max-width: 340px;
  transform: translateX(6px);
}

.gr-hero-shot--pill {
  max-width: 250px;
  transform: translate(40px, -26px) rotate(7deg);
}

.gr-hero-shot--vertical {
  max-width: 230px;
  transform: translate(-40px, -22px) rotate(-6deg);
}

/* Hover effekti: parıltı + yüngül hərəkət */

.gr-hero-shot::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.4), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 95, 183, 0.35), transparent 60%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--gr-transition-med), transform var(--gr-transition-med);
}

.gr-hero-shot:hover::before {
  opacity: 1;
  transform: translate3d(0, -4px, 0);
}

.gr-hero-shot:hover {
  transform: translateY(-4px) rotate3d(0, 1, 0, 4deg);
  transition: transform var(--gr-transition-med);
}

/* Tag cloud */

.gr-hero-tag-cloud {
  position: absolute;
  right: 4%;
  top: 10%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--gr-radius-pill);
  background: rgba(3, 10, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 22px rgba(79, 242, 255, 0.9);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, #ffffff, #ff5fb7);
  box-shadow: 0 0 14px rgba(255, 95, 183, 0.9);
}

.gr-hero-tag-text {
  white-space: nowrap;
}

/* Animasiya açarları */

@keyframes gr-hero-neon {
  0% {
    text-shadow:
      0 0 10px rgba(79, 242, 255, 0.7),
      0 0 18px rgba(0, 255, 192, 0.6);
  }
  100% {
    text-shadow:
      0 0 18px rgba(79, 242, 255, 1),
      0 0 32px rgba(0, 255, 192, 0.9),
      0 0 42px rgba(255, 95, 183, 0.8);
  }
}

@keyframes gr-meter-flow {
  0% {
    transform: scaleX(0.4);
  }
  40% {
    transform: scaleX(0.85);
  }
  65% {
    transform: scaleX(0.6);
  }
  100% {
    transform: scaleX(0.82);
  }
}

@keyframes gr-soft-pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 18px rgba(79, 242, 255, 0.7);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 0 26px rgba(79, 242, 255, 1);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 18px rgba(79, 242, 255, 0.7);
  }
}

/* =========================
   RESPONSIVE — hero
   ========================= */

@media (max-width: 1024px) {
  .gr-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .gr-hero-preview {
    justify-items: flex-start;
  }

  .gr-hero-shot--main {
    transform: translateX(0);
  }

  .gr-hero-shot--pill {
    transform: translate(10px, -10px) rotate(4deg);
  }

  .gr-hero-shot--vertical {
    transform: translate(0, -12px) rotate(-3deg);
  }

  .gr-hero-tag-cloud {
    right: 8%;
    top: 6%;
  }
}

@media (max-width: 768px) {
  .gr-hero {
    padding-inline: 5vw;
  }

  .gr-hero-copy {
    padding: 18px 18px 20px;
  }

  .gr-hero-heading {
    font-size: 26px;
  }

  .gr-hero-preview {
    justify-items: center;
  }

  .gr-hero-shot--pill,
  .gr-hero-shot--vertical {
    transform: translate(0, -10px) rotate(0deg);
  }

  .gr-hero-tag-cloud {
    top: auto;
    bottom: 4%;
    right: 10%;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .gr-hero {
    padding-inline: 16px;
  }

  .gr-hero-layout {
    gap: 24px;
  }

  .gr-hero-heading {
    font-size: 22px;
  }

  .gr-hero-chips {
    flex-direction: column;
    align-items: flex-start;
  }

  .gr-hero-flowrow {
    flex-direction: column;
    align-items: stretch;
  }

  .gr-hero-preview {
    gap: 14px;
  }

  .gr-hero-shot--main,
  .gr-hero-shot--pill,
  .gr-hero-shot--vertical {
    transform: translate(0, 0);
    max-width: 320px;
  }

  .gr-hero-tag-cloud {
    position: static;
    margin-top: 6px;
  }
}
/* =========================
   SECTION 2 — Ambient layers
   ========================= */

.gr-ambient {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.22), transparent 60%),
    radial-gradient(circle at 100% 10%, rgba(255, 95, 183, 0.22), transparent 60%),
    linear-gradient(145deg, #020711, #050b19 50%, #050814);
}

.gr-ambient-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: flex-start;
}

.gr-section-heading {
  margin: 0 0 10px;
  font-family: "GlowRiverDisplay", system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.3;
}

.gr-section-heading-glow {
  display: inline-block;
  background: linear-gradient(120deg, #4ff2ff, #00ffc0, #ff5fb7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 12px rgba(79, 242, 255, 0.75),
    0 0 22px rgba(0, 255, 192, 0.7);
}

.gr-section-lead {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--gr-text);
}

.gr-section-text {
  margin: 4px 0 14px;
  font-size: 14px;
  color: var(--gr-text-muted);
}

.gr-ambient-layerlist {
  margin-top: 6px;
  border-radius: var(--gr-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(14, 29, 58, 0.96), rgba(8, 18, 38, 0.96));
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}

.gr-ambient-step {
  position: relative;
  padding-left: 12px;
}

.gr-ambient-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: 70%;
  border-radius: 999px;
  background: linear-gradient(180deg, #4ff2ff, #ff5fb7);
  opacity: 0.85;
}

.gr-ambient-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e7f6ff;
  background: rgba(2, 11, 26, 0.9);
  border: 1px solid rgba(79, 242, 255, 0.5);
  margin-bottom: 4px;
}

.gr-ambient-step p {
  margin: 0;
  font-size: 13px;
  color: var(--gr-text-muted);
}

/* Otaq kartları (amma klassik kart kimı görünmür) */

.gr-ambient-rooms {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.gr-ambient-room {
  position: relative;
  padding: 10px 12px 12px;
  border-radius: var(--gr-radius-md);
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.2), transparent 65%),
    rgba(7, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.gr-ambient-room--wide {
  grid-column: 1 / -1;
}

.gr-ambient-room-media {
  max-width: 130px;
}

.gr-ambient-room-body h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.gr-ambient-room-body p {
  margin: 0;
  font-size: 13px;
  color: var(--gr-text-muted);
}

/* Hover: yüngül glow */

.gr-ambient-room::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.35), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(255, 95, 183, 0.32), transparent 65%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity var(--gr-transition-med), transform var(--gr-transition-med);
}

.gr-ambient-room:hover::after {
  opacity: 1;
  transform: translate3d(0, -3px, 0);
}

/* =========================
   SECTION 3 — Smart control
   ========================= */

.gr-smart {
  background:
    radial-gradient(circle at 10% 0, rgba(79, 242, 255, 0.3), transparent 60%),
    radial-gradient(circle at 90% 0, rgba(255, 95, 183, 0.3), transparent 60%),
    linear-gradient(160deg, #020712, #050c1b 50%, #030812);
}

.gr-smart-shell {
  max-width: 1200px;
  margin-inline: auto;
  border-radius: 32px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(7, 16, 34, 0.96);
  box-shadow: var(--gr-shadow-soft);
}

.gr-smart-header {
  max-width: 640px;
  margin-bottom: 18px;
}

.gr-smart-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e7f6ff;
  background: rgba(3, 12, 26, 0.94);
  border: 1px solid rgba(79, 242, 255, 0.6);
}

.gr-smart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.gr-smart-block {
  padding: 14px 16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(10, 24, 51, 0.96), rgba(8, 17, 37, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-smart-block h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--gr-text);
}

.gr-smart-block p {
  margin: 0 0 6px;
}

.gr-smart-block ul {
  margin: 0;
  padding-left: 18px;
}

.gr-smart-block li {
  margin-bottom: 4px;
}

/* Vizual blok */

.gr-smart-visual {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
  justify-items: center;
}

.gr-smart-mainphone {
  max-width: 220px;
  padding: 9px 10px 10px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.25), transparent 65%),
    rgba(5, 13, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 22px rgba(79, 242, 255, 0.8);
}

.gr-smart-mainphone figcaption {
  margin-top: 6px;
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-smart-thumbs {
  display: flex;
  gap: 10px;
}

.gr-smart-thumb {
  max-width: 120px;
  padding: 6px 7px 8px;
  border-radius: 18px;
  background: rgba(4, 11, 25, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gr-smart-thumb figcaption {
  margin-top: 4px;
  font-size: 11px;
  color: var(--gr-text-muted);
}

/* =========================
   SECTION 4 — Ideas matrix
   ========================= */

.gr-ideas {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.18), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.18), transparent 60%),
    linear-gradient(145deg, #020712, #050b19 55%, #030711);
}

.gr-ideas-layout {
  max-width: 1200px;
  margin-inline: auto;
}

.gr-ideas-header {
  max-width: 680px;
  margin-bottom: 18px;
}

.gr-ideas-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(120px, auto);
  gap: 14px;
}

/* Tekst kartlar */

.gr-idea-card {
  padding: 10px 12px 12px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(7, 18, 38, 0.98), rgba(6, 15, 33, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-idea-card h3 {
  margin: 0 0 5px;
  font-size: 14px;
  color: var(--gr-text);
}

/* Placement — qeyri-adi mozaika */

.gr-idea-card--bedroom {
  grid-column: 1 / 3;
}

.gr-idea-card--gaming {
  grid-column: 3 / 5;
}

.gr-idea-card--hallway {
  grid-column: 1 / 2;
}

.gr-idea-card--kitchen {
  grid-column: 2 / 4;
}

/* Şəkilli bloklar */

.gr-idea-photo {
  position: relative;
  padding: 8px 9px 9px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.28), transparent 65%),
    rgba(5, 13, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-idea-photo figcaption {
  margin-top: 5px;
}

.gr-idea-photo--wide {
  grid-column: 4 / 5;
  grid-row: 2 / 4;
}

.gr-idea-photo--tall {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}

/* Hover effekti */

.gr-idea-card:hover,
.gr-idea-photo:hover {
  box-shadow: 0 0 22px rgba(79, 242, 255, 0.7);
  transform: translateY(-3px);
  transition:
    box-shadow var(--gr-transition-med),
    transform var(--gr-transition-med);
}

/* =========================
   RESPONSIVE — sections 2–4
   ========================= */

@media (max-width: 1024px) {
  .gr-ambient-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .gr-ambient-rooms {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .gr-smart-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gr-smart-visual {
    justify-items: flex-start;
  }

  .gr-ideas-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gr-idea-card--bedroom {
    grid-column: 1 / 3;
  }
  .gr-idea-card--gaming {
    grid-column: 2 / 4;
  }
  .gr-idea-card--hallway {
    grid-column: 1 / 2;
  }
  .gr-idea-card--kitchen {
    grid-column: 2 / 4;
  }
  .gr-idea-photo--wide {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
  }
  .gr-idea-photo--tall {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
  }
}

@media (max-width: 768px) {
  .gr-ambient-rooms {
    grid-template-columns: minmax(0, 1fr);
  }

  .gr-ambient-room {
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
  }

  .gr-smart-shell {
    padding: 20px 18px 18px;
  }

  .gr-smart-visual {
    justify-items: center;
  }

  .gr-ideas-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gr-idea-card--bedroom,
  .gr-idea-card--gaming,
  .gr-idea-card--hallway,
  .gr-idea-card--kitchen {
    grid-column: auto / auto;
  }

  .gr-idea-photo--wide,
  .gr-idea-photo--tall {
    grid-column: auto / auto;
    grid-row: auto / auto;
  }
}

@media (max-width: 480px) {
  .gr-ambient-layout {
    gap: 22px;
  }

  .gr-ambient-layerlist {
    padding: 10px 11px;
  }

  .gr-ambient-room {
    grid-template-columns: minmax(0, 1fr);
  }

  .gr-ambient-room-media {
    max-width: 100%;
  }

  .gr-smart-thumbs {
    justify-content: center;
  }

  .gr-ideas-matrix {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* =========================
   SECTION 5 — Color spectrum
   ========================= */

.gr-spectrum {
  background:
    radial-gradient(circle at 10% 0, rgba(79, 242, 255, 0.2), transparent 60%),
    radial-gradient(circle at 90% 0, rgba(255, 95, 183, 0.2), transparent 60%),
    linear-gradient(155deg, #020813, #050b1a 55%, #030711);
}

.gr-spectrum-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.gr-spectrum-copy {
  max-width: 560px;
}

.gr-spectrum-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
}

.gr-spectrum-pill {
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 15, 33, 0.96);
  color: var(--gr-text-muted);
  white-space: nowrap;
}

.gr-spectrum-pill--warm {
  border-color: rgba(255, 210, 150, 0.8);
}
.gr-spectrum-pill--neutral {
  border-color: rgba(210, 230, 255, 0.8);
}
.gr-spectrum-pill--cool {
  border-color: rgba(170, 210, 255, 0.9);
}

.gr-spectrum-bar {
  position: relative;
  margin-bottom: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #ffb36b,
    #ffe1b0,
    #ffffff,
    #c8f0ff,
    #4ff2ff
  );
  overflow: hidden;
}

.gr-spectrum-bar-fill {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 50%, rgba(255, 255, 255, 0.4), transparent 70%);
  mix-blend-mode: screen;
  animation: gr-spectrum-scan 4.5s linear infinite;
}

.gr-spectrum-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  justify-items: center;
}

.gr-spectrum-shot {
  max-width: 260px;
  padding: 9px 10px 10px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-spectrum-shot figcaption {
  margin-top: 5px;
}

/* =========================
   SECTION 6 — Strip showcase
   ========================= */

.gr-strips {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.16), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.16), transparent 60%),
    linear-gradient(145deg, #020713, #050b19 55%, #020610);
}

.gr-strips-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.gr-strips-column--images {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.gr-strips-card {
  max-width: 260px;
  padding: 9px 10px 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-strips-card--top {
  transform: translateX(14px) rotate(-3deg);
}
.gr-strips-card--bottom {
  transform: translateX(-10px) rotate(3deg);
}

.gr-strips-card figcaption {
  margin-top: 5px;
}

.gr-strips-column--text {
  max-width: 520px;
}

.gr-strips-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-strips-list li {
  margin-bottom: 4px;
}

/* =========================
   SECTION 7 — Install path
   ========================= */

.gr-install {
  background:
    radial-gradient(circle at 50% 0, rgba(79, 242, 255, 0.2), transparent 60%),
    linear-gradient(160deg, #020712, #050b19 50%, #02050d);
}

.gr-install-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.gr-install-steps {
  max-width: 580px;
}

.gr-install-list {
  margin: 10px 0 0;
  padding-left: 20px;
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-install-list li {
  margin-bottom: 6px;
}

.gr-install-photos {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.gr-install-photo {
  max-width: 260px;
  padding: 9px 10px 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-install-photo figcaption {
  margin-top: 5px;
}

/* Animasiya üçün spectrum bar */
@keyframes gr-spectrum-scan {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(60%);
  }
}

/* =========================
   RESPONSIVE — sections 5–7
   ========================= */

@media (max-width: 1024px) {
  .gr-spectrum-layout,
  .gr-strips-layout,
  .gr-install-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .gr-spectrum-gallery,
  .gr-install-photos {
    justify-items: flex-start;
  }
}

@media (max-width: 768px) {
  .gr-spectrum-layout,
  .gr-strips-layout,
  .gr-install-layout {
    gap: 22px;
  }

  .gr-spectrum-gallery,
  .gr-install-photos {
    justify-items: center;
  }

  .gr-strips-card--top,
  .gr-strips-card--bottom {
    transform: translateX(0) rotate(0deg);
  }
}

@media (max-width: 480px) {
  .gr-spectrum {
    padding-inline: 16px;
  }

  .gr-strips,
  .gr-install {
    padding-inline: 16px;
  }

  .gr-spectrum-pills {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   SECTION 8 — Before / After
   ========================= */

.gr-compare {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.22), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.22), transparent 60%),
    linear-gradient(155deg, #020813, #050b1b 55%, #020610);
}

.gr-compare-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.gr-compare-points {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-compare-points li {
  margin-bottom: 4px;
}

.gr-compare-panel {
  position: relative;
  border-radius: 26px;
  padding: 16px 14px 14px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.25), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--gr-shadow-soft);
}

.gr-compare-axis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.gr-compare-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gr-compare-label--before {
  color: #ffd7b0;
  border-color: rgba(255, 215, 176, 0.8);
}

.gr-compare-label--after {
  color: #c4f4ff;
  border-color: rgba(79, 242, 255, 0.8);
}

.gr-compare-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.gr-compare-card {
  padding: 8px 9px 9px;
  border-radius: 20px;
  background: rgba(4, 12, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-compare-card figcaption {
  margin-top: 5px;
}

/* yüngül “border-light” effekti */
.gr-compare-card--before {
  box-shadow: 0 0 16px rgba(255, 215, 176, 0.2);
}
.gr-compare-card--after {
  box-shadow: 0 0 18px rgba(79, 242, 255, 0.5);
}

.gr-compare-extra {
  margin-top: 10px;
  padding: 7px 8px 8px;
  border-radius: 18px;
  background: rgba(5, 14, 30, 0.96);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-compare-extra figcaption {
  margin-top: 4px;
}

/* =========================
   SECTION 9 — Length guide
   ========================= */

.gr-length {
  background:
    radial-gradient(circle at 10% 0, rgba(79, 242, 255, 0.18), transparent 60%),
    radial-gradient(circle at 90% 0, rgba(255, 95, 183, 0.18), transparent 60%),
    linear-gradient(150deg, #020712, #050b1a 55%, #020610);
}

.gr-length-layout {
  max-width: 1200px;
  margin-inline: auto;
}

.gr-length-copy {
  max-width: 620px;
  margin-bottom: 16px;
}

.gr-length-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(120px, auto);
  gap: 14px;
}

.gr-length-card {
  padding: 10px 12px 12px;
  border-radius: 20px;
  background:
    linear-gradient(140deg, rgba(7, 18, 38, 0.98), rgba(6, 15, 33, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-length-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: var(--gr-text);
}

.gr-length-card p {
  margin: 0 0 6px;
}

.gr-length-values {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gr-length-tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(5, 14, 30, 0.96);
  border: 1px solid rgba(79, 242, 255, 0.55);
}

.gr-length-photo {
  padding: 8px 9px 9px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(5, 13, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-length-photo figcaption {
  margin-top: 4px;
}

.gr-length-photo--tape {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.gr-length-photo--plan {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
}

/* =========================
   SECTION 10 — Hardware quality
   ========================= */

.gr-quality {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.16), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.16), transparent 60%),
    linear-gradient(160deg, #020712, #050b1b 55%, #02050e);
}

.gr-quality-layout {
  max-width: 1200px;
  margin-inline: auto;
}

.gr-quality-header {
  max-width: 640px;
  margin-bottom: 18px;
}

.gr-quality-ring {
  position: relative;
  border-radius: 32px;
  padding: 24px 22px 26px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(7, 16, 34, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--gr-shadow-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.gr-quality-item {
  max-width: 220px;
  padding: 8px 9px 9px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
  justify-self: center;
}

.gr-quality-item figcaption {
  margin-top: 4px;
}

/* yerləşmə — üçbucaq halqa hissələri kimi */

.gr-quality-item--reel {
  justify-self: flex-start;
}

.gr-quality-item--supply {
  justify-self: center;
}

.gr-quality-item--controller {
  justify-self: flex-end;
}

.gr-quality-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 210px;
  max-width: 60%;
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(79, 242, 255, 0.4), transparent 70%),
    rgba(3, 10, 24, 0.98);
  border: 1px solid rgba(79, 242, 255, 0.7);
  box-shadow: 0 0 22px rgba(79, 242, 255, 0.9);
}

.gr-quality-center-title {
  margin: 0 0 2px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e7f6ff;
}

.gr-quality-center-text {
  margin: 0;
  font-size: 11px;
  color: var(--gr-text-muted);
}

/* =========================
   RESPONSIVE — sections 8–10
   ========================= */

@media (max-width: 1024px) {
  .gr-compare-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .gr-length-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gr-length-photo--tape,
  .gr-length-photo--plan {
    grid-column: auto / auto;
    grid-row: auto / auto;
  }

  .gr-quality-ring {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .gr-quality-center {
    position: static;
    transform: none;
    margin: 6px auto 0;
  }
}

@media (max-width: 768px) {
  .gr-length-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gr-quality-ring {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .gr-quality-item {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .gr-compare-layout,
  .gr-length-layout,
  .gr-quality-layout {
    gap: 22px;
  }

  .gr-compare-panel {
    padding: 12px 10px 10px;
  }

  .gr-compare-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .gr-quality-ring {
    padding: 18px 14px 18px;
  }
}
/* =========================
   SECTION 11 — Why GlowRiver
   ========================= */

.gr-why {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.2), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.2), transparent 60%),
    linear-gradient(150deg, #020813, #050b1a 55%, #020610);
}

.gr-why-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.gr-why-list {
  margin: 8px 0 10px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-why-list li {
  margin-bottom: 5px;
}

.gr-why-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gr-why-chip {
  padding: 6px 11px;
  border-radius: 16px;
  background: rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(79, 242, 255, 0.5);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-why-chip-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: #e7f6ff;
}

.gr-why-chip-value {
  display: block;
  margin-top: 2px;
}

.gr-why-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.gr-why-photo {
  max-width: 260px;
  padding: 9px 10px 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-why-photo figcaption {
  margin-top: 5px;
}

.gr-why-photo--team {
  transform: translateX(10px) rotate(-2deg);
}

.gr-why-photo--pack {
  transform: translateX(-6px) rotate(2deg);
}

/* =========================
   SECTION 12 — Small business
   ========================= */

.gr-business {
  background:
    radial-gradient(circle at 10% 0, rgba(79, 242, 255, 0.18), transparent 60%),
    radial-gradient(circle at 90% 0, rgba(255, 95, 183, 0.18), transparent 60%),
    linear-gradient(145deg, #020712, #050b1a 55%, #02050f);
}

.gr-business-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.gr-business-copy {
  max-width: 560px;
}

.gr-business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 10px;
}

.gr-business-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 13, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gr-text-muted);
}

.gr-business-photos {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.gr-business-photo {
  max-width: 260px;
  padding: 9px 10px 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-business-photo figcaption {
  margin-top: 5px;
}

.gr-business-photo--window {
  transform: translateX(8px);
}

.gr-business-photo--bar {
  transform: translateX(-8px);
}

/* =========================
   SECTION 13 — FAQ line
   ========================= */

.gr-faq {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.18), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.18), transparent 60%),
    linear-gradient(160deg, #020712, #050b1a 55%, #020610);
}

.gr-faq-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.gr-faq-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.gr-faq-item {
  border-radius: 18px;
  background: rgba(5, 13, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 10px 9px;
}

.gr-faq-question {
  width: 100%;
  padding: 4px 0 2px;
  border: none;
  background: none;
  text-align: left;
  font-size: 13px;
  color: var(--gr-text);
  cursor: default; /* sadəcə statik blok, klik olmadan */
}

.gr-faq-answer {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--gr-text-muted);
}

.gr-faq-photos {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  justify-items: center;
}

.gr-faq-photo {
  max-width: 240px;
  padding: 8px 9px 9px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-faq-photo figcaption {
  margin-top: 4px;
}

/* =========================
   RESPONSIVE — sections 11–13
   ========================= */

@media (max-width: 1024px) {
  .gr-why-layout,
  .gr-business-layout,
  .gr-faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .gr-why-visual,
  .gr-business-photos,
  .gr-faq-photos {
    justify-items: flex-start;
  }
}

@media (max-width: 768px) {
  .gr-why-visual,
  .gr-business-photos,
  .gr-faq-photos {
    justify-items: center;
  }

  .gr-why-photo--team,
  .gr-why-photo--pack,
  .gr-business-photo--window,
  .gr-business-photo--bar {
    transform: translateX(0) rotate(0deg);
  }
}

@media (max-width: 480px) {
  .gr-why,
  .gr-business,
  .gr-faq {
    padding-inline: 16px;
  }
}
/* =========================
   SECTION 14 — Order flow
   ========================= */

.gr-flow {
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.2), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(255, 95, 183, 0.2), transparent 60%),
    linear-gradient(145deg, #020813, #050b1a 55%, #020610);
}

.gr-flow-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.gr-flow-steps {
  max-width: 620px;
}

.gr-flow-list {
  margin: 10px 0 0;
  padding-left: 20px;
  font-size: 13px;
  color: var(--gr-text-muted);
}

.gr-flow-list li {
  margin-bottom: 6px;
}

.gr-flow-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  justify-items: center;
}

.gr-flow-photo {
  max-width: 260px;
  padding: 9px 10px 10px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-flow-photo figcaption {
  margin-top: 5px;
}

.gr-flow-photo--chat {
  transform: translateX(10px);
}
.gr-flow-photo--samples {
  transform: translateX(-6px);
}
.gr-flow-photo--final {
  transform: translateX(6px);
}

/* =========================
   SECTION 15 — Final CTA
   ========================= */

.gr-cta {
  background:
    radial-gradient(circle at 50% 0, rgba(79, 242, 255, 0.22), transparent 60%),
    linear-gradient(160deg, #020712, #050b1a 55%, #020610);
}

.gr-cta-layout {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.gr-cta-panel {
  max-width: 620px;
  padding: 18px 20px 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(7, 16, 34, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--gr-shadow-soft);
}

.gr-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 8px;
}

.gr-cta-note {
  margin: 0;
  font-size: 12px;
  color: var(--gr-text-muted);
}

.gr-cta-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  justify-items: center;
}

.gr-cta-photo {
  max-width: 180px;
  padding: 7px 8px 8px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 0 0, rgba(79, 242, 255, 0.3), transparent 65%),
    rgba(6, 15, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  color: var(--gr-text-muted);
}

.gr-cta-photo figcaption {
  margin-top: 4px;
}

.gr-cta-photo--shelf {
  transform: translateX(6px);
}
.gr-cta-photo--desk {
  transform: translateX(-4px);
}
.gr-cta-photo--corner {
  transform: translateX(4px);
}
.gr-cta-photo--balcony {
  transform: translateX(-6px);
}

/* =========================
   RESPONSIVE — sections 14–15
   ========================= */

@media (max-width: 1024px) {
  .gr-flow-layout,
  .gr-cta-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .gr-flow-visual,
  .gr-cta-gallery {
    justify-items: flex-start;
  }
}

@media (max-width: 768px) {
  .gr-flow-visual,
  .gr-cta-gallery {
    justify-items: center;
  }

  .gr-flow-photo--chat,
  .gr-flow-photo--samples,
  .gr-flow-photo--final,
  .gr-cta-photo--shelf,
  .gr-cta-photo--desk,
  .gr-cta-photo--corner,
  .gr-cta-photo--balcony {
    transform: translateX(0);
  }

  .gr-cta-panel {
    padding: 16px 16px 18px;
  }

  .gr-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .gr-flow,
  .gr-cta {
    padding-inline: 16px;
  }

  .gr-cta-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
