/* 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: var(--text-muted);
    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 24px;
  }
  .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; }

  /* -------- CONNECTIVITY TIMELINE (matches index.html's #connTimeline exactly) -------- */
  .masterplan-strip{ position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-bottom: 64px; overflow: hidden; border-top: 1px solid rgba(210,171,103,0.4); border-bottom: 1px solid rgba(210,171,103,0.4); line-height: 0; }
  .masterplan-strip .mp-img{ display: block; width: 100%; height: auto; }
  .tl{ position: relative; margin-top: 64px; padding: 24px 0 8px; overflow: hidden; }
  .timeline-mapbg{
    position: absolute; inset: 0; opacity: 0.08; pointer-events: none; z-index: 0;
    /* relative to this CSS file's own location (assets/css/pages/), not ASSET_BASE —
       url() in a static .css file is never PHP-processed */
    background: url('../../../Floor plan And Location/Location Guide .png') center/cover;
    filter: grayscale(1) sepia(0.3);
  }
  .tl-inner{ position: relative; z-index: 1; }
  .tl-tabs{ display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .tl-tab{
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; border: 1px solid rgba(175,129,46,0.25); border-radius: 8px;
    padding: 12px 20px; cursor: pointer;
    font-family: var(--display); font-size: 20px; color: var(--text-muted);
    transition: color .3s ease, border-color .3s ease, background-color .3s ease;
  }
  .tl-tab svg{ width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .tl-tab:hover{ color: var(--gold-dark); border-color: rgba(175,129,46,0.6); background: rgba(210,171,103,0.08); }
  .tl-tab.is-active{ color: var(--gold); border-color: var(--gold); }
  .tl-tab.is-active:hover{ color: var(--gold); background: rgba(210,171,103,0.08); }
  .tl-track{ border-top: 1px solid rgba(175,129,46,0.3); margin: 0 0 8px; }
  .tl-journey{ position: relative; height: 320px; }
  .tl-line{ position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: var(--gold); transform: translateY(-50%); }
  .tl-nodes{ position: absolute; inset: 0; }
  .tl-node{ position: absolute; left: var(--x); top: 50%; transform: translateX(-50%); width: 200px; text-align: center; }
  .tl-node .dot{ position: absolute; left: 50%; top: -7px; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; background: var(--gold); border: 3px solid var(--cream); }
  .tl-node .body{ position: absolute; left: 0; right: 0; }
  .tl-node.up .body{ bottom: 26px; }
  .tl-node.down .body{ top: 26px; }
  .tl-node .num{ font-family: var(--display); font-size: clamp(40px, 4vw, 58px); color: var(--charcoal); line-height: 1; }
  .tl-node .min{ font-family: var(--body); font-size: 11px; letter-spacing: 0.14em; color: var(--gold-dark); font-weight: 700; margin-left: 4px; }
  .tl-node .place{ font-family: var(--body); font-size: 15px; color: var(--text-faint); margin-top: 8px; line-height: 1.4; }
  .tl-disclaimer{ display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; font-family: var(--body); font-size: 13px; color: var(--gold-dark); }
  .tl-disclaimer svg{ width: 16px; height: 16px; fill: none; stroke: currentColor; }
  /* -------- 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(90, 70, 30,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; }

  .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;
    /* Was var(--navy-dark) (#8A6420) — a solid mustard slab once the navy
       tokens were repointed at gold. Matched to .cta-final, which is the
       homepage's closing band: cream ground, charcoal text, gold accents. */
    background: var(--cream);
    padding: 60px 24px;
    text-align: center;
    overflow: hidden;
    color: var(--charcoal);
    isolation: isolate;
    border-top: 1px solid rgba(175,129,46,0.22);
    border-bottom: 1px solid rgba(175,129,46,0.22);
  }
  .loc-cta-bg{
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
      linear-gradient(rgba(175,129,46,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(175,129,46,0.05) 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-dark);
    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(--charcoal);
  }
  .loc-cta-sub{
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 26px);
    color: var(--gold-dark);
    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: var(--text-faint);
    max-width: 580px;
    margin: 6px 0 8px;
  }
  .loc-cta-body .accent{ color: var(--gold-dark); 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: var(--text-muted);
    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-dark); opacity: 0.55; }
  .loc-cta-meta sup{ color: var(--gold-dark); 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 / .faq-answer / .plus removed. This was a THIRD, independent
     FAQ accordion system — distinct from the homepage's real FAQ (.faq-row /
     .faq-qt) and from the shared .bhk-faq-item every interior page uses.
     price-list.php was the only page still on it, and a mobile override
     three breakpoints down in responsive.css force-set it to
     `font-size: 16px !important`, which is exactly why that page's FAQ
     questions rendered smaller than everywhere else on the site. Converted
     price-list.php to .bhk-faq-item; nothing referenced this any more, so it
     was deleted rather than left to be found and copied from again. */


