/* ============================================
   Rise Infinity Realtors — styles.css
   Last reviewed: 2026
============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --em: #083a4f;
  --em2: #407e8c;
  --em3: #407e8c;
  --em4: #c0d5d6;
  --em5: #eef6f7;
  --eg: #051e28;
  --egh: #0a3245;
  --gd: #a58d66;
  --gd2: #c4aa82;
  --gd3: #dfd0b4;
  --gd4: #f5f0e8;
  --cu: #b45309;
  --cu2: #d97706;
  --cu3: #f59e0b;
  --white: #f0ede8;
  --cream: #e5e1dd;
  --cream2: #ede9e3;
  --dark: #051e28;
  --text: #0d1e28;
  --muted: #2a5060;
  --dim: #5a8090;
  --border: #b0cdd4;
  --border2: #d8e8ec;
  --shadow: 0 8px 32px rgba(8, 58, 79, 0.18);
  --shadow2: 0 2px 12px rgba(8, 58, 79, 0.1);
  --fd: "Cormorant Garamond", Georgia, serif;
  --fb: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --r: 14px;
  --rl: 20px;
  --focus-ring: 0 0 0 3px rgba(196, 170, 130, 0.55);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Accessibility — skip link, focus, hidden honeypot */
.skip-link {
  position: absolute;
  top: -50px;
  left: 8px;
  background: var(--em);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}
button:focus-visible,
.opt:focus-visible,
.slot:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

canvas {
  display: block;
}

input,
select,
button,
textarea {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* ============================================
   NAV
============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(5, 30, 40, 0.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  height: 80px;
  border-bottom: 1px solid rgba(165, 141, 102, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gd2);
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gd2);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid rgba(165, 141, 102, 0.35);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-call:hover {
  background: rgba(165, 141, 102, 0.1);
}

.nav-cta {
  background: var(--em2);
  color: #fff;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: #2d6e7c;
  transform: translateY(-1px);
}

.nav-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 44px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(165, 141, 102, 0.08);
}
.nav-sub-l,
.nav-sub-r {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.07em;
}
.nav-sub-l span,
.nav-sub-r span {
  color: var(--gd3);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5, 30, 40, 0.98);
  border-top: 1px solid rgba(165, 141, 102, 0.2);
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}
.mobile-menu a:hover {
  background: rgba(165, 141, 102, 0.08);
}
.mobile-menu.open {
  display: flex;
}

/* ============================================
   ZERO-COST TOP STRIP
============================================ */
.zc-strip {
  background: linear-gradient(90deg, #062333, #083a4f, #062333);
  padding: 14px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  margin-top: 108px;
  line-height: 1.5;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-top: 2px solid #a58d66;
  border-bottom: 2px solid #a58d66;
}
.zc-strip span {
  color: #c4aa82;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--eg) 0%, #083a4f 45%, #0d4d66 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding-top: 48px;
  position: relative;
  overflow: hidden;
}
.hero-pat {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 28px 28px;
}
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(64, 126, 140, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 126, 140, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-orb {
  position: absolute;
  top: -80px;
  right: 44%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(165, 141, 102, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 40px 50px 56px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(165, 141, 102, 0.12);
  border: 1px solid rgba(165, 141, 102, 0.32);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gd3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: fit-content;
}
.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gd2);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.hero-h1 {
  font-family: var(--fd);
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gd2);
  font-weight: 600;
}
.hero-tagline {
  font-size: 17px;
  font-family: var(--fd);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hdiv-line {
  height: 2px;
  width: 56px;
  background: linear-gradient(90deg, var(--gd2), transparent);
}
.hdiv-dot {
  width: 6px;
  height: 6px;
  background: var(--gd);
  transform: rotate(45deg);
}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 430px;
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-sub strong {
  color: #fff;
  font-weight: 600;
}
.zc-hero {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 141, 102, 0.25);
  border-radius: var(--r);
  margin-bottom: 24px;
}
.zc-hero-ico {
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.zc-hero-t {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--gd2);
}
.zc-hero-s {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1px;
}
.hero-stats {
  display: flex;
  gap: 9px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.hstat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  padding: 12px 16px;
  transition: all 0.3s;
  cursor: default;
}
.hstat:hover {
  background: rgba(165, 141, 102, 0.12);
  border-color: rgba(165, 141, 102, 0.3);
  transform: translateY(-2px);
}
.hstat-n {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--gd2);
  line-height: 1;
}
.hstat-l {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 3px;
}
.hero-phone {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.hero-phone a {
  color: var(--gd2);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}
.city-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  pointer-events: none;
  opacity: 0.12;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 44px 24px 10px;
  position: sticky;
  top: 108px;
  height: calc(100vh - 108px);
  z-index: 2;
}

