/* ======================================
   JMROWLAND ELITE INDEX STYLES
   Dark theme: navy/dark blue + sky blue
   Light theme: sky blue + dark blue
====================================== */

:root {
  --font: Inter, "Segoe UI", Roboto, Arial, sans-serif;

  --r10: 10px;
  --r12: 12px;
  --r14: 14px;
  --r16: 16px;
  --r18: 18px;
  --r20: 20px;
  --r22: 22px;
  --r24: 24px;
  --r28: 28px;
  --r32: 32px;

  --container: 1240px;
  --header-h: 112px;

  --tr: 0.28s ease;
  --tr2: 0.45s cubic-bezier(.22,.61,.36,1);

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-mid: 0 18px 45px rgba(0, 0, 0, 0.18);
  --shadow-heavy: 0 25px 65px rgba(0, 0, 0, 0.28);

  --blur: saturate(140%) blur(14px);
}

html[data-theme="dark"] {
  --bg: #04111f;
  --bg2: #071a2f;
  --bg3: #0b2441;
  --panel: rgba(8, 28, 49, 0.82);
  --panel-2: rgba(10, 34, 60, 0.92);
  --card: #0a223d;
  --card-2: #0d2d4f;
  --line: rgba(122, 202, 255, 0.18);
  --line-2: rgba(122, 202, 255, 0.28);
  --text: #dff5ff;
  --text-2: #a9d8f6;
  --text-3: #7db9de;
  --heading: #f2fbff;
  --accent: #66d9ff;
  --accent-2: #87e5ff;
  --accent-3: #2aaee6;
  --btn-text: #04111f;
  --hero-ov-1: rgba(2, 11, 22, 0.34);
  --hero-ov-2: rgba(2, 14, 28, 0.62);
  --hero-ov-3: rgba(4, 17, 31, 0.86);
  --footer-bg: #06101d;
}

html[data-theme="light"] {
  --bg: #ecfaff;
  --bg2: #dff5ff;
  --bg3: #c9eeff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-2: rgba(239, 249, 255, 0.94);
  --card: #ffffff;
  --card-2: #edf8ff;
  --line: rgba(4, 39, 78, 0.12);
  --line-2: rgba(4, 39, 78, 0.18);
  --text: #0c2950;
  --text-2: #21466f;
  --text-3: #426b97;
  --heading: #061d3a;
  --accent: #0e8fd1;
  --accent-2: #169edb;
  --accent-3: #06396f;
  --btn-text: #ffffff;
  --hero-ov-1: rgba(236, 250, 255, 0.18);
  --hero-ov-2: rgba(215, 243, 255, 0.36);
  --hero-ov-3: rgba(198, 236, 255, 0.60);
  --footer-bg: #dff4ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(102, 217, 255, 0.12), transparent 28%),
    radial-gradient(circle at right center, rgba(65, 153, 255, 0.10), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 52%, var(--bg) 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  display: block;
}

.jm-c {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

/* =========================
   GLOBAL TYPE + HELPERS
========================= */
.jm-muted {
  color: var(--text-2);
}

.jm-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.jm-kicker--light {
  color: var(--accent-2);
}

.jm-title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.jm-title--light {
  color: var(--heading);
}

.jm-head {
  margin-bottom: 34px;
}

.jm-pill,
.jm-chip,
.jm-tag,
.jm-railchip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
}

.jm-pill {
  padding: 8px 14px;
  background: rgba(102, 217, 255, 0.12);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jm-chip,
.jm-tag,
.jm-railchip {
  padding: 8px 12px;
  background: rgba(102, 217, 255, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.jm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

/* =========================
   BUTTONS
========================= */
.jm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr), border-color var(--tr);
  white-space: nowrap;
}

.jm-btn:hover {
  transform: translateY(-2px);
}

.jm-btn--cta {
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.jm-btn--cta:hover {
  box-shadow: 0 18px 40px rgba(102, 217, 255, 0.24);
}

.jm-btn--glow {
  position: relative;
  overflow: hidden;
}

.jm-btn--glow::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.22) 35%, transparent 55%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.jm-btn--glow:hover::after {
  transform: translateX(120%);
}

.jm-btn--wa {
  background: transparent;
  border-color: var(--line-2);
  color: var(--text);
}

.jm-btn--wa:hover,
.jm-btn--ghost:hover,
.jm-btn--soft:hover {
  background: rgba(102, 217, 255, 0.08);
  border-color: var(--accent);
}

.jm-btn--ghost,
.jm-btn--soft {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.jm-btn--full {
  width: 100%;
}

.jm-btn__ico {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.jm-btn__ico svg {
  width: 100%;
  height: 100%;
}

/* =========================
   HEADER
========================= */
.jm-h {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr), backdrop-filter var(--tr);
}

.jm-h.is-scrolled {
  background: rgba(5, 19, 35, 0.72);
  backdrop-filter: var(--blur);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

html[data-theme="light"] .jm-h.is-scrolled {
  background: rgba(235, 249, 255, 0.76);
}

.jm-h__in {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Brand */
.jm-b,
.jm-f__b {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.jm-b__logo,
.jm-f__logo {
  width: 158px;
  height: 158px;
  min-width: 158px;
  min-height: 158px;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px;
  box-shadow: 0 0 0 1px var(--line), 0 12px 28px rgba(0, 0, 0, 0.14);
}

.jm-b__txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.jm-b__name,
.jm-f__name {
  color: var(--heading);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.jm-b__tag,
.jm-f__tag {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.jm-n {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.jm-n__a,
.jm-mega__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--text);
  border: 1px solid transparent;
  background: transparent;
  font-weight: 700;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}

.jm-n__a:hover,
.jm-mega__btn:hover,
.jm-mega.is-open .jm-mega__btn {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.08);
  border-color: var(--line);
}

.jm-caret {
  font-size: 12px;
  transition: transform var(--tr);
}

.jm-mega.is-open .jm-caret {
  transform: rotate(180deg);
}

/* Actions */
.jm-a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.jm-ib,
.jm-bu {
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.jm-ib:hover,
.jm-bu:hover {
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line-2);
  transform: translateY(-1px);
}

.jm-ib {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
}

.jm-ib__ico {
  position: relative;
  width: 18px;
  height: 18px;
}

.jm-ib__ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
}

html[data-theme="dark"] .jm-ib__ico::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: -1px;
  top: -1px;
  border-radius: 50%;
  background: var(--accent);
}

html[data-theme="light"] .jm-ib__ico::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 7px;
  top: -5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 23px 0 currentColor,
    -11px 11px 0 currentColor,
    11px 11px 0 currentColor,
    -11px -1px 0 currentColor,
    11px -1px 0 currentColor,
    -8px 20px 0 currentColor,
    8px 20px 0 currentColor;
}

.jm-bu {
  display: none;
  width: 50px;
  height: 46px;
  padding: 0;
}

.jm-bu__l,
.jm-bu__l::before,
.jm-bu__l::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: transform var(--tr), opacity var(--tr), top var(--tr);
  margin: auto;
}

.jm-bu__l::before,
.jm-bu__l::after {
  content: "";
  position: absolute;
  left: 0;
}

.jm-bu__l::before {
  top: -7px;
}

.jm-bu__l::after {
  top: 7px;
}

.jm-bu[aria-expanded="true"] .jm-bu__l {
  background: transparent;
}

.jm-bu[aria-expanded="true"] .jm-bu__l::before {
  top: 0;
  transform: rotate(45deg);
}

.jm-bu[aria-expanded="true"] .jm-bu__l::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mega Menu */
.jm-mega {
  position: relative;
}

.jm-mega__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(940px, 92vw);
  padding: 18px;
  border-radius: 24px;
  background: var(--panel-2);
  backdrop-filter: var(--blur);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-heavy);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
}

.jm-mega.is-open .jm-mega__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.jm-mega__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.jm-mega__left,
.jm-mega__right {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}

.jm-mega__title {
  color: var(--heading);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}

.jm-mega__sub {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 18px;
}

.jm-mega__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.jm-softcta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
}

.jm-mega__right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jm-cardlink {
  display: block;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.04);
  transition: transform var(--tr), border-color var(--tr), background var(--tr);
}

.jm-cardlink:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  background: rgba(102, 217, 255, 0.08);
}

.jm-cardlink__t {
  display: block;
  color: var(--heading);
  font-weight: 800;
  margin-bottom: 4px;
}

.jm-cardlink__d {
  display: block;
  color: var(--text-2);
  font-size: 14px;
}

/* =========================
   MOBILE DRAWER
========================= */
.jm-m {
  position: fixed;
  inset: 0;
  z-index: 260;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr), visibility var(--tr);
}

.jm-m.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.jm-m__ov {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 18, 0.56);
  backdrop-filter: blur(6px);
}

.jm-m__p {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 90vw);
  height: 100%;
  background: var(--panel-2);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-heavy);
  transform: translateX(100%);
  transition: transform var(--tr2);
  padding: 22px 18px 26px;
  display: flex;
  flex-direction: column;
}

.jm-m.is-open .jm-m__p {
  transform: translateX(0);
}

