/* Shared vertical-page styles (healthcare, hospitality, multifamily, business) */

/* ── 1. Hero (light, two-column: text + industry photo) ── */
.hero-vertical {
  padding-top: 80px;
  padding-bottom: 96px;
}
.hero-vertical .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gap-l);
  align-items: center;
}
.hero-vertical .hero-text {
  max-width: 560px;
}
.hero-vertical h1 {
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.05;
}
.hero-vertical h1 .accent-phrase {
  color: var(--accent);
}
.hero-vertical .hero-sub {
  margin-bottom: 36px;
  max-width: 520px;
  color: var(--inkSoft);
}
.hero-vertical .hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-vertical .hero-buttons .btn {
  white-space: normal;
  text-align: left;
}
.hero-vertical .hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  background: var(--paperAlt);
}
.hero-vertical .hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── 2. Coverage stack (dark, 4×2 tiles) ── */
.stack-section {
  padding-top: 96px;
  padding-bottom: 96px;
}
.stack-section .section-header-row {
  align-items: flex-start;
  margin-bottom: 56px;
}
.stack-section .section-header-row .col-head h2 {
  font-size: 48px;
  line-height: 1.08;
}
.stack-section .section-header-row .col-desc {
  color: rgba(255,255,255,0.65);
  max-width: 460px;
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stack-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-m);
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.stack-tile .st-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}
.stack-tile h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: white;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.stack-tile p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ── 3. Claims strip (light, 5 stat cards) ── */
.claims-block {
  padding-top: 96px;
  padding-bottom: 96px;
}
.claims-block h2 {
  font-size: 48px;
  line-height: 1.08;
  margin-bottom: 48px;
}
.claims-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.claim-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.claim-card .claim-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.claim-card .claim-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  color: var(--inkSoft);
  line-height: 1.4;
}
.claims-foot {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* ── 4. Quote section (dark, 2-col: copy left + form right) ── */
.quote-block {
  padding-top: 96px;
  padding-bottom: 96px;
}
.quote-block .quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-l);
  align-items: start;
}
.quote-left h2 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 22px;
}
.quote-left p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 460px;
}
.quote-direct .qd-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  display: block;
}
.quote-direct a.email {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: white;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.quote-direct a.email:hover { color: var(--accent); }
.quote-direct .phone {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* Quote form panel */
.quote-form-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-m);
  padding: 32px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.qf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.qf-row .qf-field { margin-bottom: 0; }
.qf-field label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.qf-field label .req { color: var(--accent); margin-left: 2px; }
.qf-field input,
.qf-field select,
.qf-field textarea {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  color: white;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-s);
  padding: 11px 13px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.qf-field input::placeholder,
.qf-field textarea::placeholder {
  color: rgba(255,255,255,0.40);
}
.qf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-opacity='0.6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}
.qf-field select option { background: var(--inkSection); color: white; }
.qf-field textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
}
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 92, 245, 0.25);
  background: rgba(255,255,255,0.06);
}
.qf-submit { margin-top: 8px; }
.qf-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 22px;
  font-size: 14px;
}
.qf-foot {
  margin-top: 12px;
  text-align: center;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.50);
}

/* ── 5. "Also covered by VRA" strip (light) ── */
.also-block {
  padding-top: 56px;
  padding-bottom: 56px;
}
.also-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.also-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.also-left h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  white-space: nowrap;
}
.also-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.also-pills .pill {
  background: var(--paperAlt);
  border: 1px solid var(--line);
  font-size: 13px;
  padding: 8px 14px;
  color: var(--ink);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.also-pills .pill:hover {
  background: #ffffff;
  border-color: var(--ink);
}
.also-view {
  color: var(--accent);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .hero-vertical h1 { font-size: 52px; }
  .stack-section .section-header-row .col-head h2,
  .claims-block h2 { font-size: 40px; }
}
@media (max-width: 1100px) {
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .claims-row { grid-template-columns: 1fr 1fr 1fr; }
  .quote-block .quote-inner { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .hero-vertical h1 { font-size: 44px; }
}
/* Hero stays two-column down to ~720px so laptops and tablets in
   landscape keep the side-by-side layout. */
@media (max-width: 720px) {
  .hero-vertical .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-vertical .hero-text  { max-width: 720px; }
  .hero-vertical .hero-image { max-width: 560px; margin: 0 auto; aspect-ratio: 5 / 4; }
  .hero-vertical h1 { font-size: 40px; }
  .claims-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-vertical          { padding-top: 56px; padding-bottom: 64px; }
  .stack-section,
  .claims-block,
  .quote-block            { padding-top: 64px; padding-bottom: 64px; }
  .hero-vertical h1       { font-size: 40px; }
  .hero-vertical .hero-image { aspect-ratio: 4 / 3; }
  .stack-grid             { grid-template-columns: 1fr; }
  .claims-row             { grid-template-columns: 1fr; }
  .qf-row                 { grid-template-columns: 1fr; gap: 0; }
  .qf-row .qf-field       { margin-bottom: 16px; }
  .quote-form-panel       { padding: 24px; }
  .also-inner             { flex-direction: column; align-items: flex-start; }
}
