/* Myhna Vistara | pages/home.css — Homepage-only section styles
   Do not edit selectors — only values */

  /* -------- HERO -------- */
  .hero{
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display:flex; align-items:center;
    isolation: isolate;
  }
  /* -------- HERO (image-led, balcony scene) -------- */
  .hero{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    isolation: isolate;
    background-image:
      linear-gradient(
        to right,
        rgba(12, 10, 6, 0.72) 0%,
        rgba(12, 10, 6, 0.40) 42%,
        rgba(12, 10, 6, 0.08) 72%,
        rgba(12, 10, 6, 0.02) 100%),
      url('/vistara/assets/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 72px;
    display: flex;
    align-items: center;
  }
  /* legacy nodes kept neutral so old markup doesn't show */
  .hero-bg, .hero-overlay{ display: none; }

  /* -------- HERO CTA BLOCK -------- */
  .hero-cta{
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
    align-items: center;
  }
  /* Base style — covers all CTA variants regardless of element type or context */
  .hero-cta a,
  .hero-cta button,
  .hero-cta-primary,
  .hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    width: auto;
    white-space: nowrap;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: var(--btn-radius);
    cursor: pointer;
    text-decoration: none;
    border: var(--btn-border-width) solid transparent;
    transition: box-shadow .3s ease, background-color .25s ease,
                color .25s ease, border-color .25s ease, transform .15s ease;
  }
  .hero-cta-primary{
    background: var(--gold-accent);
    color: var(--white);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 24px -12px rgba(201, 168, 76, 0.55);
  }
  .hero-cta-primary:hover{
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow:
      0 0 0 1px rgba(201, 168, 76, 0.40),
      0 14px 36px -10px rgba(201, 168, 76, 0.85),
      0 0 36px rgba(201, 168, 76, 0.30);
  }
  .hero-cta-primary .arrow{
    display: inline-block;
    transition: transform .25s ease;
  }
  .hero-cta-primary:hover .arrow{ transform: translateX(5px); }

  .hero-cta-secondary{
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
  }
  .hero-cta-secondary:hover{
    border-color: var(--color-wa);
    color: var(--color-wa);
    background: rgba(37, 211, 102, 0.08);
  }
  .hero-cta-secondary .wa{
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .hero-cta-note{
    font-family: var(--display);
    font-style: italic;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin: 20px 0 0;
    letter-spacing: 0.01em;
    font-weight: 400;
  }

  /* -------- HERO FORM CARD (floating right) -------- */
  .hero-form-card{
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: var(--form-card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--form-card-border);
    padding: 40px 36px 32px;
    border-radius: 0;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.45);
    z-index: 3;
    animation: heroFadeUpSm 1s ease 0.55s both;
  }
  .hero-form-card .eyebrow{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.6;
  }
  .hero-form-card .rule{
    width: 32px; height: 2px;
    background: var(--gold);
    margin: 14px 0 22px;
  }
  .hero-form-card .form-fields{
    display: flex; flex-direction: column; gap: 10px;
  }
  .field-ic{
    position: relative;
    border: 1px solid rgba(48,76,134,0.14);
    background: var(--white);
    transition: border-color .15s ease;
  }
  .field-ic:focus-within{ border-color: var(--navy); }
  .field-ic > svg{
    position: absolute;
    left: 14px; top: 50%;
    transform: translateY(-50%);
    width: 15px; height: 15px;
    color: var(--color-icon);
    stroke: currentColor; fill: none;
    stroke-width: 1.6;
    pointer-events: none;
  }
  .field-ic input,
  .field-ic select{
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: var(--body);
    font-size: 14px;
    color: var(--charcoal);
    padding: 13px 14px 13px 40px;
    appearance: none;
    -webkit-appearance: none;
  }
  .field-ic select{
    cursor: pointer;
    color: var(--text-dim);
    padding-right: 32px;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-icon) 50%), linear-gradient(135deg, var(--color-icon) 50%, transparent 50%);
    background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px;
    background-size: 6px 6px;
    background-repeat: no-repeat;
  }
  .field-ic select.chosen{ color: var(--charcoal); }
  .field-ic input::placeholder{ color: var(--color-placeholder); }

  /* phone field with country-code dropdown (hero card variant) */
  .field-ic.phone-ic{
    display: flex;
    align-items: stretch;
  }
  /* Hide the absolutely-positioned phone icon for phone fields — the
     country-code prefix already signals what this field is, and the icon
     was eating ~28px of horizontal space we'd rather give to the number. */
  .field-ic.phone-ic > svg{ display: none; }
  .field-ic.phone-ic .country-code{
    flex: 0 0 auto;
    width: 64px;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: var(--body);
    font-size: 13px;
    color: var(--charcoal);
    padding: 13px 18px 13px 12px;
    border-right: 1px solid rgba(48,76,134,0.10);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-weight: 700;
    background-image: linear-gradient(45deg, transparent 50%, var(--color-icon) 50%), linear-gradient(135deg, var(--color-icon) 50%, transparent 50%);
    background-position: calc(100% - 9px) 50%, calc(100% - 5px) 50%;
    background-size: 4px 4px;
    background-repeat: no-repeat;
  }
  .field-ic.phone-ic input{
    flex: 1;
    padding-left: 12px;
    min-width: 0;
  }
  /* two-column row inside the compact hero form card */
  .hero-row-2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-row-2 .field-ic > svg{ left: 12px; }
  .hero-row-2 .field-ic input{ padding-left: 34px; font-size: 13px; }

  .hero-form-card .submit{
    width: 100%;
    margin-top: 22px;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    padding: 16px;
    border-radius: 0;
    border: 0;
    transition: background-color .2s ease;
    cursor: pointer;
  }
  .hero-form-card .submit:hover{ background: var(--gold-dark); color: var(--white); }
  .hero-form-card .secure{
    text-align: center;
    font-family: var(--body);
    font-size: 12px;
    color: var(--text-ghost);
    margin: 16px 0 0;
    font-weight: 400;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .hero-form-card .secure svg{ width: 11px; height: 11px; }

  .hero-form-card .thanks{
    text-align: center;
    padding: 24px 0 8px;
  }
  .hero-form-card .thanks .title{
    font-family: var(--display);
    font-size: 32px;
    color: var(--navy);
    font-weight: 500;
    margin: 0 0 12px;
  }
  .hero-form-card .thanks .sub{
    font-family: var(--body);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* -------- HERO BOTTOM BAR -------- */
  .hero-bottom-bar{
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: rgba(12, 10, 6, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(197, 163, 89, 0.22);
    padding: 0 72px;
    height: 92px;
    display: flex;
    align-items: stretch;
    z-index: 4;
  }
  .hero-bottom-col{
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 48px;
    border-left: 1px solid rgba(255,255,255,0.10);
    background: transparent;
    border-radius: 0;
    text-align: left;
  }
  .hero-bottom-col:first-child{ border-left: 0; padding-left: 0; }
  .hero-bottom-col .lab{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .hero-bottom-col .val{
    font-family: var(--display);
    font-size: clamp(20px, 1.9vw, 24px);
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
  }
  .hero-bottom-col .val .italic{ color: var(--gold); font-style: italic; }
  .hero-bottom-col .val .arrow{ color: var(--gold); margin-left: 6px; display: inline-block; transition: transform .2s ease; }
  .hero-bottom-col .val .muted{ color: rgba(255,255,255,0.55); }
  .hero-bottom-col.cta{
    cursor: pointer;
    transition: background-color .2s ease;
    border: none;
    padding: 0 48px;
  }
  .hero-bottom-col.cta:hover{ background: rgba(210,171,103,0.08); }
  .hero-bottom-col.cta:hover .arrow{ transform: translateX(4px); }

  /* -------- HERO BOTTOM CORNERS (watch / addr / scroll cue) -------- */
  .hero-addr{
    position: absolute;
    bottom: 110px;
    left: 72px;
    color: rgba(255,255,255,0.6);
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.08em;
    display: flex; align-items: center; gap: 8px;
    z-index: 3;
  }
  .hero-addr svg{ width: 12px; height: 12px; color: var(--gold); }
  .hero-watch{
    position: absolute;
    bottom: 110px;
    right: 72px;
    color: rgba(255,255,255,0.6);
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
    z-index: 3;
    transition: color .2s ease;
  }
  .hero-watch:hover{ color: var(--gold); }
  .hero-watch .play{
    width: 22px; height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s ease;
  }
  .hero-watch:hover .play{ background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
  .hero-watch .play svg{ width: 8px; height: 8px; fill: currentColor; margin-left: 1px; }

  /* scroll cue (overrides earlier rules) */
  .scroll-cue{
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 3;
  }
  .scroll-cue .label{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    font-weight: 700;
  }
  .scroll-line{
    width: 1px; height: 36px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after{
    content:'';
    position:absolute; left:0; right:0;
    height: 10px; top:-10px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollDrop 2s ease-in-out infinite;
  }

  /* -------- LOCATION -------- */
  .location{
    background: var(--cream);
    padding: 100px 80px;
  }
  .loc-top{
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom: 36px;
    gap: 24px;
  }
  .loc-eyebrow{
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .loc-eyebrow .navy{ color: var(--navy); }
  .loc-eyebrow .gold{ color: var(--gold); margin-left: 6px; }
  .loc-addr{
    font-family: var(--body);
    font-size: 17px;
    font-weight: 300;
    color: var(--charcoal);
  }
  .loc-maps{
    border: var(--btn-border-width) solid var(--navy);
    color: var(--navy);
    background: transparent;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 0;
    display:inline-flex; align-items:center; gap:10px;
    transition: all .2s ease;
    cursor: pointer;
    text-decoration: none;
  }
  .loc-maps:hover{ background: var(--navy); color: var(--white); }
  .loc-maps svg{ width:12px; height:12px; }

  .loc-card{
    background: var(--cream-soft);
    border: 1px solid rgba(175, 129, 46, 0.15);
    border-radius: 12px;
    padding: 44px 52px 36px;
  }

  .tabs{
    display:flex; justify-content: space-between; gap: 16px;
  }
  .tab{
    flex: 1;
    display:flex; flex-direction:column; align-items:center; gap:12px;
    padding: 16px 20px;
    border: 1.5px solid transparent;
    border-radius: 6px;
    color: var(--text-airy);
    transition: all .25s ease;
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    background: transparent;
    cursor: pointer;
  }
  .tab:hover{ color: var(--text-dim); }
  .tab svg{ width:32px; height:32px; stroke: currentColor; stroke-width: 1.4; fill: none; }
  .tab.active{
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(210,171,103,0.04);
  }

  .progress{
    height: 3px;
    background: var(--progress-bg);
    margin: 20px 0 44px;
    position: relative;
    overflow: hidden;
  }
  .progress-fill{
    position:absolute; top:0; left:0; bottom:0;
    width: 20%;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    transition: width .4s ease, transform .4s ease;
  }

  .dist-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 44px;
    column-gap: 32px;
  }
  .dist-item{
    opacity: 0;
    transform: translateY(8px);
    animation: distIn .5s ease forwards;
  }
  .dist-item:nth-child(1){ animation-delay: 0.02s; }
  .dist-item:nth-child(2){ animation-delay: 0.06s; }
  .dist-item:nth-child(3){ animation-delay: 0.10s; }
  .dist-item:nth-child(4){ animation-delay: 0.14s; }
  .dist-item:nth-child(5){ animation-delay: 0.18s; }
  .dist-item:nth-child(6){ animation-delay: 0.22s; }
  /* -------- OVERVIEW -------- */
  .overview{
    background: var(--cream);
    padding: 120px 80px;
  }
  .overview-grid{
    display:grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: start;
  }
  .overview-location-tag{
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 16px 0 0;
  }
  .overview-body{
    font-family: var(--body);
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.8;
    color: var(--text-faint);
    font-weight: 300;
    margin: 32px 0 0;
    max-width: 580px;
  }
  .overview-quote{
    font-family: var(--display);
    font-size: clamp(24px, 2.4vw, 30px);
    font-style: italic;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.55;
    margin: 36px 0 0;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
    max-width: 580px;
  }
  .overview-quote .author{
    display:block;
    font-style: normal;
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-top: 18px;
  }
  .overview-facts{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding: 36px 0;
    border-top: 1px solid var(--rule-mid);
    border-bottom: 1px solid var(--rule-mid);
  }
  .fact-num{
    font-family: var(--display);
    font-size: clamp(48px, 4.6vw, 56px);
    font-weight: 500;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .fact-num .small{ font-size: 26px; color: var(--gold); font-weight: 400; margin-left: 4px; }
  .fact-label{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-top: 14px;
  }
  .fact-desc{
    font-family: var(--body);
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 300;
    line-height: 1.65;
  }
  .signature-row{
    display:flex; align-items:center; gap: 22px;
    margin-top: 30px;
  }
  .signature-row .by{
    font-family: var(--body);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-ghost);
    font-weight: 700;
  }
  .signature-logo{
    height: 56px;
    width: auto;
    display: block;
  }

  /* -------- AMENITIES -------- */
  .amenities{
    background: var(--navy);
    padding: 120px 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .amenities::before{
    content:'';
    position:absolute; inset: 0;
    background:
      radial-gradient(60% 80% at 100% 0%, rgba(210,171,103,0.10), transparent 60%),
      radial-gradient(50% 70% at 0% 100%, rgba(210,171,103,0.08), transparent 60%);
    pointer-events: none;
  }
  .amenities > *{ position: relative; }
  .amenities .section-eyebrow .navy{ color: rgba(255,255,255,0.95); }
  .amenities .section-eyebrow .rule{ background: rgba(210,171,103,0.7); }

  .am-head{
    display:flex; align-items:flex-end; justify-content:space-between;
    gap: 60px;
    margin-bottom: 60px;
  }
  .am-head .section-h{ color: var(--white); max-width: 720px; }
  .am-sub{
    font-family: var(--body);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.70);
    max-width: 400px;
    line-height: 1.7;
    margin: 0;
  }

  .am-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 1px solid rgba(255,255,255,0.12);
  }
  .am-card{
    padding: 36px 30px 30px;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display:flex; flex-direction:column; gap: 16px;
    min-height: 230px;
    transition: background-color .25s ease;
    position: relative;
  }
  .am-card:hover{ background: rgba(210,171,103,0.06); }
  .am-card i{ font-size: 32px; color: var(--gold-accent); display: block; margin-bottom: 16px; line-height: 1; }
  .ph-duotone{ --ph-color: var(--gold-accent); --ph-faded-color: rgba(201,168,76,0.2); }
  .am-card .name{
    font-family: var(--display);
    font-size: clamp(22px, 1.9vw, 26px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
  }
  .am-card .desc{
    font-family: var(--body);
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
  }
  .am-card .num{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(210,171,103,0.65);
    font-weight: 700;
    margin-top: auto;
    padding-top: 16px;
  }

  .am-foot{
    display:flex; align-items:center; justify-content: space-between;
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    gap: 40px;
    flex-wrap: wrap;
  }
  .am-foot-left{
    font-family: var(--display);
    font-size: clamp(28px, 2.4vw, 34px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.35;
  }
  .am-foot-left .gold{ color: var(--gold); font-style: italic; }
  .am-foot-cta{
    background: transparent;
    border: var(--btn-border-width) solid var(--gold);
    color: var(--gold);
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    padding: 16px var(--btn-padding-x);
    border-radius: 0;
    transition: all .2s ease;
    cursor:pointer;
  }
  .am-foot-cta:hover{ background: var(--gold); color: var(--navy); }

  /* -------- FLOOR PLANS -------- */
  .plans{
    background: var(--cream);
    padding: 120px 80px;
  }

  /* price expectation banner */
  .plan-price-banner{
    background: var(--popup-card-bg);
    border-left: 3px solid var(--gold-accent);
    padding: 24px 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
  }
  .plan-price-banner .pb-left{ max-width: 640px; flex: 1 1 auto; min-width: 240px; }
  .plan-price-banner .pb-title{
    font-family: var(--display);
    font-size: 24px;
    color: var(--navy-dark);
    font-weight: 500;
    margin: 0 0 6px;
    letter-spacing: -0.005em;
    line-height: 1.25;
  }
  .plan-price-banner .pb-sub{
    font-family: var(--body);
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
  }
  .plan-price-banner .pb-sub sup{
    font-size: 10px; color: var(--gold-accent);
    top: -0.6em; position: relative; margin-left: 1px;
  }
  .plan-price-banner .pb-cta{
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 26px;
    background: var(--navy-dark);
    color: var(--white);
    font-family: var(--body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 8px;
    border: var(--btn-border-width) solid var(--navy-dark);
    cursor: pointer;
    transition: background-color .2s ease, box-shadow .25s ease;
  }
  .plan-price-banner .pb-cta:hover{
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    box-shadow: 0 12px 28px -10px rgba(10,31,68,0.45);
  }
  .plan-price-banner .pb-cta .arrow{
    display: inline-block; transition: transform .2s ease;
  }
  .plan-price-banner .pb-cta:hover .arrow{ transform: translateX(4px); }
  .plans-head{
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
  }
  .plans-sub{
    font-family: var(--body);
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 400px;
    line-height: 1.7;
    margin: 0;
  }

  .plans-tabs{
    display:flex;
    border-top: 1px solid var(--rule-mid);
    border-bottom: 1px solid var(--rule-mid);
    margin-bottom: 60px;
  }
  .plans-tab{
    flex: 1;
    padding: 22px 12px;
    text-align: center;
    background: transparent;
    border: none;
    border-right: 1px solid var(--rule-light);
    color: var(--text-airy);
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    border-radius: 0;
  }
  .plans-tab:last-child{ border-right: 0; }
  .plans-tab .name{
    font-family: var(--display);
    font-size: clamp(22px, 1.9vw, 26px);
    font-weight: 500;
    line-height: 1;
    display:block;
  }
  .plans-tab .typ{
    display:block;
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--color-icon);
    margin-top: 10px;
    font-weight: 700;
  }
  .plans-tab.active{ color: var(--navy); }
  .plans-tab.active .typ{ color: var(--gold); }
  .plans-tab.active::after{
    content:'';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: var(--gold);
  }
  .plans-tab:hover:not(.active){ color: var(--text-pale); }

  .plans-content{
    display:grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
  }

  .plans-info .tower-name{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 14px;
  }
  .plans-info .typology{
    font-family: var(--display);
    font-size: clamp(44px, 4.2vw, 52px);
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 14px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .plans-info .typology .italic{ font-style: italic; color: var(--navy); }
  .plans-info .typo-blurb{
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0 0 36px;
    max-width: 440px;
  }

  .plans-units{
    display:flex; flex-direction:column;
    border-top: 1px solid rgba(175,129,46,0.25);
  }
  .unit-row{
    display:grid;
    grid-template-columns: 1fr auto;
    padding: 20px 0 18px;
    border-bottom: 1px solid var(--rule-light);
    gap: 24px;
    align-items: end;
  }
  .unit-row .typ-name{
    font-family: var(--display);
    font-size: clamp(22px, 1.9vw, 26px);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.1;
  }
  .unit-row .size{
    font-family: var(--body);
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 8px;
    letter-spacing: 0.04em;
  }
  .unit-row .price{
    font-family: var(--display);
    font-size: clamp(22px, 1.9vw, 26px);
    font-weight: 500;
    color: var(--charcoal);
    text-align: right;
    line-height: 1;
  }
  .unit-row .price-from{
    display:block;
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .plans-cta-row{
    display:flex; gap: 10px; margin-top: 32px;
  }
  .plans-cta-row button{
    flex: 1;
    padding: 16px;
    font-family: var(--body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: all .2s ease;
  }
  .plans-cta-row .primary{ background: var(--navy); color: var(--gold); border: var(--btn-border-width) solid var(--navy); }
  .plans-cta-row .primary:hover{ background: var(--navy-deep); border-color: var(--navy-deep); }
  .plans-cta-row .secondary{ background: transparent; border: var(--btn-border-width) solid var(--navy); color: var(--navy); }
  .plans-cta-row .secondary:hover{ background: var(--navy); color: var(--white); }

  .plans-image{
    background: var(--cream-soft);
    border: 1px solid var(--rule-faint);
    padding: 28px;
    position: relative;
  }
  .plans-image img{
    width: 100%; height: auto; display:block;
  }

  /* -------- FLOOR PLAN IMAGE WRAP (overlay context) -------- */
  .plan-fp-wrap{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--plan-fp-bg);
  }
  /* Blur + lock overlay styles live in components.css (.floor-plan-img, .floor-plan-lock-overlay) */

  /* -------- PRICE BASE -------- */
  .unit-row .price-amt{
    display: inline-block;
    letter-spacing: 0.02em;
  }
  /* Permanent blur on variant prices — .price-variant in components.css */
  .plans-image .tag{
    position:absolute;
    top: 28px; right: 28px;
    background: var(--white);
    padding: 9px 16px;
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 700;
    border: 1px solid rgba(175,129,46,0.25);
    z-index: 2;
  }
  .plans-image .compass{
    position: absolute;
    bottom: 28px; right: 28px;
    background: var(--white);
    padding: 9px 14px;
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 700;
    border: 1px solid rgba(175,129,46,0.2);
    display: flex; align-items:center; gap: 8px;
  }
  .plans-image .compass svg{ width:16px; height:16px; }

  /* -------- LOCATION MAP BANNER -------- */
  .loc-map-banner{
    margin-bottom: 36px;
    background: var(--white);
    border: 1px solid var(--rule-faint);
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .loc-map-banner img{ width: 100%; height: auto; display:block; }
  .loc-map-banner .loc-map-half + .loc-map-half{ border-left: 1px solid var(--rule-faint); }

  .loc-map-overlay{
    position: absolute;
    top: 24px; left: 24px;
    background: var(--cream);
    padding: 14px 20px;
    border: 1px solid rgba(175,129,46,0.25);
  }
  .loc-map-overlay .eyebrow{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
  }
  .loc-map-overlay .title{
    font-family: var(--display);
    font-style: italic;
    font-size: 22px;
    color: var(--navy);
    margin-top: 4px;
    font-weight: 500;
  }

  /* -------- LOCATION CTA BAND (IT professionals) -------- */
  .loc-cta{
    position: relative;
    background: var(--navy-dark);
    padding: 60px 24px;
    text-align: center;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
  }
  .loc-cta-bg{
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
      radial-gradient(60% 80% at 70% 100%, rgba(201, 168, 76, 0.18), transparent 60%),
      radial-gradient(50% 70% at 25% 0%, rgba(201, 168, 76, 0.10), transparent 60%);
    background-size: 56px 56px, 56px 56px, 100% 100%, 100% 100%;
    background-position: center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,1) 40%, rgba(0,0,0,0.7));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,1) 40%, rgba(0,0,0,0.7));
  }
  .loc-cta-inner{
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .loc-cta-eyebrow{
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold-accent);
    display: inline-flex; align-items: center; gap: 12px;
  }
  .loc-cta-eyebrow::before,
  .loc-cta-eyebrow::after{
    content: '';
    width: 24px; height: 1px;
    background: rgba(201, 168, 76, 0.45);
  }
  .loc-cta-h{
    font-family: var(--display);
    font-size: clamp(32px, 4.2vw, 46px);
    font-weight: 400;
    margin: 8px 0 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  .loc-cta-sub{
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 26px);
    color: var(--gold-accent);
    font-weight: 400;
    margin: 2px 0 0;
    line-height: 1.25;
  }
  .loc-cta-body{
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 580px;
    margin: 6px 0 8px;
  }
  .loc-cta-body .accent{ color: var(--gold-accent); font-weight: 700; }
  .loc-cta-btn{
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 16px var(--btn-padding-x);
    width: auto;
    min-width: 0;
    white-space: nowrap;
    background: var(--gold-accent);
    color: var(--white);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: var(--btn-border-width) solid var(--gold-accent);
    cursor: pointer;
    margin-top: 10px;
    transition: background-color .2s ease, box-shadow .25s ease;
    box-shadow: 0 14px 32px -12px rgba(201,168,76,0.65);
  }
  .loc-cta-btn:hover{
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow:
      0 0 0 1px rgba(201,168,76,0.40),
      0 18px 40px -10px rgba(201,168,76,0.85),
      0 0 36px rgba(201,168,76,0.30);
  }
  .loc-cta-btn .arrow{ display: inline-block; transition: transform .2s ease; }
  .loc-cta-btn:hover .arrow{ transform: translateX(5px); }
  .loc-cta-meta{
    font-family: var(--body);
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .loc-cta-meta .dot{ color: var(--gold-accent); opacity: 0.55; }
  .loc-cta-meta sup{ color: var(--gold-accent); font-size: 9px; top: -0.6em; position: relative; margin-left: 1px; }

  /* -------- FAQ -------- */
  .faq{
    background: var(--cream);
    padding: 120px 80px;
  }
  .faq-head{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }
  .faq-sub{
    font-family: var(--body);
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 460px;
    margin: 0;
  }
  .faq-list{
    border-top: 1px solid var(--rule-mid);
  }
  .faq-item{
    border-bottom: 1px solid rgba(175,129,46,0.20);
  }
  .faq-item summary{
    list-style: none;
    cursor: pointer;
    padding: 32px 0;
    display:flex; align-items:center; justify-content: space-between;
    gap: 30px;
    font-family: var(--display);
    font-size: clamp(22px, 2.1vw, 28px);
    font-weight: 500;
    color: var(--charcoal);
    transition: color .2s ease;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::marker{ display:none; }
  .faq-item summary:hover{ color: var(--navy); }
  .faq-item .plus{
    width: 28px; height: 28px;
    flex: 0 0 28px;
    position: relative;
    transition: transform .3s ease;
  }
  .faq-item .plus::before,
  .faq-item .plus::after{
    content:'';
    position: absolute; top: 50%; left: 0;
    width: 100%; height: 1.5px;
    background: var(--gold);
    transition: transform .3s ease;
  }
  .faq-item .plus::after{ transform: rotate(90deg); }
  .faq-item[open] .plus::after{ transform: rotate(0); }
  .faq-item[open] summary{ color: var(--navy); }
  .faq-answer{
    padding: 0 60px 36px 0;
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-faint);
    font-weight: 300;
    max-width: 820px;
  }


/* ══════════════════════════════════════════════════════════════
   Locality Page Overrides
   Applied only when .hero-locality / locality-specific classes
   are present. Does not affect index.php layout.
   ══════════════════════════════════════════════════════════════ */

/* ── Trust row (hero pills — used on home hero + locality hero) ── */
.trust-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.trust-pill{
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--gold-border);
  color: rgba(255,255,255,0.82);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(210,171,103,0.07);
}

/* ── Locality hero H1 — smaller than homepage (longer text) ── */
.hero-locality-content .hero-h1{
  font-size: clamp(32px, 3.8vw, 52px);
}

/* ── Locality hero grid ── */
.hero-locality{
  height: auto;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  background: var(--navy-deep);
  padding-top: 68px; /* nav height */
  overflow: hidden;
  isolation: isolate;
}

/* Left column row 1: content */
.hero-locality-content{
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px 24px 80px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

/* Right column spans both rows: form card */
.hero-locality-form{
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 72px 80px 48px;
  background: rgba(10,20,50,0.55);
  position: relative;
  z-index: 2;
}

/* Left column row 2: CTA buttons */
.hero-locality-ctas{
  grid-column: 1;
  grid-row: 2;
  padding: 0 60px 56px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Breadcrumb trail ── */
.breadcrumb-trail{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.breadcrumb-trail a{
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-trail a:hover{ color: var(--gold); }
.breadcrumb-trail span[aria-hidden]{
  margin: 0 6px;
  color: rgba(255,255,255,0.25);
}
.breadcrumb-trail [aria-current="page"]{
  color: var(--gold);
  font-weight: 600;
}

/* ── Distance badge ── */
.locality-distance-badge{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(210,171,103,0.12);
  border: 1px solid rgba(210,171,103,0.35);
  padding: 10px 20px;
  margin-bottom: 28px;
  width: fit-content;
}
.distance-number{
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.distance-label{
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ── Locality form card ── */
.hero-locality-form-card{
  width: 100%;
  max-width: 400px;
  background: var(--form-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--form-card-border);
  padding: 40px 36px 32px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
}
.lfc-eyebrow{
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.6;
}
.lfc-sub{
  font-family: var(--body);
  font-size: 13px;
  color: var(--text-pale);
  margin: 6px 0 0;
  font-weight: 400;
  line-height: 1.5;
}
.lfc-rule{
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 0;
}
.hero-locality-form-card .form-fields{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.hero-locality-form-card .submit{
  background: var(--gold);
  color: var(--charcoal);
  margin-top: 8px;
}
.hero-locality-form-card .submit:hover{
  background: var(--gold-dark);
  color: var(--white);
}
.lfc-note{
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  color: var(--text-airy);
  margin: 14px 0 0;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
}
.hero-locality-form-card .secure{
  text-align: center;
  font-family: var(--body);
  font-size: 12px;
  color: var(--text-ghost);
  margin: 16px 0 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-locality-form-card .secure svg{ width: 11px; height: 11px; }

/* ── Why section (inside .overview left column) ── */
.why-section{ margin: 28px 0 0; }
.why-section-heading{
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.why-point{
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-light);
}
.why-section > .why-point:first-of-type{
  border-top: 1px solid var(--rule-light);
}
.why-point-heading{
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.why-point-body{
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.80;
  margin: 0;
}

/* ── Nearby landmarks heading (inside .location section) ── */
.loc-nearby-h{
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 56px 0 32px;
}

/* ── Distance grid (nearby landmarks — static, SEO-crawlable) ── */
.distance-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
.distance-item{
  background: var(--white);
  border: 1px solid var(--rule-light);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color 0.2s ease;
}
.distance-item:hover{ border-color: rgba(175,129,46,0.40); }
.distance-mins{
  font-family: var(--display);
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.distance-mins small{
  font-size: 0.40em;
  color: var(--gold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-family: var(--body);
  margin-left: 2px;
}
.distance-name{
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-pale);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ── Always-open FAQ variant ── */
.faq-question--static{
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  cursor: default;
}
.faq-question--static:hover{ color: var(--charcoal); }

/* ── Bottom CTA band (locality footer CTA) ── */
.location-cta-band{
  background: var(--navy-deep);
  padding: 100px 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.location-cta-band::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 70% 100%, rgba(201,168,76,0.14), transparent 60%),
    radial-gradient(50% 70% at 25% 0%, rgba(201,168,76,0.08), transparent 60%);
  pointer-events: none;
}
.location-cta-band > *{ position: relative; }
.location-cta-band h2{
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.location-cta-italic{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 24px);
  color: var(--gold);
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 16px;
}
.location-cta-band p{
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.70;
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta-price-note{
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 20px auto 0;
  max-width: 640px;
}

/* ── Locality hero H1 size fix (.hero-loc modifier) ─────────────────
   Locality H1s are longer prose strings — scale down from homepage's
   clamp(60px,6.6vw,96px) so they render in ≤ 2 lines at all widths.
   Also widens content column slightly for the extra characters.      */
.hero-loc .hero-left{
  width: 60%;
  max-width: 880px;
}
.hero-loc .hero-h1{
  font-size: clamp(40px, 4.2vw, 56px);
}


/* ══════════════════════════════════════════════════════════════
   Price List Page  (.pl-*)
   All @media queries for these classes live in responsive.css.
   ══════════════════════════════════════════════════════════════ */

/* ── Compact hero — overrides .hero (100vh, bg-image) ── */
.pl-hero{
  height: auto;
  min-height: unset;
  background-image: none;
  background-color: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  padding: 120px 80px 80px;
  align-items: start;
}
.pl-hero .hero-left{
  width: 100%;
  max-width: 100%;
  padding: 0;
  animation: none;
}
.pl-hero .hero-h1{
  font-size: clamp(32px, 3.6vw, 50px);
  margin-bottom: 16px;
}
.pl-hero .hero-sub{
  font-size: 16px;
  max-width: 560px;
}
.pl-hero .trust-row{
  margin-top: 28px;
  margin-bottom: 0;
}
.pl-hero .hero-cta{
  margin-top: 28px;
}

/* Un-absolute hero-form-card inside the price-list grid hero */
.pl-hero .hero-form-card{
  display: block;       /* layout.css hides it by default; re-enable here */
  position: static;
  transform: none;
  right: auto;
  top: auto;
  width: 100%;
  animation: none;
}

/* ── Price list inline form card ── */
.pl-form-card{
  background: var(--form-card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--form-card-border);
  padding: 40px 36px 32px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
}
.pl-form-card .lfc-eyebrow{
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.6;
}
.pl-form-card .lfc-sub{
  font-family: var(--body);
  font-size: 13px;
  color: var(--text-pale);
  margin: 6px 0 0;
  font-weight: 400;
  line-height: 1.5;
}
.pl-form-card .lfc-rule{
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 0;
}
.pl-form-card .form-fields{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.pl-form-card .submit{
  background: var(--gold);
  color: var(--charcoal);
  margin-top: 8px;
}
.pl-form-card .submit:hover{
  background: var(--gold-dark);
  color: var(--white);
}
.pl-form-card .secure{
  text-align: center;
  font-family: var(--body);
  font-size: 12px;
  color: var(--text-ghost);
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pl-form-card .secure svg{
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
}

/* ── Starting price bar (3-col highlight strip) ── */
.pl-price-bar{
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 80px;
  border-top: 1px solid rgba(210,171,103,0.15);
}
.pl-price-col{
  text-align: center;
  padding: 44px 20px;
  position: relative;
}
.pl-price-col + .pl-price-col::before{
  content: '';
  position: absolute;
  left: 0;
  top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(210,171,103,0.20);
}
.pl-price-label{
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.pl-price-value{
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pl-price-value sup{
  font-size: 0.5em;
  color: var(--gold);
  vertical-align: super;
}
.pl-price-sub{
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ── Shared section heading + intro copy ── */
.pl-section-intro{
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1.80;
  max-width: 1280px;
  margin: 0 auto 44px;
}
.pl-section-body{
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.80;
  max-width: 1280px;
  margin: 36px auto 0;
}

/* ── Configuration table section ── */
.pl-config-section{
  background: var(--cream);
  padding: 100px 80px;
}
.pl-config-section h2{
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.pl-table-wrap{
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
}
table.pl-table{
  width: 100%;
  border-collapse: collapse;
}
table.pl-table th{
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 14px 24px;
  text-align: left;
  border-bottom: 2px solid rgba(175,129,46,0.25);
  background: var(--white);
  white-space: nowrap;
}
table.pl-table td{
  padding: 20px 24px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(175,129,46,0.12);
  background: var(--white);
  vertical-align: middle;
}
table.pl-table tr:hover td{
  background: rgba(175,129,46,0.04);
}
.pl-price-start{
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.pl-cfp-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: transparent;
  border: 1px solid rgba(175,129,46,0.40);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pl-cfp-btn:hover{
  background: rgba(175,129,46,0.08);
  border-color: var(--gold);
  color: var(--charcoal);
}
.pl-table-note{
  max-width: 1280px;
  margin: 20px auto 0;
  font-family: var(--body);
  font-size: 13px;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── What's included section ── */
.pl-included-section{
  background: var(--white);
  padding: 100px 80px;
  border-top: 1px solid rgba(175,129,46,0.12);
}
.pl-included-section h2{
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.pl-inc-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
}
.pl-inc-card{
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s ease;
}
.pl-inc-card:hover{ background: rgba(210,171,103,0.08); }
.pl-inc-card i{
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.pl-inc-name{
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.pl-inc-desc{
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}
.pl-inc-excl{
  max-width: 1280px;
  margin: 28px auto 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.70;
}

/* ── Payment plan section ── */
.pl-payment-section{
  background: var(--cream-soft);
  padding: 100px 80px;
  border-top: 1px solid rgba(175,129,46,0.12);
}
.pl-payment-section h2{
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.pl-payment-sub{
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto 48px;
}
.pl-payment-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto 40px;
}
.pl-payment-card{
  background: var(--white);
  border: 1px solid var(--rule-light);
  border-top: 3px solid transparent;
  padding: 36px 30px;
  transition: border-color 0.2s ease;
}
.pl-payment-card:first-child{ border-top-color: var(--gold); }
.pl-payment-card:hover{
  border-color: rgba(175,129,46,0.35);
  border-top-color: var(--gold);
}
.pl-pay-title{
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.pl-pay-body{
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}
.pl-payment-cta-row{
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── FAQ section ── */
.pl-faq-section{
  background: var(--cream);
  padding: 100px 80px;
}
.pl-faq-section .faq-head{
  max-width: 1280px;
  margin: 0 auto 60px;
}
.pl-faq-section .faq-list{
  max-width: 1280px;
  margin: 0 auto;
}