.jm-m__t {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.jm-m__ttl {
  color: var(--heading);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.jm-m__nav {
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.jm-m__nav > a,
.jm-m__d summary,
.jm-m__sub a {
  border-radius: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.jm-m__d {
  border: 0;
}

.jm-m__d summary {
  list-style: none;
}

.jm-m__d summary::-webkit-details-marker {
  display: none;
}

.jm-m__sub {
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.jm-m__cta {
  margin-top: auto;
  display: grid;
  gap: 12px;
}
/* =========================
   MOBILE DRAWER SCROLL FIX
========================= */

body.jm-lock {
  overflow: hidden;
  height: 100vh;
}

/* =========================
   BACK TO TOP MOBILE FIX
========================= */

#jmTopFloat {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 120;
}

/* Prevent floating button from extending layout width */
body {
  overflow-x: hidden;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  #jmTopFloat {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 18px;
  }
}


/* =========================
   HERO
========================= */
.jm-hero {
  position: relative;
  min-height: calc(100vh - 30px);
  padding: 72px 0 64px;
  display: flex;
  align-items: center;
  overflow: clip;
}

.jm-hero__bg,
.jm-hero__slides,
.jm-hero__overlay,
.jm-hero__glow {
  position: absolute;
  inset: 0;
}

.jm-hero__slides {
  z-index: 1;
}

.jm-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 5s ease;
}

.jm-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.jm-hero__overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, var(--hero-ov-3) 0%, var(--hero-ov-2) 32%, var(--hero-ov-1) 62%, rgba(0,0,0,0.10) 100%);
}

.jm-hero__glow {
  z-index: 3;
  background:
    radial-gradient(circle at 16% 42%, rgba(102, 217, 255, 0.14), transparent 32%),
    radial-gradient(circle at 78% 30%, rgba(100, 181, 246, 0.12), transparent 28%);
}

.jm-hero__in {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
  gap: 28px;
  align-items: center;
}

.jm-hero__card {
  max-width: 720px;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.62), rgba(8, 28, 49, 0.30));
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-heavy);
}

html[data-theme="light"] .jm-hero__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.55));
}

.jm-hero__kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.jm-hero__h {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.jm-hero__brand {
  color: var(--accent-2);
  text-shadow: 0 0 20px rgba(135, 229, 255, 0.18);
}

.jm-hero__p {
  margin: 0;
  max-width: 58ch;
  color: var(--text);
  font-size: clamp(16px, 2vw, 20px);
}

.jm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.jm-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.jm-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.jm-stat {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
}

.jm-stat__t {
  display: block;
  color: var(--heading);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px;
}

.jm-stat__d {
  display: block;
  font-size: 13px;
}

.jm-hero__rail {
  display: grid;
  gap: 18px;
  justify-self: end;
  width: 100%;
}

.jm-railcard {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.82), rgba(8, 28, 49, 0.58));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-mid);
}

html[data-theme="light"] .jm-railcard {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(241,249,255,0.82));
}

.jm-railcard--alt {
  transform: translateX(22px);
}

.jm-railcard__top,
.jm-railcard__mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.jm-railcard__mid {
  justify-content: flex-start;
  margin-top: 18px;
}

.jm-railicon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
}

.jm-railcard__t {
  color: var(--heading);
  font-weight: 900;
  margin-bottom: 4px;
}

.jm-railcard__d {
  font-size: 14px;
}

.jm-railcard__a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-weight: 800;
  margin-top: 16px;
}

/* =========================
   HOW WE WORK
========================= */
.jm-how {
  padding: 100px 0;
}

.jm-how__grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.jm-step {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.08), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.jm-step__no {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(102, 217, 255, 0.14);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.jm-step__ico {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(102, 217, 255, 0.18);
}

.jm-step__ico svg {
  width: 28px;
  height: 28px;
}

.jm-step__t {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 24px;
}

.jm-step__d {
  margin: 0;
}

/* =========================
   WHY CHOOSE US
========================= */
.jm-why {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(2, 13, 26, 0.72), rgba(7, 24, 43, 0.92)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
  overflow: hidden;
}

html[data-theme="light"] .jm-why {
  background:
    linear-gradient(180deg, rgba(197, 236, 255, 0.55), rgba(223, 245, 255, 0.82)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
}

.jm-why__fx {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(102, 217, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 78%, rgba(102, 217, 255, 0.10), transparent 24%);
  pointer-events: none;
}

.jm-why__head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 36px;
}

.jm-why__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.jm-flip {
  perspective: 1200px;
}

.jm-flip__in {
  position: relative;
  min-height: 300px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.jm-flip:hover .jm-flip__in {
  transform: rotateY(180deg);
}

.jm-flip__front,
.jm-flip__back {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 28, 49, 0.76);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

html[data-theme="light"] .jm-flip__front,
html[data-theme="light"] .jm-flip__back {
  background: rgba(255,255,255,0.84);
}

.jm-flip__back {
  transform: rotateY(180deg);
}

.jm-why__ico {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  margin-bottom: 18px;
}

.jm-why__ico svg {
  width: 28px;
  height: 28px;
}

.jm-flip h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.1;
}

.jm-flip p {
  margin: 0;
}

.jm-why__actions {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   SERVICES
========================= */
.jm-sv {
  padding: 100px 0;
}

.jm-sv__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.jm-sv__card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.jm-sv__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.jm-sv__img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.jm-sv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.jm-sv__card:hover .jm-sv__img img {
  transform: scale(1.08);
}

.jm-sv__imgov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.45) 100%);
}

.jm-sv__t {
  margin: 0;
  padding: 18px 18px 12px;
  color: var(--heading);
  font-size: 22px;
}

.jm-sv__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 18px 18px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(102, 217, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}

.jm-sv__btn:hover {
  background: rgba(102, 217, 255, 0.12);
  border-color: var(--line-2);
}

/* =========================
   SECOND HERO / TESTIMONIAL CTA
========================= */
.clean-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 17, 31, 0.88) 0%, rgba(4, 17, 31, 0.62) 38%, rgba(4, 17, 31, 0.22) 100%);
}

html[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(236, 250, 255, 0.88) 0%, rgba(236, 250, 255, 0.62) 38%, rgba(236, 250, 255, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  margin-left: min(7vw, 70px);
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(8, 28, 49, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-heavy);
  text-align: left;
}

html[data-theme="light"] .hero-content {
  background: rgba(255,255,255,0.72);
}

.hero-content h1 {
  margin: 0 0 14px;
  color: var(--heading);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-sub {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 18px;
  max-width: 56ch;
}

.review-coming {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.08);
  color: var(--heading);
  font-size: 18px;
  font-weight: 800;
}

.review-coming span {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn.primary {
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.20);
}

.hero-btn.secondary {
  color: var(--text);
  border-color: var(--line-2);
  background: rgba(102, 217, 255, 0.06);
}

/* =========================
   CONTACT SECTION
========================= */
.jm-ct {
  position: relative;
  padding: 105px 0;
  overflow: hidden;
}

.jm-ct__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(102, 217, 255, 0.14), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(102, 217, 255, 0.10), transparent 20%);
  pointer-events: none;
}

.jm-ct__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.jm-ct__card,
.jm-ct__right {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.84), rgba(8, 28, 49, 0.62));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-heavy);
}

html[data-theme="light"] .jm-ct__card,
html[data-theme="light"] .jm-ct__right {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(237,248,255,0.84));
}

.jm-ct__card {
  padding: 30px;
}

.jm-ct__title {
  margin-bottom: 22px;
}

.jm-form {
  display: grid;
  gap: 16px;
}

.jm-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.jm-field {
  display: grid;
  gap: 8px;
}

.jm-field label,
.jm-news__l {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
}

.jm-field input,
.jm-field select,
.jm-news__in input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  padding: 0 16px;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}

.jm-field input::placeholder,
.jm-news__in input::placeholder {
  color: var(--text-3);
}

.jm-field input:focus,
.jm-field select:focus,
.jm-news__in input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(102, 217, 255, 0.12);
  background: rgba(102, 217, 255, 0.08);
}

.jm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: 14px;
}

.jm-check input {
  margin-top: 3px;
}

.jm-ct__right {
  padding: 18px;
  display: grid;
  gap: 18px;
}

.jm-ct__img {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 420px;
}

.jm-ct__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jm-ct__imgov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0,0,0,0.38) 100%);
}

.jm-ct__guarantee {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
}

.jm-ct__ghead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.jm-ct__ghead h3 {
  margin: 0;
  color: var(--heading);
  font-size: 22px;
}

.jm-ct__gcheck {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  font-weight: 900;
}

/* =========================
   FOOTER
========================= */
.jm-f {
  background:
    radial-gradient(circle at top left, rgba(102, 217, 255, 0.08), transparent 22%),
    linear-gradient(180deg, var(--footer-bg), var(--bg));
  border-top: 1px solid var(--line);
  padding-top: 64px;
}

.jm-f__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 28px;
}

.jm-f__desc {
  max-width: 52ch;
  color: var(--text-2);
  margin: 18px 0;
}

.jm-f__row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.jm-f__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jm-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.jm-mini span {
  color: var(--accent);
}

.jm-f__col h4 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 18px;
}

.jm-f__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jm-f__col a,
.jm-f__col span {
  color: var(--text-2);
  transition: color var(--tr), transform var(--tr);
}

.jm-f__col a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.jm-f__social {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}

.jm-soc {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}

.jm-soc:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.jm-soc__ring {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(102, 217, 255, 0.08);
}