/* ── Trust row (hero pills) — homepage only now. The locality-page and
   price-list heroes that used to share this were rebuilt on .bhk-hero,
   which doesn't carry a pills row. ── */
.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);
}

/* ── 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;
}

.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;
}

/* ── Starting price bar (3-col highlight strip) ── */
.pl-price-bar{
  /* Was background: var(--navy). When the palette moved off navy those tokens
     were repointed at gold values (--navy is #AF812E, the same as --gold-dark),
     so every section still using navy as a BACKGROUND turned into a solid
     mustard band. Nothing on the homepage has that; its equivalent stats strip
     uses this soft warm-cream gradient with gold hairlines. */
  background: linear-gradient(180deg, #F8F0DC 0%, #F2E7CB 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(175,129,46,0.22);
  border-bottom: 1px solid rgba(175,129,46,0.22);
}
.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(175,129,46,0.28);
}
.pl-price-label{
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.pl-price-value{
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pl-price-value sup{
  font-size: 0.5em;
  color: var(--gold-dark);
  vertical-align: super;
}
.pl-price-sub{
  font-family: var(--body);
  font-size: 13px;
  color: var(--text-muted);
  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: var(--pl-col);
  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: var(--pl-col);
  margin: 36px auto 0;
}

/* ── Price-list column ───────────────────────────────────────────────────
   These sections stay full-bleed so their background bands span the viewport,
   but their CONTENT sits in the same 960px column as .bhk-page, so the page
   reads against one ruler from the hero down. They each carried
   padding:100px 80px with no cap, so content began at 80px while the hero
   above it began at 240px on a 1440px screen — the misalignment that made the
   page look like two different layouts stacked. */
:root{ --pl-col: 960px; }

.pl-config-section > *,
.pl-included-section > *,
.pl-payment-section > *,
.pl-faq-section > *{
  max-width: var(--pl-col);
  margin-left: auto;
  margin-right: auto;
}
/* The price bar keeps its full-bleed band — capping the element would cap the
   background with it and leave a floating block. Padding does the centring
   instead, collapsing to a 24px gutter once the viewport is narrower than the
   column. */
.pl-price-bar{
  padding-left:  max(24px, calc((100% - var(--pl-col)) / 2));
  padding-right: max(24px, calc((100% - var(--pl-col)) / 2));
}

/* ── Configuration table section ── */
.pl-config-section{
  background: var(--cream);
  padding: 100px 24px;
}
.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: var(--pl-col);
  margin-left: auto;
  margin-right: auto;
}
.pl-table-wrap{
  max-width: var(--pl-col);
  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: var(--pl-col);
  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 24px;
  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: var(--pl-col);
  margin-left: auto;
  margin-right: auto;
}
.pl-inc-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--pl-col);
  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: var(--pl-col);
  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 24px;
  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: var(--pl-col);
  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: var(--pl-col);
  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: var(--pl-col);
  margin: 0 auto;
}

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