/* ============================================
   FORM
============================================ */
.form-shell {
  width: 100%;
  max-width: 430px;
  position: relative;
}
.form-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--rl) + 1px); /* FIX: was missing spaces around + */
  background: linear-gradient(135deg, rgba(64, 126, 140, 0.3), transparent 50%, rgba(165, 141, 102, 0.18));
  z-index: -1;
  pointer-events: none;
}
.form-card {
  background: var(--cream);
  border-radius: var(--rl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 24px 60px rgba(5, 30, 40, 0.5);
}
.pbar {
  height: 4px;
  background: var(--border2);
}
.pfill {
  height: 100%;
  background: linear-gradient(90deg, var(--em2), var(--gd2));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pmeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px 0;
  font-size: 11px;
  color: var(--dim);
}
.pmeta span:last-child {
  font-weight: 700;
  color: var(--em);
}
.fstep {
  padding: 22px 20px 18px;
  display: none;
  animation: sIn 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}
.fstep.on {
  display: block;
}
@keyframes sIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.fq {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  line-height: 1.2;
}
.fhint {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 16px;
}

.opts {
  display: grid;
  gap: 7px;
}
.g2 { grid-template-columns: 1fr 1fr; }
.g1 { grid-template-columns: 1fr; }

.opt {
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  padding: 11px 12px;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
  overflow: hidden;
}
.opt:hover {
  border-color: var(--em3);
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}
.opt.sel {
  border-color: var(--gd);
  background: linear-gradient(135deg, var(--gd4), #fafafa);
  box-shadow: 0 4px 14px rgba(165, 141, 102, 0.15);
}
.opt-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.opt-em {
  font-size: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}
.opt-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
}
.opt.sel .opt-lbl {
  color: var(--em);
}
.opt-sub {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
}
.chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.opt.sel .chk {
  background: var(--gd);
  border-color: var(--gd2);
}
.chk svg {
  width: 9px;
  height: 9px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s;
}
.opt.sel .chk svg {
  opacity: 1;
  transform: scale(1);
}

.fi {
  margin-bottom: 11px;
}
.fi label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fi input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 13px;
  font-family: var(--fb);
  font-size: 16px; /* FIX: 16px+ prevents iOS auto-zoom on focus */
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.fi input:focus {
  border-color: var(--em3);
}
.fi input::placeholder {
  color: var(--dim);
}
.fi input[aria-invalid="true"] {
  border-color: #c0392b;
}

.r2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.otp-row {
  display: flex;
  gap: 7px;
}
.otp-row input {
  flex: 1;
}
.otp-row button {
  background: transparent;
  border: 1.5px solid var(--em2);
  border-radius: 9px;
  padding: 0 14px;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: var(--em);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  min-height: 44px; /* mobile tap target */
}
.otp-row button:hover {
  background: #eef4f6;
}
.otp-row button:disabled {
  opacity: 0.35;
  cursor: default;
}
.otp-msg {
  font-size: 12px;
  color: var(--dim);
  margin: 6px 0 0;
}
.otp-ok {
  color: var(--em2) !important;
  font-weight: 700;
}
.otp-err {
  color: #c0392b !important;
}

.lbox {
  background: #eef4f6;
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  padding: 15px;
}
.lres {
  margin-top: 11px;
  padding: 11px;
  background: var(--gd4);
  border: 1px solid var(--gd);
  border-radius: 9px;
  display: none;
}
.lres.on {
  display: block;
}
.lamt {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--em);
}
.llbl {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

.skip {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--dim);
  cursor: pointer;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  width: 100%;
  font-family: var(--fb);
}
.skip:hover {
  color: var(--muted);
}

