html { scroll-behavior: smooth; }

.real-estate-module {
  --n900: #010810;
  --n800: #030C18;
  --n700: #071A2E;
  --n600: #0D2444;
  --n500: #163354;
  --n400: #1E4778;
  --b600: #1251D3;
  --b500: #1D63D4;
  --b400: #3B82F6;
  --b300: #60A5FA;
  --b200: #93C5FD;
  --b100: #DBEAFE;
  --b50:  #EFF6FF;
  --white: #FFFFFF;
  --td: #E2EEFF;
  --tmd: #7BA8D4;
  --tl: #0A1628;
  --tml: #4B6B8D;
  --bd: rgba(59,130,246,0.18);
  --bl: rgba(18,81,211,0.12);

  font-family: 'Google Sans Flex', sans-serif;
  background: var(--n800);
  color: var(--td);
  overflow-x: hidden;
  min-height: 100vh;

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--n900); }
  ::-webkit-scrollbar-thumb { background: var(--b600); border-radius: 3px; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 72px; transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(3,12,24,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bd);
  padding: 14px 72px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; display: block; object-fit: contain; }
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--b400); animation: pulse-blue 2s ease infinite;
}

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--tmd); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.3px; transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-btn {
  background: var(--b500); color: var(--white) !important;
  padding: 10px 24px; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: all 0.3s !important;
}
.nav-btn:hover { background: var(--b400) !important; box-shadow: 0 8px 24px rgba(29,99,212,0.45); transform: translateY(-1px); }

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  border-radius: 8px; transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.07); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav-mobile-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #060F1E;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.nav-mobile-drawer.open {
  transform: translateX(0);
  pointer-events: all;
}
.nav-mobile-inner {
  display: flex; flex-direction: column;
  padding: 100px 36px 48px;
  height: 100%;
}
.nav-mobile-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile-links a {
  display: block;
  padding: 20px 0;
  font-size: 1.6rem; font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-links a:hover { color: #fff; padding-left: 8px; }
.nav-mobile-cta {
  display: block; text-align: center;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--b500);
  color: #fff !important; text-decoration: none;
  border-radius: 10px; font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
}
.nav-mobile-cta:hover { background: var(--b400); transform: translateY(-1px); }
.nav-mobile-brand {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center;
}
.nav-mobile-brand img { height: 28px; width: auto; opacity: 0.5; }
.nav-backdrop {
  position: fixed; inset: 0; z-index: 998;
  background: transparent;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: var(--n900);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-left-glow {
  position: absolute; left: -200px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,81,211,0.12), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 0;
  width: 100%; padding: 0 72px; padding-top: 120px;
  max-width: 1440px; margin: 0 auto;
}
.hero-content { position: relative; z-index: 2;}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px;
  color: var(--b300); text-transform: uppercase; margin-bottom: 15px;
}
.badge-dot { width: 5px; height: 5px; background: var(--b400); border-radius: 50%; animation: pulse-blue 2s ease infinite; }
.hero-h1 {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 24px;
}
.hero-h1 .gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 40%, #93C5FD 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--tmd); font-size: 1.05rem; line-height: 1.75;
  max-width: 480px; margin-bottom: 40px;
}
.hero-ctas, .hero-cta-wrap {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-prim {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--b500); color: var(--white);
  padding: 15px 32px; border-radius: 6px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-prim:hover { background: var(--b400); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(29,99,212,0.4); }
.btn-sec {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--td);
  padding: 15px 32px; border-radius: 6px;
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none; border: 1px solid var(--bd); transition: all 0.3s;
}
.btn-sec:hover { border-color: var(--b400); color: var(--b300); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 36px; margin-top: 56px;
}
.h-stat-num {
  font-family: 'Google Sans Flex', sans-serif; font-size: 1.9rem; font-weight: 800;
  color: var(--white); display: block; line-height: 1;
}
.h-stat-label { font-size: 0.75rem; color: var(--tmd); margin-top: 5px; letter-spacing: 0.5px; }
.h-stat-div { width: 1px; background: var(--bd); align-self: stretch; }

/* 3D canvas */
.hero-3d { position: relative; height: calc(100vh - 100px); height: calc(100dvh - 100px); background: transparent; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-3d-fade {
  position: absolute; left: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, var(--n900), transparent);
  pointer-events: none; z-index: 2;
}

/* Floating info cards */
.float-card {
  position: absolute; z-index: 4;
  background: rgba(7, 26, 46, 0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59,130,246,0.28);
  border-radius: 14px; padding: 18px 22px;
  animation: fadein 0.8s ease both;
}
.fc1 { top: 22%; right: 6%; }
.fc2 { top: 52%; left: 4%; }
.fc3 { bottom: 18%; right: 8%; }