.jm-soc__svg {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  color: var(--text);
  stroke-width: 1.8;
}

.jm-news {
  margin-top: 6px;
}

.jm-news__in {
  display: flex;
  gap: 10px;
  margin: 10px 0 8px;
}

.jm-news__m {
  font-size: 13px;
}

.jm-f__btm {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.jm-f__btmin {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   BACK TO TOP
========================= */
.jm-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 35px rgba(102, 217, 255, 0.24);
  z-index: 220;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
}

.jm-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jm-top svg {
  width: 22px;
  height: 22px;
}

/* =========================
   REVEAL ANIMATION
========================= */
.jm-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.jm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1420px) {
  .jm-b__logo,
  .jm-f__logo {
    width: 132px;
    height: 132px;
    min-width: 132px;
    min-height: 132px;
  }

  .jm-h__in {
    gap: 18px;
  }

  .jm-n {
    gap: 2px;
  }

  .jm-n__a,
  .jm-mega__btn {
    padding: 0 10px;
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .jm-h__in {
    grid-template-columns: auto 1fr auto;
  }

  .jm-n {
    display: none;
  }

  .jm-bu {
    display: inline-grid;
    place-items: center;
  }

  .jm-hero__in,
  .jm-ct__grid,
  .jm-f__grid {
    grid-template-columns: 1fr;
  }

  .jm-hero__rail {
    justify-self: start;
    max-width: 520px;
  }

  .jm-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-sv__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-how__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 94px;
  }

  .jm-b__logo,
  .jm-f__logo {
    width: 110px;
    height: 110px;
    min-width: 110px;
    min-height: 110px;
  }

  .jm-b__name,
  .jm-f__name {
    font-size: 20px;
  }

  .jm-b__tag,
  .jm-f__tag {
    font-size: 11px;
  }

  .jm-a .jm-btn--wa,
  .jm-a .jm-btn--cta {
    display: none;
  }

  .jm-hero {
    min-height: auto;
    padding: 48px 0 50px;
  }

  .jm-hero__card,
  .hero-content,
  .jm-ct__card {
    padding: 24px;
  }

  .jm-hero__meta {
    grid-template-columns: 1fr;
  }

  .jm-why__grid,
  .jm-sv__grid {
    grid-template-columns: 1fr;
  }

  .jm-flip__in {
    min-height: 260px;
  }

  .jm-form__row,
  .jm-news__in {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content {
    margin-left: 0;
  }

  .clean-hero {
    padding: 56px 16px;
  }
}

@media (max-width: 640px) {
  .jm-c {
    width: min(var(--container), calc(100% - 20px));
  }

  .jm-b {
    gap: 10px;
  }

  .jm-b__txt {
    display: none;
  }

  .jm-b__logo,
  .jm-f__logo {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    border-radius: 18px;
  }

  .jm-hero__h,
  .hero-content h1 {
    max-width: none;
  }

  .jm-hero__card {
    padding: 22px;
  }

  .jm-railcard--alt {
    transform: none;
  }

  .jm-step,
  .jm-flip__front,
  .jm-flip__back,
  .jm-sv__card,
  .jm-ct__card,
  .jm-ct__right,
  .hero-content {
    border-radius: 20px;
  }

  .jm-ct__img {
    min-height: 290px;
  }

  .jm-f__btmin {
    justify-content: center;
    text-align: center;
  }
}






/* ======================================
   ABOUT PAGE — JMROWLAND ELITE
====================================== */

.jm-page {
  position: relative;
  overflow-x: clip;
}

/* =========================
   ABOUT HERO
========================= */
.jm-ab-hero {
  position: relative;
  padding: 84px 0 76px;
  overflow: hidden;
}

.jm-ab-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(102, 217, 255, 0.12), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(102, 217, 255, 0.10), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.jm-ab-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 35%, rgba(91, 199, 255, 0.10), transparent 26%),
    radial-gradient(circle at 25% 70%, rgba(102, 217, 255, 0.07), transparent 22%);
}

.jm-ab-hero__in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.jm-ab-hero__left {
  min-width: 0;
}

.jm-ab-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.jm-ab-h1 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: clamp(40px, 5.7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.jm-ab-grad {
  background: linear-gradient(135deg, var(--accent-2), var(--heading));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jm-ab-lead {
  margin: 0;
  max-width: 60ch;
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 20px);
}

.jm-ab-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.jm-ab-counters {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jm-ab-counter {
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.08), rgba(102, 217, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.jm-ab-counter__n {
  color: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.jm-ab-counter__d {
  font-size: 14px;
}

/* Right media */
.jm-ab-hero__right {
  position: relative;
}

.jm-ab-media {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-heavy);
  transform-style: preserve-3d;
}

.jm-ab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jm-ab-media__ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3, 12, 23, 0.12), rgba(3, 12, 23, 0.28) 55%, rgba(3, 12, 23, 0.50) 100%);
}

html[data-theme="light"] .jm-ab-media__ov {
  background:
    linear-gradient(180deg, rgba(236,250,255,0.04), rgba(236,250,255,0.12) 55%, rgba(4,39,78,0.12) 100%);
}

.jm-ab-float {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}

.jm-ab-float--a {
  top: 22px;
  right: 28px;
  width: 86px;
  height: 86px;
  background: radial-gradient(circle, rgba(102, 217, 255, 0.42), rgba(102, 217, 255, 0.08) 70%, transparent 74%);
  animation: jmFloatA 4.8s ease-in-out infinite;
}

.jm-ab-float--b {
  left: 24px;
  bottom: 30px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(135, 229, 255, 0.30), rgba(135, 229, 255, 0.06) 70%, transparent 74%);
  animation: jmFloatB 5.8s ease-in-out infinite;
}

@keyframes jmFloatA {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(6px); }
}

@keyframes jmFloatB {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(-6px); }
}

/* quick facts */
.jm-ab-facts {
  position: absolute;
  right: -16px;
  bottom: 24px;
  z-index: 5;
  width: min(340px, 88%);
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.88), rgba(8, 28, 49, 0.70));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-mid);
}

html[data-theme="light"] .jm-ab-facts {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(237,248,255,0.86));
}

.jm-ab-facts__t {
  color: var(--heading);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 14px;
}

.jm-ab-facts__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.jm-ab-facts__a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
}

/* prose strip */
.jm-ab-prose {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.06), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.jm-ab-h2 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.jm-ab-text {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.jm-ab-text p {
  margin: 0;
  color: var(--text);
}

/* =========================
   APART GRID
========================= */
.jm-ab-apart {
  padding: 92px 0 100px;
}

.jm-ab-head {
  margin-bottom: 34px;
}

.jm-ab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.jm-ab-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.08), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.jm-ab-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.jm-ab-ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(102, 217, 255, 0.20);
}

.jm-ab-ico svg {
  width: 28px;
  height: 28px;
}

.jm-ab-card h3 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.1;
}

.jm-ab-card p {
  margin: 0 0 10px;
}

.jm-ab-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
}

.jm-ab-list li + li {
  margin-top: 7px;
}

/* =========================
   TIMELINE
========================= */
.jm-ab-time {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 10% 25%, rgba(102, 217, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.jm-time {
  overflow-x: auto;
  padding-bottom: 8px;
}

.jm-time::-webkit-scrollbar {
  height: 10px;
}

.jm-time::-webkit-scrollbar-thumb {
  background: rgba(102, 217, 255, 0.24);
  border-radius: 999px;
}

.jm-time__track {
  position: relative;
  min-width: 980px;
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 18px;
  padding: 34px 0 18px;
}

.jm-time__track::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(102, 217, 255, 0.20), rgba(102, 217, 255, 0.52), rgba(102, 217, 255, 0.20));
}

.jm-time__item {
  position: relative;
}

.jm-time__dot {
  position: absolute;
  top: 7px;
  left: 26px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(102, 217, 255, 0.12);
}

.jm-time__card {
  margin-top: 34px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr);
}

.jm-time__item:hover .jm-time__card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
}

.jm-time__t {
  color: var(--heading);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 8px;
}

.jm-time__d {
  font-size: 14px;
}

.jm-ab-time__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   TEAM
========================= */
.jm-ab-team {
  padding: 96px 0 102px;
}

