:root {
  --navy: #071522;
  --navy-2: #0b2338;
  --navy-3: #10334f;
  --ink: #102033;
  --muted: #5f6e7d;
  --paper: #f4efe6;
  --paper-2: #fffaf2;
  --white: #ffffff;
  --gold: #d99b3f;
  --gold-2: #f1bd63;
  --copper: #9c6427;
  --green: #2e8a5b;
  --line: rgba(18, 35, 53, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 18px 55px rgba(11, 22, 34, 0.14);
  --shadow-dark: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --page-max: 1180px;
  --page-gutter: clamp(18px, 4vw, 56px);
  --font-sans: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

section,
#lead-form {
  scroll-margin-top: 96px;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-gutter);
  color: var(--white);
  background: rgba(5, 15, 25, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 50px;
  flex: 0 0 54px;
  display: inline-grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, 0.22));
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.08;
}

.brand-copy small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 12px 0;
}

.nav-links a:hover,
.header-contact:hover {
  color: var(--gold-2);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-contact {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.selector-card:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(241, 189, 99, 0.58);
  outline-offset: 3px;
}

.btn-gold {
  color: #071522;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 28px rgba(217, 155, 63, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 17px 34px rgba(217, 155, 63, 0.34);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.btn-outline:hover {
  border-color: rgba(241, 189, 99, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
  color: var(--ink);
  border-color: rgba(16, 32, 51, 0.22);
  background: rgba(255, 255, 255, 0.62);
}

.btn-outline-dark:hover {
  border-color: rgba(217, 155, 63, 0.8);
  background: var(--white);
}

.btn-ghost {
  color: #f8efe0;
  border-color: rgba(241, 189, 99, 0.45);
  background: rgba(217, 155, 63, 0.1);
}

.btn-large {
  min-height: 50px;
  padding: 14px 21px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url("assets/hyderabad-photos/hyderabad-open-workspace.webp") center / cover no-repeat;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 15, 25, 0.94) 0%, rgba(7, 21, 34, 0.88) 46%, rgba(7, 21, 34, 0.58) 72%, rgba(7, 21, 34, 0.46) 100%),
    linear-gradient(180deg, rgba(5, 15, 25, 0.72), rgba(5, 15, 25, 0.92));
}

.hero-shell {
  width: min(1320px, calc(100% - (var(--page-gutter) * 2)));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(42px, 6vh, 76px) 0 clamp(50px, 8vh, 86px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 66px;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold-2);
}

.mobile-title-break {
  display: none;
}

.hero-intro {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.trust-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 32px 0 0;
}

.hero-metrics article {
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.hero-metrics strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
}

.hero-metrics span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.45;
}

