:root {
      --bg: #f7f8fa;
      --bg2: #ffffff;
      --bg3: #eef0f4;
      --surface: #ffffff;
      --surface2: #f3f5f8;
      --border: rgba(0,0,0,.08);
      --border2: rgba(0,0,0,.13);
      --text: #0d1117;
      --muted: #5a6778;
      --muted2: #8a96a3;
      --accent: #f26b21;
      --accent-glow: rgba(242,107,33,.22);
      --accent-dim: rgba(242,107,33,.1);
      --accent-dark: #c75518;
      --green: #16a34a;
      --red: #dc2626;
      --shadow: 0 20px 60px rgba(0,0,0,.07);
      --shadow-sm: 0 8px 24px rgba(0,0,0,.05);
      --radius: 16px;
      --radius-sm: 10px;
      --max: 1140px;
      --font-display: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }

    .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

    /* ============ TOPBAR ============ */
    .topbar {
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      font-weight: 600;
    }
    .topbar .inner {
      display: flex; gap: 12px; align-items: center; justify-content: space-between;
      padding: 9px 0; flex-wrap: wrap;
    }
    .topbar .left, .topbar .right { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
    .tb-pill {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 5px 12px; border-radius: 999px;
      background: var(--surface); border: 1px solid var(--border2);
      color: var(--muted); font-size: 12px; font-weight: 700;
      transition: border-color .2s, color .2s;
    }
    .tb-pill:hover { border-color: var(--accent); color: var(--text); }
    .tb-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); }
    .tb-pill strong { color: var(--text); }
    .tb-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 999px;
      background: var(--accent); color: #fff;
      font-size: 12px; font-weight: 800; letter-spacing: .3px;
      box-shadow: 0 4px 16px var(--accent-glow);
      transition: box-shadow .2s, transform .1s;
    }
    .tb-cta:hover { box-shadow: 0 6px 20px var(--accent-glow); transform: translateY(-1px); }

    /* ============ HEADER ============ */
    .header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 0 var(--border);
    }
    .header .inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 13px 0; gap: 16px;
    }
    .brand {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; flex-shrink: 0;
    }
    .brand-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      display: grid; place-items: center;
      box-shadow: 0 4px 12px var(--accent-glow);
      flex-shrink: 0; overflow: hidden;
    }
    .brand-icon svg { width: 20px; height: 20px; fill: #fff; }
    .brand-text .name {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 800; letter-spacing: .3px;
      line-height: 1; white-space: nowrap;
    }
    .brand-text .tag { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; white-space: nowrap; }

    .nav { display: flex; align-items: center; gap: 2px; }
    .nav .navlink {
      padding: 6px 10px; border-radius: 8px;
      font-weight: 700; font-size: 13px; color: var(--muted);
      transition: color .2s, background .2s; white-space: nowrap;
    }
    .nav .navlink:hover { color: var(--text); background: var(--bg3); }
    .nav .navlink.active { color: var(--accent); }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 10px 20px; border-radius: 999px;
      font-family: var(--font-body); font-weight: 800; font-size: 14px;
      border: none; cursor: pointer; letter-spacing: .2px;
      transition: transform .1s, box-shadow .2s, background .2s;
      white-space: nowrap;
    }
    .btn:active { transform: translateY(1px) scale(.99); }
    .btn.primary {
      background: var(--accent); color: #fff;
      box-shadow: 0 8px 24px var(--accent-glow);
    }
    .btn.primary:hover { box-shadow: 0 12px 32px rgba(242,107,33,.5); transform: translateY(-1px); }
    .btn.ghost {
      background: transparent; color: var(--text);
      border: 1px solid var(--border2);
    }
    .btn.ghost:hover { background: var(--bg3); border-color: var(--border2); }
    .btn.lg { padding: 14px 28px; font-size: 16px; }

    .mobile-toggle {
      display: none; background: var(--bg3); border: 1px solid var(--border2);
      color: var(--text); padding: 9px 14px; border-radius: 10px;
      font-weight: 800; font-size: 14px; cursor: pointer;
    }
    #mobileMenu {
      display: none; padding: 0 0 16px;
      border-top: 1px solid var(--border);
    }
    .mobile-nav-inner {
      background: var(--bg3); border-radius: var(--radius);
      padding: 16px; margin-top: 12px;
      display: grid; gap: 4px;
    }
    .mobile-nav-inner a {
      padding: 10px 14px; border-radius: 8px; font-weight: 700;
      color: var(--muted); transition: color .2s, background .2s;
    }
    .mobile-nav-inner a:hover { color: var(--text); background: var(--border); }
    .mobile-nav-inner a.strong { color: var(--accent); font-weight: 800; }

    /* ============ HERO ============ */
    .hero {
      padding: 60px 0 40px;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://lavelldecks.kinsta.cloud/wp-content/uploads/2026/03/28c4ad_ff4a74234487416aa672b8f6964a0cddmv2.jpg.avif');
      background-size: cover; background-position: center;
      opacity: .07;
      pointer-events: none;
    }
    .hero::before {
      content: '';
      position: absolute; top: -100px; right: -200px;
      width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(242,107,33,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: -80px; left: -100px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(242,107,33,.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1.2fr .8fr;
      gap: 40px; align-items: center;
      position: relative; z-index: 1;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 999px;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.3);
      color: var(--accent); font-size: 12px; font-weight: 800;
      letter-spacing: .8px; text-transform: uppercase; margin-bottom: 20px;
    }
    .hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 900; line-height: 1;
      letter-spacing: -1px; margin: 0 0 18px;
    }
    .hero h1 .accent { color: var(--accent); }
    .hero p.lead {
      font-size: clamp(16px, 1.4vw, 18px);
      color: var(--muted); line-height: 1.7; margin: 0 0 28px;
      max-width: 520px;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
    .trust-chips { display: flex; gap: 10px; flex-wrap: wrap; }
    .chip {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 13px; border-radius: 999px;
      background: var(--surface); border: 1px solid var(--border2);
      color: var(--muted); font-size: 13px; font-weight: 700;
      transition: border-color .2s;
    }
    .chip:hover { border-color: rgba(242,107,33,.4); }
    .chip svg { width: 15px; height: 15px; flex-shrink: 0; }

    /* Hero card */
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 24px;
      box-shadow: var(--shadow);
      position: relative; overflow: hidden;
    }
    .hero-card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(242,107,33,.12) 0%, transparent 70%);
    }
    .hero-card .kicker {
      font-family: var(--font-display);
      font-size: 18px; font-weight: 800;
      color: var(--text); letter-spacing: .3px;
      margin-bottom: 6px;
    }
    .hero-card .sub { color: var(--muted); font-size: 14px; font-weight: 600; margin-bottom: 18px; }

    .mini-card {
      display: flex; gap: 12px; align-items: center;
      background: var(--bg2); border: 1px solid var(--border);
      border-radius: 12px; padding: 14px;
      margin-bottom: 10px;
      text-decoration: none;
      transition: border-color .2s, transform .1s;
      cursor: pointer;
    }
    .mini-card:last-child { margin-bottom: 0; }
    .mini-card:hover { border-color: rgba(242,107,33,.4); transform: translateX(3px); }
    .mini-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.25);
      display: grid; place-items: center;
    }
    .mini-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .mini-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--text); }
    .mini-text span { font-size: 12px; color: var(--muted); font-weight: 600; }
    .hero-card-notice {
      margin-top: 16px; padding: 12px 14px;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.25);
      border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--accent);
    }

    /* ============ SECTION BASE ============ */
    section { padding: 60px 0; }
    .section-label {
      font-family: var(--font-display);
      font-size: 12px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 10px;
    }
    .section-title h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -.5px; margin: 0 0 10px;
    }
    .section-title p { color: var(--muted); font-size: 16px; margin: 0; max-width: 640px; }
    .section-title.center { text-align: center; }
    .section-title.center p { margin-left: auto; margin-right: auto; }

    /* Divider */
    .divider { border: none; border-top: 1px solid var(--border); margin: 0; }

    /* ============ CARD SYSTEM ============ */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: border-color .2s, transform .15s;
    }
    .card:hover { border-color: var(--border2); }
    .card.highlight { border-color: rgba(242,107,33,.3); }
    .card h3 {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 800;
      margin: 0 0 8px; color: var(--text);
    }
    .card p { margin: 0; color: var(--muted); font-size: 15px; }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Feature card */
    .feat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      position: relative; overflow: hidden;
      transition: border-color .2s, transform .15s, box-shadow .2s;
    }
    .feat-card:hover { border-color: rgba(242,107,33,.3); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
    .feat-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.2);
      display: grid; place-items: center; margin-bottom: 16px;
    }
    .feat-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .feat-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin: 0 0 8px; }
    .feat-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }
    .feat-card .card-meta { margin-top: 12px; font-size: 12px; font-weight: 800; color: var(--accent); letter-spacing: .3px; }

    /* ============ PROBLEMS / 3-STEPS ============ */
    .problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .step-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px; position: relative;
      transition: border-color .2s;
    }
    .step-card:hover { border-color: rgba(242,107,33,.3); }
    .step-num {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.25);
      display: grid; place-items: center; margin-bottom: 16px;
      font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--accent);
    }
    .step-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin: 0 0 8px; }
    .step-card p { color: var(--muted); font-size: 14px; margin: 0; }
    .step-connector {
      position: absolute; top: 44px; right: -10px;
      width: 20px; height: 2px;
      background: rgba(242,107,33,.3);
    }
    .plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
    .plan-grid::before {
      content: '';
      position: absolute; top: 44px; left: calc(16.66% + 22px); right: calc(16.66% + 22px);
      height: 2px; background: linear-gradient(90deg, var(--accent) 0%, rgba(242,107,33,.2) 100%);
    }
    .plan-grid .step-card { margin: 0 8px; }

    .promise-bar {
      margin-top: 24px; padding: 18px 22px;
      background: var(--accent-dim); border: 1px dashed rgba(242,107,33,.4);
      border-radius: 12px;
      font-family: var(--font-display); font-size: 18px; font-weight: 800;
      color: var(--accent); display: flex; align-items: center; gap: 10px;
    }

    /* ============ PROJECT CARDS ============ */
    .project-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; padding: 26px;
      text-decoration: none; display: block;
      transition: border-color .2s, transform .15s, box-shadow .2s;
    }
    .project-card:hover { border-color: rgba(242,107,33,.4); transform: translateY(-4px); box-shadow: 0 24px 50px rgba(0,0,0,.35); }
    .project-badge {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 10px; border-radius: 999px;
      background: var(--bg2); border: 1px solid var(--border);
      font-size: 11px; font-weight: 800; color: var(--muted);
      letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px;
    }
    .project-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
    .project-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin: 0 0 8px; }
    .project-card p { color: var(--muted); font-size: 14px; margin: 0 0 16px; line-height: 1.6; }
    .bullets { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
    .bullets li {
      display: flex; align-items: flex-start; gap: 10px;
      color: var(--muted); font-size: 14px; font-weight: 600;
    }
    .bullets li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .project-cta {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 18px; font-weight: 800; font-size: 14px; color: var(--accent);
    }

    /* ============ REVIEWS ============ */
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .review-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px;
      display: flex; flex-direction: column;
    }
    .review-text { flex: 1; }
    .stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .stars svg { width: 16px; height: 16px; fill: var(--accent); }
    .review-text { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.6; font-style: italic; margin: 0 0 14px; }
    .review-author { font-size: 13px; font-weight: 800; color: var(--muted); }

    /* ============ GALLERY ============ */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }
    .gallery-grid img {
      width: 100%; aspect-ratio: 1/1;
      object-fit: cover; border-radius: 12px;
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s, opacity .2s;
      display: block; cursor: zoom-in;
    }
    .gallery-grid img:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 32px rgba(0,0,0,.15);
      z-index: 1; position: relative;
    }

    /* Lightbox */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(0,0,0,.85); backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
      cursor: zoom-out;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: min(90vw, 1000px); max-height: 88vh;
      object-fit: contain; border-radius: 12px;
      box-shadow: 0 30px 80px rgba(0,0,0,.6);
      cursor: default;
    }
    .lightbox-close {
      position: absolute; top: 20px; right: 24px;
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
      color: #fff; font-size: 20px; display: grid; place-items: center;
      cursor: pointer; transition: background .2s;
    }
    .lightbox-close:hover { background: rgba(255,255,255,.25); }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
      color: #fff; font-size: 20px; display: grid; place-items: center;
      cursor: pointer; transition: background .2s;
    }
    .lightbox-nav:hover { background: rgba(255,255,255,.28); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    /* ============ OUTCOMES ============ */
    .outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .outcome-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 26px;
    }
    .outcome-card.bad { border-color: rgba(239,68,68,.2); }
    .outcome-card.good { border-color: rgba(34,197,94,.2); }
    .outcome-card h3 {
      font-family: var(--font-display); font-size: 22px; font-weight: 800;
      display: flex; align-items: center; gap: 10px; margin: 0 0 16px;
    }
    .outcome-dot { width: 10px; height: 10px; border-radius: 50%; }
    .outcome-dot.bad { background: var(--red); box-shadow: 0 0 8px rgba(239,68,68,.4); }
    .outcome-dot.good { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,.4); }
    .outcome-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
    .outcome-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 15px; font-weight: 600; color: var(--muted);
    }
    .outcome-list li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      margin-top: 7px; flex-shrink: 0;
    }
    .outcome-card.bad .outcome-list li::before { background: var(--red); }
    .outcome-card.good .outcome-list li::before { background: var(--green); }

    /* ============ RENT TO OWN ============ */
    .rent-section {
      background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }
    .rent-inner {
      display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
    }
    .rent-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 999px;
      background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25);
      color: var(--green); font-size: 12px; font-weight: 800;
      letter-spacing: .8px; text-transform: uppercase; margin-bottom: 16px;
    }
    .rent-card {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: var(--radius); padding: 26px;
    }
    .rent-bullets { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
    .rent-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--muted); font-weight: 600; }
    .rent-bullets li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; fill: none; stroke: var(--green); stroke-width: 2.5; }

    /* ============ CONTACT ============ */
    .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
    .contact-info { display: grid; gap: 14px; }
    .cinfo-card {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: var(--radius); padding: 20px;
      display: flex; gap: 14px; align-items: flex-start;
    }
    .cinfo-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.2);
      display: grid; place-items: center;
    }
    .cinfo-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 2; }
    .cinfo-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
    .cinfo-text span { font-size: 14px; color: var(--muted); font-weight: 600; }
    .cinfo-text a { color: var(--accent); font-weight: 800; }

    .form-card {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: var(--radius); padding: 28px;
    }
    form { display: grid; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field { display: grid; gap: 6px; }
    label { font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }
    input, select, textarea {
      width: 100%; padding: 12px 14px;
      background: var(--bg); border: 1px solid var(--border2);
      border-radius: 10px; color: var(--text); font-family: var(--font-body);
      font-size: 14px; font-weight: 600; outline: none;
      transition: border-color .2s, box-shadow .2s;
      height: 46px;
      -webkit-appearance: none; appearance: none;
    }
    textarea { height: auto; min-height: 110px; resize: vertical; }
    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      color: var(--muted); pointer-events: none; font-size: 14px;
    }
    .select-wrap select { padding-right: 32px; }
    input::placeholder, textarea::placeholder { color: var(--muted2); }
    input:focus, select:focus, textarea:focus {
      border-color: rgba(242,107,33,.6);
      box-shadow: 0 0 0 4px rgba(242,107,33,.1);
    }
    select option { background: var(--bg2); color: var(--text); }
    textarea { min-height: 110px; resize: vertical; }
    .smallprint { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }

    /* ============ FOOTER ============ */
    footer {
      background: var(--bg2); border-top: 1px solid var(--border);
      padding: 48px 0 24px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
    .footer-brand .name { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin: 12px 0 4px; }
    .footer-brand .tag { color: var(--muted); font-size: 14px; font-weight: 600; }
    .footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
    .foot-links { display: grid; gap: 8px; }
    .foot-links a { font-size: 14px; font-weight: 700; color: var(--muted); transition: color .2s; }
    .foot-links a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 20px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom span { font-size: 13px; color: var(--muted2); font-weight: 600; }

    /* ============ PAGE SYSTEM ============ */
    main.page { display: none; }
    main.page.active { display: block; }
    .anchor { scroll-margin-top: 100px; }

    /* ============ STICKY CTA MOBILE ============ */
    .sticky-cta {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(20px);
      border-top: 1px solid var(--border2);
      padding: 12px 16px;
      display: none;
    }
    .sticky-cta-inner { display: flex; gap: 10px; }
    .sticky-cta .btn { flex: 1; text-align: center; }

    /* ============ LANDING PAGE HERO ============ */
    .lp-hero {
      padding: 48px 0 30px; position: relative; overflow: hidden;
    }
    .lp-hero::before {
      content: '';
      position: absolute; top: -120px; right: -150px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(242,107,33,.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .lp-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; position: relative; z-index: 1; }
    .lp-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 58px); font-weight: 900; line-height: 1.05; letter-spacing: -1px; margin: 0 0 16px; }
    .lp-hero p.lead { font-size: 17px; color: var(--muted); margin: 0 0 24px; line-height: 1.7; }

    /* ============ DECK MODELS ============ */
    .models-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    }
    .model-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; overflow: hidden;
      transition: transform .18s, box-shadow .2s, border-color .2s;
      display: flex; flex-direction: column;
    }
    .model-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(0,0,0,.1);
      border-color: rgba(242,107,33,.3);
    }
    .model-img {
      width: 100%; aspect-ratio: 4/3;
      object-fit: cover; display: block;
    }
    .model-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
    .model-size {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 10px; border-radius: 999px;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.2);
      font-size: 11px; font-weight: 800; color: var(--accent);
      letter-spacing: .6px; text-transform: uppercase;
      margin-bottom: 10px; width: fit-content;
    }
    .model-card h3 {
      font-family: var(--font-display); font-size: 22px; font-weight: 800;
      margin: 0 0 8px; color: var(--text);
    }
    .model-card p {
      color: var(--muted); font-size: 14px; line-height: 1.65;
      margin: 0 0 16px; flex: 1;
    }
    .model-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-weight: 800; font-size: 14px; color: var(--accent);
      margin-top: auto;
    }
    .model-cta svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; }

    /* ============ TEAM ============ */
    .team-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .team-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; overflow: hidden;
      transition: transform .18s, box-shadow .2s, border-color .2s;
    }
    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(0,0,0,.09);
      border-color: rgba(242,107,33,.25);
    }
    .team-photo {
      width: 100%; aspect-ratio: 1/1;
      object-fit: cover; object-position: top;
      display: block;
    }
    .team-body { padding: 22px; }
    .team-role {
      display: inline-flex; align-items: center;
      padding: 3px 10px; border-radius: 999px;
      background: var(--accent-dim); border: 1px solid rgba(242,107,33,.2);
      font-size: 11px; font-weight: 800; color: var(--accent);
      letter-spacing: .6px; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .team-card h3 {
      font-family: var(--font-display); font-size: 22px; font-weight: 800;
      margin: 0 0 8px; color: var(--text);
    }
    .team-card p {
      color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0;
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1000px) {
      .hero-grid, .lp-grid, .rent-inner, .contact-grid { grid-template-columns: 1fr; }
      .grid-3, .problems-grid, .plan-grid, .reviews-grid { grid-template-columns: 1fr; }
      .plan-grid::before { display: none; }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .gallery-grid img:nth-child(5), .gallery-grid img:nth-child(13) { grid-column: span 1; }
      .outcomes-grid { grid-template-columns: 1fr; }
      .grid-2 { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .nav .navlink { display: none; }
      .mobile-toggle { display: inline-flex; }
      .sticky-cta { display: block; }
      body { padding-bottom: 80px; }
      .form-row { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .models-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid img:nth-child(5), .gallery-grid img:nth-child(13) { grid-column: span 1; }
      .hero h1 { font-size: 38px; }
      .trust-chips { gap: 8px; }
    }

    /* ============ ANIMATIONS ============ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .page.active .hero, .page.active .lp-hero { animation: fadeUp .4s ease forwards; }

    /* Highlight text */
    mark {
      background: none; color: var(--accent);
      font-style: normal;
    }

/* Responsive Iframe Container */
.form-iframe-wrap {
  width: 100%;
  min-height: 800px; /* Adjust based on the actual height of your form */
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
}

.form-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}