.jm-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.jm-tcard {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.jm-tcard__img,
.jm-tcard__img img,
.jm-tcard__ov {
  position: absolute;
  inset: 0;
}

.jm-tcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.jm-tcard:hover .jm-tcard__img img {
  transform: scale(1.08);
}

.jm-tcard__ov {
  background:
    linear-gradient(180deg, rgba(2, 8, 16, 0.10), rgba(2, 8, 16, 0.28) 42%, rgba(2, 8, 16, 0.88) 100%);
}

html[data-theme="light"] .jm-tcard__ov {
  background:
    linear-gradient(180deg, rgba(236,250,255,0.03), rgba(4,39,78,0.12) 40%, rgba(4,39,78,0.72) 100%);
}

.jm-tcard__meta,
.jm-tcard__reveal {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 24px;
  transition: transform var(--tr2), opacity var(--tr2);
}

.jm-tcard__meta {
  bottom: 0;
}

.jm-tcard__name {
  color: #fff;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.05;
}

.jm-tcard__role {
  margin-top: 6px;
  color: rgba(255,255,255,0.82);
}

.jm-tcard__reveal {
  top: 50%;
  transform: translateY(20px);
  opacity: 0;
}

.jm-tcard:hover .jm-tcard__reveal {
  transform: translateY(-50%);
  opacity: 1;
}

.jm-tcard:hover .jm-tcard__meta {
  transform: translateY(110%);
}

.jm-tcard__revt {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.jm-tcard__reveal p {
  color: rgba(255,255,255,0.88);
  max-width: 26ch;
}

/* =========================
   INTEGRITY
========================= */
.jm-ab-integrity {
  position: relative;
  padding: 108px 0 120px;
  background:
    linear-gradient(180deg, rgba(4, 17, 31, 0.18), rgba(4, 17, 31, 0.34)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
  overflow: hidden;
}

html[data-theme="light"] .jm-ab-integrity {
  background:
    linear-gradient(180deg, rgba(201, 238, 255, 0.50), rgba(223, 245, 255, 0.80)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
}

.jm-ab-intfx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jm-leaf {
  position: absolute;
  display: block;
  width: 180px;
  height: 180px;
  opacity: 0.12;
  filter: blur(1px);
  background:
    radial-gradient(circle at 40% 40%, rgba(135, 229, 255, 0.80), rgba(135, 229, 255, 0.08) 62%, transparent 68%);
  border-radius: 50% 50% 50% 8%;
}

.jm-leaf--l {
  left: -30px;
  top: 22%;
  transform: rotate(-32deg);
}

.jm-leaf--r {
  right: -22px;
  bottom: 18%;
  transform: rotate(38deg);
}

.jm-ab-sub {
  margin: 12px 0 0;
  font-size: 18px;
}

.jm-ab-narrow {
  max-width: 820px;
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.jm-ab-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-heavy);
}

.jm-ab-strip img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.jm-ab-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 9, 18, 0.10), rgba(2, 9, 18, 0.26) 38%, rgba(2, 9, 18, 0.56) 100%);
}

html[data-theme="light"] .jm-ab-strip::after {
  background:
    linear-gradient(180deg, rgba(236,250,255,0.04), rgba(4,39,78,0.10) 38%, rgba(4,39,78,0.28) 100%);
}

.jm-ab-strip__cta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(102, 217, 255, 0.22);
  transition: transform var(--tr), box-shadow var(--tr);
}

.jm-ab-strip__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(102, 217, 255, 0.28);
}

/* =========================
   ACTIVE PAGE LINK
========================= */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .jm-ab-hero__in,
  .jm-ab-text,
  .jm-team {
    grid-template-columns: 1fr;
  }

  .jm-ab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-ab-media {
    min-height: 560px;
  }

  .jm-ab-facts {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 860px) {
  .jm-ab-hero,
  .jm-ab-apart,
  .jm-ab-time,
  .jm-ab-team,
  .jm-ab-integrity {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .jm-ab-counters,
  .jm-ab-grid {
    grid-template-columns: 1fr;
  }

  .jm-ab-prose,
  .jm-ab-card {
    padding: 22px;
  }

  .jm-ab-media {
    min-height: 420px;
    border-radius: 24px;
  }

  .jm-tcard {
    min-height: 420px;
  }

  .jm-ab-strip {
    width: min(1180px, calc(100% - 20px));
    min-height: 320px;
    border-radius: 24px;
  }

  .jm-ab-strip img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .jm-ab-h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .jm-ab-cta,
  .jm-ab-time__actions {
    flex-direction: column;
  }

  .jm-ab-cta .jm-btn,
  .jm-ab-time__actions .jm-btn {
    width: 100%;
  }

  .jm-ab-prose,
  .jm-ab-card,
  .jm-ab-facts {
    border-radius: 22px;
  }

  .jm-ab-counter {
    padding: 18px 16px;
  }

  .jm-time__track {
    min-width: 840px;
  }

  .jm-ab-strip__cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}









/* ======================================
   SERVICES PAGE — JMROWLAND ELITE
====================================== */

.jm-page {
  position: relative;
  overflow-x: clip;
}

/* =========================
   SERVICES HERO
========================= */
.jm-sv-hero {
  position: relative;
  padding: 86px 0 72px;
  overflow: hidden;
}

.jm-sv-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(102, 217, 255, 0.12), transparent 26%),
    radial-gradient(circle at 85% 14%, rgba(102, 217, 255, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.jm-sv-hero__in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  gap: 30px;
  align-items: center;
}

.jm-kicker-slash {
  opacity: 0.7;
  margin-left: 6px;
}

.jm-sv-h1 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.jm-sv-intro {
  max-width: 62ch;
  display: grid;
  gap: 12px;
}

.jm-sv-intro p {
  margin: 0;
}

/* filter chips */
.jm-sv-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  position: sticky;
  top: calc(var(--header-h) + 14px);
  z-index: 12;
  padding: 12px;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 28, 49, 0.60);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

html[data-theme="light"] .jm-sv-filter {
  background: rgba(255,255,255,0.80);
}

.jm-sv-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), border-color var(--tr), color var(--tr), box-shadow var(--tr);
}

.jm-sv-chip:hover {
  transform: translateY(-2px);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line-2);
}

.jm-sv-chip.is-on {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

/* right hero panel */
.jm-sv-hero__right {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.08), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
}

.jm-sv-orb {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(135, 229, 255, 0.36), rgba(135, 229, 255, 0.08) 62%, transparent 68%);
  filter: blur(1px);
  pointer-events: none;
  animation: jmOrb 5.5s ease-in-out infinite;
}

@keyframes jmOrb {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(12px) translateX(-8px); }
}

.jm-sv-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.jm-sv-stat {
  padding: 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  text-align: center;
}

.jm-sv-stat__n {
  color: var(--heading);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.jm-sv-stat__d {
  font-size: 14px;
}

.jm-sv-hero__cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   SERVICES GRID
========================= */
.jm-sv-grid {
  padding: 34px 0 100px;
}

.jm-sv-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.jm-sv-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.06), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr), opacity var(--tr);
}

.jm-sv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.jm-sv-card.is-hidden {
  display: none;
}

.jm-sv-media {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.jm-sv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.jm-sv-card:hover .jm-sv-media img {
  transform: scale(1.08);
}

.jm-sv-media__ov {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.48) 100%);
}

.jm-sv-body {
  padding: 24px;
}

.jm-sv-title {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.06;
}

.jm-sv-text {
  margin: 0;
  max-width: 56ch;
}

.jm-sv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* bottom callout */
.jm-sv-bottom {
  margin-top: 28px;
}

.jm-sv-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.08), rgba(102, 217, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.jm-sv-callout__t {
  color: var(--heading);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 6px;
}

.jm-sv-callout__d {
  font-size: 15px;
}

.jm-sv-callout__a {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   DIFFERENCE SECTION
========================= */
.jm-sv-diff {
  position: relative;
  padding: 108px 0 116px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 17, 31, 0.14), rgba(4, 17, 31, 0.30)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
}

html[data-theme="light"] .jm-sv-diff {
  background:
    linear-gradient(180deg, rgba(201, 238, 255, 0.45), rgba(223, 245, 255, 0.78)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
}

.jm-sv-diff__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 30%, rgba(102, 217, 255, 0.10), transparent 24%),
    radial-gradient(circle at 87% 74%, rgba(102, 217, 255, 0.08), transparent 22%);
}

.center {
  text-align: center;
  width: 100%;
}

.jm-sv-diff__head {
  position: relative;
  margin-bottom: 34px;
  text-align: center;
}

.jm-sv-diff__title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.jm-sv-leaf {
  position: absolute;
  display: block;
  width: 120px;
  height: 120px;
  opacity: 0.11;
  border-radius: 50% 50% 50% 8%;
  background:
    radial-gradient(circle at 40% 40%, rgba(135, 229, 255, 0.82), rgba(135, 229, 255, 0.08) 62%, transparent 68%);
  pointer-events: none;
}

.jm-sv-leaf--l {
  left: 10%;
  top: -10px;
  transform: rotate(-32deg);
}

.jm-sv-leaf--r {
  right: 10%;
  top: 20px;
  transform: rotate(38deg);
}

.jm-sv-diff__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.jm-sv-dcard {
  min-height: 210px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(8, 28, 49, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr), background var(--tr);
}

html[data-theme="light"] .jm-sv-dcard {
  background: rgba(255,255,255,0.84);
}

.jm-sv-dcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.jm-sv-dico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(102, 217, 255, 0.18);
}

.jm-sv-dico svg {
  width: 28px;
  height: 28px;
}

.jm-sv-dcard h3 {
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.08;
}

/* =========================
   SERVICE MODAL
========================= */
.jm-sv-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr), visibility var(--tr);
}

.jm-sv-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.jm-sv-modal__ov {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 18, 0.58);
  backdrop-filter: blur(8px);
}

.jm-sv-modal__box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100% - 24px));
  transform: translate(-50%, -50%) scale(0.96);
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.94), rgba(8, 28, 49, 0.84));
  box-shadow: var(--shadow-heavy);
  transition: transform var(--tr2);
  overflow: hidden;
}

html[data-theme="light"] .jm-sv-modal__box {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(237,248,255,0.92));
}

.jm-sv-modal.is-open .jm-sv-modal__box {
  transform: translate(-50%, -50%) scale(1);
}

.jm-sv-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 22px 0;
}