.lead-card {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(241, 189, 99, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.lead-card-head {
  padding: 24px 24px 18px;
  color: var(--white);
  background: linear-gradient(135deg, #0b2338, #10334f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.lead-card-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.lead-card-head p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 24px 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.lead-form span {
  color: #20364d;
  font-size: 12px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(18, 35, 53, 0.18);
  border-radius: 6px;
  padding: 10px 12px;
}

.lead-form textarea {
  min-height: 84px;
  resize: vertical;
}

.field-wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-submit {
  width: 100%;
  border: 0;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-status:not(:empty) {
  padding: 10px 12px;
  color: #0f4630;
  background: rgba(46, 138, 91, 0.12);
  border: 1px solid rgba(46, 138, 91, 0.22);
  border-radius: 6px;
}

.form-status.is-error:not(:empty) {
  color: #6f1d1d;
  background: rgba(190, 58, 58, 0.1);
  border-color: rgba(190, 58, 58, 0.24);
}

.selector-section {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.selector-shell {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 34px 0;
}

.selector-shell h2,
.section-head h2,
.section-head-left h2,
.visit-panel h2,
.location-copy h2,
.clarity-panel h2,
.final-cta h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: 0;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.selector-card {
  min-height: 130px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.selector-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #f7c66c;
  background: rgba(241, 189, 99, 0.12);
  border: 1px solid rgba(241, 189, 99, 0.32);
  border-radius: 8px;
}

.selector-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selector-card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 189, 99, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.selector-card strong {
  color: var(--gold-2);
  font-size: 15px;
}

.selector-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.trust-proof-section {
  padding: clamp(42px, 6vw, 72px) 0;
  background: var(--paper-2);
  border-bottom: 1px solid rgba(18, 35, 53, 0.08);
}

.trust-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.trust-proof-shell h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.08;
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-proof-grid article {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 22, 34, 0.05);
}

.trust-proof-grid strong {
  color: var(--navy-2);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.trust-proof-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.visual-proof-section {
  padding: clamp(74px, 9vw, 120px) 0;
  color: #fffdf8;
  background: linear-gradient(180deg, #071522, #0b2338);
}

.visual-proof-head {
  max-width: 900px;
  margin-bottom: 28px;
}

.visual-proof-head h2 {
  margin: 0;
  color: #fffdf8;
  font-size: 46px;
  line-height: 1.04;
}

.visual-proof-head p {
  max-width: 720px;
  margin: 16px 0 0;
  color: #d7e4ee;
  font-size: 16px;
  line-height: 1.65;
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.72fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.visual-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #071522;
  border: 1px solid rgba(241, 189, 99, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.visual-card-large {
  grid-row: span 2;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.01);
}

.visual-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  background: rgba(4, 16, 26, 0.78);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.visual-card figcaption span {
  color: #f7c66c;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.visual-card figcaption strong {
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.05;
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head p,
.section-head-left p,
.visit-panel p,
.location-copy p,
.clarity-panel p,
.final-cta p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-head-left {
  max-width: 580px;
}

.inventory-section,
.audience-section,
.faq-section {
  background: var(--paper);
}

.inventory-grid,
.audience-grid,
.proof-grid,
.virtual-plan-grid {
  display: grid;
  gap: 16px;
}

.inventory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 22, 34, 0.06);
}

.plan-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.12;
}

.plan-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.plan-card small {
  display: block;
  margin-top: 12px;
  color: #506173;
  font-size: 12px;
  line-height: 1.5;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  color: var(--navy-2);
  background: rgba(217, 155, 63, 0.14);
  border: 1px solid rgba(217, 155, 63, 0.28);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
}

.price {
  display: block;
  margin-top: 16px;
  color: var(--copper);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.card-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy-2);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: rgba(217, 155, 63, 0.65);
  text-underline-offset: 5px;
}

.card-link:hover {
  color: var(--copper);
}

.plan-featured {
  color: var(--white);
  background: linear-gradient(135deg, #0b2338, #10334f);
  border-color: rgba(241, 189, 99, 0.42);
  box-shadow: var(--shadow-soft);
}

.plan-featured h3,
.plan-featured .price,
.plan-featured .card-link {
  color: var(--gold-2);
}

.plan-featured p,
.plan-featured small {
  color: rgba(255, 255, 255, 0.72);
}

.plan-featured .plan-meta span {
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(241, 189, 99, 0.36);
}

.virtual-section,
.why-section,
.pricing-section,
.visit-section,
.location-section {
  background: var(--paper-2);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.compliance-note {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 18px;
  background: rgba(16, 51, 79, 0.08);
  border: 1px solid rgba(16, 51, 79, 0.15);
  border-radius: var(--radius);
}

.compliance-note strong {
  color: var(--navy-2);
}

.compliance-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.virtual-plan-grid {
  grid-template-columns: 1fr;
}

.virtual-card {
  min-height: 250px;
}

.virtual-card-premium {
  border-color: rgba(46, 138, 91, 0.3);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
}

.table-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(11, 22, 34, 0.07);
  overflow: hidden;
}

.table-card h3 {
  margin: 0;
  padding: 20px 22px;
  color: var(--white);
  background: var(--navy-2);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.pricing-layout .table-card:nth-child(2) table {
  min-width: 100%;
  table-layout: fixed;
}

.pricing-layout .table-card:nth-child(2) th,
.pricing-layout .table-card:nth-child(2) td {
  padding-left: 12px;
  padding-right: 12px;
  overflow-wrap: anywhere;
}

th,
td {
  padding: 14px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(18, 35, 53, 0.1);
}

th {
  color: var(--navy-2);
  background: #f8f1e7;
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: #263a50;
  font-size: 13px;
  line-height: 1.45;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-grid article,
.audience-grid article {
  min-height: 122px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 22, 34, 0.05);
}

.proof-grid article {
  display: flex;
  align-items: center;
  color: var(--navy-2);
  font-weight: 900;
}

.audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audience-grid h3 {
  margin: 0;
  color: var(--navy-2);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
}

.audience-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.visit-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.86)),
    url("assets/funwork-home-hero-clean-hd.png") center / cover no-repeat;
  border: 1px solid rgba(217, 155, 63, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.visit-actions {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
}

.location-media {
  min-height: 420px;
  background: url("assets/hyderabad-charminar-banner-wide-clean.png") 73% center / cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.location-facts span {
  padding: 13px 14px;
  color: var(--navy-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.location-copy .microcopy {
  color: var(--muted);
}

.clarity-section {
  padding: 0 0 clamp(68px, 9vw, 112px);
  background: var(--paper-2);
}

.clarity-panel {
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.clarity-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.clarity-panel span {
  display: inline-flex;
  margin-top: 20px;
  padding: 10px 12px;
  color: #fff8ec;
  background: rgba(241, 189, 99, 0.12);
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 22, 34, 0.04);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: var(--navy-2);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  padding: clamp(76px, 10vw, 118px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 15, 25, 0.94), rgba(7, 21, 34, 0.78)),
    url("assets/funwork-home-hero-clean-hd.png") center / cover no-repeat;
}

.final-cta-shell {
  max-width: 880px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #04101a;
  padding: 46px 0 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.landing-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.landing-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.landing-footer a:not(.brand) {
  display: block;
  margin-top: 9px;
  font-size: 13px;
}

.landing-footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.sticky-mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 60;
  display: none;
  grid-template-columns: 0.72fr 0.9fr 1.35fr;
  gap: 8px;
  padding: 8px;
  background: rgba(5, 15, 25, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.sticky-mobile-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.sticky-mobile-cta a:last-child {
  color: var(--navy);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1180px) {
  .landing-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-shell,
  .split-layout,
  .pricing-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
  }

  h1 {
    font-size: 58px;
  }

  .selector-shell h2,
  .section-head h2,
  .section-head-left h2,
  .visit-panel h2,
  .location-copy h2,
  .clarity-panel h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .lead-card {
    max-width: 760px;
  }

  .selector-shell {
    grid-template-columns: 1fr;
  }

  .trust-proof-shell {
    grid-template-columns: 1fr;
  }

  .selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visit-panel {
    grid-template-columns: 1fr;
  }

  .visit-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .landing-header {
    min-height: 70px;
    gap: 16px;
  }

  .header-contact {
    display: none;
  }

  .hero,
  .hero-shell {
    min-height: 0;
  }

  .hero-shell {
    padding-top: 44px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .inventory-grid,
  .audience-grid,
  .proof-grid,
  .trust-proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .location-media {
    min-height: 310px;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 16px;
  }

  body {
    padding-bottom: 132px;
  }

  .landing-header {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 12px var(--page-gutter);
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    width: 100%;
  }

  .brand-mark {
    width: 48px;
    height: 44px;
    flex-basis: 48px;
  }

  .hero-shell {
    width: calc(100% - (var(--page-gutter) * 2));
    padding: 36px 0 46px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-intro {
    font-size: 15px;
  }

  .trust-strip span {
    width: 100%;
    border-radius: 6px;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .visit-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    gap: 10px;
  }

  .hero-metrics article {
    min-height: 96px;
  }

  .lead-card-head,
  .lead-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .selector-grid,
  .visit-actions {
    grid-template-columns: 1fr;
  }

  .selector-card {
    min-height: 104px;
  }

  .section {
    padding: 58px 0;
  }

  .selector-shell {
    padding: 28px 0;
  }

  .selector-shell h2,
  .section-head h2,
  .section-head-left h2,
  .visit-panel h2,
  .location-copy h2,
  .clarity-panel h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .plan-card {
    min-height: 0;
  }

  .visit-panel,
  .clarity-panel {
    padding: 24px 18px;
  }

  .location-media {
    min-height: 240px;
  }

  .clarity-panel span {
    border-radius: 6px;
  }

  .footer-bottom {
    display: grid;
  }

  .sticky-mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  h1 {
    font-size: 34px;
  }

  .btn {
    padding-left: 12px;
    padding-right: 12px;
  }

  .sticky-mobile-cta {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-mobile-cta a:last-child {
    grid-column: 1 / -1;
  }
}

/* Premium landing treatment aligned with the Work Funn More homepage. */
body {
  background:
    linear-gradient(180deg, #04101a 0 720px, #f4efe6 720px 100%);
}

.landing-header {
  background: rgba(5, 15, 25, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.nav-links {
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.header-contact {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #f6dfb3;
  border: 1px solid rgba(241, 189, 99, 0.32);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.btn {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-gold {
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 34px rgba(217, 155, 63, 0.22);
}

.btn-outline,
.btn-ghost {
  border-color: rgba(241, 189, 99, 0.38);
  background: rgba(255, 255, 255, 0.045);
}

.hero {
  min-height: 720px;
  overflow: hidden;
}

.hero-media {
  background: url("assets/hyderabad-photos/hyderabad-open-workspace.webp") 62% center / cover no-repeat;
  filter: saturate(1.04) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, #04101a 0%, rgba(4, 16, 26, 0.99) 34%, rgba(4, 16, 26, 0.78) 64%, rgba(4, 16, 26, 0.4) 100%),
    linear-gradient(180deg, rgba(4, 16, 26, 0.2) 0%, rgba(4, 16, 26, 0.96) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, rgba(4, 16, 26, 0), #04101a 76%, #071522);
  pointer-events: none;
}

.hero-shell {
  width: min(1380px, calc(100% - (var(--page-gutter) * 2)));
  min-height: 720px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.68fr);
  gap: 70px;
  padding: 74px 0 92px;
}

.hero-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 28px;
  padding: 0 15px;
  color: #f7c66c;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(241, 189, 99, 0.42);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 8px;
  background: var(--gold-2);
  box-shadow: 0 0 0 7px rgba(241, 189, 99, 0.14);
}

.hero-eyebrow span,
.hero-eyebrow strong {
  color: inherit;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.hero-eyebrow strong {
  color: #ffffff;
  padding-left: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.55);
}

h1 {
  max-width: 800px;
  color: #fffdf8;
  font-size: 76px;
  line-height: 1.01;
}

.hero-intro {
  max-width: 760px;
  margin-top: 28px;
  color: #dce8f2;
  font-size: 17px;
  line-height: 1.55;
}

.trust-strip {
  max-width: 780px;
  margin-top: 30px;
  gap: 12px;
}

.trust-strip span {
  min-height: 46px;
  padding: 11px 14px;
  color: #fffdf8;
  background: rgba(13, 36, 56, 0.78);
  border-color: rgba(241, 189, 99, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-actions {
  margin-top: 30px;
}

.hero-metrics {
  max-width: 780px;
  gap: 1px;
  margin-top: 32px;
  background: rgba(241, 189, 99, 0.48);
  border: 1px solid rgba(241, 189, 99, 0.46);
  border-radius: 8px;
  overflow: hidden;
}

.hero-metrics article {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 9px;
  padding: 20px 22px;
  background: rgba(13, 36, 56, 0.88);
  border: 0;
  border-radius: 0;
}

.hero-metrics strong {
  font-size: 45px;
  line-height: 0.9;
}

.hero-metrics span {
  grid-column: 1 / -1;
  margin: 0;
  color: #adc2d3;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.lead-card {
  align-self: center;
  color: #edf6ff;
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.98), rgba(11, 35, 56, 0.94)),
    url("assets/hyderabad-photos/hyderabad-reception.webp") center / cover no-repeat;
  border-color: rgba(241, 189, 99, 0.58);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-card-head {
  padding: 22px 24px 16px;
  background: rgba(4, 16, 26, 0.72);
}

.lead-card-head h2 {
  color: #fffdf8;
  font-size: 28px;
  line-height: 1.06;
}

.lead-card-head p {
  margin-top: 10px;
  color: #d7e4ee;
  font-size: 13px;
  line-height: 1.48;
}

.lead-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.lead-proof-row span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  color: #f6dfb3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.lead-form {
  gap: 11px;
  padding: 18px 22px 20px;
  background: rgba(4, 16, 26, 0.86);
}

.lead-form span {
  color: #f6dfb3;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 40px;
  color: #102033;
  background: rgba(255, 250, 242, 0.96);
  border-color: rgba(241, 189, 99, 0.3);
}

.lead-form textarea {
  min-height: 68px;
}

.form-note {
  color: #b8cad9;
}

.selector-section {
  background:
    linear-gradient(180deg, #071522, #0b2338);
}

.selector-shell {
  padding: 44px 0;
}

.selector-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 189, 99, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.selector-card strong {
  color: #f7c66c;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.trust-proof-section,
.pricing-section,
.audience-section,
.faq-section {
  background:
    linear-gradient(180deg, #fffaf2, #f4efe6);
}

.inventory-section,
.virtual-section,
.why-section,
.visit-section,
.location-section {
  background:
    linear-gradient(180deg, #071522, #0b2338);
  color: #fffdf8;
}

.inventory-section .section-head h2,
.virtual-section .section-head-left h2,
.why-section .section-head-left h2,
.visit-panel h2,
.location-copy h2 {
  color: #fffdf8;
}

.inventory-section .section-head p,
.virtual-section .section-head-left p,
.why-section .section-head-left p,
.visit-panel p,
.location-copy p {
  color: #d7e4ee;
}

.inventory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card,
.proof-grid article,
.audience-grid article,
.table-card,
details {
  border-color: rgba(18, 35, 53, 0.14);
  box-shadow: 0 22px 48px rgba(11, 22, 34, 0.1);
}

.inventory-section .plan-card,
.virtual-section .plan-card,
.why-section .proof-grid article {
  background: rgba(255, 250, 242, 0.96);
  border-color: rgba(241, 189, 99, 0.22);
}

.plan-card {
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-2), rgba(217, 155, 63, 0));
}

.plan-card h3 {
  font-size: 24px;
}

.price {
  color: #9c6427;
  font-size: 22px;
}

.plan-featured {
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.98), rgba(16, 51, 79, 0.95));
}

.plan-featured::before,
.virtual-card-premium::before {
  background: linear-gradient(90deg, var(--gold-2), var(--green));
}

.virtual-section .split-layout {
  align-items: center;
}

.virtual-plan-grid {
  gap: 14px;
}

.compliance-note {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 189, 99, 0.24);
}

.compliance-note strong {
  color: #f7c66c;
}

.compliance-note span {
  color: #d7e4ee;
}

.table-card h3 {
  background: linear-gradient(135deg, #071522, #10334f);
}

th {
  color: #071522;
  background: #f2dfbd;
}

td {
  background: rgba(255, 255, 255, 0.62);
}

.proof-grid article {
  min-height: 138px;
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 189, 99, 0.22);
}

.audience-grid article,
.trust-proof-grid article {
  border-color: rgba(217, 155, 63, 0.18);
}

.visit-panel {
  color: #fffdf8;
  background:
    linear-gradient(90deg, rgba(4, 16, 26, 0.96), rgba(4, 16, 26, 0.7)),
    url("assets/hyderabad-photos/hyderabad-meeting-room.webp") center / cover no-repeat;
  border-color: rgba(241, 189, 99, 0.4);
}

.visit-panel .btn-outline-dark {
  color: #fffdf8;
  border-color: rgba(241, 189, 99, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.location-media {
  min-height: 470px;
  border: 1px solid rgba(241, 189, 99, 0.32);
}

.location-facts span {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 189, 99, 0.22);
}

.location-copy .microcopy {
  color: #adc2d3;
}

.clarity-section {
  padding-top: 72px;
  background: #0b2338;
}

.clarity-panel {
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.55), rgba(16, 51, 79, 0.70)),
    url("assets/hyderabad-charminar-banner-wide-clean.png") center / cover no-repeat !important;
}

summary {
  min-height: 66px;
  color: #071522;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(4, 16, 26, 0.98), rgba(7, 21, 34, 0.72)),
    url("assets/hyderabad-photos/hyderabad-managed-office.webp") 72% center / cover no-repeat;
}

.landing-footer {
  background: #04101a;
}

.sticky-mobile-cta {
  border-color: rgba(241, 189, 99, 0.38);
}

@media (max-width: 680px) {
  .sticky-mobile-cta {
    display: none;
    grid-template-columns: 0.72fr 0.9fr 1.35fr;
    gap: 6px;
    bottom: 8px;
    padding: 6px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .sticky-mobile-cta a {
    min-height: 40px;
    padding: 6px 7px;
    font-size: 11px;
  }

  .sticky-mobile-cta a:last-child {
    grid-column: auto;
  }

  body.is-sticky-cta-visible .sticky-mobile-cta {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .lead-card {
    max-width: 820px;
  }

  .visual-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  h1 {
    font-size: 62px;
  }
}

@media (max-width: 900px) {
  .hero-shell {
    padding-top: 44px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics article {
    display: block;
    min-height: 94px;
    padding: 16px 12px;
    text-align: center;
  }

  .hero-metrics strong {
    font-size: 38px;
  }

  .visual-proof-grid {
    grid-auto-rows: 230px;
  }
}

@media (max-width: 680px) {
  body {
    background: #04101a;
  }

  .landing-header {
    background: #071522;
  }

  .hero {
    min-height: 0;
  }

  .hero-shell {
    min-height: 0;
    padding: 28px 0 116px;
  }

  .hero-eyebrow {
    display: grid;
    gap: 7px;
    width: 100%;
    min-height: 0;
    padding: 11px 13px;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-eyebrow strong {
    padding-left: 0;
    border-left: 0;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-intro {
    margin-top: 18px;
    line-height: 1.48;
  }

  .trust-strip {
    margin-top: 20px;
  }

  .trust-strip span {
    min-height: 40px;
    padding: 9px 11px;
  }

  .hero-actions,
  .hero-copy > .microcopy {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .lead-proof-row {
    grid-template-columns: 1fr;
  }

  .lead-card {
    margin-top: 150px;
  }

  .lead-card-head h2 {
    font-size: 28px;
  }

  .inventory-grid {
    grid-template-columns: 1fr;
  }

  .visual-proof-section {
    padding: 58px 0;
  }

  .visual-proof-head h2 {
    font-size: 34px;
  }

  .visual-proof-grid {
    grid-template-columns: 1fr;
  }

  .visual-proof-grid {
    grid-auto-rows: 238px;
  }

  .visual-card-large {
    min-height: 310px;
  }

  .trust-proof-shell h2,
  .selector-shell h2,
  .section-head h2,
  .section-head-left h2,
  .visit-panel h2,
  .location-copy h2,
  .clarity-panel h2,
  .final-cta h2 {
    font-size: 34px;
  }

  summary {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }
}

/* Final landing page polish: clearer hierarchy, tighter rhythm, visible mobile proof. */
.hero-metrics {
  margin-top: 24px;
}

.trust-strip {
  margin-top: 18px;
}

.section {
  padding: 84px 0;
}

.visual-proof-section {
  padding: 82px 0;
}

.selector-shell {
  padding: 58px 0;
}

.trust-proof-section {
  padding: 54px 0;
}

.section-head,
.visual-proof-head {
  margin-bottom: 26px;
}

.why-section .proof-grid article {
  color: #fffdf8;
  background: linear-gradient(135deg, rgba(13, 36, 56, 0.94), rgba(7, 21, 34, 0.9));
  border-color: rgba(241, 189, 99, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 38px rgba(0, 0, 0, 0.18);
}

.why-section .section-head-left p,
.why-section .proof-grid article {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

.inventory-section .plan-card.plan-featured {
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.98), rgba(16, 51, 79, 0.95));
  border-color: rgba(241, 189, 99, 0.52);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.22);
}

.inventory-section .plan-card.plan-featured h3,
.inventory-section .plan-card.plan-featured .price,
.inventory-section .plan-card.plan-featured .card-link {
  color: #f7c66c;
}

.inventory-section .plan-card.plan-featured p,
.inventory-section .plan-card.plan-featured small {
  color: #d7e4ee;
}

.inventory-section .plan-card.plan-featured .plan-meta span {
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(241, 189, 99, 0.38);
}

@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }

  .visual-proof-section {
    padding: 68px 0;
  }
}

@media (max-width: 680px) {
  .hero-shell {
    padding-bottom: 74px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 18px;
  }

  .hero-metrics article {
    min-height: 84px;
    display: block;
    padding: 13px 9px;
    text-align: left;
  }

  .hero-metrics strong {
    font-size: 31px;
  }

  .hero-metrics span {
    margin-top: 7px;
    font-size: 8px;
    line-height: 1.2;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .trust-strip span,
  .trust-strip span:nth-child(3),
  .trust-strip span:nth-child(4) {
    width: 100%;
    min-height: 36px;
    display: inline-flex;
    padding: 8px 10px;
    font-size: 10px;
    line-height: 1.15;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .section,
  .visual-proof-section {
    padding: 56px 0;
  }

  .selector-shell {
    padding: 42px 0;
  }

  .trust-proof-section {
    padding: 44px 0;
  }

  .section-head,
  .visual-proof-head {
    margin-bottom: 22px;
  }
}

@media (max-width: 420px) {
  .hero-metrics strong {
    font-size: 28px;
  }

  .hero-metrics article {
    min-height: 82px;
    padding: 12px 7px;
  }
}

@media (max-width: 680px) {
  html,
  body,
  main,
  .landing-header {
    max-width: 100%;
    overflow-x: hidden;
  }

  .landing-header {
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-actions .btn,
  .header-contact {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  h1 {
    max-width: 100%;
    font-size: 33px;
    line-height: 1.08;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-shell {
    gap: 28px;
    padding: 28px 0 48px;
    max-width: calc(100% - (var(--page-gutter) * 2));
    overflow: hidden;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .lead-card {
    margin-top: 22px;
  }

  .hero-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 9px 13px;
  }

  .hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    flex: 0 0 8px;
    background: #f7c66c;
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(241, 189, 99, 0.14);
  }

  .hero-eyebrow span {
    font-size: 10px;
    white-space: nowrap;
  }

  .hero-eyebrow strong {
    display: none;
  }

  .visual-proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }

  .visual-card,
  .visual-card-large {
    min-height: 360px;
    grid-column: auto;
    grid-row: auto;
  }

  .visual-card img {
    min-height: 360px;
  }

  .visual-card figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px 14px;
  }

  .visual-card figcaption strong {
    font-size: 24px;
    line-height: 1.08;
  }

  body:not(.is-sticky-cta-visible) .sticky-mobile-cta {
    display: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 30px;
  }

  .hero-metrics article {
    min-height: 74px;
    padding: 10px 7px;
  }

  .hero-metrics strong {
    font-size: 25px;
  }

  .hero-metrics span {
    font-size: 7.5px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .trust-strip span,
  .trust-strip span:nth-child(3),
  .trust-strip span:nth-child(4) {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 9px;
  }

  .trust-strip span:last-child {
    grid-column: 1 / -1;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 36px;
    padding: 7px 8px;
    font-size: 10.5px;
    white-space: normal;
  }

  .hero-actions .btn-gold {
    grid-column: 1 / -1;
  }

  .visual-card,
  .visual-card-large,
  .visual-card img {
    min-height: 330px;
  }

  .visual-card figcaption strong {
    font-size: 21px;
  }
}

/* Homepage-grade proof system for the Hyderabad landing hero. */
.brand-mark {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px 5px 6px;
  z-index: 0;
  display: block;
  background: radial-gradient(circle, rgba(241, 189, 99, 0.24), rgba(241, 189, 99, 0.03) 68%, transparent 72%);
  border-radius: 999px;
  filter: blur(7px);
  pointer-events: none;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  filter:
    drop-shadow(0 9px 16px rgba(0, 0, 0, 0.22))
    drop-shadow(0 0 9px rgba(241, 189, 99, 0.12));
  transform: translateY(-1px);
}

.hero-metrics {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 24px 0 22px;
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(241, 189, 99, 0.24), rgba(255, 255, 255, 0.08), rgba(241, 189, 99, 0.2));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-metrics article {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  column-gap: 13px;
  padding: 15px 18px 16px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(8, 27, 44, 0.82);
  border: 0;
  border-radius: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  line-height: 0.9;
  font-weight: 500;
}

.hero-metrics span {
  display: block;
  grid-column: 1 / -1;
  margin: 0 0 5px;
  color: #adc2d3;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
}

.trust-strip {
  max-width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.trust-strip span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 15px 7px 8px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 999px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  white-space: nowrap;
}

.trust-strip svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 6px;
  color: var(--gold-2);
  background: rgba(241, 189, 99, 0.13);
  border: 1px solid rgba(241, 189, 99, 0.34);
  border-radius: 50%;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.trust-strip .icon-fill {
  fill: rgba(241, 189, 99, 0.12);
  stroke: rgba(241, 189, 99, 0.95);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 0;
}

.hero-actions .btn-large {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 13px;
}

.hero-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(241, 189, 99, 0.38);
  background: rgba(255, 255, 255, 0.045);
}

.lead-card {
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.lead-card-head h2 {
  letter-spacing: 0;
}

.form-badges span {
  min-height: 34px;
  color: #f7e3ba;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 189, 99, 0.24);
}

.selector-section {
  background:
    linear-gradient(90deg, #04101a 0%, #071522 48%, #0b2338 100%);
}

.selector-shell {
  align-items: center;
}

.selector-card {
  min-height: 214px;
  padding: 22px;
  color: #f8fbff;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(241, 189, 99, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.selector-card:hover {
  background:
    linear-gradient(150deg, rgba(241, 189, 99, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.08);
}

.selector-card strong {
  color: var(--gold-2);
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 650;
  line-height: 1.15;
}

.selector-card > span:last-child {
  color: #d7e4ee;
  font-size: 14px;
  line-height: 1.55;
}

.trust-proof-section {
  background:
    linear-gradient(180deg, #fffaf2 0%, #f4efe6 100%);
}

.trust-proof-grid {
  gap: 18px;
}

.trust-proof-grid article {
  min-height: 150px;
  position: relative;
  grid-template-columns: auto 1fr;
  align-content: start;
  column-gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 155, 63, 0.18);
  box-shadow: 0 24px 54px rgba(11, 22, 34, 0.09);
}

.proof-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  background: rgba(241, 189, 99, 0.12);
  border: 1px solid rgba(217, 155, 63, 0.28);
  border-radius: 50%;
}

.proof-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-proof-grid strong,
.trust-proof-grid span:not(.proof-icon) {
  grid-column: 2;
}

.trust-proof-grid strong {
  font-size: 22px;
  line-height: 1.08;
}

.trust-proof-grid span:not(.proof-icon) {
  color: #506173;
  font-size: 14px;
  line-height: 1.65;
}

.trust-review-card {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(4, 16, 26, 0.98), rgba(11, 35, 56, 0.95)) !important;
  border-color: rgba(241, 189, 99, 0.48) !important;
  box-shadow: 0 28px 66px rgba(11, 22, 34, 0.22) !important;
}

.trust-proof-grid .trust-review-card strong {
  color: #fffdf8;
}

.trust-proof-grid .trust-review-card span:not(.proof-icon) {
  color: #d7e4ee;
}

.rating-row {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.rating-row b {
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 650;
  line-height: 1;
}

.rating-row span {
  color: #f7c66c !important;
  font-size: 18px !important;
  letter-spacing: 1px;
  line-height: 1;
}

.rating-row small {
  color: #c4d5e2;
  font-size: 13px;
  font-weight: 850;
}

.proof-link {
  grid-column: 2;
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: #071522;
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

@media (max-width: 760px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
  }

  .hero-metrics article {
    min-height: 88px;
    display: block;
    padding: 12px 9px;
    text-align: center;
  }

  .hero-metrics span {
    min-height: 22px;
    margin-bottom: 4px;
    font-size: 8px;
    line-height: 1.15;
  }

  .hero-metrics strong {
    font-size: 34px;
    line-height: 0.95;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 18px;
  }

  .trust-strip span {
    width: auto;
    min-height: 50px;
    gap: 8px;
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 12px;
    white-space: normal;
  }

  .trust-strip svg {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-metrics {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
  }

  .hero-metrics article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .trust-strip {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .trust-strip span:last-child {
    grid-column: 1 / -1;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn-large {
    min-height: 46px;
    font-size: 12px;
  }

  .selector-shell {
    grid-template-columns: 1fr;
  }

  .selector-card {
    min-height: 138px;
  }

  .selector-card strong {
    font-size: 24px;
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .trust-proof-grid article {
    padding: 20px;
  }
}

/* Final mobile polish: keep the homepage-style proof block conversion-visible. */
@media (max-width: 680px) {
  body {
    padding-bottom: 118px;
  }

  .landing-header {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 40px;
    flex-basis: 44px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    margin-top: 2px;
    font-size: 10px;
  }

  .header-actions {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 8px;
  }

  .header-actions .btn,
  .header-contact {
    min-height: 36px;
    font-size: 11px;
  }

  .hero-shell {
    padding-top: 24px;
    padding-bottom: 38px;
  }

  .hero-eyebrow {
    min-height: 32px;
    margin-bottom: 20px;
    padding: 8px 12px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.06;
  }

  .hero-intro {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.46;
  }

  .hero-metrics {
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .hero-metrics article {
    min-height: 76px;
    padding: 10px 8px;
  }

  .hero-metrics strong {
    font-size: 31px;
  }

  .hero-metrics span {
    min-height: 18px;
    font-size: 7.5px;
    line-height: 1.08;
  }

  .trust-strip {
    gap: 8px;
    margin-bottom: 12px;
  }

  .trust-strip span {
    min-height: 42px;
    gap: 7px;
    padding: 6px 8px;
    font-size: 10.5px;
    line-height: 1.08;
  }

  .trust-strip svg {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-actions .btn-large {
    min-height: 42px;
    font-size: 11.5px;
  }

  .selector-section {
    padding-bottom: 42px;
  }

  .selector-shell {
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .selector-card {
    min-height: 146px;
    padding: 16px 13px;
  }

  .selector-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .selector-card strong {
    font-size: 20px;
    line-height: 1.04;
  }

  .selector-card > span:last-child {
    margin-top: 10px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .trust-proof-section {
    padding-top: 56px;
    padding-bottom: 110px;
  }

  .trust-proof-shell {
    gap: 24px;
  }

  .trust-proof-shell h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .trust-proof-grid {
    gap: 12px;
  }

  .trust-proof-grid article {
    min-height: 0;
    column-gap: 12px;
    padding: 16px;
  }

  .proof-icon {
    width: 38px;
    height: 38px;
  }

  .proof-icon svg {
    width: 20px;
    height: 20px;
  }

  .trust-proof-grid strong {
    font-size: 21px;
  }

  .trust-proof-grid span:not(.proof-icon) {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (max-width: 420px) {
  .header-actions .btn,
  .header-contact {
    font-size: 10.5px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-intro {
    font-size: 13.5px;
  }

  .selector-card {
    min-height: 140px;
    padding: 14px 11px;
  }

  .selector-card strong {
    font-size: 19px;
  }

  .selector-card > span:last-child {
    font-size: 11px;
  }

  .trust-proof-shell h2 {
    font-size: 34px;
  }
}

/* Conversion polish: guided enquiry form and section-by-section refinement. */
.lead-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(241, 189, 99, 0.62);
  background:
    linear-gradient(135deg, rgba(4, 16, 26, 0.98), rgba(7, 27, 43, 0.96)),
    url("assets/hyderabad-photos/hyderabad-reception.webp") center / cover no-repeat;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-2), rgba(255, 255, 255, 0.8), var(--gold));
  z-index: 1;
}

.lead-card-head {
  position: relative;
  padding: 26px 24px 18px;
  background:
    linear-gradient(180deg, rgba(4, 16, 26, 0.88), rgba(4, 16, 26, 0.64));
}

.lead-card-head .eyebrow {
  margin-bottom: 7px;
}

.lead-card-head h2 {
  max-width: 520px;
  font-size: 30px;
}

.lead-proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.lead-proof-row span {
  min-height: 42px;
  gap: 8px;
  justify-content: flex-start;
  padding: 8px 9px;
  color: #f8e7c3;
  text-align: left;
  line-height: 1.15;
}

.lead-proof-row svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-form {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 22px 22px;
  background: rgba(3, 14, 23, 0.88);
}

.form-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 2px;
}

.form-choice-grid button {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 11px 10px;
  color: #f7e3ba;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 189, 99, 0.2);
  border-radius: 8px;
}

.form-choice-grid button:hover,
.form-choice-grid button.is-active {
  color: #071522;
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 28px rgba(217, 155, 63, 0.2);
}

.form-choice-grid button span {
  color: inherit;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.form-choice-grid button strong {
  color: inherit;
  font-size: 11px;
  line-height: 1.22;
}

.form-section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  padding-top: 8px;
  color: #f8e7c3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section-label span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #071522;
  background: var(--gold-2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.form-section-label strong {
  color: #f8e7c3;
  font-size: 12px;
  text-transform: uppercase;
}

.lead-form label {
  gap: 6px;
}

.lead-form span {
  color: #f8e7c3;
  font-size: 11px;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 42px;
  padding: 10px 12px;
  color: #071522;
  background: #fffaf2;
  border: 1px solid rgba(241, 189, 99, 0.34);
  border-radius: 7px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 22px rgba(0, 0, 0, 0.08);
}

.lead-form textarea {
  min-height: 78px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(16, 32, 51, 0.54);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow:
    0 0 0 3px rgba(241, 189, 99, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.btn-submit {
  min-height: 46px;
  margin-top: 2px;
  font-size: 13px;
}

.form-note {
  color: #c4d5e2;
}

.form-status:not(:empty) {
  color: #eafff4;
  background: rgba(46, 138, 91, 0.22);
  border-color: rgba(95, 205, 146, 0.3);
}

.visual-proof-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.48fr);
  gap: 26px;
  align-items: end;
  max-width: none;
}

.visual-proof-head p:last-child {
  margin: 0;
  padding: 18px 20px;
  color: #dbe9f4;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 26, 0) 48%, rgba(4, 16, 26, 0.7));
  pointer-events: none;
}

.visual-card figcaption {
  z-index: 1;
  border-color: rgba(241, 189, 99, 0.34);
}

.section-head {
  position: relative;
}

.section-head::after,
.section-head-left::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--gold-2), rgba(241, 189, 99, 0));
}

.inventory-section .section-head,
.pricing-section .section-head,
.audience-section .section-head,
.faq-section .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.inventory-section .section-head::after,
.pricing-section .section-head::after,
.audience-section .section-head::after,
.faq-section .section-head::after {
  margin-left: auto;
  margin-right: auto;
}

.inventory-section .plan-card,
.virtual-section .plan-card,
.audience-grid article,
.table-card,
details {
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.inventory-section .plan-card:hover,
.virtual-section .plan-card:hover,
.audience-grid article:hover,
details:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 189, 99, 0.42);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.16);
}

.inventory-section .plan-card {
  min-height: 292px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.94));
}

.card-link {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 9px 12px;
  color: #071522;
  background: rgba(241, 189, 99, 0.16);
  border: 1px solid rgba(217, 155, 63, 0.28);
  border-radius: 7px;
  text-decoration: none;
}

.card-link:hover {
  color: #071522;
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
}

.inventory-section .plan-card.plan-featured {
  background:
    linear-gradient(145deg, rgba(4, 16, 26, 0.98), rgba(14, 47, 73, 0.96));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.virtual-section .split-layout {
  align-items: stretch;
}

.virtual-section .section-head-left {
  align-self: center;
}

.virtual-plan-grid .plan-card {
  min-height: 0;
  padding: 20px;
}

.virtual-card-premium {
  border-color: rgba(241, 189, 99, 0.56);
}

.pricing-layout {
  align-items: start;
}

.table-card {
  box-shadow: 0 24px 54px rgba(11, 22, 34, 0.1);
}

.table-card h3 {
  background:
    linear-gradient(135deg, #071522, #10334f);
  border-bottom: 1px solid rgba(241, 189, 99, 0.28);
}

tbody tr:nth-child(even) td {
  background: rgba(244, 239, 230, 0.5);
}

.why-section .proof-grid article,
.audience-grid article {
  position: relative;
  padding-left: 54px;
}

.why-section .proof-grid article::before,
.audience-grid article::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(241, 189, 99, 0.48);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(241, 189, 99, 0.86), rgba(217, 155, 63, 0.44));
  box-shadow: 0 0 0 7px rgba(241, 189, 99, 0.1);
}

.audience-grid article {
  min-height: 150px;
}

.why-section .proof-grid article {
  display: grid;
  gap: 8px;
}

.why-section .proof-grid article strong {
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.08;
}

.why-section .proof-grid article span {
  color: #c9d9e7;
  font-size: 13px;
  line-height: 1.48;
}

.visit-panel {
  min-height: 260px;
  overflow: hidden;
}

.visit-actions .btn {
  min-height: 46px;
}

.location-copy {
  padding: 4px 0;
}

.location-facts span {
  position: relative;
  padding-left: 38px;
}

.location-facts span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-2);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(241, 189, 99, 0.12);
}

summary {
  justify-content: space-between;
  gap: 16px;
}

summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-grid;
  place-items: center;
  color: #071522;
  background: rgba(241, 189, 99, 0.18);
  border: 1px solid rgba(217, 155, 63, 0.28);
  border-radius: 50%;
  font-family: var(--font-sans);
}

details[open] summary::after {
  content: "-";
}

.final-cta {
  border-top: 1px solid rgba(241, 189, 99, 0.16);
}

.final-cta-shell {
  max-width: 960px;
}

@media (max-width: 1180px) {
  .visual-proof-head {
    grid-template-columns: 1fr;
  }

  .form-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .lead-card {
    border-radius: 8px;
  }

  .lead-card-head {
    padding: 22px 18px 16px;
  }

  .lead-card-head h2 {
    font-size: 28px;
  }

  .lead-proof-row {
    grid-template-columns: 1fr;
  }

  .lead-proof-row span {
    min-height: 38px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 16px 18px 20px;
  }

  .form-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-choice-grid button {
    min-height: 68px;
  }

  .form-section-label {
    margin-top: 4px;
  }

  .lead-form input,
  .lead-form select {
    min-height: 46px;
  }

  .visual-proof-head p:last-child {
    padding: 15px;
  }

  .inventory-section .section-head,
  .pricing-section .section-head,
  .audience-section .section-head,
  .faq-section .section-head {
    text-align: left;
  }

  .inventory-section .section-head::after,
  .pricing-section .section-head::after,
  .audience-section .section-head::after,
  .faq-section .section-head::after {
    margin-left: 0;
  }

  .inventory-section .plan-card {
    min-height: 0;
  }

  .card-link {
    width: 100%;
    justify-content: center;
  }

  .why-section .proof-grid article,
  .audience-grid article {
    padding-left: 48px;
  }
}

/* Tightening pass after visual QA. */
.lead-card-head {
  padding-top: 22px;
  padding-bottom: 14px;
}

.lead-card-head h2 {
  font-size: 28px;
}

.lead-card-head p {
  margin-top: 9px;
  font-size: 12.5px;
  line-height: 1.42;
}

.lead-proof-row span {
  min-height: 36px;
  font-size: 10.5px;
}

.lead-form {
  gap: 9px 12px;
  padding-top: 14px;
}

.form-choice-grid button {
  min-height: 58px;
  padding: 9px;
}

.form-section-label {
  margin-top: 0;
  padding-top: 6px;
}

.lead-form input,
.lead-form select {
  min-height: 39px;
}

.lead-form textarea {
  min-height: 64px;
}

.message-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.visual-proof-head {
  display: block;
  max-width: 920px;
}

.visual-proof-head h2 {
  max-width: 820px;
}

.visual-proof-head p:last-child {
  max-width: 760px;
  margin-top: 18px;
}

@media (max-width: 680px) {
  .lead-card-head {
    padding: 20px 18px 14px;
  }

  .lead-card-head h2 {
    font-size: 27px;
  }

  .lead-card-head p {
    font-size: 13px;
  }

  .lead-form {
    gap: 11px;
  }

  .form-choice-grid button {
    min-height: 64px;
  }

  .message-field {
    grid-column: 1;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .table-scroll {
    overflow: visible;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  table {
    min-width: 0;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  tbody {
    padding: 14px;
  }

  tr {
    margin-bottom: 12px;
    overflow: hidden;
    background: #fffaf2;
    border: 1px solid rgba(18, 35, 53, 0.1);
    border-radius: 8px;
  }

  tr:last-child {
    margin-bottom: 0;
  }

  td {
    display: grid;
    grid-template-columns: minmax(92px, 0.52fr) minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid rgba(18, 35, 53, 0.08);
    font-size: 14px;
  }

  td:last-child {
    border-bottom: 0;
  }

  td::before {
    color: #9c6427;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
  }

  td:nth-child(1)::before {
    content: "Option";
  }

  td:nth-child(2)::before {
    content: "Details";
  }

  td:nth-child(3)::before {
    content: "Availability";
  }

  td:nth-child(4)::before {
    content: "Price";
  }

  .table-card:nth-child(2) td:nth-child(3)::before {
    content: "Term";
  }

  summary {
    min-height: 0;
    align-items: flex-start;
    padding: 18px;
    font-size: 20px;
    line-height: 1.24;
  }

  summary::after {
    margin-top: 2px;
  }

  details p {
    padding: 0 18px 18px;
  }
}

@media (max-width: 420px) {
  .lead-proof-row span {
    font-size: 10px;
  }

  .form-choice-grid button span,
  .form-choice-grid button strong {
    font-size: 10px;
  }

  td {
    grid-template-columns: minmax(84px, 0.5fr) minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
  }

  summary {
    font-size: 19px;
  }
}

/* Requested correction pass: mobile proof labels, selector sizing, dots, location image. */
.trust-strip > span > .label-mobile {
  display: none;
}

.trust-strip > span > .label-desktop,
.trust-strip > span > .label-mobile {
  width: auto;
  min-height: 0;
  flex: 0 1 auto;
  display: inline;
  gap: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  line-height: inherit;
  white-space: inherit;
}

.trust-strip > span > .label-mobile {
  display: none;
}

.why-section .proof-grid article,
.audience-grid article {
  padding-left: 20px;
}

.why-section .proof-grid article::before,
.audience-grid article::before {
  content: none;
}

.location-media {
  background:
    linear-gradient(180deg, rgba(4, 16, 26, 0.02), rgba(4, 16, 26, 0.1)),
    url("assets/pranava-business-square-upscaled.webp") center center / cover no-repeat;
}

@media (max-width: 680px) {
  .hero-metrics article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 78px;
  }

  .hero-metrics strong {
    line-height: 1;
  }

  .hero-metrics span {
    min-height: 0;
    margin: 0;
    line-height: 1.12;
  }

  .trust-strip > span {
    font-size: 11.5px;
    font-weight: 900;
  }

  .trust-strip > span:nth-child(3),
  .trust-strip > span:nth-child(4) {
    font-size: 11.5px;
  }

  .trust-strip > span > .label-desktop {
    display: none;
  }

  .trust-strip > span > .label-mobile {
    display: inline;
  }

  .selector-card strong {
    font-size: 17px;
    line-height: 1.08;
  }

  .selector-card > span:last-child {
    font-size: 14px;
    line-height: 1.35;
  }

  .why-section .proof-grid article,
  .audience-grid article {
    padding-left: 20px;
  }

  .location-media {
    min-height: 360px;
    background-position: center center;
  }
}

@media (max-width: 420px) {
  .selector-card strong {
    font-size: 17px;
  }

  .selector-card > span:last-child {
    font-size: 14px;
  }
}

/* Mobile card CTA spacing fix for inventory and virtual office cards. */
@media (max-width: 680px) {
  .inventory-section .plan-card .card-link,
  .virtual-section .plan-card .card-link {
    margin-top: 22px;
  }
}

@media (max-width: 420px) {
  .inventory-section .plan-card .card-link,
  .virtual-section .plan-card .card-link {
    margin-top: 20px;
  }
}

/* 10/10 polish pass: section rhythm, trust, selector, inventory, virtual office and FAQ. */
.selector-section,
.trust-proof-section,
.about-section,
.visual-proof-section,
.section,
.final-cta {
  scroll-margin-top: 92px;
}

.selector-shell {
  padding: clamp(46px, 5.5vw, 74px) 0;
}

.selector-grid {
  gap: 14px;
}

.selector-card {
  min-height: 176px;
  position: relative;
  overflow: hidden;
  align-content: start;
  gap: 9px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
}

.selector-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(241, 189, 99, 0.72), rgba(241, 189, 99, 0));
  opacity: 0;
  transition: opacity 160ms ease;
}

.selector-card:hover::after {
  opacity: 1;
}

.selector-kicker,
.selector-action {
  display: block;
  color: #f8d184;
  font-size: 10px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.selector-card .selector-action {
  margin-top: auto;
  color: #fff8ec;
}

.trust-review-card {
  grid-column: 1 / -1;
  grid-template-columns: 1fr !important;
  align-content: center;
  min-height: 0;
  color: #f8e7c3;
  background:
    linear-gradient(135deg, rgba(4, 16, 26, 0.98), rgba(15, 45, 69, 0.96));
  border-color: rgba(241, 189, 99, 0.42);
  box-shadow: 0 28px 64px rgba(11, 22, 34, 0.18);
}

.trust-proof-grid .trust-review-card .trust-review-copy {
  max-width: 900px;
  color: #e6f0f7;
  font-size: 15px;
}

.trust-rating-head {
  grid-column: 1 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-review-card .rating-row,
.trust-proof-grid .trust-review-card .trust-review-copy,
.trust-review-card .proof-link {
  grid-column: 1 !important;
}

.trust-review-card .proof-icon {
  flex: 0 0 auto;
}

.rating-row {
  width: fit-content;
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: 7px;
}

.rating-row b {
  color: #fff8ec;
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1;
}

.rating-row span,
.trust-proof-grid .rating-row span:not(.proof-icon) {
  color: #f7c66c;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}

.rating-row small {
  color: #fff8ec;
  font-size: 12px;
  font-weight: 900;
}

.proof-link {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 10px 16px;
  color: #071522;
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.about-section {
  padding: clamp(64px, 8vw, 104px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(241, 189, 99, 0.16), transparent 28%),
    linear-gradient(135deg, #071522, #0b2338);
  border-top: 1px solid rgba(241, 189, 99, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.about-brand-card {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.about-mark {
  width: 72px;
  height: 72px;
}

.about-brand-card > span:not(.brand-mark) {
  color: #f7c66c;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.about-brand-card strong,
.about-copy h2 {
  margin: 0;
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.04;
}

.about-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px 0 0;
  color: #d8e6f0;
  font-size: 16px;
  line-height: 1.7;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 189, 99, 0.26);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.availability-line,
.virtual-assurance,
.pricing-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.availability-line {
  margin-top: 13px;
}

.availability-line span,
.virtual-assurance span,
.pricing-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  color: #7a4d1d;
  background: rgba(241, 189, 99, 0.16);
  border: 1px solid rgba(217, 155, 63, 0.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}

.plan-featured .availability-line span {
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(241, 189, 99, 0.32);
}

.virtual-assurance {
  margin-top: 22px;
}

.plan-points {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plan-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.plan-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-2);
}

.pricing-highlights {
  justify-content: center;
  margin-top: 22px;
}

.info-icon,
.persona-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #f7c66c;
  background: rgba(241, 189, 99, 0.12);
  border: 1px solid rgba(241, 189, 99, 0.28);
  border-radius: 8px;
}

.info-icon svg,
.persona-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-section .proof-grid article,
.audience-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.audience-grid article {
  min-height: 210px;
}

.clarity-section {
  padding: clamp(58px, 7vw, 92px) 0;
}

.clarity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: 22px;
  align-items: center;
}

.clarity-panel .eyebrow,
.clarity-panel h2,
.clarity-panel p {
  grid-column: 1;
}

.clarity-panel span {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin-top: 0;
  align-self: center;
}

.faq-list {
  gap: 18px;
}

.faq-group {
  display: grid;
  gap: 10px;
}

.faq-group h3 {
  margin: 12px 0 0;
  color: #9c6427;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(5, 15, 25, 0.95), rgba(7, 21, 34, 0.78)),
    url("assets/hyderabad-photos/hyderabad-open-workspace.webp") center / cover no-repeat;
}

.final-cta-shell {
  max-width: 980px;
}

.final-cta-shell h2 {
  max-width: 860px;
}

@media (max-width: 980px) {
  .about-shell,
  .clarity-panel {
    grid-template-columns: 1fr;
  }

  .clarity-panel .eyebrow,
  .clarity-panel h2,
  .clarity-panel p,
  .clarity-panel span {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .selector-shell {
    padding: 46px 0;
  }

  .selector-grid {
    align-items: stretch;
  }

  .selector-card {
    min-height: 318px;
    height: 100%;
    grid-template-rows: 42px 26px minmax(52px, auto) minmax(118px, 1fr) 32px;
    align-content: stretch;
  }

  .selector-kicker,
  .selector-action {
    font-size: 9px;
  }

  .selector-card .selector-action {
    margin-top: 0;
  }

  .trust-review-card {
    gap: 12px;
  }

  .trust-rating-head {
    gap: 10px;
  }

  .rating-row {
    width: auto;
    flex: 1 1 250px;
    justify-content: flex-start;
  }

  .proof-link {
    width: 100%;
  }

  .about-section,
  .visual-proof-section,
  .section,
  .final-cta {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-brand-card {
    min-height: 220px;
  }

  .about-brand-card strong,
  .about-copy h2 {
    font-size: 31px;
  }

  .availability-line,
  .virtual-assurance,
  .pricing-highlights {
    gap: 7px;
  }

  .availability-line span,
  .virtual-assurance span,
  .pricing-highlights span {
    font-size: 10.5px;
  }

  .table-card h3 {
    top: 0;
  }

  .why-section .proof-grid article,
  .audience-grid article {
    min-height: 0;
    padding: 18px;
  }

  .clarity-section {
    padding: 58px 0;
  }

  .faq-group h3 {
    margin-top: 8px;
  }
}

/* Quick selector desktop reset: equal cards with breathing room. */
@media (min-width: 981px) {
  .selector-section {
    background:
      linear-gradient(180deg, #071522 0%, #0b2338 100%);
  }

  .selector-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: stretch;
    padding: clamp(72px, 7vw, 104px) 0;
  }

  .selector-shell > div:first-child {
    max-width: 820px;
  }

  .selector-shell h2 {
    max-width: 760px;
    font-size: 48px;
    line-height: 1.04;
  }

  .selector-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .selector-card {
    min-height: 288px;
    grid-template-rows: 48px 28px minmax(72px, auto) minmax(84px, 1fr) 34px;
    align-content: stretch;
    gap: 10px;
    padding: 24px;
    border-radius: 8px;
  }

  .selector-icon {
    align-self: start;
  }

  .selector-kicker {
    align-self: end;
    min-height: 28px;
    display: flex;
    align-items: flex-end;
  }

  .selector-card strong {
    min-height: 72px;
    display: flex;
    align-items: flex-start;
    font-size: 34px;
    line-height: 1.05;
  }

  .selector-card > span:not(.selector-icon):not(.selector-kicker):not(.selector-action) {
    min-height: 84px;
    color: #d7e4ee;
    font-size: 15px;
    line-height: 1.48;
  }

  .selector-card .selector-action {
    min-height: 34px;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.25;
  }
}

@media (min-width: 1180px) {
  .selector-grid {
    gap: 28px;
  }
}

.mobile-kicker {
  display: none;
}

@media (max-width: 680px) {
  .selector-shell {
    padding: 46px 0 50px;
  }

  .selector-grid {
    gap: 12px;
    grid-auto-rows: minmax(300px, auto);
  }

  .selector-card {
    min-height: 282px;
    grid-template-rows: 40px 20px minmax(52px, auto) minmax(82px, 1fr) 30px;
    gap: 8px;
    padding: 17px 15px;
  }

  .selector-icon {
    width: 40px;
    height: 40px;
  }

  .selector-icon svg {
    width: 21px;
    height: 21px;
  }

  .selector-card > span.selector-kicker {
    min-height: 20px;
    display: flex;
    align-items: flex-end;
    font-size: 10px;
    line-height: 1.12;
  }

  .selector-kicker .desktop-kicker {
    display: none;
  }

  .selector-kicker .mobile-kicker {
    display: inline;
  }

  .selector-card strong {
    min-height: 52px;
    display: flex;
    align-items: flex-start;
    font-size: 24px;
    line-height: 1.06;
  }

  .selector-card > span:not(.selector-icon):not(.selector-kicker):not(.selector-action) {
    min-height: 82px;
    font-size: 13px;
    line-height: 1.38;
  }

  .selector-card > span.selector-action {
    min-height: 30px;
    display: flex;
    align-items: flex-end;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.2;
  }
}

/* Trust proof refinement: stronger hierarchy and decision-focused proof cards. */
.trust-proof-shell > div:first-child {
  max-width: 510px;
}

.trust-proof-intro {
  max-width: 420px;
  margin: 20px 0 0;
  color: #546574;
  font-size: 16px;
  line-height: 1.68;
}

.trust-review-card {
  min-height: 268px;
  gap: 18px;
  padding: 30px;
}

.trust-rating-head {
  align-items: center;
  gap: 16px;
}

.trust-rating-head > div {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.trust-review-card .trust-rating-head strong {
  grid-column: auto;
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.08;
}

.trust-review-card .rating-row {
  grid-column: auto !important;
  margin-top: 0;
}

.trust-proof-grid .trust-review-card .trust-review-copy {
  max-width: 920px;
  font-size: 16px;
  line-height: 1.68;
}

.trust-review-card .proof-link {
  margin-top: 2px;
}

.trust-proof-grid article:not(.trust-review-card) {
  min-height: 178px;
  column-gap: 16px;
  padding: 26px;
}

.trust-proof-grid article:not(.trust-review-card) .proof-icon {
  width: 46px;
  height: 46px;
}

.trust-proof-grid article:not(.trust-review-card) strong {
  max-width: 320px;
  font-size: 24px;
  line-height: 1.05;
}

.trust-proof-grid article:not(.trust-review-card) span:not(.proof-icon) {
  max-width: 410px;
  margin-top: 2px;
  font-size: 14.5px;
  line-height: 1.62;
}

@media (min-width: 981px) {
  .trust-proof-grid article:not(.trust-review-card) {
    min-height: 210px;
  }
}

@media (max-width: 980px) {
  .trust-proof-shell > div:first-child {
    max-width: 760px;
  }

  .trust-proof-intro {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .trust-proof-intro {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.58;
  }

  .trust-review-card {
    min-height: 0;
    gap: 14px;
    padding: 22px;
  }

  .trust-rating-head {
    gap: 12px;
    align-items: flex-start;
  }

  .trust-review-card .trust-rating-head strong {
    font-size: 22px;
  }

  .trust-proof-grid .trust-review-card .trust-review-copy {
    font-size: 14px;
    line-height: 1.58;
  }

  .trust-proof-grid article:not(.trust-review-card) {
    min-height: 0;
    padding: 20px;
  }

  .trust-proof-grid article:not(.trust-review-card) strong {
    font-size: 22px;
  }

  .trust-proof-grid article:not(.trust-review-card) span:not(.proof-icon) {
    font-size: 13.5px;
  }
}

/* About Fun@work refinement: official logo and sharper brand story. */
.about-section {
  background:
    radial-gradient(circle at 17% 22%, rgba(241, 189, 99, 0.18), transparent 30%),
    linear-gradient(135deg, #06121f 0%, #0b2338 56%, #082033 100%);
}

.about-shell {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
}

.about-brand-card {
  min-height: 350px;
  align-content: center;
  gap: 18px;
  padding: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border-color: rgba(241, 189, 99, 0.34);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.about-logo-panel {
  width: 100%;
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, #fffaf2, #f4efe6);
  border: 1px solid rgba(241, 189, 99, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.about-logo-panel img {
  width: min(100%, 360px);
  max-height: 82px;
  object-fit: contain;
}

.about-brand-card > span:not(.brand-mark) {
  margin-top: 2px;
}

.about-brand-card strong {
  max-width: 420px;
  font-size: 34px;
}

.about-copy {
  max-width: 860px;
}

.about-copy h2 {
  max-width: 850px;
  font-size: clamp(42px, 4.2vw, 58px);
}

.about-copy p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 18px;
  color: #dbe8f2;
  font-size: 17px;
  line-height: 1.68;
}

.about-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 10px;
  color: #bed0df;
}

.about-points {
  gap: 12px;
  margin-top: 28px;
}

.about-points span {
  min-height: 42px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(241, 189, 99, 0.3);
}

@media (max-width: 980px) {
  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-brand-card {
    min-height: 0;
  }

  .about-logo-panel {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .about-brand-card {
    padding: 22px;
  }

  .about-logo-panel {
    min-height: 86px;
    padding: 16px;
  }

  .about-logo-panel img {
    max-height: 58px;
  }

  .about-brand-card strong,
  .about-copy h2 {
    font-size: 31px;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .about-points {
    gap: 9px;
  }

  .about-points span {
    width: 100%;
    min-height: 38px;
  }
}

/* About Fun@work 10/10 pass: brand credential + buyer decision system. */
.about-section {
  padding: clamp(76px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 13% 22%, rgba(241, 189, 99, 0.18), transparent 28%),
    radial-gradient(circle at 74% 16%, rgba(46, 138, 91, 0.1), transparent 26%),
    linear-gradient(135deg, #06121f 0%, #0b2338 58%, #071522 100%);
}

.about-shell {
  grid-template-columns: minmax(340px, 0.41fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.about-brand-card {
  min-height: 520px;
  align-content: stretch;
  gap: 22px;
  padding: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(241, 189, 99, 0.4);
  box-shadow: 0 38px 88px rgba(0, 0, 0, 0.28);
}

.about-logo-panel {
  min-height: 128px;
  padding: 22px;
  background:
    linear-gradient(180deg, #fffaf2 0%, #f4efe6 100%);
}

.about-logo-panel img {
  width: min(100%, 420px);
  max-height: 90px;
}

.about-card-copy {
  display: grid;
  gap: 12px;
}

.about-card-copy span {
  color: #f7c66c;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-card-copy strong {
  max-width: 390px;
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 650;
  line-height: 1.06;
}

.about-card-copy p {
  margin: 0;
  color: #d7e4ee;
  font-size: 14px;
  line-height: 1.62;
}

.about-brand-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: auto;
}

.about-brand-metrics span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  color: #f4efe6;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 850;
}

.about-brand-metrics b {
  min-width: 42px;
  color: #f7c66c;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.about-copy {
  max-width: 940px;
}

.about-copy h2 {
  max-width: 900px;
  font-size: clamp(42px, 3.7vw, 56px);
  line-height: 1.03;
}

.about-copy p:not(.eyebrow) {
  max-width: 860px;
  font-size: 16.5px;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-proof-grid article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.14);
}

.about-proof-grid article > span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #071522;
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
}

.about-proof-grid strong {
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.08;
}

.about-proof-grid p {
  margin: 0;
  color: #d7e4ee;
  font-size: 13px;
  line-height: 1.55;
}

.about-points {
  margin-top: 22px;
}

.about-points span {
  min-height: 40px;
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.055);
}

@media (max-width: 980px) {
  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-brand-card {
    min-height: 0;
  }

  .about-logo-panel {
    max-width: none;
  }

  .about-brand-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-section {
    padding: 58px 0;
  }

  .about-brand-card {
    gap: 18px;
    padding: 20px;
  }

  .about-logo-panel {
    min-height: 92px;
  }

  .about-logo-panel img {
    max-height: 60px;
  }

  .about-card-copy strong,
  .about-copy h2 {
    font-size: 31px;
  }

  .about-card-copy p,
  .about-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-brand-metrics,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .about-brand-metrics span {
    min-height: 40px;
  }

  .about-proof-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .about-proof-grid article {
    min-height: 0;
    padding: 17px;
  }
}

/* Visual tour final pass: aligned editorial lead, lighter captions and conversion bridge. */
.visual-proof-section {
  padding: clamp(78px, 8vw, 116px) 0;
  background:
    linear-gradient(180deg, #06121f 0%, #0b2338 56%, #082033 100%);
}

.visual-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: end;
  max-width: none;
  margin-bottom: 34px;
}

.visual-proof-head h2 {
  max-width: 880px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.98;
}

.visual-proof-head p:last-child {
  max-width: 500px;
  margin: 0 0 8px;
  padding: 0;
  color: #d7e4ee;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 1.72;
}

.visual-proof-grid {
  gap: 16px;
}

.visual-card {
  border-color: rgba(241, 189, 99, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.visual-card::after {
  background:
    linear-gradient(180deg, rgba(4, 16, 26, 0) 55%, rgba(4, 16, 26, 0.62) 100%);
}

.visual-card figcaption {
  left: 14px;
  right: auto;
  bottom: 14px;
  width: min(72%, 360px);
  gap: 5px;
  padding: 12px 13px;
  background: rgba(4, 16, 26, 0.82);
  border-color: rgba(241, 189, 99, 0.28);
}

.visual-card:not(.visual-card-large) figcaption {
  width: min(76%, 310px);
}

.visual-card figcaption span {
  font-size: 9.5px;
}

.visual-card figcaption strong {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.04;
}

.visual-card:not(.visual-card-large) figcaption strong {
  font-size: clamp(17px, 1.35vw, 22px);
}

.visual-proof-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 18px 20px;
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 8px;
}

.visual-proof-actions p {
  max-width: 650px;
  margin: 0;
  color: #dbe8f2;
  font-size: 15px;
  line-height: 1.58;
}

.visual-proof-actions div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .visual-proof-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .visual-proof-head p:last-child {
    max-width: 760px;
    margin: 0;
  }

  .visual-proof-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-proof-actions div {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .visual-proof-section {
    padding: 58px 0;
  }

  .visual-proof-head {
    margin-bottom: 24px;
  }

  .visual-proof-head h2 {
    font-size: 34px;
    line-height: 1.03;
  }

  .visual-proof-head p:last-child {
    font-size: 14px;
    line-height: 1.62;
  }

  .visual-card figcaption,
  .visual-card:not(.visual-card-large) figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 11px 12px;
  }

  .visual-card figcaption strong,
  .visual-card:not(.visual-card-large) figcaption strong {
    font-size: 19px;
  }

  .visual-proof-actions {
    margin-top: 16px;
    padding: 16px;
  }

  .visual-proof-actions p {
    font-size: 13.5px;
  }

  .visual-proof-actions div {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Inventory 10/10 pass: live availability dashboard and premium card rhythm. */
.inventory-section {
  padding-top: clamp(78px, 8vw, 116px);
  background:
    radial-gradient(circle at 50% 5%, rgba(241, 189, 99, 0.14), transparent 28%),
    linear-gradient(180deg, #06121f 0%, #0b2338 58%, #071522 100%);
}

.inventory-section .section-head {
  max-width: 900px;
  margin-bottom: 26px;
}

.inventory-section .section-head h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(42px, 4.2vw, 62px);
}

.inventory-section .section-head p {
  max-width: 820px;
}

.inventory-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.inventory-overview article {
  min-height: 136px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  color: #fffdf8;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(241, 189, 99, 0.26);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.inventory-overview span {
  color: #f7c66c;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.inventory-overview strong {
  color: #fffdf8;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.05;
}

.inventory-overview p {
  margin: 0;
  color: #d7e4ee;
  font-size: 13px;
  line-height: 1.55;
}

.inventory-section .inventory-grid {
  gap: 18px;
}

.inventory-section .plan-card {
  min-height: 356px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: stretch;
  gap: 0;
  padding: 24px 24px 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.99), rgba(255, 255, 255, 0.965));
  border-color: rgba(241, 189, 99, 0.28);
}

.inventory-section .plan-card::before {
  height: 4px;
}

.inventory-card-label {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: #7a4d1d;
  background: rgba(241, 189, 99, 0.16);
  border: 1px solid rgba(217, 155, 63, 0.24);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.inventory-section .plan-meta {
  gap: 8px;
  margin-bottom: 18px;
}

.inventory-section .plan-meta span {
  min-height: 34px;
  padding: 7px 11px;
  color: #071522;
  background: rgba(241, 189, 99, 0.14);
  border-color: rgba(217, 155, 63, 0.28);
  border-radius: 8px;
  font-size: 12px;
}

.inventory-section .plan-meta span:last-child {
  color: #7a4d1d;
  background: rgba(255, 250, 242, 0.95);
}

.inventory-section .plan-card h3 {
  min-height: 58px;
  margin: 0;
  color: #071522;
  font-size: 27px;
  line-height: 1.08;
}

.inventory-section .price {
  margin-top: 14px;
  color: #9c6427;
  font-size: 25px;
  line-height: 1.15;
}

.inventory-section .availability-line {
  margin-top: 18px;
}

.inventory-section .availability-line span {
  min-height: 34px;
  padding: 8px 11px;
  font-size: 12px;
}

.inventory-section .availability-line span:first-child {
  color: #071522;
  background: linear-gradient(180deg, rgba(247, 198, 108, 0.36), rgba(217, 155, 63, 0.18));
  border-color: rgba(217, 155, 63, 0.35);
}

.inventory-section .plan-card p {
  margin-top: 20px;
  color: #5a6978;
  font-size: 15px;
  line-height: 1.62;
}

.inventory-section .card-link {
  width: fit-content;
  min-height: 44px;
  justify-content: center;
  margin-top: 22px;
  padding: 11px 14px;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(217, 155, 63, 0.1);
}

.inventory-section .plan-featured {
  background:
    linear-gradient(145deg, rgba(4, 16, 26, 0.985), rgba(14, 47, 73, 0.96));
  border-color: rgba(241, 189, 99, 0.42);
}

.inventory-section .plan-featured .inventory-card-label {
  color: #fff8ec;
  background: rgba(46, 138, 91, 0.22);
  border-color: rgba(241, 189, 99, 0.28);
}

.inventory-section .plan-featured h3 {
  color: #f7c66c;
}

.inventory-section .plan-featured p {
  color: #d7e4ee;
}

.inventory-section .plan-featured .plan-meta span,
.inventory-section .plan-featured .availability-line span {
  color: #fff8ec;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(241, 189, 99, 0.28);
}

.inventory-section .plan-featured .card-link {
  color: #071522;
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
  border-color: rgba(241, 189, 99, 0.34);
  font-weight: 950;
}

.inventory-section .plan-card.plan-featured .card-link,
.inventory-section .plan-card.plan-featured .card-link:hover {
  color: #071522 !important;
}

.inventory-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 18px 20px;
  color: #fffdf8;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(241, 189, 99, 0.24);
  border-radius: 8px;
}

.inventory-footnote p {
  max-width: 760px;
  margin: 0;
  color: #d7e4ee;
  font-size: 14.5px;
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .inventory-section .inventory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .inventory-overview,
  .inventory-section .inventory-grid {
    grid-template-columns: 1fr;
  }

  .inventory-section .plan-card {
    min-height: 0;
  }

  .inventory-section .plan-card h3 {
    min-height: 0;
  }

  .inventory-footnote {
    align-items: stretch;
    flex-direction: column;
  }

  .inventory-footnote .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .inventory-section {
    padding-top: 58px;
  }

  .inventory-section .section-head h2 {
    font-size: 34px;
  }

  .inventory-overview article {
    min-height: 0;
    padding: 18px;
  }

  .inventory-overview strong {
    font-size: 25px;
  }

  .inventory-section .plan-card {
    padding: 22px;
  }

  .inventory-section .plan-card h3 {
    font-size: 27px;
  }

  .inventory-section .price {
    font-size: 24px;
  }

  .inventory-section .card-link {
    width: 100%;
  }
}

/* Final heading system: one disciplined scale across the landing page. */
:root {
  --heading-hero: clamp(58px, 5.2vw, 74px);
  --heading-major: clamp(42px, 3.8vw, 56px);
  --heading-compact: clamp(34px, 3vw, 44px);
  --heading-card: 27px;
  --eyebrow-size: 16px;
  --eyebrow-gap: 14px;
}

.eyebrow {
  margin-bottom: var(--eyebrow-gap);
  font-size: var(--eyebrow-size);
  line-height: 1.12;
}

body .selector-section .eyebrow,
body .trust-proof-section .eyebrow,
body .about-section .eyebrow,
body .visual-proof-section .eyebrow,
body .inventory-section .eyebrow,
body .virtual-section .eyebrow,
body .pricing-section .eyebrow,
body .why-section .eyebrow,
body .audience-section .eyebrow,
body #site-visit .eyebrow,
body #location .eyebrow,
body .clarity-section .eyebrow,
body .faq-section .eyebrow,
body .final-cta .eyebrow {
  margin-bottom: var(--eyebrow-gap);
  font-size: var(--eyebrow-size);
  line-height: 1.12;
}

h1 {
  font-size: var(--heading-hero);
  line-height: 0.98;
}

.selector-shell h2,
.section-head h2,
.trust-proof-shell h2,
.about-copy h2,
.visual-proof-head h2,
.final-cta h2 {
  font-size: var(--heading-major);
  line-height: 1.03;
  letter-spacing: 0;
}

.inventory-section .section-head h2,
.pricing-section .section-head h2,
.audience-section .section-head h2,
.faq-section .section-head h2 {
  font-size: var(--heading-major);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-head-left h2,
.visit-panel h2,
.location-copy h2,
.clarity-panel h2 {
  font-size: var(--heading-compact);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead-card-head h2 {
  font-size: 28px;
  line-height: 1.08;
}

.plan-card h3,
.inventory-section .plan-card h3,
.virtual-section .plan-card h3,
.audience-grid h3,
.table-card h3 {
  font-size: var(--heading-card);
  line-height: 1.1;
}

@media (max-width: 980px) {
  :root {
    --heading-hero: 52px;
    --heading-major: 42px;
    --heading-compact: 36px;
    --heading-card: 25px;
    --eyebrow-size: 14px;
  }
}

@media (max-width: 680px) {
  :root {
    --heading-hero: 40px;
    --heading-major: 34px;
    --heading-compact: 31px;
    --heading-card: 27px;
    --eyebrow-size: 12px;
    --eyebrow-gap: 12px;
  }

  h1 {
    line-height: 1.06;
  }

  .selector-shell h2,
  .section-head h2,
  .trust-proof-shell h2,
  .about-copy h2,
  .visual-proof-head h2,
  .final-cta h2 {
    line-height: 1.05;
  }

  .inventory-section .section-head h2,
  .pricing-section .section-head h2,
  .audience-section .section-head h2,
  .faq-section .section-head h2 {
    line-height: 1.05;
  }

  .section-head-left h2,
  .visit-panel h2,
  .location-copy h2,
  .clarity-panel h2 {
    line-height: 1.07;
  }

  .lead-card-head h2 {
    font-size: 27px;
  }
}

/* Four-section decision pass: virtual office, pricing, why choose and best-for. */
.virtual-section .split-layout {
  grid-template-columns: minmax(360px, 0.76fr) minmax(560px, 1fr);
  gap: clamp(34px, 5vw, 72px);
}

.virtual-section .section-head-left {
  max-width: 620px;
}

.virtual-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.virtual-decision-grid span {
  min-height: 86px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
}

.virtual-decision-grid strong {
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
}

.virtual-plan-grid {
  gap: 16px;
}

@media (min-width: 1181px) {
  .virtual-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .virtual-card-premium {
    grid-column: 1 / -1;
  }

  .virtual-card-premium .plan-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .virtual-card-premium .plan-points li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.virtual-plan-grid .plan-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px 26px;
  border-top: 4px solid rgba(241, 189, 99, 0.66);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.virtual-card-premium {
  border-top-color: #4fb478;
}

.virtual-section .inventory-card-label {
  color: #7a4d1d;
  background: rgba(241, 189, 99, 0.16);
}

.plan-fit {
  max-width: 660px;
  margin: 0;
  color: #52647a;
  font-size: 14px;
  line-height: 1.55;
}

.plan-points {
  margin-top: 0;
}

.plan-points li {
  padding-left: 0;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.plan-points li::before {
  display: none;
}

.plan-points li strong {
  color: #9c6427;
  font-size: 11px;
  text-transform: uppercase;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 189, 99, 0.12), transparent 35%),
    var(--paper-2);
}

.pricing-section .section-head {
  max-width: 980px;
}

.pricing-highlights span {
  min-height: 42px;
  padding: 9px 14px;
  color: #6b4318;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(11, 22, 34, 0.06);
}

.pricing-highlights strong {
  margin-right: 4px;
  color: var(--navy-2);
}

.pricing-layout {
  gap: 22px;
}

.table-card {
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(11, 22, 34, 0.12);
}

.table-card-head {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, #071522, #10334f);
  border-bottom: 1px solid rgba(241, 189, 99, 0.28);
}

.table-card-head span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.table-card .table-card-head h3 {
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
}

.table-card-head p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.table-scroll th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.stock-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #275b3e;
  background: rgba(46, 138, 91, 0.11);
  border: 1px solid rgba(46, 138, 91, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.stock-low {
  color: #8a541f;
  background: rgba(241, 189, 99, 0.18);
  border-color: rgba(217, 155, 63, 0.3);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 20px;
  color: #24374f;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 155, 63, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(11, 22, 34, 0.08);
}

.pricing-note p {
  max-width: 860px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.why-section .split-layout {
  grid-template-columns: minmax(360px, 0.74fr) minmax(620px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.why-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.why-summary span {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.why-summary strong {
  color: var(--gold-2);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
}

.why-section .proof-grid {
  gap: 16px;
}

.why-section .proof-grid article,
.audience-grid article {
  padding-left: 20px;
}

.why-section .proof-grid article::before,
.audience-grid article::before {
  display: none;
}

.why-section .proof-grid article {
  min-height: 188px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 9px 16px;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(13, 43, 67, 0.96), rgba(7, 21, 34, 0.94));
  border-color: rgba(241, 189, 99, 0.24);
}

.why-section .proof-grid article .info-icon {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.why-section .proof-grid article small {
  grid-column: 2;
  color: var(--gold-2);
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-section .proof-grid article strong,
.why-section .proof-grid article span {
  grid-column: 2;
}

.why-section .proof-grid article strong {
  font-size: 22px;
}

.audience-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 189, 99, 0.14), transparent 34%),
    var(--paper-2);
}

.audience-section .section-head {
  max-width: 900px;
}

.audience-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.audience-grid article {
  grid-column: span 2;
  min-height: 286px;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  gap: 11px;
  padding: 24px;
  border-color: rgba(217, 155, 63, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.94));
}

.audience-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.audience-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.audience-kicker {
  color: #9c6427;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.audience-grid h3,
.plan-card h3 {
  overflow-wrap: normal;
  word-break: normal;
}

.audience-grid p {
  font-size: 14px;
  line-height: 1.58;
}

.audience-grid a {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: #071522;
  background: rgba(241, 189, 99, 0.16);
  border: 1px solid rgba(217, 155, 63, 0.28);
  border-radius: 7px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.audience-grid a:hover {
  background: linear-gradient(180deg, #f7c66c, #d99b3f);
}

@media (max-width: 1180px) {
  .virtual-section .split-layout,
  .why-section .split-layout {
    grid-template-columns: 1fr;
  }

  .virtual-section .section-head-left,
  .why-section .section-head-left {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid article,
  .audience-grid article:nth-child(4),
  .audience-grid article:nth-child(5) {
    grid-column: auto;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .virtual-decision-grid,
  .why-summary,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .virtual-plan-grid .plan-card {
    padding: 22px;
  }

  .plan-points li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .pricing-highlights {
    align-items: stretch;
  }

  .pricing-highlights span {
    width: 100%;
  }

  .pricing-note {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-note .btn {
    width: 100%;
  }

  .why-section .proof-grid {
    grid-template-columns: 1fr;
  }

  .why-section .proof-grid article {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .why-section .proof-grid article strong {
    font-size: 21px;
  }

  .audience-grid article {
    min-height: 0;
    padding: 22px;
  }

}

/* Client correction pass: inventory chips, virtual office structure and centered decision sections. */
.inventory-section .availability-line {
  align-items: center;
  gap: 10px;
}

.inventory-section .availability-line span {
  min-width: 118px;
  min-height: 40px;
  justify-content: center;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.inventory-section .availability-line span + span {
  min-width: 188px;
}

.inventory-section .plan-featured .availability-line span {
  min-width: 236px;
}

.virtual-section .section-head,
.pricing-section .section-head,
.audience-section .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.virtual-section .section-head {
  max-width: 980px;
}

.virtual-section .section-head h2,
.virtual-section .section-head p {
  color: #fffdf8;
}

.virtual-section .section-head > p:not(.eyebrow),
.pricing-section .section-head > p:not(.eyebrow),
.audience-section .section-head > p:not(.eyebrow) {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.virtual-section .section-head::after {
  margin-left: auto;
  margin-right: auto;
}

.virtual-assurance {
  justify-content: center;
}

.virtual-section .virtual-assurance span {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(241, 189, 99, 0.3);
}

.virtual-decision-grid {
  margin-top: 28px;
  margin-bottom: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.virtual-decision-grid span {
  min-height: 118px;
  color: #e3eef8;
  background:
    linear-gradient(145deg, rgba(13, 43, 67, 0.96), rgba(7, 21, 34, 0.94));
  border-color: rgba(241, 189, 99, 0.24);
}

.virtual-decision-grid strong {
  color: var(--gold-2);
}

.virtual-plan-grid {
  margin-top: 0;
}

@media (min-width: 981px) {
  .virtual-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .virtual-card-premium {
    grid-column: auto;
  }

  .virtual-card-premium .plan-points {
    grid-template-columns: 1fr;
  }

  .virtual-card-premium .plan-points li {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 10px;
  }

  .virtual-plan-grid .plan-card {
    min-height: 560px;
  }
}

.pricing-section .section-head .eyebrow,
.audience-section .section-head .eyebrow {
  text-align: center;
}

.pricing-highlights {
  justify-content: center;
}

.why-section .proof-grid article {
  grid-template-columns: 48px minmax(0, 1fr);
  align-content: center;
}

.why-section .proof-grid article .info-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.why-section .proof-grid article strong,
.why-section .proof-grid article span {
  grid-column: 2;
}

@media (max-width: 980px) {
  .virtual-decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .inventory-section .availability-line {
    gap: 8px;
  }

  .inventory-section .availability-line span,
  .inventory-section .availability-line span + span,
  .inventory-section .plan-featured .availability-line span {
    min-width: 0;
    min-height: 36px;
    padding: 0 12px;
    white-space: normal;
  }

  .virtual-decision-grid {
    grid-template-columns: 1fr;
  }

  .virtual-decision-grid span {
    min-height: 0;
  }

  .virtual-plan-grid .plan-card {
    min-height: 0;
  }
}

/* Reference alignment pass: why section restored, desktop centered heads, mobile left heads. */
.why-section .split-layout {
  grid-template-columns: minmax(420px, 0.82fr) minmax(620px, 1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
}

.why-section .section-head-left {
  max-width: 650px;
}

.why-section .section-head-left h2 {
  font-size: clamp(48px, 4.45vw, 66px);
  line-height: 1.02;
}

.why-section .section-head-left p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
}

.why-section .proof-grid article {
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 13px;
  padding: 26px;
}

.why-section .proof-grid article .info-icon,
.why-section .proof-grid article strong,
.why-section .proof-grid article span {
  grid-column: auto;
  grid-row: auto;
}

.why-section .proof-grid article strong {
  font-size: 24px;
  line-height: 1.08;
}

.why-section .proof-grid article span {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.48;
}

.virtual-section .section-head .eyebrow,
.pricing-section .section-head .eyebrow,
.audience-section .section-head .eyebrow {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 1180px) {
  .why-section .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .virtual-section .section-head,
  .pricing-section .section-head,
  .audience-section .section-head {
    text-align: left;
  }

  .virtual-section .section-head .eyebrow,
  .pricing-section .section-head .eyebrow,
  .audience-section .section-head .eyebrow {
    text-align: left;
  }

  .virtual-section .section-head > p:not(.eyebrow),
  .pricing-section .section-head > p:not(.eyebrow),
  .audience-section .section-head > p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .virtual-section .section-head::after,
  .pricing-section .section-head::after,
  .audience-section .section-head::after {
    margin-left: 0;
    margin-right: 0;
  }

  .virtual-assurance,
  .pricing-highlights {
    justify-content: flex-start;
  }

  .why-section .section-head-left h2 {
    font-size: 36px;
  }

  .why-section .section-head-left p {
    font-size: 16px;
  }

  .why-section .proof-grid article {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .why-section .proof-grid article strong {
    font-size: 22px;
  }
}

/* 10/10 conversion pass: mobile compression, compact inventory/pricing and faster enquiry. */
.optional-details {
  color: #ffffff;
}

.lead-form > label > span {
  color: #f8e7c3 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.optional-details label span,
.optional-grid label span {
  color: #071522 !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.optional-details summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: #ffffff !important;
  background: rgba(5, 15, 25, 0.95) !important;
  border: 1px solid rgba(241, 189, 99, 0.6) !important;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.optional-details summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #071522;
  background: var(--gold-2);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
}

.optional-details[open] summary::after {
  content: "-";
}

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.optional-grid .message-field {
  grid-column: span 2;
}

.trust-review-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.trust-review-snippets span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: #f8e7c3;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.mobile-inventory-groups,
.mobile-pricing-cards,
.container.mobile-inventory-groups,
.container.mobile-pricing-cards,
.sticky-mobile-cta {
  display: none !important;
}

@media (min-width: 681px) {
  .mobile-inventory-groups,
  .mobile-pricing-cards,
  .sticky-mobile-cta,
  .mobile-kicker,
  .mobile-title-break,
  .label-mobile,
  .container.mobile-inventory-groups,
  .container.mobile-pricing-cards {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

.mobile-inventory-groups article,
.mobile-pricing-cards article {
  border-radius: 8px;
}

.visit-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: visit-step;
}

.visit-steps li {
  counter-increment: visit-step;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: #f8e7c3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(241, 189, 99, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
}

.visit-steps li::before {
  content: counter(visit-step);
  width: 24px;
  height: 24px;
  display: inline-grid;
  flex: 0 0 24px;
  place-items: center;
  color: #071522;
  background: var(--gold-2);
  border-radius: 50%;
  font-size: 11px;
}

@media (max-width: 680px) {
  body {
    padding-bottom: 70px;
  }

  .hero {
    min-height: 0;
  }

  .hero-shell {
    min-height: 0;
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .hero-copy {
    gap: 0;
  }

  .hero-intro {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-metrics {
    margin-top: 22px;
  }

  .trust-strip {
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .lead-card {
    margin-top: 8px;
  }

  .lead-card-head {
    padding: 22px 18px 14px;
  }

  .lead-card-head h2 {
    font-size: 29px;
  }

  .lead-card-head p {
    font-size: 13px;
    line-height: 1.52;
  }

  .lead-proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .lead-proof-row span {
    min-height: 38px;
  }

  .lead-form {
    gap: 10px;
    padding: 14px 18px 18px;
  }

  .form-choice-grid {
    gap: 8px;
  }

  .form-choice-grid button {
    min-height: 64px;
    padding: 10px;
  }

  .form-section-label {
    margin-top: 0;
    padding-top: 6px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 40px;
  }

  .lead-form textarea {
    min-height: 72px;
  }

  .optional-details summary {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .optional-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .optional-grid .message-field {
    grid-column: auto;
  }

  .selector-section,
  .trust-proof-section,
  .about-section,
  .visual-proof-section,
  .inventory-section,
  .virtual-section,
  .pricing-section,
  .why-section,
  .audience-section,
  .visit-section,
  .location-section,
  .clarity-section,
  .faq-section,
  .final-cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .selector-shell,
  .trust-proof-shell,
  .about-shell,
  .visual-proof-head,
  .location-layout {
    gap: 22px;
  }

  .selector-card {
    min-height: 0;
    padding: 16px;
  }

  .selector-card > span:not(.selector-icon):not(.selector-kicker):not(.selector-action) {
    font-size: 13px;
    line-height: 1.45;
  }

  .trust-proof-grid,
  .about-proof-grid,
  .visual-proof-grid,
  .virtual-plan-grid,
  .audience-grid,
  .faq-list {
    gap: 12px;
  }

  .trust-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-review-card {
    grid-column: 1 / -1;
  }

  .trust-proof-grid article:not(.trust-review-card) {
    min-height: 0;
    padding: 15px;
  }

  .trust-proof-grid article:not(.trust-review-card) strong {
    font-size: 18px;
    line-height: 1.12;
  }

  .trust-proof-grid article:not(.trust-review-card) span:last-child {
    font-size: 12px;
    line-height: 1.4;
  }

  .trust-review-snippets {
    gap: 6px;
    margin-top: 12px;
  }

  .about-brand-card,
  .about-copy,
  .trust-proof-grid article,
  .visual-proof-actions,
  .clarity-panel {
    padding: 20px;
  }

  .about-brand-card {
    gap: 14px;
  }

  .about-logo-panel {
    min-height: 118px;
  }

  .about-card-copy strong {
    font-size: 27px;
    line-height: 1.05;
  }

  .about-proof-grid {
    display: none;
  }

  .about-points {
    margin-top: 18px;
  }

  .visual-proof-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .visual-proof-grid::-webkit-scrollbar,
  .virtual-plan-grid::-webkit-scrollbar,
  .audience-grid::-webkit-scrollbar {
    height: 6px;
  }

  .visual-proof-grid::-webkit-scrollbar-thumb,
  .virtual-plan-grid::-webkit-scrollbar-thumb,
  .audience-grid::-webkit-scrollbar-thumb {
    background: rgba(241, 189, 99, 0.55);
    border-radius: 999px;
  }

  .visual-card,
  .visual-card-large {
    min-width: 82%;
    min-height: 360px;
    scroll-snap-align: start;
  }

  .visual-card img,
  .visual-card-large img {
    min-height: 360px;
  }

  .visual-proof-actions {
    margin-top: 14px;
  }

  .inventory-section .section-head {
    margin-bottom: 18px;
  }

  .inventory-overview {
    gap: 10px;
    margin-bottom: 14px;
  }

  .inventory-overview article {
    min-height: 0;
    padding: 16px;
  }

  .inventory-overview strong {
    font-size: 23px;
  }

  .mobile-inventory-groups,
  .container.mobile-inventory-groups {
    display: grid !important;
    visibility: visible !important;
    height: auto !important;
    gap: 12px;
  }

  .mobile-inventory-groups article {
    display: grid;
    gap: 8px;
    padding: 18px;
    color: #071522;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.99), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(241, 189, 99, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  }

  .mobile-inventory-groups span,
  .mobile-pricing-cards span {
    width: fit-content;
    padding: 5px 9px;
    color: #7a4d1d;
    background: rgba(241, 189, 99, 0.16);
    border: 1px solid rgba(217, 155, 63, 0.24);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-inventory-groups h3,
  .mobile-pricing-cards h3 {
    margin: 0;
    color: #071522;
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1.05;
  }

  .mobile-inventory-groups strong {
    color: #9c6427;
    font-size: 18px;
    line-height: 1.2;
  }

  .mobile-inventory-groups p,
  .mobile-pricing-cards p {
    margin: 0;
    color: #536273;
    font-size: 14px;
    line-height: 1.5;
  }

  .mobile-inventory-groups a {
    width: fit-content;
    margin-top: 4px;
    padding: 9px 12px;
    color: #071522;
    background: rgba(241, 189, 99, 0.18);
    border: 1px solid rgba(217, 155, 63, 0.28);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 950;
  }

  .inventory-section .inventory-grid {
    display: none;
  }

  .inventory-footnote {
    align-items: stretch;
    flex-direction: column;
    margin-top: 14px;
    padding: 16px;
  }

  .inventory-footnote .btn {
    width: 100%;
  }

  .virtual-decision-grid {
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 14px;
  }

  .virtual-decision-grid span {
    padding: 14px;
  }

  .virtual-plan-grid .plan-card {
    padding: 18px;
  }

  .virtual-plan-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .virtual-plan-grid .plan-card {
    min-width: 86%;
    min-height: 0;
    scroll-snap-align: start;
  }

  .mobile-pricing-cards,
  .container.mobile-pricing-cards {
    display: grid !important;
    visibility: visible !important;
    height: auto !important;
    gap: 12px;
  }

  .mobile-pricing-cards article {
    display: grid;
    gap: 12px;
    padding: 18px;
    background: #fffaf2;
    border: 1px solid rgba(217, 155, 63, 0.22);
    box-shadow: 0 18px 42px rgba(11, 22, 34, 0.08);
  }

  .mobile-pricing-cards dl {
    display: grid;
    gap: 8px;
    margin: 0;
  }

  .mobile-pricing-cards dl div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(11, 22, 34, 0.08);
  }

  .mobile-pricing-cards dt {
    color: #24374f;
    font-size: 13px;
    font-weight: 850;
  }

  .mobile-pricing-cards dd {
    margin: 0;
    color: #9c6427;
    font-size: 13px;
    font-weight: 950;
    text-align: right;
  }

  .pricing-section .pricing-layout {
    display: none;
  }

  .pricing-note {
    margin-top: 14px;
    padding: 16px;
  }

  .why-section .split-layout {
    gap: 24px;
  }

  .why-section .proof-grid article {
    padding: 16px;
  }

  .audience-grid article {
    padding: 18px;
  }

  .audience-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .audience-grid article,
  .audience-grid article:nth-child(4),
  .audience-grid article:nth-child(5) {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .visit-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
  }

  .visit-steps li {
    min-height: 44px;
  }

  .final-actions {
    gap: 10px;
  }
}

/* Mobile correction pass: cleaner cards, no visible carousel rails, and centered optional icons. */
.optional-details summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .optional-details summary::after {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 18px;
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .trust-proof-grid article:not(.trust-review-card) {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 20px;
  }

  .trust-proof-grid article:not(.trust-review-card) .proof-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .trust-proof-grid article:not(.trust-review-card) strong,
  .trust-proof-grid article:not(.trust-review-card) span:last-child {
    grid-column: 2;
  }

  .trust-proof-grid article:not(.trust-review-card) strong {
    font-size: 23px;
  }

  .trust-proof-grid article:not(.trust-review-card) span:last-child {
    font-size: 14px;
    line-height: 1.55;
  }

  .visual-proof-grid,
  .audience-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .visual-proof-grid::-webkit-scrollbar,
  .audience-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .visual-proof-grid,
  .audience-grid {
    padding-bottom: 0;
  }

  .virtual-plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .virtual-plan-grid::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .virtual-plan-grid .plan-card {
    min-width: 0;
    width: 100%;
    padding: 18px;
    scroll-snap-align: unset;
  }

  .virtual-plan-grid .plan-card h3 {
    font-size: 26px;
    line-height: 1.08;
  }

  .virtual-plan-grid .plan-card .plan-price {
    font-size: 22px;
  }

  .virtual-plan-grid .plan-details {
    gap: 8px;
  }
}

/* Visual tour header correction: supporting copy belongs directly under the title. */
.visual-proof-head {
  display: block;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.visual-proof-head h2 {
  max-width: 980px;
}

.visual-proof-head p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.68;
}

@media (max-width: 680px) {
  .visual-proof-head {
    max-width: none;
  }

  .visual-proof-head p:last-child {
    max-width: none;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.58;
  }
}

/* Final mobile/live-readiness overrides. */
.optional-details summary::after {
  display: inline-grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  transform: none !important;
}

@media (max-width: 680px) {
  .trust-proof-grid {
    grid-template-columns: 1fr !important;
  }

  .trust-proof-grid article:not(.trust-review-card) {
    width: 100% !important;
  }

  .visual-proof-grid,
  .audience-grid {
    scrollbar-width: none !important;
    scrollbar-color: transparent transparent !important;
    -ms-overflow-style: none !important;
  }

  .visual-proof-grid::-webkit-scrollbar,
  .visual-proof-grid::-webkit-scrollbar-thumb,
  .audience-grid::-webkit-scrollbar,
  .audience-grid::-webkit-scrollbar-thumb {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }

  .visual-proof-grid,
  .audience-grid {
    padding-bottom: 0 !important;
  }

  .virtual-plan-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
    scroll-snap-type: none !important;
    scrollbar-width: none !important;
  }

  .virtual-plan-grid::-webkit-scrollbar,
  .virtual-plan-grid::-webkit-scrollbar-thumb {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }

  .virtual-plan-grid .plan-card {
    min-width: 0 !important;
    width: 100% !important;
    scroll-snap-align: unset !important;
  }

  .visual-proof-head {
    display: block !important;
  }

  .visual-proof-head p:last-child {
    margin-top: 16px !important;
  }
}

@media (min-width: 681px) {
  .visual-proof-head {
    display: block !important;
  }

  .visual-proof-head p:last-child {
    margin: 18px 0 0 !important;
  }
}