.fc-label { font-size: 0.68rem; font-weight: 600; color: var(--tmd); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.fc-value { font-family: 'Google Sans Flex', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.fc-sub { font-size: 0.72rem; color: var(--b300); margin-top: 4px; display: flex; align-items: center; gap: 5px; }
.fc-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.22);
  padding: 3px 9px; border-radius: 100px;
  font-size: 0.68rem; color: var(--b300); font-weight: 600;
  margin-top: 8px;
}



/* ========== TRUST ========== */
.trust-section {
  background: #ffffff;
  padding: 32px 0; overflow: hidden;
}
.trust-scroll-wrapper {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.trust-scroll-wrapper:hover .trust-track { animation-play-state: paused; }
.trust-track {
  display: flex; align-items: center; gap: 72px; width: max-content;
  animation: slide-left 32s linear infinite;
}

.trust-item { display: flex; align-items: center; }
.trust-logo {
  height: 48px; width: auto; max-width: 150px;
  display: block; object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.35s, transform 0.35s;
}
.trust-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.06); }

/* ========== CREATIVES CAROUSEL ========== */
.creatives-section {
  background: #ffffff;
  padding: 24px 0 28px;
}
.creatives-clip {
  overflow-x: clip;
  overflow-y: visible;
}
.creatives-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 8px;
}
.creatives-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--b500);
  margin-bottom: 8px;
}
.creatives-tag-line { flex: 0 0 20px; height: 2px; background: var(--b500); border-radius: 2px; }
.creatives-title {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.1;
  color: #0d1829; margin-bottom: 8px;
}
.creatives-title-accent {
  background: linear-gradient(135deg, var(--b500), var(--b300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.creatives-sub {
  font-size: 0.88rem; color: #4a5568;
  line-height: 1.6; margin-bottom: 16px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.creatives-cta {
  display: inline-flex; align-items: center;
  background: #0d1829; color: #fff;
  font-size: 0.88rem; font-weight: 700;
  padding: 12px 28px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.creatives-cta:hover { background: var(--b500); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(29,99,212,0.35); }
.creatives-stage {
  position: relative;
  height: 400px;
  perspective: 1400px;
  cursor: pointer;
}
.creatives-card {
  position: absolute;
  left: 50%; top: 50%;
  width: 340px; height: 340px;
  margin-left: -170px; margin-top: -170px;
  border-radius: 20px; overflow: hidden;
  background: #f0f0f0;
  transition: transform 0.7s cubic-bezier(0.34, 1.12, 0.64, 1), opacity 0.45s ease, z-index 0s;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
  will-change: transform, opacity;
}
.creatives-card img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  pointer-events: none;
}
.creatives-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 10px;
}
.creatives-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff; color: #374151;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.creatives-arrow:hover { border-color: var(--b400); color: var(--b500); transform: scale(1.08); }
.creatives-dots {
  display: flex; align-items: center; gap: 7px;
}
.creatives-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d1d5db; border: none; padding: 0;
  cursor: pointer; transition: background 0.3s, transform 0.3s, width 0.3s;
}
.creatives-dot.active {
  background: var(--b500); transform: scale(1.3);
  width: 20px; border-radius: 4px;
}

/* ========== SECTION COMMONS ========== */
.section-dark { background: var(--n800); }
.section-darker { background: var(--n900); }
.section-light { background: var(--white); }
.section-light2 { background: var(--b50); }
.section { padding: 100px 72px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-tag-dark { color: var(--b300); }
.section-tag-dark .tag-line { width: 24px; height: 2px; background: var(--b400); border-radius: 2px; }
.section-tag-light { color: var(--b600); }
.section-tag-light .tag-line { width: 24px; height: 2px; background: var(--b600); border-radius: 2px; }
.section-h2-dark {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--white); line-height: 1.15;
  margin-bottom: 18px;
}
.section-h2-light {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--tl); line-height: 1.15;
  margin-bottom: 18px;
}
.section-sub-dark { color: var(--tmd); font-size: 1rem; line-height: 1.75; max-width: 520px; }
.section-sub-light { color: var(--tml); font-size: 1rem; line-height: 1.75; max-width: 520px; }

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ========== STATS ========== */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--bl); border-radius: 16px; overflow: hidden;
  margin-top: 56px;
}
.stat-cell {
  padding: 48px 36px; text-align: center;
  border-right: 1px solid var(--bl);
  position: relative; transition: background 0.3s;
}
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: var(--b50); }
.stat-num-wrap {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--b600); line-height: 1; display: block; margin-bottom: 12px;
}
.stat-lbl { font-size: 0.82rem; color: var(--tml); font-weight: 500; letter-spacing: 0.5px; }
.stat-icon { margin-bottom: 16px; color: var(--b500);display: flex;justify-content: center; }