.jm-sv-modal__title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.02;
}

.jm-sv-modal__close {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-size: 22px;
}

.jm-sv-modal__body {
  padding: 18px 22px 24px;
  display: grid;
  gap: 18px;
}

.jm-sv-modal__desc {
  margin: 0;
  color: var(--text);
}

.jm-sv-modal__list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.jm-sv-modal__list li + li {
  margin-top: 8px;
}

.jm-sv-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   ACTIVE PAGE LINKS
========================= */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .jm-sv-hero__in,
  .jm-sv-cards,
  .jm-sv-diff__grid {
    grid-template-columns: 1fr;
  }

  .jm-sv-hero__right {
    padding: 24px;
  }

  .jm-sv-filter {
    position: relative;
    top: auto;
    width: 100%;
    border-radius: 24px;
  }
}

@media (max-width: 860px) {
  .jm-sv-hero,
  .jm-sv-grid,
  .jm-sv-diff {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .jm-sv-stats {
    grid-template-columns: 1fr;
  }

  .jm-sv-media {
    height: 240px;
  }

  .jm-sv-body,
  .jm-sv-callout,
  .jm-sv-dcard {
    padding: 22px;
  }

  .jm-sv-actions,
  .jm-sv-callout__a,
  .jm-sv-hero__cta {
    flex-direction: column;
  }

  .jm-sv-actions .jm-btn,
  .jm-sv-callout__a .jm-btn,
  .jm-sv-hero__cta .jm-btn {
    width: 100%;
  }

  .jm-sv-dcard {
    min-height: auto;
  }

  .jm-sv-modal__actions {
    flex-direction: column;
  }

  .jm-sv-modal__actions .jm-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .jm-sv-h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .jm-sv-filter {
    padding: 10px;
    gap: 10px;
  }

  .jm-sv-chip {
    width: 100%;
  }

  .jm-sv-card,
  .jm-sv-callout,
  .jm-sv-dcard,
  .jm-sv-modal__box {
    border-radius: 22px;
  }
}






/* ======================================
   PRICING PAGE — JMROWLAND ELITE
====================================== */

.pricing-page {
  position: relative;
  overflow-x: clip;
}

/* =========================
   HERO
========================= */
.p-hero {
  position: relative;
  padding: 86px 0 68px;
  overflow: hidden;
}

.p-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 15%, rgba(102, 217, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(102, 217, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.p-hero__in {
  position: relative;
  z-index: 2;
}

.p-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.p-slash {
  opacity: 0.7;
  margin-left: 6px;
}

.p-title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.p-sub {
  margin: 18px 0 0;
  max-width: 64ch;
  font-size: clamp(16px, 1.8vw, 20px);
}

.p-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 28, 49, 0.60);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

html[data-theme="light"] .p-toggle {
  background: rgba(255,255,255,0.82);
}

.p-tab {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), color var(--tr), border-color var(--tr), box-shadow var(--tr);
}

.p-tab:hover {
  transform: translateY(-1px);
  background: rgba(102, 217, 255, 0.08);
}

.p-tab.is-active {
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.p-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.p-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.p-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.p-mini span {
  color: var(--accent);
}

.p-blob {
  position: absolute;
  display: block;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.p-blob--a {
  top: 10px;
  right: 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(135, 229, 255, 0.30), rgba(135, 229, 255, 0.06) 68%, transparent 74%);
  animation: pBlobFloatA 5.2s ease-in-out infinite;
}

.p-blob--b {
  left: -20px;
  bottom: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(102, 217, 255, 0.22), rgba(102, 217, 255, 0.04) 68%, transparent 74%);
  animation: pBlobFloatB 6.4s ease-in-out infinite;
}

@keyframes pBlobFloatA {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(12px) translateX(-6px); }
}

@keyframes pBlobFloatB {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(6px); }
}

/* =========================
   PLANS
========================= */
.p-plans {
  padding: 24px 0 82px;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.p-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.07), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.p-card.is-selected {
  border-color: rgba(102, 217, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(102, 217, 255, 0.18),
    0 22px 50px rgba(0, 0, 0, 0.24);
}

.p-card--featured {
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.12), rgba(102, 217, 255, 0.03)),
    var(--panel);
  transform: translateY(-10px);
}

.p-feature {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(102, 217, 255, 0.20);
}

.p-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.p-head h2 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.05;
}

.p-head p {
  margin: 0;
}

.p-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.p-pill.ghost {
  background: rgba(102, 217, 255, 0.08);
  color: var(--text);
  border-color: var(--line);
}

.p-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 22px;
}

.p-currency {
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-8px);
}

.p-amount {
  color: var(--heading);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.p-unit {
  font-size: 14px;
  padding-bottom: 8px;
}

.p-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.p-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(102, 217, 255, 0.44);
  flex: 0 0 8px;
}

.p-choose {
  width: 100%;
  margin-bottom: 12px;
}

.p-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
}

/* =========================
   ESTIMATE
========================= */
.p-est {
  padding: 0 0 100px;
}

.p-est__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.p-addons,
.p-summary {
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.07), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.p-addons {
  padding: 26px;
}

.p-summary {
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.p-secHead {
  margin-bottom: 20px;
}

.p-secHead h2 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.p-secHead p {
  margin: 0;
}

.p-addGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.p-add {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  transition: transform var(--tr), border-color var(--tr), background var(--tr), box-shadow var(--tr);
  cursor: pointer;
}

.p-add:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  background: rgba(102, 217, 255, 0.08);
}

.p-add.is-on {
  border-color: rgba(102, 217, 255, 0.42);
  background: rgba(102, 217, 255, 0.12);
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.10);
}

.p-add input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  position: relative;
  margin: 0;
}

.p-add input:checked {
  background: var(--accent);
}

.p-add input:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--btn-text);
}

.p-add__t {
  color: var(--heading);
  font-weight: 800;
}

.p-add__p {
  color: var(--accent);
  font-weight: 900;
  white-space: nowrap;
}

.p-sel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
}

.p-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.p-row strong {
  color: var(--heading);
}

.p-lines {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.04);
  display: grid;
  gap: 10px;
  min-height: 94px;
}

.p-empty {
  font-size: 14px;
}

.p-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
}

.p-total {
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.p-total strong {
  color: var(--heading);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.p-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.p-note {
  margin-top: 16px;
  font-size: 13px;
}

/* =========================
   BAND
========================= */
.p-band {
  padding: 0 0 100px;
}

.p-band__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.09), rgba(102, 217, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.p-band__in h2 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.p-band__in p {
  margin: 0;
}

.p-band__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   FAQ
========================= */
.p-faq {
  padding: 0 0 112px;
}

.p-faqGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.p-q {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.06), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.p-q summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  color: var(--heading);
  font-size: 20px;
  font-weight: 800;
  position: relative;
}

.p-q summary::-webkit-details-marker {
  display: none;
}

.p-q summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  transition: transform var(--tr), color var(--tr);
}

.p-q[open] summary::after {
  content: "–";
}

.p-q p {
  margin: 0;
  padding: 0 24px 22px;
}

/* =========================
   REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ACTIVE PAGE LINKS
========================= */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .p-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-est__grid,
  .p-faqGrid {
    grid-template-columns: 1fr;
  }

  .p-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .p-hero,
  .p-plans,
  .p-est,
  .p-band,
  .p-faq {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .p-grid,
  .p-addGrid {
    grid-template-columns: 1fr;
  }

  .p-toggle {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .p-tab {
    flex: 1 1 100%;
  }

  .p-band__in,
  .p-band__btns {
    flex-direction: column;
  }

  .p-band__btns .jm-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .p-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .p-card,
  .p-addons,
  .p-summary,
  .p-band__in,
  .p-q {
    border-radius: 22px;
  }

  .p-card {
    padding: 22px;
  }

  .p-addons,
  .p-summary,
  .p-band__in {
    padding: 22px;
  }

  .p-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .p-feats li {
    align-items: flex-start;
  }
}







/* ======================================
   BOOKING PAGE — JMROWLAND ELITE
====================================== */

.booking-page {
  position: relative;
  overflow-x: clip;
}

/* =========================
   TOP TITLE
========================= */
.jm-bk-top {
  padding: 86px 0 28px;
  position: relative;
}

.jm-bk-title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 14ch;
}

.jm-bk-sub {
  margin: 16px 0 0;
  font-size: clamp(16px, 1.7vw, 19px);
}

/* =========================
   MAIN CARD WRAP
========================= */
.jm-bk-wrap {
  padding: 10px 0 90px;
}

.jm-bk-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 24px;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.07), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-heavy);
}

.jm-bk-left,
.jm-bk-right {
  min-width: 0;
}

/* =========================
   LEFT FORM SIDE
========================= */
.jm-bk-left {
  padding: 8px 4px 4px;
}

.jm-bk-h2 {
  margin: 0 0 20px;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.jm-bk-h3 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
}

/* Stepper */
.jm-bk-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.jm-bk-step {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  font-weight: 900;
  font-size: 16px;
  transition: transform var(--tr), background var(--tr), border-color var(--tr), box-shadow var(--tr), color var(--tr);
}

.jm-bk-step:hover {
  transform: translateY(-2px);
}

