.rera-section {
    --rera-blue: #2563EB;
    --rera-blue-dark: #1D4ED8;
    --rera-blue-light: #EFF6FF;
    --rera-blue-soft: #DBEAFE;
    --rera-ink: #0F172A;
    --rera-muted: #64748B;
    --rera-border: #E2E8F0;
    --rera-bg: #F8FAFC;
    --rera-card: #FFFFFF;
    --rera-green: #16A34A;
    --rera-green-light: #F0FDF4;
    --rera-amber: #D97706;
    --rera-amber-light: #FFFBEB;
    --rera-radius-lg: 20px;
    --rera-radius-md: 14px;
    --rera-radius-sm: 10px;
    --rera-shadow: 0 1px 2px rgba(15,23,42,.04), 0 10px 28px -8px rgba(15,23,42,.10);
    --rera-shadow-hover: 0 1px 2px rgba(15,23,42,.05), 0 18px 36px -10px rgba(37,99,235,.18);
    font-family: 'Inter', sans-serif;
    color: var(--rera-ink);
    background: var(--rera-bg);
    padding: 88px 6vw 96px;
    position: relative;
    overflow: hidden;
  }
  .rera-section * { box-sizing: border-box; }
  .rera-section h1, .rera-section h2, .rera-section h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
  }
  .rera-section p { margin: 0; }

  /* ---------- Header ---------- */
  .rera-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    padding: 0 12px;
  }

  .rera-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 20px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--rera-blue-light);
    color: var(--rera-blue);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
  }

  .rera-title {
    width: 100%;
    margin: 0 0 36px;
    padding: 0;
    font-size: clamp(32px, 4.5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--rera-ink);
  }

  .rera-subtitle {
    width: 100%;
    max-width: 620px;
    margin: 0;
    font-size: clamp(16px, 1.65vw, 18px);
    font-weight: 400;
    color: #475569;
    line-height: 1.75;
    letter-spacing: 0.005em;
  }

  .rera-glow {
    position: absolute;
    top: -180px; right: -160px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--rera-blue-soft) 0%, transparent 70%);
    opacity: .55;
    pointer-events: none;
  }
  .rera-glow--left {
    top: 50%; left: -220px; right: auto;
    width: 440px; height: 440px;
  }

  .rera-container { max-width: 1320px; margin: 0 auto; position: relative; z-index: 1; }

  /* ---------- Reveal-on-scroll ---------- */
  .rera-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .rera-reveal.is-visible { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .rera-reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ---------- Explanation row ---------- */
  .rera-explain {
    display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px;
    margin-bottom: 72px; align-items: stretch;
  }
  .rera-explain-text p { color: #334155; font-size: 17px; line-height: 1.85; margin-bottom: 18px; }
  .rera-explain-text p:last-child { margin-bottom: 0; }
  .rera-explain-text strong { color: var(--rera-ink); font-weight: 700; }

  .rera-stat-card {
    background: var(--rera-card);
    border: 1px solid var(--rera-border);
    border-radius: var(--rera-radius-lg);
    box-shadow: var(--rera-shadow);
    padding: 28px;
    display: flex; flex-direction: column; gap: 18px; justify-content: center;
  }
  .rera-stat-row { display: flex; align-items: center; gap: 14px; }
  .rera-stat-row + .rera-stat-row { padding-top: 16px; border-top: 1px solid var(--rera-border); }
  .rera-stat-icon {
    flex: none; width: 42px; height: 42px; border-radius: 11px;
    background: var(--rera-blue-light); color: var(--rera-blue);
    display: flex; align-items: center; justify-content: center;
  }
  .rera-stat-icon svg { width: 21px; height: 21px; }
  .rera-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; line-height: 1.2; }
  .rera-stat-label { font-size: 12.5px; color: var(--rera-muted); margin-top: 1px; }

  /* ---------- Sub-section heading ---------- */
  .rera-subhead { text-align: center; max-width: 600px; margin: 0 auto 36px; }
  .rera-subhead h3 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
  .rera-subhead p { color: var(--rera-muted); font-size: 14.5px; line-height: 1.6; }

  /* ---------- Buyer benefits grid ---------- */
  .rera-benefits {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    margin-bottom: 76px;
  }
  .rera-card {
    background: var(--rera-card);
    border: 1px solid var(--rera-border);
    border-radius: var(--rera-radius-lg);
    box-shadow: var(--rera-shadow);
    padding: 26px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .rera-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rera-shadow-hover);
    border-color: var(--rera-blue-soft);
  }
  .rera-card-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--rera-blue-light); color: var(--rera-blue);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    transition: background .25s ease, color .25s ease;
  }
  .rera-card:hover .rera-card-icon { background: var(--rera-blue); color: #fff; }
  .rera-card-icon svg { width: 23px; height: 23px; }
  .rera-card h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
  .rera-card p { font-size: 15.5px; color: var(--rera-muted); line-height: 1.7; }

  /* ---------- Checklist ---------- */
  .rera-checklist-wrap {
    background: var(--rera-card);
    border: 1px solid var(--rera-border);
    border-radius: var(--rera-radius-lg);
    box-shadow: var(--rera-shadow);
    padding: 36px;
    margin-bottom: 76px;
  }
  .rera-checklist {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
    margin-top: 28px;
  }
  .rera-check-item { display: flex; align-items: flex-start; gap: 12px; }
  .rera-check-bullet {
    flex: none; width: 26px; height: 26px; border-radius: 50%;
    background: var(--rera-green-light); color: var(--rera-green);
    display: flex; align-items: center; justify-content: center; margin-top: 1px;
  }
  .rera-check-bullet svg { width: 15px; height: 15px; }
  .rera-check-item span { font-size: 15.5px; color: #334155; line-height: 1.65; }

  /* ---------- Gujarat RERA banner ---------- */
  .rera-gujarat {
    background: linear-gradient(155deg, #1E40AF 0%, var(--rera-blue) 55%, #3B82F6 100%);
    border-radius: var(--rera-radius-lg);
    padding: 44px clamp(24px, 4vw, 48px);
    color: #fff;
    box-shadow: 0 20px 44px -16px rgba(29,78,216,.45);
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
  }
  .rera-gujarat::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 85% 15%, rgba(255,255,255,.10) 0%, transparent 45%);
    pointer-events: none;
  }
  .rera-gujarat-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .rera-gujarat-badge {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
  }
  .rera-gujarat-badge svg { width: 22px; height: 22px; }
  .rera-gujarat-top h3 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 700; color: #fff; }
  .rera-gujarat-top span { display: block; font-size: 13px; color: #BFDBFE; font-weight: 500; margin-top: 2px; }
  .rera-gujarat p {
    font-size: 16px; line-height: 1.8; max-width: 900px; line-height: 1.75; color: #DBEAFE; max-width: 760px; margin-bottom: 28px;
  }
  .rera-gujarat p strong { color: #fff; font-weight: 700; }
  .rera-gujarat p.rera-portal-line { margin-bottom: 0; }

  .rera-g-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-bottom: 30px;
  }
  .rera-g-stat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--rera-radius-md);
    padding: 16px;
    backdrop-filter: blur(2px);
  }
  .rera-g-stat svg { width: 18px; height: 18px; color: #BFDBFE; margin-bottom: 10px; }
  .rera-g-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 17px; color: #fff; }
  .rera-g-stat-label { font-size: 12px; color: #BFDBFE; margin-top: 3px; line-height: 1.4; }

  /* ---------- CTA buttons ---------- */
  .rera-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
  .rera-btn {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 700;
    padding: 14px 24px; border-radius: 12px; text-decoration: none;
    border: 1.5px solid transparent; cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  }
  .rera-btn svg { width: 17px; height: 17px; }
  .rera-btn--primary {
    background: #fff; color: var(--rera-blue-dark);
    box-shadow: 0 8px 20px -6px rgba(0,0,0,.25);
  }
  .rera-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(0,0,0,.3); }
  .rera-btn--secondary {
    background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
  }
  .rera-btn--secondary:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

  /* outside-banner trust strip */
  .rera-trust {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    font-size: 13.5px; color: var(--rera-muted); text-align: center;
  }
  .rera-trust svg { width: 16px; height: 16px; color: var(--rera-green); flex: none; }

  /* ---------- Responsive ---------- */
  @media (max-width: 960px) {
    .rera-explain { grid-template-columns: 1fr; }
    .rera-benefits { grid-template-columns: repeat(2, 1fr); }
    .rera-g-stats { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 700px) {
    .rera-section { padding: 64px 5vw 72px; }
    .rera-header { margin-bottom: 48px; padding: 0 4px; }
    .rera-eyebrow { margin-bottom: 16px; font-size: 10.5px; padding: 7px 12px; }
    .rera-title { margin-bottom: 28px; font-size: clamp(28px, 7vw, 34px); }
    .rera-subtitle { font-size: 15.5px; line-height: 1.7; }
    .rera-checklist { grid-template-columns: 1fr; }
    .rera-checklist-wrap { padding: 26px 22px; }
  }
  @media (max-width: 560px) {
    .rera-benefits { grid-template-columns: 1fr; }
    .rera-g-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .rera-gujarat { padding: 32px 22px; }
    .rera-cta-row { flex-direction: column; }
    .rera-btn { width: 100%; justify-content: center; }
    .rera-explain { gap: 24px; margin-bottom: 56px; }
    .rera-benefits { margin-bottom: 56px; }
    .rera-checklist-wrap { margin-bottom: 56px; }
  }