/* ========== SERVICES ========== */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 56px;
}
.s-card {
  background: var(--n700); border: 1px solid var(--bd);
  border-radius: 16px; padding: 44px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default; transform-style: preserve-3d;
  will-change: transform;
}
.s-card:hover { border-color: rgba(59,130,246,0.45); box-shadow: 0 24px 60px rgba(0,8,24,0.5); }
.s-card-shine {
  position: absolute; inset: 0; border-radius: 16px; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(59,130,246,0.07), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.s-card:hover .s-card-shine { opacity: 1; }
.s-card-num {
  position: absolute; top: 36px; right: 40px;
  font-family: 'Google Sans Flex', sans-serif; font-size: 4.5rem; font-weight: 800;
  color: rgba(59,130,246,0.05); line-height: 1;
  pointer-events: none;
}
.s-icon {
  width: 64px; height: 64px; border-radius: 12px;
  background: rgba(59,130,246,0.1); border: 1px solid var(--bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--b300); margin-bottom: 24px; transition: all 0.3s;
  font-size: 1.75rem;
}
.s-card:hover .s-icon { background: rgba(59,130,246,0.18); border-color: rgba(59,130,246,0.4); color: var(--b200); }
.s-title { font-family: 'Google Sans Flex', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.s-desc { color: var(--tmd); font-size: 0.9rem; line-height: 1.78; margin-bottom: 24px; }
.s-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.s-tag {
  padding: 5px 13px; border-radius: 100px;
  background: rgba(59,130,246,0.08); border: 1px solid var(--bd);
  font-size: 0.75rem; color: var(--b200); font-weight: 500;
}

/* ========== PLATFORMS ========== */
.platforms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
}
.p-card {
  background: var(--white); border: 1px solid var(--bl);
  border-radius: 14px; padding: 36px 28px; text-align: center;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.p-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--b600), var(--b300));
  transform: scaleX(0); transition: transform 0.35s; transform-origin: left;
}
.p-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(18,81,211,0.12); border-color: rgba(18,81,211,0.2); }
.p-card:hover::after { transform: scaleX(1); }
.p-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.p-name { font-family: 'Google Sans Flex', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--tl); margin-bottom: 8px; }
.p-desc { font-size: 0.82rem; color: var(--tml); line-height: 1.65; }

/* ========== CASE STUDIES ========== */
.cases-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 28px;
}
.c-card {
  background: var(--white); border: 1px solid var(--bl);
  border-radius: 16px; padding: 36px 40px; position: relative; overflow: hidden;
  transition: all 0.35s;
}
.c-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(18,81,211,0.1); border-color: rgba(18,81,211,0.25); }
.c-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--b600), var(--b300));
}
.c-client { font-size: 0.72rem; font-weight: 700; color: var(--b600); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.c-title { font-family: 'Google Sans Flex', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--tl); margin-bottom: 28px; line-height: 1.3; }
.c-metrics { display: flex; gap: 32px; flex-wrap: wrap; }
.c-m-val { font-family: 'Google Sans Flex', sans-serif; font-size: 2rem; font-weight: 800; color: var(--b600); display: block; line-height: 1; }
.c-m-lbl { font-size: 0.75rem; color: var(--tml); margin-top: 6px; }