.jm-bk-step.is-active {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.jm-bk-step.is-done {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.jm-bk-line {
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(102,217,255,0.18), rgba(102,217,255,0.52), rgba(102,217,255,0.18));
}

.jm-bk-kicker {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 700;
}

/* Form */
.jm-bk-form {
  position: relative;
}

.jm-bk-stepview {
  display: none;
}

.jm-bk-stepview.is-show {
  display: block;
}

.jm-bk-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.col-12 { grid-column: span 12; }
.col-6 { grid-column: span 6; }
.col-3 { grid-column: span 3; }

.jm-bk-field {
  display: grid;
  gap: 8px;
}

.jm-bk-field label {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
}

.jm-bk-field input,
.jm-bk-field select,
.jm-bk-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr), transform var(--tr);
}

.jm-bk-field input,
.jm-bk-field select {
  min-height: 54px;
  padding: 0 16px;
}

.jm-bk-field textarea {
  min-height: 120px;
  resize: vertical;
  padding: 14px 16px;
}

.jm-bk-field input::placeholder,
.jm-bk-field textarea::placeholder {
  color: var(--text-3);
}

.jm-bk-field input:focus,
.jm-bk-field select:focus,
.jm-bk-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(102, 217, 255, 0.12);
  background: rgba(102, 217, 255, 0.08);
}

.jm-bk-field.is-invalid input,
.jm-bk-field.is-invalid select,
.jm-bk-field.is-invalid textarea {
  border-color: #ff7d7d;
  box-shadow: 0 0 0 4px rgba(255, 125, 125, 0.10);
}

.jm-bk-err {
  min-height: 18px;
  color: #ff9a9a;
  font-size: 12px;
  font-weight: 700;
}

.jm-bk-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Review */
.jm-bk-review {
  display: grid;
  gap: 18px;
}

.jm-bk-review__box {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  display: grid;
  gap: 12px;
}

.jm-bk-review__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(102, 217, 255, 0.08);
}

.jm-bk-review__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.jm-bk-review__k {
  color: var(--text-2);
  font-size: 14px;
}

.jm-bk-review__v {
  color: var(--heading);
  font-weight: 800;
  text-align: right;
}

.jm-bk-consent {
  display: grid;
  gap: 8px;
}

.jm-bk-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.jm-bk-check input {
  margin-top: 3px;
}

/* Toast */
.jm-bk-toast {
  margin-top: 16px;
  min-height: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--tr), transform var(--tr);
}

.jm-bk-toast.is-show {
  opacity: 1;
  transform: translateY(0);
}

.jm-bk-toast__inner {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(102, 217, 255, 0.22);
  background: rgba(102, 217, 255, 0.10);
  color: var(--heading);
  font-weight: 800;
}

/* =========================
   RIGHT SIDE
========================= */
.jm-bk-right {
  display: grid;
  gap: 18px;
  align-content: start;
}

.jm-bk-image {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.jm-bk-image img,
.jm-bk-image__ov {
  position: absolute;
  inset: 0;
}

.jm-bk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jm-bk-image__ov {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18) 46%, rgba(0,0,0,0.56) 100%);
}

.jm-bk-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 28, 49, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.jm-bk-summary {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.07), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.jm-bk-summary__t {
  color: var(--heading);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 8px;
}

.jm-bk-summary__d {
  font-size: 14px;
  margin-bottom: 18px;
}

.jm-bk-summary__grid {
  display: grid;
  gap: 12px;
}

.jm-bk-srow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(102, 217, 255, 0.08);
}

.jm-bk-srow:last-child {
  border-bottom: 0;
}

.jm-bk-srow__k {
  color: var(--text-2);
  font-size: 14px;
}

.jm-bk-srow__v {
  color: var(--heading);
  font-weight: 800;
  text-align: right;
}

.jm-bk-summary__cta {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

/* =========================
   WHY SECTION
========================= */
.jm-bk-why {
  position: relative;
  padding: 108px 0 118px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 17, 31, 0.18), rgba(4, 17, 31, 0.34)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
}

html[data-theme="light"] .jm-bk-why {
  background:
    linear-gradient(180deg, rgba(201, 238, 255, 0.52), rgba(223, 245, 255, 0.80)),
    linear-gradient(135deg, var(--bg3), var(--bg2));
}

.center {
  text-align: center;
  width: 100%;
}

.jm-bk-why__head {
  position: relative;
  margin-bottom: 34px;
  text-align: center;
}

.jm-bk-why__title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.jm-bk-leaf {
  position: absolute;
  display: block;
  width: 120px;
  height: 120px;
  opacity: 0.11;
  border-radius: 50% 50% 50% 8%;
  background:
    radial-gradient(circle at 40% 40%, rgba(135, 229, 255, 0.82), rgba(135, 229, 255, 0.08) 62%, transparent 68%);
  pointer-events: none;
}

.jm-bk-leaf--l {
  left: 10%;
  top: -10px;
  transform: rotate(-32deg);
}

.jm-bk-leaf--r {
  right: 10%;
  top: 16px;
  transform: rotate(38deg);
}

.jm-bk-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.jm-bk-whycard {
  min-height: 230px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(8, 28, 49, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

html[data-theme="light"] .jm-bk-whycard {
  background: rgba(255,255,255,0.84);
}

.jm-bk-whycard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.jm-bk-whyico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(102, 217, 255, 0.18);
}

.jm-bk-whyico svg {
  width: 28px;
  height: 28px;
}

.jm-bk-whycard h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.08;
}

.jm-bk-whycard p {
  margin: 0;
}

.jm-bk-why__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* =========================
   ACTIVE PAGE LINKS
========================= */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .jm-bk-card,
  .jm-bk-why__grid {
    grid-template-columns: 1fr;
  }

  .jm-bk-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .jm-bk-top,
  .jm-bk-wrap,
  .jm-bk-why {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .jm-bk-card,
  .jm-bk-summary,
  .jm-bk-image,
  .jm-bk-whycard {
    border-radius: 24px;
  }

  .jm-bk-grid {
    grid-template-columns: 1fr;
  }

  .col-12,
  .col-6,
  .col-3 {
    grid-column: span 1;
  }

  .jm-bk-actions {
    flex-direction: column;
  }

  .jm-bk-actions .jm-btn {
    width: 100%;
  }

  .jm-bk-stepper {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .jm-bk-title {
    font-size: clamp(32px, 9vw, 46px);
  }

  .jm-bk-card {
    padding: 18px;
  }

  .jm-bk-left {
    padding: 4px 0 0;
  }

  .jm-bk-h2 {
    font-size: 28px;
  }

  .jm-bk-h3 {
    font-size: 24px;
  }

  .jm-bk-summary,
  .jm-bk-whycard {
    padding: 20px;
  }

  .jm-bk-image {
    min-height: 260px;
  }

  .jm-bk-summary__cta .jm-btn {
    width: 100%;
  }
}







/* ======================================
   GALLERY PAGE — JMROWLAND ELITE
====================================== */

.gallery-page {
  position: relative;
  overflow-x: clip;
}

/* =========================
   HERO
========================= */
.gallery-hero {
  position: relative;
  padding: 88px 0 52px;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(102, 217, 255, 0.12), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(102, 217, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.g-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.g-title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.g-sub {
  margin: 18px 0 0;
  max-width: 64ch;
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 20px);
}

/* =========================
   TOOLBAR
========================= */
.gallery-toolbar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 16px;
  align-items: center;
}

.g-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.g-search i {
  color: var(--accent);
  font-size: 14px;
}

.g-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.g-search input::placeholder {
  color: var(--text-3);
}

.g-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), border-color var(--tr), color var(--tr), box-shadow var(--tr);
}

.chip:hover {
  transform: translateY(-2px);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line-2);
}

.chip.is-active {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.g-view {
  display: flex;
  gap: 10px;
}

.view-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  transition: transform var(--tr), background var(--tr), border-color var(--tr), color var(--tr), box-shadow var(--tr);
}

.view-btn:hover {
  transform: translateY(-2px);
}

.view-btn.is-active {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

/* =========================
   STATS
========================= */
.gallery-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat {
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.08), rgba(102, 217, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.stat-num {
  display: block;
  color: var(--heading);
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat-lbl {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 700;
}

/* =========================
   GALLERY WRAP
========================= */
.gallery-wrap {
  padding: 12px 0 100px;
}

.gallery {
  position: relative;
}

/* masonry default */
.gallery.masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery.masonry .g-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* grid mode */
.gallery.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery.grid .g-card {
  margin-bottom: 0;
}

.g-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.06), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr), opacity var(--tr);
}

.g-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.g-card.is-hidden {
  display: none !important;
}

.g-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.g-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.85s ease, filter 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  filter: blur(12px);
}

.g-img.is-ready {
  opacity: 1;
  filter: blur(0);
}

.g-card:hover .g-img {
  transform: scale(1.07);
}

.g-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.16) 28%, rgba(0,0,0,0.48) 100%);
  opacity: 0;
  transition: opacity var(--tr);
}

.g-card:hover .g-overlay,
.g-media:focus-visible .g-overlay {
  opacity: 1;
}

.g-pill,
.g-zoom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8, 28, 49, 0.68);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.g-zoom {
  width: 42px;
  min-width: 42px;
  justify-content: center;
  padding: 0;
}

.g-meta {
  padding: 18px 18px 20px;
}

.g-meta h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.06;
}