.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.slot {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.slot:hover {
  border-color: var(--em3);
  transform: translateY(-1px);
}
.slot.sel {
  border-color: var(--gd);
  background: var(--gd4);
}
.slot-d {
  font-size: 9px;
  color: var(--dim);
  margin-bottom: 1px;
}
.slot-t {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}
.slot.sel .slot-t {
  color: var(--em);
}

.fnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--border2);
}
.fnav > div:empty {
  flex: 1;
}
.fbk {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 18px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  min-height: 44px;
}
.fbk:hover {
  border-color: var(--muted);
  color: var(--text);
}
.fnxt {
  background: var(--em2);
  border: none;
  border-radius: 9px;
  padding: 12px 26px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  min-height: 44px;
  margin-left: auto;
}
.fnxt:hover {
  background: #2d6e7c;
  transform: translateY(-1px);
}
.fnxt:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}
.fnxt[aria-busy="true"] {
  opacity: 0.6;
  cursor: wait;
}

/* Thank-you */
.ty {
  padding: 32px 20px;
  text-align: center;
  display: none;
}
.ty.on {
  display: block;
}
.ty-ico {
  width: 56px;
  height: 56px;
  background: #eef4f6;
  border: 2px solid var(--em2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--em);
  font-weight: 700;
}
.ty-h {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--em);
  margin-bottom: 7px;
}
.ty-s {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.ty-box {
  background: var(--em5);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px;
  text-align: left;
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 14px;
}
.ty-box strong {
  color: var(--dark);
}
.wa-btn,
.mid-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.wa-btn:hover,
.mid-wa-btn:hover {
  background: #1fb858;
  transform: translateY(-1px);
}

/* ============================================
   SECTIONS / HEADINGS
============================================ */
.sec {
  padding: 80px 56px;
  max-width: 1200px;
  margin: 0 auto;
}
.sec-ey {
  font-size: 10px;
  font-weight: 700;
  color: var(--gd);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sec-ey::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gd);
  display: inline-block;
}
.sec-h {
  font-family: var(--fd);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.sec-h em {
  font-style: italic;
  color: var(--em);
}
.sec-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   ZERO-COST SECTION + TRUST BADGES
============================================ */
.zc-section {
  background: linear-gradient(160deg, var(--eg), #083a4f);
  padding: 80px 56px 90px;
  text-align: center;
}
.zc-ico {
  font-size: 50px;
  display: block;
  margin-bottom: 12px;
  animation: heartBeat 2.5s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}
.zc-h {
  font-family: var(--fd);
  font-size: clamp(26px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.zc-h span {
  color: var(--gd3);
  font-style: italic;
}
.zc-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.zc-cards {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.zc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 141, 102, 0.2);
  border-radius: var(--r);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: all 0.3s;
}
.zc-card:hover {
  background: rgba(165, 141, 102, 0.12);
  border-color: rgba(165, 141, 102, 0.3);
}
.zc-card-ico {
  font-size: 22px;
  display: flex;
}
.zc-card-t {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.zc-card-s {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
.zc-rera {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 24px;
}
.zc-rera span {
  color: var(--gd3);
}

/* Trust badges — replaces inline styles */
.trust-badges {
  margin-top: 28px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(165, 141, 102, 0.15);
  border-radius: var(--rl);
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}
.trust-badge-t {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.trust-badge-s {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* ============================================
   DEVELOPER STRIP
============================================ */
.devs-strip {
  background: var(--eg);
  border-top: 1px solid rgba(165, 141, 102, 0.12);
  border-bottom: 1px solid rgba(165, 141, 102, 0.1);
  padding: 24px 0;
}
.devs-lbl {
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.devs-divider {
  width: 80px;
  height: 2px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, #a58d66, transparent);
}
.devs-track {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.devs-inner {
  display: flex;
  gap: 9px;
  width: max-content;
  animation: scrollD 26s linear infinite;
}
.devs-inner:hover {
  animation-play-state: paused;
}
@keyframes scrollD {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.dev-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(165, 141, 102, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.dev-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(165, 141, 102, 0.45);
  background: rgba(165, 141, 102, 0.08);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   PROCESS
============================================ */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.proc-card {
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: var(--rl);
  padding: 24px 18px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.proc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--em2), var(--gd2));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.proc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.proc-card:hover::after {
  transform: scaleX(1);
}
.proc-n {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 800;
  color: #c0d5d6;
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.proc-card:hover .proc-n {
  color: var(--gd);
}
.proc-t {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}
.proc-b {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   MID FORM
============================================ */
.mid-form-wrap {
  background: linear-gradient(160deg, var(--eg) 0%, #083a4f 55%, #0d5068 100%);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.mid-form-orb {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(165, 141, 102, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.mid-form-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mid-form-h {
  font-family: var(--fd);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
  letter-spacing: -0.02em;
  text-align: center;
}
.mid-form-h span {
  color: var(--gd3);
  font-style: italic;
}
.mid-card {
  background: var(--cream);
  border-radius: var(--rl);
  overflow: hidden;
  border: 2px solid var(--gd4);
  box-shadow: 0 24px 60px rgba(5, 30, 40, 0.45);
}
.mid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  padding: 26px 26px 0;
}
.mid-full {
  grid-column: 1 / -1;
}
.mid-fi label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mid-fi input,
.mid-fi select {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 13px;
  font-family: var(--fb);
  font-size: 16px; /* FIX: 16px+ prevents iOS auto-zoom on focus */
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
/* FIX: custom dropdown arrow — appearance:none stripped the native one */
.mid-fi select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%23083A4F' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.mid-fi input:focus,
.mid-fi select:focus {
  border-color: var(--em);
}
.mid-fi input::placeholder {
  color: var(--dim);
}
.mid-fi input[aria-invalid="true"],
.mid-fi select[aria-invalid="true"] {
  border-color: #c0392b;
}
.mid-footer {
  padding: 14px 26px 22px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid var(--border2);
}
.mid-submit {
  background: var(--em2);
  border: none;
  border-radius: 11px;
  padding: 14px 32px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: auto;
  min-height: 48px;
}
.mid-submit:hover {
  background: #2d6e7c;
  transform: translateY(-2px);
}
.mid-submit[aria-busy="true"] {
  opacity: 0.6;
  cursor: wait;
}
.mid-ty {
  display: none;
  padding: 34px 26px;
  text-align: center;
}
.mid-ty.show {
  display: block;
}
.mid-ty-h {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--em);
  margin-bottom: 7px;
}
.mid-ty-s {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ============================================
   SPIN & WIN
============================================ */
.spin-wrap {
  padding: 80px 56px;
  background: linear-gradient(160deg, var(--eg) 0%, #052030 50%, #083040 100%);
  position: relative;
  overflow: hidden;
}
.spin-orb1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(165, 141, 102, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.spin-orb2 {
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(8, 58, 79, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.spin-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.spin-top {
  text-align: center;
  margin-bottom: 46px;
}
.spin-ey {
  font-size: 10px;
  font-weight: 700;
  color: var(--gd2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.spin-ey::before,
.spin-ey::after {
  content: "✦";
  color: var(--gd);
}
.spin-h {
  font-family: var(--fd);
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 9px;
  letter-spacing: -0.02em;
}
.spin-h span {
  color: var(--gd3);
  font-style: italic;
}
.spin-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.spin-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.prizes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prize-item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  padding: 11px 14px;
  transition: all 0.3s;
}
.prize-item:hover {
  background: rgba(165, 141, 102, 0.12);
  border-color: rgba(165, 141, 102, 0.25);
  transform: translateX(3px);
}
.prize-ico {
  font-size: 21px;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prize-name {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.prize-val {
  font-size: 12px;
  color: var(--gd3);
  font-weight: 500;
}
.wheel-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.wheel-pointer {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid var(--gd);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
  animation: ptrbob 0.9s ease-in-out infinite;
}
@keyframes ptrbob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
#wcanvas {
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(165, 141, 102, 0.25),
    0 0 0 16px rgba(165, 141, 102, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.6);
  max-width: 100%;
  height: auto;
}
.spin-disc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 8px;
  max-width: 270px;
}
.spin-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--rl);
  padding: 24px 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.spin-form h3 {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.spin-form p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  line-height: 1.6;
}
.spin-tnc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 10px;
}
.sfi {
  margin-bottom: 11px;
}
.sfi label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.sfi input {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  padding: 12px 13px;
  font-family: var(--fb);
  font-size: 16px; /* FIX: 16px+ prevents iOS auto-zoom */
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.sfi input:focus {
  border-color: var(--gd2);
}
.sfi input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.spin-otp-row {
  display: flex;
  gap: 6px;
}
.spin-otp-row input {
  flex: 1;
}
.spin-otp-row button {
  background: transparent;
  border: 1px solid var(--gd2);
  border-radius: 9px;
  padding: 0 14px;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: var(--gd2);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  min-height: 44px;
}
.spin-otp-row button:hover {
  background: rgba(165, 141, 102, 0.15);
}
.spin-otp-row button:disabled {
  opacity: 0.3;
  cursor: default;
}
.sotp-msg {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}
.sotp-ok {
  color: var(--gd2) !important;
  font-weight: 700;
}
.sotp-err {
  color: #ff9a8a !important;
}
.spin-btn {
  width: 100%;
  background: var(--em2);
  border: none;
  border-radius: 11px;
  padding: 14px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 5px;
  box-shadow: 0 6px 22px rgba(8, 58, 79, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.spin-btn:hover {
  background: #2d6e7c;
  transform: translateY(-2px);
}
.spin-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* ============================================
   MARKETS
============================================ */
.mkt-bg {
  background: linear-gradient(160deg, var(--eg) 0%, #083a4f 75%, #0d5068 100%);
  padding: 80px 0;
}
.mkt-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}
.mkt-ey {
  color: var(--gd2);
}
.mkt-ey .mkt-ey-dash {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gd);
}
.mkt-ey::before {
  display: none;
}
.mkt-h {
  color: #fff;
}
.mkt-h-em {
  color: var(--gd2);
}
.mkt-sub {
  color: rgba(255, 255, 255, 0.55);
}
.mkt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  margin-top: 44px;
}
.mkt {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--rl);
  padding: 22px 16px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
  text-align: center;
}
.mkt-glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(165, 141, 102, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.mkt:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(165, 141, 102, 0.32);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.mkt-icon {
  font-size: 30px;
  margin-bottom: 11px;
  display: flex;
  justify-content: center;
}
.mkt-name {
  font-family: var(--fd);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.mkt-badge {
  display: inline-block;
  background: rgba(165, 141, 102, 0.12);
  border: 1px solid rgba(165, 141, 102, 0.25);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 9px;
  color: var(--gd3);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.mkt-areas {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
}

/* ============================================
   WHY
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 44px;
}
.why {
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: var(--rl);
  padding: 26px;
  transition: all 0.3s;
}
.why:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.why-ico {
  width: 48px;
  height: 48px;
  background: #eef4f6;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.why:hover .why-ico {
  background: var(--gd4);
  border-color: var(--gd2);
}
.why-t {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}
.why-b {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   FOUNDER
============================================ */
.founder-story {
  background: linear-gradient(160deg, var(--eg), #083a4f);
  padding: 100px 56px;
}
.founder-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 70px;
  align-items: center;
}
.founder-image {
  position: relative;
}
.founder-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(165, 141, 102, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.founder-content {
  max-width: 700px;
}
.founder-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(165, 141, 102, 0.08);
  border: 1px solid rgba(165, 141, 102, 0.25);
  color: var(--gd2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}
.founder-content h2 {
  font-family: var(--fd);
  font-size: 58px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.founder-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.founder-quote {
  margin-top: 30px;
  font-family: var(--fd);
  font-size: 34px;
  font-style: italic;
  color: var(--gd2);
  line-height: 1.3;
}
.founder-name {
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.founder-name strong {
  display: block;
  color: #fff;
  font-size: 24px;
  margin-bottom: 4px;
  font-family: var(--fd);
}
.founder-name span {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testi-bg {
  background: #eef4f6;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 80px 0;
}
.testi-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}
.buyers-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--em4), var(--gd4));
  border: 1px solid rgba(165, 141, 102, 0.28);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--em);
  margin-bottom: 16px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 44px;
}
.testi {
  background: #fff;
  border: 1.5px solid var(--border2);
  border-radius: var(--rl);
  padding: 22px;
  transition: all 0.3s;
}
.testi:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}
.testi-stars {
  font-size: 15px;
  color: var(--gd);
  letter-spacing: 2px;
  margin-bottom: 11px;
}
.testi-q {
  font-family: var(--fd);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.testi-who {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.testi-role {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
}
.testi-amt {
  font-size: 12px;
  color: var(--em2);
  font-weight: 700;
  margin-top: 3px;
}

/* ============================================
   FINAL CTA BAND
============================================ */
.cta-band {
  background: linear-gradient(135deg, #083a4f 0%, #407e8c 50%, #0a3245 100%);
  padding: 68px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}
.cta-band-h {
  font-family: var(--fd);
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
  position: relative;
}
.cta-band-h span {
  font-style: italic;
  color: var(--gd2);
}
.cta-band-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 26px;
  font-weight: 300;
  position: relative;
}
.cta-band-btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-p {
  background: var(--gd);
  color: #fff;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.01em;
  min-height: 48px;
}
.btn-p:hover {
  background: var(--gd2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-s {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}
.btn-s:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--eg);
  padding: 52px 56px 26px;
  border-top: 1px solid rgba(165, 141, 102, 0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.f-logo-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 7px;
}
.f-logo-wrap img {
  height: 48px;
  width: auto;
}
.f-tagline {
  font-family: var(--fd);
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 5px;
  display: block;
}
.f-rera {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 11px;
}
.f-rera span {
  color: var(--gd3);
}
.f-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.8;
}
.f-col-h {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 13px;
}
.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.f-links a:hover {
  color: var(--gd2);
}
.f-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.f-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}
.wa-tip {
  background: var(--eg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  padding: 8px 12px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(7px) scale(0.95);
  transition: all 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tip,
.wa-float:focus-within .wa-tip {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.wa-fab {
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.32);
  transition: all 0.2s;
}
.wa-fab:hover {
  background: #1fb858;
  transform: scale(1.1);
}

/* ============================================
   MODAL
============================================ */
.modal-ov {
  position: fixed;
  inset: 0;
  background: rgba(5, 30, 40, 0.9);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-ov.open {
  opacity: 1;
  pointer-events: all;
}
.modal-ov[aria-hidden="false"] {
  pointer-events: all;
}
.modal-box {
  background: linear-gradient(160deg, var(--eg), #083a4f);
  border: 2px solid var(--gd);
  border-radius: var(--rl);
  padding: 42px 34px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.9) translateY(20px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-ov.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-ico {
  font-size: 42px;
  margin-bottom: 13px;
  animation: bounceIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes bounceIn {
  0% { transform: scale(0) rotate(-15deg); }
  60% { transform: scale(1.12) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}
.modal-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}
.modal-prize {
  font-family: var(--fd);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  color: var(--gd2);
  margin-bottom: 13px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.modal-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
  line-height: 1.7;
}
.modal-tnc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}
.modal-close {
  background: var(--em2);
  border: none;
  border-radius: 9px;
  padding: 13px 28px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}
.modal-close:hover {
  background: #2d6e7c;
  transform: translateY(-1px);
}
.modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-x:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ============================================
   REVEAL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ZONE SVG STATE
============================================ */
.zone-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.zone-svg path,
.zone-svg circle {
  transition: fill 0.2s, stroke 0.2s;
}
.opt.sel .zone-svg-fill {
  fill: #083a4f;
}

/* ============================================
   RESPONSIVE — TABLET
============================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    position: static;
    height: auto;
    padding: 0 32px 48px;
  }
  .hero-left {
    padding: 40px 32px 24px;
  }
  .form-shell {
    max-width: 100%;
  }
  .mid-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spin-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .prizes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .wheel-center {
    order: -1;
  }
  .mkt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — FOUNDER MOBILE
============================================ */
@media (max-width: 900px) {
  .founder-story {
    padding: 80px 24px;
  }
  .founder-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-image {
    max-width: 420px;
    margin: 0 auto;
  }
  .founder-image img {
    height: auto;
  }
  .founder-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }
  .founder-content h2 {
    font-size: 42px;
    line-height: 1.1;
  }
  .founder-content p {
    font-size: 16px;
    line-height: 1.8;
  }
  .founder-quote {
    font-size: 28px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
============================================ */
@media (max-width: 768px) {
  .nav-main {
    padding: 0 16px;
    height: 64px;
  }
  .nav-logo img {
    height: 42px;
  }
  .nav-sub {
    padding: 4px 16px;
    font-size: 10px;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .nav-r .nav-call {
    display: none;
  }
  .zc-strip {
    margin-top: 86px;
    padding: 11px 16px;
    font-size: 11.5px;
    line-height: 1.6;
  }
  .hero {
    padding-top: 0;
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 32px 18px 20px;
  }
  .hero-h1 {
    font-size: 34px;
    letter-spacing: -0.5px;
  }
  .hero-tagline {
    font-size: 15px;
  }
  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-stats {
    gap: 7px;
  }
  .hstat {
    padding: 10px 12px;
    flex: 1 1 calc(33% - 7px);
  }
  .hstat-n {
    font-size: 20px;
  }
  .hstat-l {
    font-size: 9px;
  }
  .hero-divider {
    margin-bottom: 14px;
  }
  .hero-right {
    padding: 0 18px 40px;
  }
  .form-card {
    border-radius: 16px;
  }
  .fstep {
    padding: 18px 16px 14px;
  }
  .fq {
    font-size: 17px;
  }
  .fnxt,
  .fbk {
    padding: 11px 16px;
    font-size: 13px;
  }
  .r2 {
    grid-template-columns: 1fr;
  }
  .slots {
    grid-template-columns: 1fr 1fr;
  }
  .opts.g2 {
    grid-template-columns: 1fr;
  }
  .sec {
    padding: 48px 18px;
  }
  .sec-h {
    font-size: 28px;
  }
  .sec-sub {
    font-size: 14px;
  }
  .proc-grid {
    grid-template-columns: 1fr;
  }
  .proc-card {
    padding: 20px 16px;
  }
  .mid-form-wrap {
    padding: 48px 18px;
  }
  .mid-form-h {
    font-size: 26px;
  }
  .mid-grid {
    grid-template-columns: 1fr;
  }
  .mid-footer {
    flex-direction: column;
    padding: 14px 18px 20px;
  }
  .mid-submit {
    width: 100%;
    font-size: 14px;
  }
  .spin-wrap {
    padding: 48px 18px;
  }
  .spin-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .prizes-list {
    grid-template-columns: 1fr;
  }
  .wheel-center {
    order: -1;
    align-items: center;
  }
  #wcanvas {
    width: 280px !important;
    height: 280px !important;
  }
  .spin-h {
    font-size: 30px;
  }
  .spin-form {
    padding: 20px 16px;
  }
  .mkt-bg {
    padding: 48px 0;
  }
  .mkt-inner {
    padding: 0 18px;
  }
  .mkt-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mkt {
    padding: 18px 12px;
  }
  .zc-section {
    padding: 52px 18px 64px;
  }
  .zc-h {
    font-size: 28px;
  }
  .zc-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .zc-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .zc-card {
    padding: 13px 16px;
  }
  .trust-badges {
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }
  .testi-bg {
    padding: 48px 0;
  }
  .testi-inner {
    padding: 0 18px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 48px 18px;
  }
  .cta-band-h {
    font-size: 24px;
  }
  .cta-band-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn-p,
  .btn-s {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
  }
  footer {
    padding: 40px 18px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .f-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .modal-box {
    padding: 28px 20px;
  }
  .modal-prize {
    font-size: 24px;
  }
  .devs-strip {
    padding: 18px 0;
  }
  .wa-float {
    bottom: 16px;
    right: 16px;
  }
  .wa-fab {
    width: 48px;
    height: 48px;
  }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
============================================ */
@media (max-width: 480px) {
  .nav-logo img {
    height: 38px;
  }
  .nav-main {
    height: 58px;
  }
  .nav-sub {
    display: none;
  }
  .zc-strip {
    margin-top: 58px;
    font-size: 11px;
    padding: 10px 14px;
  }
  .hero-left {
    padding: 26px 16px 18px;
  }
  .hero-h1 {
    font-size: 28px;
  }
  .hero-right {
    padding: 0 16px 32px;
  }
  .fstep {
    padding: 16px 14px 12px;
  }
  .fq {
    font-size: 15px;
  }
  .hstat-n {
    font-size: 18px;
  }
  .hero-stats {
    gap: 5px;
  }
  .hstat {
    padding: 8px 10px;
  }
  .sec {
    padding: 40px 16px;
  }
  .mkt-grid {
    grid-template-columns: 1fr;
  }
  #wcanvas {
    width: 240px !important;
    height: 240px !important;
  }
  .why {
    padding: 20px 16px;
  }
  .testi {
    padding: 18px 14px;
  }
  .cta-band {
    padding: 36px 16px;
  }
  footer {
    padding: 32px 16px 20px;
  }
  .f-desc {
    font-size: 12px;
  }
  .slots {
    grid-template-columns: 1fr 1fr;
  }
  .mid-form-wrap {
    padding: 40px 16px;
  }
  .founder-story {
    padding: 60px 18px;
  }
  .founder-image {
    max-width: 300px;
  }
  .founder-content h2 {
    font-size: 30px;
  }
  .founder-content p {
    font-size: 15px;
  }
  .founder-tag {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .founder-quote {
    font-size: 22px;
  }
  .founder-name strong {
    font-size: 20px;
  }
  .founder-name span {
    font-size: 12px;
  }
  .modal-box {
    padding: 24px 18px;
  }
}

/* ============================================
   ACCESSIBILITY — REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .devs-inner,
  .badge-dot,
  .zc-ico,
  .wheel-pointer,
  .modal-ico {
    animation: none !important;
  }
}

/* ============================================
   PRINT
============================================ */
@media print {
  nav,
  .wa-float,
  .modal-ov,
  .spin-wrap,
  .hero-orb,
  .hero-pat,
  .grid-lines,
  .city-svg,
  .mid-form-orb,
  .spin-orb1,
  .spin-orb2 {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .hero,
  .zc-section,
  .mkt-bg,
  .founder-story,
  .cta-band,
  footer {
    background: #fff !important;
    color: #000 !important;
  }
  .hero-h1,
  .sec-h,
  .zc-h,
  .founder-content h2 {
    color: #000 !important;
  }
}