/* ========== PROCESS ========== */
.process-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 32px; position: relative;
}
.process-connector {
  position: absolute; top: 27px; left: calc(12.5%); right: calc(12.5%); height: 1px;
  background: linear-gradient(90deg, var(--b600), var(--b300), var(--b600));
  opacity: 0.25;
}
.proc-step { padding: 0 20px; text-align: center; }
.proc-num-wrap {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--white); border: 2px solid var(--b500);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: all 0.3s;
}
.proc-num { font-family: 'Google Sans Flex', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--b500); transition: color 0.3s; }
.proc-step:first-child .proc-num-wrap { background: var(--b600); border-color: var(--b600); box-shadow: 0 0 24px rgba(18,81,211,0.4); }
.proc-step:first-child .proc-num { color: var(--white); }
.proc-step:hover .proc-num-wrap { background: var(--b700, #0d3fa6); border-color: var(--b700, #0d3fa6); box-shadow: 0 0 30px rgba(29,99,212,0.5); }
.proc-step:hover .proc-num { color: var(--white); }
.proc-title { font-family: 'Google Sans Flex', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--tl); margin-bottom: 12px; }
.proc-desc { font-size: 0.84rem; color: var(--tml); line-height: 1.7; }

/* ========== TESTIMONIALS ========== */
.testi-wrap { position: relative; overflow: hidden; margin-top: 60px; }
.testi-track {
  display: flex; gap: 22px;
  animation: slide-left 32s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
.t-card {
  background: var(--n700); border: 1px solid var(--bd);
  border-radius: 16px; padding: 36px; width: 390px; flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.t-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-4px); }
.t-stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--b400); }
.t-text { color: var(--tmd); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--b600), var(--b400));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Google Sans Flex', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white);
}
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.t-role { font-size: 0.76rem; color: var(--tmd); margin-top: 3px; }
.testi-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 100px; background: linear-gradient(90deg, var(--n900), transparent); pointer-events: none; z-index: 2; }
.testi-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 100px; background: linear-gradient(-90deg, var(--n900), transparent); pointer-events: none; z-index: 2; }

/* ========== REELS DOCK (bottom-left stacked cards) ========== */
.reel-dock {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-start;
  pointer-events: none;
}
.reel-stack {
  position: relative; width: 115px; height: 165px;
  pointer-events: all;
}
.reel-card {
  position: absolute; width: 80px; height: 130px;
  border-radius: 12px; overflow: hidden; cursor: pointer;
  background: var(--n700); transform-origin: bottom center;
  transition: box-shadow 0.25s, filter 0.25s, border-color 0.25s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.08);
  padding: 0; text-align: left;
}
.reel-card:hover, .reel-card--lit {
  box-shadow: 0 6px 28px rgba(29,99,212,0.6);
  border-color: rgba(29,99,212,0.55);
  filter: brightness(1.12);
}
.reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.reel-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 8px; gap: 3px;
}
.reel-card-play {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(29,99,212,0.9);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reel-card-name { font-size: 0.55rem; color: #fff; font-weight: 600; line-height: 1.25; text-shadow: 0 1px 4px rgba(0,0,0,0.9); }
.reel-dock-hint {
  margin-top: 10px; margin-left: 4px;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--tmd); pointer-events: none;
}

/* ========== REEL PLAYER ========== */
.reel-player {
  position: fixed; bottom: 24px; left: 155px;
  width: 200px;
  height: min(356px, calc(100vh - 56px));
  height: min(356px, calc(100dvh - 56px)); /* dvh excludes mobile browser chrome */
  background: #000; border-radius: 16px; overflow: hidden;
  z-index: 1001;
  box-shadow: 0 24px 72px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  animation: reel-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.reel-video-wrap { flex: 1; overflow: hidden; position: relative; }
.reel-video-wrap video { width: 100%; object-fit: cover; display: block; }
.reel-slide-from-right { animation: reel-slide-right 0.32s cubic-bezier(0.4,0,0.2,1); }
.reel-slide-from-left  { animation: reel-slide-left  0.32s cubic-bezier(0.4,0,0.2,1); }


.reel-player-close {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.reel-player-close:hover { background: rgba(220,50,50,0.75); }
.reel-player-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px; background: rgba(8,8,18,0.95);
  border-top: 1px solid rgba(255,255,255,0.07); gap: 4px;
}
.reel-nav-btn {
  background: none; border: none; cursor: pointer;
  color: var(--b400); font-size: 1.1rem; font-weight: 700;
  padding: 2px 6px; line-height: 1; transition: color 0.2s;
}
.reel-nav-btn:hover { color: #fff; }
.reel-player-title {
  font-size: 0.6rem; color: rgba(255,255,255,0.82); font-weight: 600;
  text-align: center; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ========== Call FAB ========== */
.call-fab {
  position: fixed; bottom: 90px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1D63D4; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(29,99,212,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.call-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(29,99,212,0.6); }

/* ========== WhatsApp FAB ========== */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, #071A2E 0%, #0F3571 50%, #071A2E 100%);
  padding: 64px 72px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(59,130,246,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(59,130,246,1) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(29,99,212,0.25), transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta-headline { display: flex; flex-direction: column; align-items: center; }
.cta-h2 {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 16px;
}
.cta-sub { color: var(--b200); font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-prim {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ffffff; color: #1a56db;
  padding: 16px 38px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  font-family: 'Google Sans Flex', sans-serif; letter-spacing: 0.01em;
  text-decoration: none; transition: all 0.25s;
  border: 1.5px solid rgba(0,0,0,0.08); cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.btn-cta-prim:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.22); }
.btn-cta-sec {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); color: var(--white);
  padding: 18px 36px; border-radius: 8px; font-weight: 600; font-size: 1rem;
  font-family: 'Google Sans Flex', sans-serif;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s;
}
.btn-cta-sec:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.cta-note { color: rgba(255,255,255,0.35); font-size: 0.8rem; letter-spacing: 0.02em; margin-bottom: 20px; }
.cta-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.88rem; text-decoration: none;
  transition: color 0.2s;
}
.cta-phone-link:hover { color: rgba(255,255,255,0.85); }

/* ========== FOOTER ========== */
.footer { background: var(--n900); border-top: 1px solid var(--bd); padding: 80px 72px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 56px; max-width: 1200px; margin: 0 auto 60px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 16px; }
.footer-logo img { height: 32px; width: auto; display: block; object-fit: contain; }
.footer-desc { color: var(--tmd); font-size: 0.87rem; line-height: 1.75; max-width: 240px; }
.footer-socials { display: flex; gap: 14px; margin-top: 4px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--bd); color: var(--tmd); font-size: 0.95rem; transition: color 0.2s, border-color 0.2s; }
.footer-social-link:hover { color: var(--b300); border-color: var(--b300); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; color: var(--b300); text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: var(--tmd); text-decoration: none; font-size: 0.87rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--bd); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.8rem; color: var(--tmd); }
.footer-cert { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--tmd); }
.footer-cert-dot { width: 6px; height: 6px; background: var(--b400); border-radius: 50%; }
.footer-privacy-link { font-size: 0.8rem; color: var(--tmd); text-decoration: none; transition: color 0.2s; }
.footer-privacy-link:hover { color: var(--b300); }

/* ========== PRIVACY POLICY PAGE ========== */
.pp-page {
  min-height: 100vh;
  background: var(--n900);
  padding: 80px 24px 60px;
}
.pp-inner {
  /* max-width: 760px; */
  padding: 0 30px;
  margin: 0 auto;
}
.pp-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--tmd); text-decoration: none; font-size: 0.85rem;
  margin-bottom: 40px; transition: color 0.2s;
}
.pp-back:hover { color: var(--b300); }
.pp-title {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.pp-intro { font-size: 1.05rem; color: var(--b300); font-weight: 600; margin-bottom: 8px; }
.pp-lead { color: var(--tmd); font-size: 0.95rem; line-height: 1.75; margin-bottom: 40px; border-bottom: 1px solid var(--bd); padding-bottom: 32px; }
.pp-section { margin-bottom: 32px; }
.pp-section h2 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.02em; margin-bottom: 10px;
}
.pp-section p { color: var(--tmd); font-size: 0.92rem; line-height: 1.8; margin-bottom: 10px; }
.pp-contact { border-top: 1px solid var(--bd); padding-top: 28px; margin-top: 8px; }
.pp-contact p { color: var(--tmd); font-size: 0.92rem; }
.pp-contact a { color: var(--b300); text-decoration: none; }
.pp-contact a:hover { text-decoration: underline; }
.footer-seo { max-width: 1200px; margin: 0 auto 40px; }
.footer-seo p { font-size: 0.75rem; line-height: 1.8; color: var(--tmd); opacity: 0.55; }