.g-meta p {
  margin: 0;
  color: var(--text-2);
}

.g-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.g-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* =========================
   LOAD MORE
========================= */
.g-load {
  display: grid;
  place-items: center;
  gap: 14px;
  margin-top: 28px;
}

.g-sentinel {
  width: 100%;
  height: 1px;
}

.g-load-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), border-color var(--tr);
}

.g-load-btn:hover {
  transform: translateY(-2px);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line-2);
}

/* =========================
   CTA
========================= */
.gallery-cta {
  margin-top: 34px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.09), rgba(102, 217, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.cta-box h2 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.cta-box p {
  margin: 0;
  color: var(--text-2);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr), color var(--tr);
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn.ghost {
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 420;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr), visibility var(--tr);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 18, 0.72);
  backdrop-filter: blur(8px);
}

.lb-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1100px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  transform: translate(-50%, -50%) scale(0.96);
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.94), rgba(8, 28, 49, 0.86));
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  transition: transform var(--tr2);
}

html[data-theme="light"] .lb-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(237,248,255,0.92));
}

.lightbox.is-open .lb-panel {
  transform: translate(-50%, -50%) scale(1);
}

.lb-panel img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: rgba(0,0,0,0.20);
}

.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(21, 232, 240, 0.973);
  background: rgba(141, 147, 153, 0.72);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.lb-actions {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lb-btn {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(6, 194, 219, 0.959);
  background: rgba(189, 196, 204, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.lb-caption {
  padding: 16px 20px 18px;
  color: var(--heading);
  font-weight: 800;
  text-align: center;
}

/* =========================
   REVEAL
========================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ACTIVE PAGE LINKS
========================= */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .gallery-toolbar {
    grid-template-columns: 1fr;
  }

  .gallery.masonry {
    column-count: 2;
  }

  .gallery.grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .gallery-hero,
  .gallery-wrap {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .gallery.masonry,
  .gallery.grid {
    column-count: 1;
    grid-template-columns: 1fr;
  }

  .cta-box,
  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .cta-btn {
    width: 100%;
  }

  .lb-panel {
    width: min(1100px, calc(100% - 14px));
    border-radius: 22px;
  }
}

@media (max-width: 640px) {
  .g-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .g-card,
  .cta-box {
    border-radius: 22px;
  }

  .cta-box {
    padding: 22px;
  }

  .g-meta {
    padding: 16px 16px 18px;
  }

  .g-meta h3 {
    font-size: 22px;
  }
}
/* =========================
   PREMIUM GALLERY
========================= */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
gap:18px;
}

.g-card{
position:relative;
overflow:hidden;
border-radius:14px;
background:#000;
}

.g-img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform .6s ease;
}

.g-card:hover .g-img{
transform:scale(1.08);
}

.g-media{
display:block;
width:100%;
height:100%;
border:none;
padding:0;
background:none;
cursor:pointer;
}

@media(max-width:768px){
.gallery{
grid-template-columns:1fr 1fr;
gap:12px;
}
}







/* ======================================
   CONTACT PAGE — JMROWLAND ELITE
====================================== */

.contact-page {
  position: relative;
  overflow-x: clip;
}

/* =========================
   HERO
========================= */
.contact-hero {
  position: relative;
  padding: 88px 0 52px;
  overflow: hidden;
}

.contact-hero .jm-c {
  position: relative;
  z-index: 3;
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.kicker-slash {
  opacity: 0.7;
  margin-left: 6px;
}

.page-title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-align: center;
}

.lead {
  margin: 18px auto 0;
  max-width: 60ch;
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 20px);
}

.center {
  text-align: center;
  width: 100%;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), border-color var(--tr), box-shadow var(--tr), color var(--tr);
}

.pill:hover {
  transform: translateY(-2px);
}

.pill.primary {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.pill.ghost:hover,
.pill:hover {
  border-color: var(--line-2);
  background: rgba(102, 217, 255, 0.10);
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.meta-ic {
  font-size: 16px;
}

/* ambient */
.c-blob,
.c-grid {
  position: absolute;
  pointer-events: none;
}

.c-blob {
  border-radius: 50%;
  filter: blur(2px);
}

.c-blob-1 {
  width: 180px;
  height: 180px;
  right: 10%;
  top: 20px;
  background: radial-gradient(circle, rgba(135, 229, 255, 0.30), rgba(135, 229, 255, 0.06) 68%, transparent 74%);
  animation: cBlobA 5.6s ease-in-out infinite;
}

.c-blob-2 {
  width: 140px;
  height: 140px;
  left: -20px;
  bottom: 0;
  background: radial-gradient(circle, rgba(102, 217, 255, 0.22), rgba(102, 217, 255, 0.04) 68%, transparent 74%);
  animation: cBlobB 6.8s ease-in-out infinite;
}

.c-grid {
  inset: auto 0 0 0;
  height: 140px;
  opacity: 0.08;
  background-image:
    linear-gradient(to right, rgba(102,217,255,0.30) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(102,217,255,0.30) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 70%, transparent);
}

@keyframes cBlobA {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(12px) translateX(-8px); }
}

@keyframes cBlobB {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(6px); }
}

/* =========================
   CONTACT INFO CARDS
========================= */
.contact-cards {
  padding: 18px 0 80px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.07), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-2);
}

.info-ic {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--btn-text);
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(102, 217, 255, 0.18);
}

.info-ic svg {
  width: 28px;
  height: 28px;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.08;
}

.info-card p {
  margin: 0;
  color: var(--text);
}

.info-card a {
  color: var(--accent);
  font-weight: 800;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), border-color var(--tr);
}

.mini-btn:hover {
  transform: translateY(-2px);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line-2);
}

/* =========================
   FORM + PHOTO PANEL
========================= */
.contact-panel {
  padding: 0 0 100px;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.contact-form-card,
.contact-photo {
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.07), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.contact-form-card {
  padding: 28px;
}

.contact-form-card h2 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.form-sub {
  margin: 0 0 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
}

.field input {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  padding: 14px 16px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-3);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(102, 217, 255, 0.12);
  background: rgba(102, 217, 255, 0.08);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.check input {
  margin-top: 3px;
}

.tiny {
  font-size: 12px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.send-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr), color var(--tr);
}

.send-btn {
  border: 0;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.send-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.send-ic {
  font-size: 18px;
  line-height: 1;
}

.ghost-btn {
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
}

.form-hint {
  font-size: 13px;
}

/* right side */
.contact-photo {
  padding: 18px;
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

.photo-frame {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.photo-frame img,
.photo-glow {
  position: absolute;
  inset: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-glow {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.18) 44%, rgba(0,0,0,0.56) 100%),
    radial-gradient(circle at 76% 18%, rgba(135, 229, 255, 0.20), transparent 24%);
}

.photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 28, 49, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.side-cta {
  display: grid;
  gap: 14px;
}

.side-cta__card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
}

.side-cta__card.ghost {
  background: rgba(102, 217, 255, 0.04);
}

.side-cta__card strong {
  display: block;
  color: var(--heading);
  margin-bottom: 8px;
}

.side-cta__card p {
  margin: 0 0 14px;
}

.side-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.08);
  color: var(--text);
  font-weight: 800;
}

/* =========================
   MAP
========================= */
.contact-map {
  padding: 0 0 110px;
}

.map-wrap {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: var(--panel);
}

.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

/* =========================
   TOAST
========================= */
.c-toast {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 440;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
}

.c-toast.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-toast__inner {
  min-width: 240px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.96), rgba(8, 28, 49, 0.88));
  color: #fff;
  box-shadow: var(--shadow-heavy);
  font-weight: 800;
}

html[data-theme="light"] .c-toast__inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(237,248,255,0.94));
  color: var(--heading);
}

/* =========================
   ACTIVE PAGE LINKS
========================= */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .contact-hero,
  .contact-cards,
  .contact-panel,
  .contact-map {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .two-col,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .send-btn,
  .form-actions .ghost-btn {
    width: 100%;
  }

  .map-wrap,
  .contact-form-card,
  .contact-photo,
  .info-card {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .contact-form-card,
  .contact-photo,
  .info-card {
    padding: 20px;
  }

  .photo-frame {
    min-height: 280px;
  }

  .map-wrap iframe {
    height: 320px;
  }

  .c-toast {
    right: 12px;
    left: 12px;
    bottom: 82px;
  }

  .c-toast__inner {
    max-width: none;
  }
}








/* ======================================
   FAQS PAGE — JMROWLAND ELITE
====================================== */

.faqs-page {
  position: relative;
  overflow-x: clip;
}

.faqs-wrap {
  position: relative;
  padding: 88px 0 110px;
  overflow: hidden;
}

.faqs-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* =========================
   LEFT SIDE
========================= */
.faqs-left {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 18px;
  align-content: start;
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.kicker-slash {
  opacity: 0.7;
  margin-left: 6px;
}

.faqs-title {
  margin: 0;
  color: var(--heading);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.faqs-sub {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  max-width: 52ch;
}

/* Quick chips */
.qa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qa-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), border-color var(--tr), background var(--tr), color var(--tr);
}

.qa-chip:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
  background: rgba(102, 217, 255, 0.10);
}

