:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #0f172a;
  --muted: #4b556a;
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --accent: #0ea5e9;
  --border: #d6dfed;
  --shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

main {
  position: relative;
  background: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=80") center / cover fixed no-repeat;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.65) 0%, transparent 100%);
  border-bottom: none;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  position: fixed;
  background: rgba(7, 14, 30, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: none;
  box-shadow: none;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 2.5rem 0.6rem 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  height: 9rem;
  width: 20rem;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: #38bdf8;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: #fff;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9) !important;
  color: #fff !important;
  border-radius: 0.55rem !important;
  padding: 0.75rem 1.6rem !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  margin-left: 0.8rem;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.42);
  transition: box-shadow 0.22s ease, transform 0.22s ease !important;
}

.nav-cta:hover {
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.58) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#heroSlider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(2, 6, 23, 0.8) 0%, rgba(2, 6, 23, 0.35) 50%, rgba(2, 6, 23, 0.68) 100%);
  z-index: 2;
}

.hero-content-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, 92%);
  z-index: 3;
  padding-bottom: 5.5rem;
}

.hero-content {
  padding: 0.2rem 0;
  color: #fff;
}

.eyebrow {
  color: #bae6fd;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin: 0.55rem 0 0.8rem;
  line-height: 1.15;
}

.hero-title {
  text-shadow: 0 8px 24px rgba(2, 6, 23, 0.55);
  max-width: 16ch;
}

/* ══════════════════════════════
   ABOUT SECTION
══════════════════════════════ */
.about-section {
  position: relative;
  overflow: hidden;
}

/* Gold top accent line */
.about-section::before {
  border-top: 4px solid #d7be85;
}

/* Dark text — readable against the semi-transparent background */
.about-section .about-header-block h2,
.about-section .about-h2 { color: #0f172a; }
.about-section .about-sub { color: #1e293b; }
.about-section .about-sub strong { color: #0f172a; }
.about-section .about-col-label { color: #2d365f !important; }
.about-section .prop-type-row div strong { color: #0f172a !important; }
.about-section .prop-type-row div p { color: #1e293b !important; }
.about-section .promise-body strong { color: #0f172a !important; }
.about-section .promise-body p { color: #1e293b !important; }
.about-section .astat-label { color: rgba(255,255,255,0.9); }

/* Header block */
.about-header-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.8rem;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d7be85;
  background: #2d365f;
  padding: 0.32rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.1rem;
}

.about-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #111111;
  line-height: 1.22;
  margin-bottom: 0.9rem;
}

.about-h2-accent {
  color: #2d365f;
  position: relative;
  display: inline-block;
}

.about-h2-accent::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: #d7be85;
  border-radius: 2px;
  margin-top: 3px;
}

.about-sub {
  font-size: 1.05rem;
  color: #333333;
  line-height: 1.75;
  margin: 0;
}

.about-sub strong { color: #111111; }

/* Stats strip */
.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d365f 0%, #3d4a7a 100%);
  border-radius: 1.2rem;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 32px rgba(45,54,95,0.22);
}

.astat {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.astat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #d7be85;
  line-height: 1;
  letter-spacing: -0.02em;
}

.astat-label {
  display: block;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.82);
  margin-top: 0.45rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.astat-div {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Body: two columns */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-col-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2d365f !important;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #d7be85;
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* Property type rows */
.prop-type-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prop-type-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}

.prop-type-row:last-child { border-bottom: none; }

.pt-icon {
  font-size: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
  background: linear-gradient(135deg, #2d365f, #3d4a7a);
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45,54,95,0.2);
}

.prop-type-row div strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.2rem;
}

.prop-type-row div p {
  font-size: 0.82rem;
  color: #444444;
  margin: 0;
  line-height: 1.5;
}

/* Promise cards */
.about-promises {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.promise-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1.5px solid #d6dfed;
  border-left: 4px solid #2d365f;
  border-radius: 0.8rem;
  padding: 1.15rem 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s, border-left-color 0.2s;
}

.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45,54,95,0.13);
  border-left-color: #d7be85;
}

.promise-icon {
  font-size: 1.55rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.promise-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.3rem;
}

.promise-body p {
  font-size: 0.84rem;
  color: #444444;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-stats { flex-wrap: wrap; gap: 1rem; }
  .astat-div { display: none; }
  .about-body { grid-template-columns: 1fr; gap: 2rem; }
}

.hero-text,
.section-intro,
p {
  color: var(--muted);
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  margin: 1.35rem 0;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.78rem 1.12rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}

.btn-ghost {
  border-color: #2d365f;
  background: transparent;
  color: #2d365f;
}

.btn-ghost:hover {
  background: #2d365f;
  color: #fff;
}

.btn-full {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stats div {
  display: grid;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.7rem;
}

.stats strong {
  color: #fff;
  font-size: 1.2rem;
}

.stats span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}

.slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0b1220;
  isolation: isolate;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 0.9s ease;
  z-index: 1;
}

.slide.is-active {
  opacity: 1;
  z-index: 2;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.hero-controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.6rem;
  z-index: 3;
  width: min(420px, 92%);
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.35rem 0.4rem;
}

.control-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.slider-dots button {
  width: 0.58rem;
  height: 0.58rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  padding: 0;
}

.slider-dots button.is-active {
  background: #fff;
}

.section,
.section-muted,
.feature-band {
  position: relative;
  background: transparent;
}

.section {
  padding: 4rem 0;
}

.section::before,
.section-muted::before,
.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 249, 255, 0.84);
  z-index: 0;
}

