:root {
    /* Light landing-page palette */
    --bg: #ffffff;
    --bg-soft: #f6f7f9;            /* very light gray section bg */
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    --bg-elevated: #f1f3f5;
    --accent: #10b981;
    --accent-hover: #059669;
    --accent-dark: #047857;
    --accent-soft: rgba(16, 185, 129, 0.10);
    --accent-soft-2: rgba(16, 185, 129, 0.05);
    --warning: #f97316;             /* orange for urgency badges */
    --warning-soft: rgba(249, 115, 22, 0.10);
    --text-primary: #0f172a;        /* near-black slate */
    --text-secondary: #475569;      /* mid slate */
    --text-muted: #64748b;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --border-accent: rgba(16, 185, 129, 0.35);

    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow: 0 4px 12px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10), 0 4px 8px rgba(15, 23, 42, 0.04);

    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.55;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  img, video { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

  /* ---------- Reusable ---------- */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

  h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--text-primary); }
  h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 800; letter-spacing: -0.03em; }
  h2 { font-size: clamp(28px, 4vw, 40px); }
  h3 { font-size: 22px; font-weight: 700; }
  h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

  .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dark);
    background: var(--accent-soft);
    padding: 6px 12px;
    border-radius: 999px;
  }
  .eyebrow-line {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: var(--radius);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  }
  .btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3); }
  .btn-ghost {
    background: transparent;
    border-color: var(--border-strong);
    color: var(--text-primary);
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }
  .btn-ghost-on-dark {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .btn-ghost-on-dark:hover { background: rgba(255,255,255,0.16); border-color: #fff; }
  .btn-lg { padding: 17px 30px; font-size: 16px; }
  .btn-full { width: 100%; }
  .btn-wa {
    background: #25D366; color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  }
  .btn-wa:hover { background: #1ebd5b; }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

  /* ---------- Navigation ---------- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 24px;
    background: transparent;
    transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
  }
  .nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
  }
  .nav-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
  }
  .brand {
    display: inline-flex; align-items: baseline; gap: 6px;
    font-size: 17px; font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    transition: color 0.25s ease;
  }
  .brand-mark {
    display: inline-flex;
    width: 28px; height: 28px;
    background: var(--accent);
    border-radius: 6px;
    align-items: center; justify-content: center;
    color: #fff;
    font-size: 14px; font-weight: 800;
    margin-right: 4px;
    transform: translateY(2px);
  }
  .brand small { color: var(--accent); font-weight: 700; }
  .nav:not(.scrolled) .brand { color: #ffffff; }
  .nav:not(.scrolled) .nav-toggle span { background: #ffffff; }

  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .nav-actions .btn { padding: 10px 18px; font-size: 13px; }
  .nav-phone {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--text-primary);
    padding-right: 8px;
    transition: color 0.25s ease;
  }
  .nav-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
  .nav:not(.scrolled) .nav-phone { color: #ffffff; }

  .nav-toggle { display: none; width: 26px; height: 18px; position: relative; }
  .nav-toggle span {
    display: block; position: absolute; left: 0; right: 0;
    height: 2px; border-radius: 1px;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  }
  .nav-toggle span:nth-child(1) { top: 2px; }
  .nav-toggle span:nth-child(2) { top: 50%; }
  .nav-toggle span:nth-child(3) { bottom: 2px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0;
    background: var(--bg); z-index: 99;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu-inner {
    display: flex; flex-direction: column; gap: 16px;
    align-items: stretch; padding: 40px; text-align: center;
    width: 100%; max-width: 340px;
  }
  .mobile-menu a.link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary); font-weight: 500; font-size: 15px;
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 660px;
    height: 100vh;
    overflow: hidden;
    display: flex; align-items: center;
    padding-top: 80px;
  }
  .hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; z-index: 0;
    background: #0f172a;
  }
  .hero-video-placeholder {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse at 30% 30%, rgba(16,185,129,0.18) 0%, transparent 55%),
      radial-gradient(ellipse at 70% 70%, rgba(16,185,129,0.10) 0%, transparent 55%),
      linear-gradient(135deg, #0a1a14 0%, #0f2a1f 40%, #0a1f1a 100%);
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(110deg, rgba(10,15,26,0.78) 0%, rgba(10,15,26,0.55) 55%, rgba(10,15,26,0.35) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    color: #ffffff;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(16,185,129,0.5);
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.04em;
    color: #d1fae5;
    margin-bottom: 24px;
  }
  .hero-badge .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseDot 2s infinite;
  }
  @keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  }
  .hero h1 {
    color: #ffffff;
    max-width: 720px;
    margin-bottom: 18px;
  }
  .hero h1 span { color: var(--accent); }
  .hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-bottom: 28px;
    font-weight: 400;
  }
  .hero-price-row {
    display: flex; flex-wrap: wrap; gap: 32px;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 640px;
  }
  .hero-price-item .label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
  }
  .hero-price-item .value {
    font-size: 22px; font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
  }
  .hero-price-item .value small {
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-left: 4px;
  }
  .hero-ctas {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 20px;
  }
  .hero-trust {
    display: flex; flex-wrap: wrap; gap: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
  }
  .hero-trust span {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .hero-trust svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

  /* ---------- Trust bar ---------- */
  .trust-bar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
  }
  .trust-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 500;
    color: var(--text-primary);
  }
  .trust-icon {
    width: 36px; height: 36px;
    background: var(--accent-soft);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent-dark);
    flex-shrink: 0;
  }
  .trust-icon svg { width: 18px; height: 18px; }

  /* ---------- Sections ---------- */
  .section { padding: 80px 0; }
  .section-pad-tight { padding: 64px 0; }
  .section-soft { background: var(--bg-soft); }
  .section-dark { background: #0f172a; color: #ffffff; }
  .section-dark h2, .section-dark h3 { color: #ffffff; }

  .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .section-head h2 { margin-top: 12px; margin-bottom: 12px; }
  .section-head p { color: var(--text-secondary); font-size: 17px; }

  /* About / value */
  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .value-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .value-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
  .value-icon {
    width: 44px; height: 44px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .value-icon svg { width: 22px; height: 22px; }
  .value-card h3 { margin-bottom: 8px; }
  .value-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

  /* Plot sizes */
  .plots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }
  .plot-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    display: flex; flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .plot-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
  .plot-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  }
  .plot-card-badge {
    position: absolute;
    top: -10px; left: 24px;
    background: var(--accent);
    color: #ffffff;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
  }
  .plot-card-title {
    font-size: 15px; font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
  }
  .plot-card-size {
    font-size: 36px; font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
  }
  .plot-card-size small {
    font-size: 16px; font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0;
    margin-left: 4px;
  }
  .plot-card-count {
    font-size: 13px; font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 24px;
  }
  .plot-card-details {
    list-style: none;
    border-top: 1px solid var(--border);
    margin: 0 0 24px;
  }
  .plot-card-details li {
    display: flex; justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
  }
  .plot-card-details li span:first-child { color: var(--text-secondary); }
  .plot-card-details li span:last-child { color: var(--text-primary); font-weight: 600; }
  .plot-card-price-row {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 4px;
  }
  .plot-card-price {
    font-size: 28px; font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
  }
  .plot-card-price-suffix {
    font-size: 14px; font-weight: 500;
    color: var(--text-secondary);
  }
  .plot-card-savings {
    font-size: 13px; font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 20px;
  }
  .plot-card .btn {
    width: 100%;
    margin-top: auto;
  }
  .plot-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
  }

  /* Payment plan */
  .payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .payment-left p {
    color: var(--text-secondary);
    font-size: 16px; line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 28px;
    max-width: 460px;
  }
  .urgency-callout {
    background: var(--warning-soft);
    border-left: 4px solid var(--warning);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin-bottom: 24px;
    max-width: 460px;
  }
  .urgency-callout strong {
    display: block;
    color: var(--warning);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
  }
  .urgency-callout p {
    margin: 0; color: var(--text-primary);
    font-size: 14px; line-height: 1.55;
  }
  .urgency-callout .live-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%; background: var(--warning);
    margin-right: 6px; vertical-align: middle;
    animation: pulseDot 2s infinite;
  }
  .payment-cta {
    display: inline-flex; gap: 10px;
    margin-top: 8px;
  }
  .payment-cta a { font-size: 14px; }
  .timeline {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px 28px;
    box-shadow: var(--shadow-sm);
  }
  .timeline-item {
    display: flex; align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .timeline-item:last-child { border-bottom: none; }
  .timeline-step {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 13px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .timeline-label {
    flex: 1;
    font-size: 15px; font-weight: 500;
    color: var(--text-primary);
  }
  .timeline-pct {
    font-size: 18px; font-weight: 700;
    color: var(--accent-dark);
  }

  /* Why Dehradun */
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .reason-card {
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  .reason-card:hover { border-color: var(--border-accent); transform: translateY(-2px); }
  .reason-num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px; font-weight: 700;
    margin-bottom: 18px;
  }
  .reason-card h4 { margin-bottom: 6px; font-size: 16px; }
  .reason-card p {
    color: var(--text-secondary);
    font-size: 14px; line-height: 1.5;
  }

  /* Location */
  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: stretch;
  }
  .proximity-list { list-style: none; }
  .proximity-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .proximity-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .proximity-icon svg { width: 16px; height: 16px; }
  .proximity-name {
    flex: 1; font-size: 15px; font-weight: 500;
    color: var(--text-primary);
  }
  .proximity-distance {
    font-size: 13px; font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
  }
  .proximity-distance .hot {
    display: inline-block;
    background: var(--warning-soft);
    color: var(--warning);
    font-size: 11px; font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    box-shadow: var(--shadow);
  }
  .map-frame iframe {
    width: 100%; height: 100%;
    min-height: 480px; border: 0; display: block;
  }

  /* Cottage */
  .cottage-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .cottage-text h2 { margin: 12px 0 16px; }
  .cottage-text > p {
    color: var(--text-secondary);
    font-size: 16px; line-height: 1.7;
    margin-bottom: 24px; max-width: 520px;
  }
  .cottage-bullets {
    list-style: none;
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 28px;
  }
  .cottage-bullets li {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 14px; font-weight: 500;
    color: var(--text-primary);
  }
  .cottage-bullets li::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
  }
  .cottage-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 380px;
    background: linear-gradient(135deg, #dfe7d8 0%, #c4d6c6 100%);
    box-shadow: var(--shadow);
  }
  .cottage-image::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 80%, rgba(16,185,129,0.25) 0%, transparent 55%),
      radial-gradient(circle at 70% 30%, rgba(255,255,255,0.5) 0%, transparent 40%);
  }
  .cottage-placeholder {
    position: absolute; bottom: 24px; left: 24px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 12px; font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
  }

  /* Form / CTA */
  .form-section { background: var(--bg-soft); }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
  }
  .form-side h2 { margin: 12px 0 16px; }
  .form-side > p {
    color: var(--text-secondary);
    font-size: 16px; line-height: 1.7;
    margin-bottom: 28px;
  }
  .form-perks {
    list-style: none;
    display: flex; flex-direction: column; gap: 14px;
  }
  .form-perks li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--text-primary);
  }
  .form-perks li svg {
    width: 20px; height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
  }
  .form-perks li strong { font-weight: 600; }
  .form-perks li span.muted { color: var(--text-secondary); display: block; font-size: 13px; }

  .form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
  }
  .form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
  .form-card > p {
    font-size: 14px; color: var(--text-secondary);
    margin-bottom: 24px;
  }
  form {
    display: flex; flex-direction: column;
    gap: 16px;
  }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .field label {
    display: block;
    font-size: 13px; font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .field label .req { color: var(--accent); margin-left: 2px; }
  .field input, .field select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .field input::placeholder { color: var(--text-muted); font-weight: 400; }
  .field input:focus, .field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }
  .field select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2364748b' stroke-width='1.8' stroke-linecap='round' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
  }
  .field.error input, .field.error select { border-color: #ef4444; }
  .field-error {
    display: none;
    margin-top: 6px; font-size: 12px; color: #ef4444;
    font-weight: 500;
  }
  .field.error .field-error { display: block; }
  .form-card .btn-primary { margin-top: 4px; }
  .form-confidential {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    display: inline-flex; align-items: center; gap: 6px;
    justify-content: center; width: 100%;
  }
  .form-confidential svg { width: 12px; height: 12px; }
  .form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 40px 16px;
    text-align: center;
  }
  .form-success.show { display: flex; }
  .check-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    animation: checkPop 0.5s ease;
  }
  @keyframes checkPop {
    0% { transform: scale(0.4); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
  }
  .check-circle svg { width: 32px; height: 32px; }
  .check-circle path {
    stroke: var(--accent);
    stroke-width: 3.5; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 50; stroke-dashoffset: 50;
    animation: drawCheck 0.6s 0.3s ease forwards;
  }
  @keyframes drawCheck { to { stroke-dashoffset: 0; } }
  .form-success h3 { font-size: 24px; font-weight: 700; }
  .form-success p {
    color: var(--text-secondary);
    max-width: 340px; line-height: 1.6;
    font-size: 15px;
  }

  /* Footer */
  .footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 64px 0 28px;
  }
  .footer h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .footer-brand { color: #ffffff; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
  .footer-brand small { color: var(--accent); }
  .footer-tagline {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
    max-width: 320px;
  }
  .footer-col p, .footer-col a, .footer-col li {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.85;
  }
  .footer-col ul { list-style: none; }
  .footer-col a:hover { color: var(--accent); }
  .footer-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-cta .btn { width: 100%; max-width: 240px; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 12px;
    color: #64748b;
  }
  .footer-bottom p { max-width: 640px; line-height: 1.5; }

  /* WhatsApp float */
  .wa-float {
    position: fixed; right: 20px; bottom: 20px;
    z-index: 90;
    display: inline-flex; align-items: center;
    background: #25D366;
    color: #ffffff;
    height: 52px;
    padding: 0 18px 0 14px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
    font-size: 14px; font-weight: 600;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5); }
  .wa-float svg { width: 22px; height: 22px; fill: #ffffff; flex-shrink: 0; }
  .wa-float::after {
    content: ''; position: absolute; inset: -2px;
    border-radius: 999px;
    border: 2px solid #25D366;
    opacity: 0.45;
    animation: pulseRing 2.2s ease-out infinite;
    pointer-events: none;
  }
  @keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.15); opacity: 0; }
  }

  /* Sticky mobile CTA */
  .sticky-cta {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 95;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    gap: 10px;
  }
  .sticky-cta .btn { flex: 1; padding: 13px 18px; font-size: 14px; }

  /* Responsive */
  @media (max-width: 980px) {
    .nav-actions .nav-phone, .nav-actions .btn-ghost { display: none; }
    .nav-toggle { display: block; }

    .hero { min-height: 600px; padding-top: 72px; }
    .hero-price-row { gap: 18px; padding: 16px 18px; }
    .hero-price-item .value { font-size: 18px; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    .value-grid { grid-template-columns: 1fr; }
    .plots-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: 1fr; gap: 40px; }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; gap: 32px; }
    .cottage-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .container { padding: 0 18px; }
    .hero-ctas { width: 100%; }
    .hero-ctas .btn { flex: 1; }
    .hero-trust { gap: 12px; font-size: 12px; }
    .section { padding: 64px 0; }
    .reasons-grid { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .form-card { padding: 24px; }
    .wa-float { bottom: 76px; }   /* sit above sticky CTA */
    .sticky-cta { display: flex; }
  }

  ::selection { background: var(--accent); color: #fff; }