/* Help card */
.help-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.08), rgba(102, 217, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.help-card h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.help-card p {
  margin: 0;
  color: var(--heading);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  font-weight: 900;
}

.help-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.help-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), border-color var(--tr), box-shadow var(--tr), color var(--tr);
}

.help-pill:hover {
  transform: translateY(-2px);
}

.help-pill.primary {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.help-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 900;
}

.help-ic {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.08);
  color: var(--accent);
}

.help-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* mini cards */
.faq-mini {
  display: grid;
  gap: 12px;
}

.mini-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
}

.mini-card strong {
  display: block;
  color: var(--heading);
  margin-bottom: 6px;
}

/* =========================
   RIGHT SIDE
========================= */
.faqs-right {
  display: grid;
  gap: 18px;
}

/* toolbar */
.faq-toolbar {
  display: grid;
  gap: 14px;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.faq-s-ic {
  color: var(--accent);
  font-size: 16px;
}

.faq-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.faq-search input::placeholder {
  color: var(--text-3);
}

.faq-clear {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.f-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), border-color var(--tr), background var(--tr), color var(--tr), box-shadow var(--tr);
}

.f-chip:hover {
  transform: translateY(-2px);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line-2);
}

.f-chip.is-active {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.faq-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-act {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  font-weight: 800;
  transition: transform var(--tr), background var(--tr), border-color var(--tr);
}

.faq-act:hover {
  transform: translateY(-2px);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line-2);
}

/* faq list */
.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(102, 217, 255, 0.07), rgba(102, 217, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr), opacity var(--tr);
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-mid);
}

.faq-item.is-hidden {
  display: none !important;
}

.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--heading);
  text-align: left;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.faq-plus {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.06);
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
  transition: transform var(--tr), background var(--tr), color var(--tr);
}

.faq-item.is-open .faq-plus {
  transform: rotate(45deg);
  background: rgba(102, 217, 255, 0.14);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--tr2);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a > * {
  overflow: hidden;
}

.faq-a p {
  margin: 0;
  padding: 0 24px 16px;
  color: var(--text);
  line-height: 1.75;
}

.faq-helpful {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 24px 20px;
}

.h-btn {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.h-btn.is-voted {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* empty state */
.faq-empty__card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(102, 217, 255, 0.05);
  text-align: center;
}

.faq-empty__card strong {
  display: block;
  color: var(--heading);
  font-size: 22px;
  margin-bottom: 8px;
}

.faq-empty__card p {
  margin: 0 0 16px;
}

/* toast */
.fq-toast {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 440;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
}

.fq-toast.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fq-toast__inner {
  min-width: 220px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(8, 28, 49, 0.96), rgba(8, 28, 49, 0.88));
  color: #fff;
  box-shadow: var(--shadow-heavy);
  font-weight: 800;
}

html[data-theme="light"] .fq-toast__inner {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(237,248,255,0.94));
  color: var(--heading);
}

/* ambient */
.fq-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.fq-blob-1 {
  width: 180px;
  height: 180px;
  left: -30px;
  top: 16%;
  background: radial-gradient(circle, rgba(135, 229, 255, 0.24), rgba(135, 229, 255, 0.05) 68%, transparent 74%);
}

.fq-blob-2 {
  width: 150px;
  height: 150px;
  right: -20px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(102, 217, 255, 0.20), rgba(102, 217, 255, 0.04) 68%, transparent 74%);
}

/* active nav */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* responsive */
@media (max-width: 1200px) {
  .faqs-grid {
    grid-template-columns: 1fr;
  }

  .faqs-left {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .faqs-wrap {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .faq-q {
    font-size: 20px;
    padding: 20px;
  }

  .faq-a p,
  .faq-helpful {
    padding-left: 20px;
    padding-right: 20px;
  }

  .help-card,
  .faq-item,
  .faq-empty__card {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .faqs-title {
    font-size: clamp(34px, 9vw, 48px);
  }

  .faq-filters,
  .faq-actions,
  .qa-chips,
  .help-cta {
    flex-direction: column;
  }

  .f-chip,
  .faq-act,
  .qa-chip,
  .help-pill {
    width: 100%;
  }

  .help-card,
  .mini-card {
    padding: 20px;
  }

  .fq-toast {
    right: 12px;
    left: 12px;
    bottom: 82px;
  }

  .fq-toast__inner {
    max-width: none;
  }
}






/* ======================================
   REVIEWS PAGE — JMROWLAND ELITE
====================================== */

.clean-hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* background slider */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slides .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.28), rgba(3, 7, 18, 0.48) 40%, rgba(3, 7, 18, 0.74) 100%),
    radial-gradient(circle at 20% 18%, rgba(102, 217, 255, 0.12), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(102, 217, 255, 0.10), transparent 24%);
}

html[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(180deg, rgba(236,250,255,0.18), rgba(10,50,92,0.18) 45%, rgba(10,50,92,0.34) 100%),
    radial-gradient(circle at 20% 18%, rgba(102, 217, 255, 0.12), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(102, 217, 255, 0.10), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hero-content h1 {
  margin: 0;
  color: #4cc9e9da;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

html[data-theme="light"] .hero-content h1 {
  color: #4cc9e9da;
}

.hero-sub {
  margin: 0;
  max-width: 44ch;
  color: #4cc9e9da;
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.7;
}

html[data-theme="light"] .hero-sub {
  color:#4cc9e9da;
}

/* coming soon card */
.review-coming {
  width: min(760px, 100%);
  margin-top: 8px;
  padding: 28px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8, 28, 49, 0.56);
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  color: #4cc9e9da;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

html[data-theme="light"] .review-coming {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.22);
}

.review-coming span {
  display: block;
  margin-top: 12px;
  color: #4cc9e9da;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0;
}

/* buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 800;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), border-color var(--tr), color var(--tr);
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn.primary {
  color: var(--btn-text);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(102, 217, 255, 0.18);
}

.hero-btn.secondary {
  color: #161212;
  background: rgba(248, 248, 248, 0.986);
  backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
  background: rgba(74, 174, 231, 0.952);
}

/* floating highlights */
.clean-hero::before,
.clean-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  z-index: 2;
}

.clean-hero::before {
  width: 180px;
  height: 180px;
  left: -30px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(102, 217, 255, 0.20), rgba(102, 217, 255, 0.04) 68%, transparent 74%);
  animation: rvBlobA 6s ease-in-out infinite;
}

.clean-hero::after {
  width: 200px;
  height: 200px;
  right: -40px;
  top: 12%;
  background: radial-gradient(circle, rgba(135, 229, 255, 0.28), rgba(135, 229, 255, 0.06) 68%, transparent 74%);
  animation: rvBlobB 7s ease-in-out infinite;
}

@keyframes rvBlobA {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(8px); }
}

@keyframes rvBlobB {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(12px) translateX(-8px); }
}

/* active nav */
.jm-n__a[aria-current="page"],
.jm-m__nav a[aria-current="page"] {
  color: var(--heading);
  background: rgba(102, 217, 255, 0.10);
  border-color: var(--line);
}

/* responsive */
@media (max-width: 860px) {
  .clean-hero {
    min-height: 82vh;
  }

  .hero-content {
    width: min(1180px, calc(100% - 20px));
  }

  .review-coming {
    border-radius: 24px;
    padding: 22px 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .hero-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .clean-hero {
    min-height: 74vh;
  }

  .hero-content h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .review-coming {
    font-size: 26px;
  }

  .review-coming span {
    font-size: 14px;
  }
}







html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.jm-c,
.container,
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.clean-hero,
.hero,
.hero-slides,
.slide {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 700px;
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    text-align: left;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .jm-h__in {
    width: 100%;
    max-width: 100%;
  }

  .jm-n {
    max-width: 100%;
  }

  .service-dropdown,
  .services-dropdown,
  .service-menu,
  .dropdown-menu {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .service-card,
  .services-card,
  .dropdown-card,
  .service-item {
    width: 100%;
    max-width: 100%;
  }
}



/* =========================
   PREMIUM PRELOADER
========================= */
#jm-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(102, 217, 255, 0.08), transparent 42%),
    rgba(3, 15, 28, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#jm-preloader.jm-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.jm-preloader__inner {
  position: relative;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jm-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 8px solid rgba(173, 232, 244, 0.16);
  border-top-color: #66d9ff;
  border-right-color: #8ae7ff;
  box-shadow:
    0 0 30px rgba(102, 217, 255, 0.14),
    inset 0 0 20px rgba(102, 217, 255, 0.05);
  animation: jm-preloader-spin 1s linear infinite;
}

.jm-preloader__ring::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
}

.jm-preloader__logo-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 30, 54, 0.88);
  border: 1px solid rgba(102, 217, 255, 0.22);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.28),
    0 0 25px rgba(102, 217, 255, 0.10);
  animation: jm-preloader-float 2.2s ease-in-out infinite;
  overflow: hidden;
}

.jm-preloader__logo {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.jm-preloader__text {
  position: absolute;
  left: 50%;
  bottom: -46px;
  transform: translateX(-50%);
  width: 280px;
  margin: 0;
  text-align: center;
  color: #d9f7ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

@keyframes jm-preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes jm-preloader-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  .jm-preloader__inner {
    width: 160px;
    height: 160px;
  }

  .jm-preloader__logo-wrap {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }

  .jm-preloader__text {
    width: 240px;
    bottom: -42px;
    font-size: 12px;
  }
}