/* ========== UTILITY ========== */
.glow-rule { height: 1px; background: linear-gradient(90deg, transparent, var(--b600), var(--b400), var(--b600), transparent); opacity: 0.4; }
.text-gradient { background: linear-gradient(135deg, var(--b300), var(--b400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-light { background: linear-gradient(135deg, var(--b600), var(--b400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(1,8,16,0.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 20px; width: 100%; max-width: 480px;
  padding: 20px 24px;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 40px 100px rgba(1,8,16,0.5), 0 0 0 1px rgba(59,130,246,0.1);
}
.modal-box::-webkit-scrollbar { display: none; }
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--b50); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--tml); transition: all 0.2s;
}
.modal-close:hover { background: var(--b100); color: var(--b600); }
.modal-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--b500);
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.modal-eyebrow-dot { width: 6px; height: 6px; background: var(--b400); border-radius: 50%; animation: pulse-blue 2s ease infinite; }
.modal-h { font-size: 1.8rem; font-weight: 800; color: var(--tl); margin-bottom: 6px; letter-spacing: -0.02em; }
.modal-sub { font-size: 0.88rem; color: var(--tml); margin-bottom: 16px; line-height: 1.6; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--tl); margin-bottom: 7px; letter-spacing: 0.2px; }
.form-label span { color: var(--b500); }
.form-input {
  width: 100%; padding: 13px 16px;
  background: var(--b50); border: 1.5px solid transparent;
  border-radius: 8px; font-family: 'Google Sans Flex', sans-serif;
  font-size: 0.92rem; color: var(--tl);
  transition: all 0.2s; outline: none;
}
.form-input::placeholder { color: #A0B4CC; }
.form-input:focus { border-color: var(--b400); background: var(--white); box-shadow: 0 0 0 4px rgba(59,130,246,0.1); }
.form-input.err { border-color: #EF4444; background: #FFF5F5; }
.form-err { font-size: 0.75rem; color: #EF4444; margin-top: 5px; }
.radio-group { display: flex; gap: 16px; margin-top: 2px; }
.radio-label {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.9rem; color: var(--tl); cursor: pointer;
  padding: 12px 20px; border-radius: 8px;
  border: 1.5px solid var(--bl); background: var(--b50);
  transition: all 0.2s; flex: 1; justify-content: center;
  font-weight: 500;
}
.radio-label:hover { border-color: var(--b300); }
.radio-label.selected { border-color: var(--b400); background: rgba(59,130,246,0.08); color: var(--b600); }
.radio-label input { display: none; }
.radio-circle {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid #CBD5E1; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.radio-label.selected .radio-circle { border-color: var(--b400); background: var(--b400); }
.radio-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--b500), var(--b600));
  color: var(--white); border: none; border-radius: 8px;
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  margin-top: 8px; transition: all 0.3s; letter-spacing: 0.2px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(29,99,212,0.4); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-success { text-align: center; padding: 16px 0 8px; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--b500), var(--b400));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--white);
}
.success-h { font-size: 1.5rem; font-weight: 800; color: var(--tl); margin-bottom: 10px; }
.success-p { font-size: 0.9rem; color: var(--tml); line-height: 1.7; }
.modal-privacy { font-size: 0.73rem; color: #A0B4CC; text-align: center; margin-top: 14px; }

/* ========== POPUP FORM ========== */
.pf-overlay { position: fixed; inset: 0; z-index: 8500; background: rgba(0,0,0,0.55); display: flex; align-items: flex-end; justify-content: center; padding: 0 0 24px; animation: fadeIn 0.3s ease; }
@media (min-width: 480px) { .pf-overlay { align-items: center; } }
.pf-modal { background: #fff; border-radius: 16px; width: 100%; max-width: 400px; padding: 28px 24px 24px; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.22); }
.pf-close { position: absolute; top: 14px; right: 14px; background: none; border: none; cursor: pointer; color: #94A3B8; padding: 4px; display: flex; align-items: center; justify-content: center; border-radius: 6px; transition: color 0.2s; }
.pf-close:hover { color: #1e293b; }
.pf-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #3B82F6; margin-bottom: 10px; }
.pf-dot { width: 6px; height: 6px; border-radius: 50%; background: #3B82F6; display: inline-block; }
.pf-title { font-size: 1.25rem; font-weight: 800; color: #0f172a; line-height: 1.3; margin-bottom: 8px; }
.pf-sub { font-size: 0.8rem; color: #64748B; line-height: 1.6; margin-bottom: 16px; }
.pf-form { display: flex; flex-direction: column; gap: 10px; }
.pf-field { display: flex; flex-direction: column; }
.pf-input { width: 100%; padding: 11px 14px; border: 1.5px solid #E2E8F0; border-radius: 8px; font-size: 0.875rem; color: #0f172a; background: #F8FAFC; outline: none; transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; }
.pf-input:focus { border-color: #3B82F6; background: #fff; box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.pf-input.pf-err { border-color: #EF4444; background: #FFF5F5; }
.pf-err-msg { font-size: 0.72rem; color: #EF4444; margin-top: 4px; }
.pf-select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.pf-submit { width: 100%; padding: 13px; background: linear-gradient(135deg, #3B82F6, #2563EB); color: #fff; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: opacity 0.2s, transform 0.15s; margin-top: 4px; }
.pf-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.pf-success { text-align: center; padding: 12px 0; }
.pf-success-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #3B82F6, #2563EB); color: #fff; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pf-success h4 { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin-bottom: 6px; }
.pf-success p { font-size: 0.85rem; color: #64748B; }

/* ========== LINE MASK REVEAL ========== */
.line-mask {
  overflow: hidden;
  display: block;
  padding-bottom: 0.06em;
}
.hero-line,
.stats-heading-line,
.services-heading-line,
.cases-heading-line,
.process-heading-line,
.platforms-heading-line,
.testi-heading-line {
  display: block;
  will-change: transform;
}

/* ========== HERO RESTRUCTURE ========== */
.hero-cta-wrap { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.hero-stats { display: flex; gap: 36px; margin-top: 56px; }
.hero-stat-item { will-change: transform, opacity; }

/* ========== SCROLL HINT ========== */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  will-change: opacity;
}
.scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tmd);
  font-weight: 600;
}
.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: var(--bd);
  position: relative;
  overflow: hidden;
}
.scroll-hint-dot {
  width: 1px;
  height: 20px;
  background: var(--b400);
  position: absolute;
  top: -20px;
  animation: scroll-drop 1.6s ease-in-out infinite;
}


/* ========== CUSTOM CURSOR ========== */
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--b400);
  position: fixed; top: 0; left: 0; z-index: 99999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-ring {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,0.5);
  position: fixed; top: 0; left: 0; z-index: 99998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}
body.has-custom-cursor * { cursor: none !important; }

/* ========== PAGE INTRO ========== */
.page-intro {
  position: fixed; inset: 0; z-index: 99990;
  pointer-events: none;
}
.intro-panel {
  position: absolute; left: 0; right: 0; height: 50%;
  background: var(--n900);
}
.intro-top { top: 0; }
.intro-bottom { bottom: 0; }
.intro-center {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 99991;
  pointer-events: none;
}
.intro-logo { height: 44px; width: auto; display: block; margin: 0 auto; }
.intro-tagline {
  margin-top: 14px;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tmd);
  font-weight: 600;
}
.intro-progress {
  width: 120px;
  height: 1px;
  background: rgba(59,130,246,0.15);
  margin: 18px auto 0;
  overflow: hidden;
}
.intro-progress-line {
  height: 100%;
  width: 100%;
  background: var(--b400);
  transform-origin: left center;
  transform: scaleX(0);
}
.intro-counter {
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 3px;
  color: var(--b300);
  font-family: 'Google Sans Flex', sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ========== FLOAT CARD CSS — remove fadein since GSAP handles entrance ========== */
.fc1 { top: 22%; right: 6%; animation: float-y 4s 1.8s ease-in-out infinite; }
.fc2 { top: 52%; left: 4%; animation: float-y 4s 2.2s ease-in-out infinite; }
.fc3 { bottom: 18%; right: 8%; animation: float-y 4s 2.6s ease-in-out infinite; }

/* ========== FAQ ========== */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--bd);
}
.faq-item {
  border-bottom: 1px solid var(--bd);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  text-align: left;
  color: var(--td);
  font-family: 'Google Sans Flex', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--b300); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--b400);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-answer {
  overflow: hidden;
  padding-bottom: 20px;
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  color: var(--tmd);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 820px;
}
.faq-item--open .faq-question { color: var(--b300); }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding: 80px 24px 0; }
  .hero-3d { height: 60vw; min-height: 300px; }
  .section { padding: 70px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--bl); }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--bl); }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
  .services-grid, .cases-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 0 24px; }
  .footer { padding: 60px 0 24px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; }
  .cta-section { padding: 80px 24px; }
  .hero-content { padding: 40px 0; }
  .fc2, .fc3 { display: none; }
  .fc1 { top: 10%; right: 4%; }
  .scroll-hint { display: none; }
  .cursor-dot, .cursor-ring { display: none; }

  /* Reels — scaled dock at bottom-left, centred player */
  .reel-dock { bottom: 16px; left: 10px; transform: scale(0.78); transform-origin: bottom left; }
  .reel-player {
    left: 0; right: 0; margin: auto;
    bottom: 12px;
    width: min(200px, 82vw);
    height: min(356px, calc(100vh - 72px));
    height: min(356px, calc(100dvh - 40px));
  }
}

}