.section > .container,
.section-muted > .container,
.feature-band > .container {
  position: relative;
  z-index: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

h3 {
  margin-top: 0;
}

.card {
  background: linear-gradient(155deg, rgba(239, 248, 255, 0.94), rgba(225, 240, 255, 0.86));
  border: 1px solid rgba(151, 190, 232, 0.55);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 16px 32px rgba(59, 130, 246, 0.14);
  backdrop-filter: blur(2px);
}

.contact-form label {
  display: block;
  margin: 0.7rem 0 0.35rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 0.74rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #95b8ff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
}

small {
  display: block;
  margin-top: 0.55rem;
  color: var(--primary-dark);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.property {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 0;
  color: #fff;
  display: grid;
  align-content: end;
}

.property::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}

.property::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.84));
}

.property > * {
  position: relative;
  z-index: 1;
}

.property:nth-child(1)::before {
  background-image: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1100&q=80");
}

.property:nth-child(2)::before {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1100&q=80");
}

.property:nth-child(3)::before {
  background-image: url("https://images.unsplash.com/photo-1448630360428-65456885c650?auto=format&fit=crop&w=1100&q=80");
}

.property:nth-child(4)::before {
  background-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1100&q=80");
}

.property:nth-child(5)::before {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1100&q=80");
}

.property:nth-child(6)::before {
  background-image: url("https://images.unsplash.com/photo-1460472178825-e5240623afd5?auto=format&fit=crop&w=1100&q=80");
}

.property:hover::before {
  transform: scale(1.1);
}

.property:hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.25);
}

.tag {
  display: inline-block;
  font-size: 0.78rem;
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.26);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.feature-band {
  position: relative;
  min-height: 340px;
  display: grid;
  align-items: center;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 15, 28, 0.52), rgba(7, 15, 28, 0.2));
  z-index: 0;
}

.feature-inner {
  position: relative;
  z-index: 1;
  color: #0f172a;
  max-width: 700px;
}

.feature-inner .eyebrow {
  color: #1e3a8a;
}

.feature-inner p {
  color: #1f2937;
}

.process-item {
  position: relative;
  padding-top: 2.2rem;
}

.process-step {
  position: absolute;
  top: 0.65rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
}

/* ── Journey Road ── */
.journey-section {
  overflow: hidden;
}

.journey-road {
  position: relative;
  margin-top: 3rem;
  height: 820px;
}

/* S-curve SVG road */
.journey-svg-road {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.road-dash-anim {
  animation: roadFlow 2.5s linear infinite;
}

@keyframes roadFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -24; }
}

/* ── Journey nodes — pinned on S-curve ── */
.journey-nodes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Each node is a flex row (card + bubble OR bubble + card).
   Positioned so its bubble center sits exactly on the bezier road.
   Formula card-left : left = road_x% − 220px(card) − 14px(gap) − 34px(½bubble)
   Formula card-right: left = road_x% − 34px(½bubble)             */
.jnode {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(22px);
  animation: stepFadeIn 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
}

.jnode-1 { left: calc(63% - 268px); top: calc(8%  - 65px); }
.jnode-2 { left: calc(70% - 268px); top: calc(36% - 65px); }
.jnode-3 { left: calc(32% - 34px);  top: calc(62% - 65px); }
.jnode-4 { left: calc(37% - 34px);  top: calc(92% - 65px); }

