/* === VERTICAL LANDING PAGE STYLES ===
   Owns: /hvac, /roofing, /plumbing vertical LP layout and components.
   Does NOT own: site header, footer, calculator widget, strategy form (those use theme.css). */

/* ===== HERO ===== */
.vert-hero {
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.vert-hero-inner {
  max-width: 740px;
}
.vert-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 24px;
}
.vert-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.vert-hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.vert-hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-2), #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vert-hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}
.vert-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vert-stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  overflow: hidden;
  max-width: 860px;
}
.vert-stat {
  flex: 1;
  min-width: 160px;
  padding: 28px 32px;
  border-right: 1px solid var(--border-dim);
  background: var(--bg-2);
}
.vert-stat:last-child { border-right: none; }
.vert-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-2);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.vert-stat-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ===== FEATURED TRANSCRIPT ===== */
.vert-transcript-section {
  padding: 80px 32px;
  background: var(--bg-2);
}
.vert-transcript-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vert-transcript-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .vert-transcript-grid { grid-template-columns: 1fr; }
}
.vert-transcript-intro {}
.vert-transcript-intro .section-eyebrow { margin-bottom: 16px; }
.vert-transcript-intro h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.vert-transcript-intro p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.vert-outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.vert-outcome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
/* Transcript card */
.vert-tc-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  overflow: hidden;
}
.vert-tc-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.vert-tc-tag {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.tag-hvac    { background: rgba(249, 115, 22, 0.15); color: #FB923C; border: 1px solid rgba(249,115,22,0.3); }
.tag-roofing { background: rgba(139, 92, 246, 0.15); color: #A78BFA; border: 1px solid rgba(139,92,246,0.3); }
.tag-plumbing{ background: rgba(14, 165, 233, 0.15); color: #38BDF8; border: 1px solid rgba(14,165,233,0.3); }
.vert-tc-time {
  font-size: 12px;
  color: var(--text-3);
  margin-left: auto;
}
.vert-tc-lines {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 360px;
  overflow-y: auto;
}
.vert-tc-lines::-webkit-scrollbar { width: 4px; }
.vert-tc-lines::-webkit-scrollbar-track { background: transparent; }
.vert-tc-lines::-webkit-scrollbar-thumb { background: var(--border-dim); border-radius: 2px; }
.vert-tline {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vert-tline-who {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.vert-tline-agent .vert-tline-who { color: var(--accent-2); }
.vert-tline-caller .vert-tline-who { color: var(--text-3); }
.vert-tline p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
  padding: 10px 14px;
  border-radius: 10px;
  margin: 0;
}
.vert-tline-agent p  { background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.15); }
.vert-tline-caller p { background: var(--bg-4); border: 1px solid var(--border-dim); }
.vert-tc-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border-dim);
  display: flex;
  gap: 24px;
}
.vert-tc-stat {
  font-size: 12px;
  color: var(--text-3);
}
.vert-tc-stat strong {
  color: var(--text-2);
  font-weight: 600;
}

/* ===== OTHER TRANSCRIPTS ===== */
.vert-other-transcripts {
  padding: 60px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.vert-other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 700px) {
  .vert-other-grid { grid-template-columns: 1fr; }
}
.vert-mini-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 24px;
}
.vert-mini-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 8px;
}
.vert-mini-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 12px;
}
.vert-mini-outcome {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

/* ===== WHY SECTION ===== */
.vert-why-section {
  padding: 80px 32px;
  background: var(--bg-2);
}
.vert-why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vert-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 700px) {
  .vert-why-grid { grid-template-columns: 1fr; }
}
.vert-why-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 28px 32px;
}
.vert-why-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
}
.vert-why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vert-why-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== PRICING CALLOUT ===== */
.vert-pricing-section {
  padding: 80px 32px;
}
.vert-pricing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.vert-pricing-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.vert-pricing-inner > p {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 48px;
  line-height: 1.65;
}
.vert-pricing-card {
  background: var(--bg-2);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.vert-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #60A5FA);
}
.vert-pricing-recommend {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.vert-pricing-tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}
.vert-pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-2);
  letter-spacing: -0.04em;
}
.vert-pricing-price-mo {
  font-size: 18px;
  color: var(--text-3);
  font-weight: 400;
  margin-left: 4px;
}
.vert-pricing-tagline {
  font-size: 15px;
  color: var(--text-2);
  margin: 12px 0 28px;
}
.vert-pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.vert-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.vert-pricing-features .check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== BOTTOM CTA ===== */
.vert-cta-section {
  padding: 80px 32px 100px;
  background: var(--bg-2);
  text-align: center;
}
.vert-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.vert-cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.vert-cta-inner p {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.65;
}
.vert-cta-small {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 16px;
}
.vert-cta-form-wrap {
  margin-top: 64px;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SECTION UTILITIES (reuse from theme) ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border-dim);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* ===== MOBILE BREAKPOINTS ===== */
@media (max-width: 768px) {
  .vert-hero { padding: 120px 20px 60px; }
  .vert-stat-bar {
    flex-direction: column;
    max-width: 100%;
  }
  .vert-stat { border-right: none; border-bottom: 1px solid var(--border-dim); }
  .vert-stat:last-child { border-bottom: none; }
  .vert-transcript-section { padding: 60px 20px; }
  .vert-other-transcripts { padding: 60px 20px; }
  .vert-why-section { padding: 60px 20px; }
  .vert-pricing-section { padding: 60px 20px; }
  .vert-pricing-card { padding: 32px 24px; }
  .vert-cta-section { padding: 60px 20px 80px; }
}

@media (max-width: 480px) {
  .vert-hero-sub { font-size: 16px; }
  .vert-stat-number { font-size: 28px; }
  .vert-transcript-grid { gap: 24px; }
}

/* ===== HUTTAS PROPERTY SERVICES (green brand) ===== */
.huttas-hero { }
.huttas-hero .vert-eyebrow { color: #16a34a; }
.huttas-hero .vert-eyebrow-dot { background: #16a34a; }
.huttas-hero .vert-hero-headline em {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.huttas-hero .vert-stat-bar { border-color: rgba(22,163,74,0.2); }
.huttas-hero .vert-stat { background: rgba(22,163,74,0.04); }
.huttas-hero .vert-stat-number { color: #16a34a; }
.huttas-hero .btn-primary { background: #16a34a; }
.huttas-hero .btn-primary:hover { background: #15803d; }

.huttas-pricing .vert-pricing-recommend { background: #16a34a; }
.huttas-pricing .vert-pricing-price { color: #16a34a; }
.huttas-pricing .vert-pricing-card::before {
  background: linear-gradient(90deg, #16a34a, #22c55e, #86efac);
}