/* ========== GLOBAL KEYFRAMES ========== */
@keyframes pulse-blue {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(59,130,246,0); }
}

@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

@keyframes fadein { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

@keyframes slide-left { from { transform: translateX(0) } to { transform: translateX(-50%) } }

@keyframes reel-pop {
  from { opacity: 0; transform: scale(0.85) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes reel-slide-right {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes reel-slide-left {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes scroll-drop {
  0%   { top: -20px; opacity: 1; }
  70%  { top: 48px;  opacity: 1; }
  100% { top: 48px;  opacity: 0; }
}

/* ========== REELS SECTION ========== */
.rs-section {
  background: var(--b50);
  /* background: #ffffff; */
  padding: 60px 0 52px;
}
.rs-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 36px;
}
.rs-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--b500);
  margin-bottom: 10px;
}
.rs-tag-line { flex: 0 0 20px; height: 2px; background: var(--b500); border-radius: 2px; }
.rs-title {
  font-family: 'Google Sans Flex', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.1;
  color: #0d1829; margin-bottom: 10px;
}
.rs-sub {
  font-size: 0.88rem; color: #4a5568;
  line-height: 1.6;
  max-width: 480px; margin: 0 auto;
}

/* Scrollable row of portrait cards */
.rs-track {
  display: flex;
  gap: 18px;
  padding: 8px 40px 16px;
  overflow-x: auto;
  justify-content: center;
  scrollbar-width: none;
}
.rs-track::-webkit-scrollbar { display: none; }

.rs-card {
  flex: 0 0 200px;
  height: 355px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #e5e7eb;
  border: 1.5px solid rgba(0,0,0,0.07);
  cursor: pointer; padding: 0;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.rs-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 48px rgba(29,99,212,0.25);
  border-color: rgba(29,99,212,0.45);
}
.rs-card video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; pointer-events: none;
}
.rs-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  padding: 14px; gap: 6px;
}
.rs-card-play {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(29,99,212,0.9);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.rs-card:hover .rs-card-play {
  background: var(--b500);
  transform: scale(1.12);
}
.rs-card-label {
  font-size: 0.72rem; color: #fff; font-weight: 700;
  line-height: 1.3; text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  text-align: left;
}

/* Lightbox overlay */
.rs-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  animation: fadein 0.2s ease;
}
.rs-lightbox {
  width: 220px;
  height: min(390px, calc(100dvh - 60px));
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 28px 80px rgba(0,0,0,0.95), 0 0 0 1px rgba(255,255,255,0.1);
  animation: reel-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.rs-lb-video {
  flex: 1; overflow: hidden; position: relative;
}
.rs-lb-video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.rs-lb-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.rs-lb-close:hover { background: rgba(220,50,50,0.8); }
.rs-lb-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  background: rgba(8,8,18,0.95);
  border-top: 1px solid rgba(255,255,255,0.07);
  gap: 4px;
}
.rs-lb-nav {
  background: none; border: none; cursor: pointer;
  color: var(--b400); font-size: 1.3rem; font-weight: 700;
  padding: 2px 8px; line-height: 1;
  transition: color 0.2s;
}
.rs-lb-nav:hover { color: #fff; }
.rs-lb-title {
  font-size: 0.62rem; color: rgba(255,255,255,0.82); font-weight: 600;
  text-align: center; flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .rs-section { padding: 48px 0 40px; }
  .rs-track { padding: 8px 20px 14px; gap: 14px; justify-content: flex-start; }
  .rs-card { flex: 0 0 165px; height: 294px; }
}

@media (max-width: 576px) {
  .real-estate-module .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .real-estate-module .stat-cell {
    padding: 28px 10px;
    border-right: none !important;
    border-bottom: 1px solid var(--bl) !important;
  }
  .real-estate-module .stat-cell:nth-child(odd) {
    border-right: 1px solid var(--bl) !important;
  }
  .real-estate-module .stat-cell:nth-child(3),
  .real-estate-module .stat-cell:nth-child(4) {
    border-bottom: none !important;
  }
  .real-estate-module .stat-num-wrap {
    font-size: 1.85rem;
    margin-bottom: 8px;
  }
  .real-estate-module .stat-lbl {
    font-size: 0.72rem;
  }
  
  .real-estate-module .s-card {
    padding: 32px 20px;
  }
  .real-estate-module .s-card-num {
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
  }
  .real-estate-module .section-h2-dark,
  .real-estate-module .section-h2-light {
    font-size: clamp(1.65rem, 6vw, 2.4rem);
  }

  .real-estate-module .platforms-grid {
    grid-template-columns: 1fr;
  }
  .real-estate-module .p-card {
    padding: 28px 20px;
  }

  .real-estate-module .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
  .real-estate-module .proc-step {
    padding: 0 4px;
  }
  .real-estate-module .proc-title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .real-estate-module .proc-desc {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .real-estate-module .t-card {
    width: 270px;
    padding: 24px 20px;
  }
  .real-estate-module .t-text {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .real-estate-module .testi-fade-l,
  .real-estate-module .testi-fade-r {
    width: 15px;
  }

  .real-estate-module .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .real-estate-module .footer-seo {
    padding: 0 24px;
  }

  .real-estate-module .radio-group {
    flex-direction: row;
    gap: 8px;
  }
  .real-estate-module .radio-label {
    font-size: 0.78rem;
    padding: 10px 8px;
    gap: 6px;
  }
}