/* Glowing emoji bubble sitting on the road */
.jbubble {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #0f172a;
  border: 3px solid var(--acc, #d7be85);
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--acc, #d7be85) 18%, transparent),
    0 6px 22px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 2;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.jnode:hover .jbubble {
  box-shadow:
    0 0 0 13px color-mix(in srgb, var(--acc, #d7be85) 26%, transparent),
    0 8px 28px rgba(0,0,0,0.5);
  transform: scale(1.1);
}

/* ── Fancy ticket card ── */
.jcard {
  width: 230px;
  min-height: 118px;
  background: linear-gradient(145deg, #151f38 60%, #1a2847 100%);
  padding: 0;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.jcard:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 42px rgba(0,0,0,0.5);
}

/* Diagonal accent slash across the top-left corner */
.jcard::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    var(--acc, #d7be85) 0%,
    var(--acc, #d7be85) 28%,
    transparent 28%
  );
  opacity: 0.13;
  z-index: 0;
}

/* Step number — bold, visible, top-left inside the slash */
.jnum {
  position: absolute;
  top: 0.35rem;
  left: 0.5rem;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--acc, #d7be85);
  opacity: 1;
  z-index: 2;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Thin top accent line */
.jcard::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--acc, #d7be85);
  border-radius: 1rem 1rem 0 0;
  z-index: 2;
}

/* Content area */
.jcard-body {
  position: relative;
  z-index: 1;
  padding: 1.7rem 1.1rem 1.1rem;
}

.jcard-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #fff;
}

.jcard-body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  margin: 0;
  line-height: 1.5;
}

/* Punch-hole connector dot on the card edge facing the bubble */
.jcard-left {
  clip-path: polygon(0 0, 100% 0, 100% 50%, calc(100% - 0px) 50%, 100% 50%, 100% 100%, 0 100%);
}

.jcard-left .jcard-body {
  padding-right: 1.4rem;
}

/* Arrow connector — right side (card-left points → bubble) */
.jcard-left::after,
.jcard-right::before {
  display: none; /* replaced by pseudo on wrapper */
}

/* Left card: flat right edge + triangle pointing right */
.jcard-left {
  border-radius: 1rem 0.3rem 0.3rem 1rem;
}

.jcard-right {
  border-radius: 0.3rem 1rem 1rem 0.3rem;
}

/* Triangle tab connecting card to bubble — on the node wrapper */
.jnode .jtab {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

/* card on left → tab points right */
.jcard-left + .jtab-r,
.jtab-r {
  border-left: 14px solid var(--acc, #d7be85);
  border-right: none;
}

/* card on right → tab points left */
.jtab-l {
  border-right: 14px solid var(--acc, #d7be85);
  border-left: none;
}

@keyframes stepFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: vertical road timeline (desktop S-shape remains unchanged) */
@media (max-width: 700px) {
  .journey-svg-road { display: none; }

  .journey-road {
    height: auto;
    margin-top: 1.2rem;
    padding: 0.2rem 0;
    overflow: visible;
  }

  .journey-nodes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.35rem 0 0.8rem 0.95rem;
    margin: 0.4rem 0 0 0.65rem;
    border-left: 3px solid #d7be85;
  }

  .jnode,
  .jnode-1, .jnode-2, .jnode-3, .jnode-4 {
    position: static;
    flex-direction: row;
    gap: 0.8rem;
    align-items: flex-start;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .jbubble {
    order: 1;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    flex-shrink: 0;
    border-width: 2px;
    margin-left: -0.15rem;
  }

  .jcard-left, .jcard-right {
    order: 2;
    width: auto;
    flex: 1;
    min-height: auto;
    border-radius: 0.8rem !important;
    background: #ffffff;
    border: 1px solid #d6dfed;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
  }

  .jcard-left::after, .jcard-right::before,
  .jcard::after { display: none; }

  .jtab-r, .jtab-l { display: none; }

  .jcard::before {
    opacity: 0.08;
  }

  .jcard-body {
    padding: 1.2rem 0.9rem 0.85rem;
  }

  .jcard-body h3 {
    color: #0f172a;
    font-size: 0.95rem;
  }

  .jcard-body p {
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .jnum {
    font-size: 0.92rem;
    top: 0.3rem;
    left: 0.5rem;
    text-shadow: none;
  }
}


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checklist {
  margin: 0;
  padding-left: 1.2rem;
}

.checklist li {
  margin: 0.72rem 0;
}

/* ── Services Grid ── */
.services-section {
  background: transparent;
}

/* Lighter overlay so the background image shows through */
.services-section::before {
  background: rgba(240, 245, 255, 0.55) !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  animation: stepFadeIn 0.55s ease forwards;
  animation-delay: var(--delay, 0s);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.svc-card::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--accent, #d7be85);
  border-radius: 1.2rem 1.2rem 0 0;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.svc-icon-wrap {
  padding: 1.6rem 1.6rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.svc-icon {
  font-size: 2.6rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.8rem;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-body {
  padding: 1rem 1.6rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-body h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--fg);
}

.svc-body > p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.svc-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #d7be85);
}

.svc-tag {
  display: inline-block;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent, #d7be85);
  background: rgba(215, 190, 133, 0.1);
  border: 1px solid var(--accent, #d7be85);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  align-self: flex-start;
}

.svc-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(215, 190, 133, 0.28);
  background:
    radial-gradient(circle at 14% 18%, rgba(215, 190, 133, 0.32) 0%, rgba(215, 190, 133, 0) 32%),
    radial-gradient(circle at 82% 80%, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0) 36%),
    linear-gradient(145deg, #101935 0%, #1b2c58 52%, #22356c 100%);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.26);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.25;
  pointer-events: none;
}

.contact-header {
  text-align: left;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.contact-header .eyebrow {
  color: #d7be85;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.contact-header h2 {
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.contact-header .section-intro {
  max-width: 540px;
  margin: 0;
  color: rgba(226, 232, 240, 0.95);
}

.contact-highlights {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  font-size: 0.87rem;
  font-weight: 600;
  color: #f8fafc;
}

.contact-address-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #d7be85;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.contact-address-title {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d7be85;
  font-weight: 700;
}

.contact-address-text {
  margin: 0;
  color: #eef2ff;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-quick-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.wa-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.55rem 1rem;
  background: #25d366;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-quick-actions .btn-primary {
  background: linear-gradient(135deg, #d7be85, #f0d9a8);
  color: #1a2038;
  box-shadow: 0 10px 24px rgba(215, 190, 133, 0.35);
  border: 0;
}

.contact-quick-actions .btn-primary:hover {
  box-shadow: 0 14px 30px rgba(215, 190, 133, 0.45);
}

.wa-icon-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.contact-form {
  margin: 0;
  width: 100%;
  border-radius: 1.4rem;
  border: 1px solid rgba(45, 54, 95, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.96));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.11);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #d7be85, #2d365f);
}

.contact-form h3 {
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
  color: #0f172a;
}

@media (max-width: 700px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 1.25rem;
  }

  .contact-header {
    text-align: center;
  }

  .contact-header .section-intro {
    margin: 0 auto;
  }

  .contact-highlights,
  .contact-quick-actions {
    justify-content: center;
  }

  .contact-address-card {
    text-align: center;
  }
}

.form-error {
  color: #dc2626;
  font-size: 0.82rem;
  min-height: 1.1rem;
}

/* ══════════════════════════════
   CHANNEL PARTNERS
══════════════════════════════ */
.partners-section {
  background: #ffffff;
  padding: 3rem 0 2.5rem;
  border-top: 1px solid #e8edf5;
  border-bottom: 1px solid #e8edf5;
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #2d365f;
  margin: 0 0 2rem;
  position: relative;
}

.partners-label::before,
.partners-label::after {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 2px;
  background: #d7be85;
  vertical-align: middle;
  margin: 0 0.8rem;
}

.partners-track-wrap {
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partners-track img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
  border-radius: 0.4rem;
}

.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

.partners-subgroup {
  margin-top: 2rem;
  text-align: center;
}

.partners-sub-label {
  margin: 0 0 1rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #4b556a;
}

.partners-static {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partners-static img {
  height: 62px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  border-radius: 0.4rem;
  filter: grayscale(15%);
  opacity: 0.95;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}

.partners-static img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes partnersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0b1220;
  color: rgba(255, 255, 255, 0.88);
}

.footer-row {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.floating-call {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.floating-call-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%);
  animation: callFlash 2.1s ease-in-out infinite;
}

.floating-call-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}

.floating-call-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.floating-call-text strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-call-text em {
  font-style: normal;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.floating-call:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.44);
}

@keyframes callFlash {
  0%   { transform: translateX(-120%); opacity: 0; }
  30%  { opacity: 1; }
  55%  { opacity: 0.9; }
  100% { transform: translateX(120%); opacity: 0; }
}

@media (max-width: 900px) {
  .floating-call {
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.55rem 0.72rem;
    gap: 0.45rem;
  }

  .partners-label {
    font-size: clamp(0.66rem, 2.5vw, 0.8rem);
    letter-spacing: 0.04em;
    text-transform: none;
    white-space: nowrap;
    margin-bottom: 1.25rem;
  }

  .partners-sub-label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
  }

  .partners-label::before,
  .partners-label::after {
    display: none;
  }

  .floating-call-text strong {
    font-size: 0.68rem;
  }

  .floating-call-text em {
    font-size: 0.82rem;
  }

  .three-col,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-content-wrap {
    padding-bottom: 7rem;
  }

  .site-header {
    position: fixed;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1rem;
    gap: 0.6rem;
  }

  .brand {
    justify-content: center;
    width: 100%;
  }

  .brand-logo {
    height: 7rem;
    width: 16rem;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 1.2rem;
    right: 1rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 14, 30, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 30;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0 !important;
    font-size: 1rem !important;
    padding: 0.6rem 1.2rem !important;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}
