/* ═══════════════════════════════════════════════
   INDUSTRY PAGE STYLES
   Components specific to industry landing pages
═══════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   INDUSTRY HERO
───────────────────────────────────────────── */
.industry-hero {
  padding: 160px 0 100px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.industry-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.industry-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(26, 26, 31, 0.3), transparent);
  pointer-events: none;
}

.industry-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.industry-hero h1 {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  margin-bottom: 8px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.industry-hero h1 .highlight,
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-subhead {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 650px;
  line-height: 1.5;
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.4);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 32px;
}

.hero-guarantee svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--success);
}

/* ─────────────────────────────────────────────
   PAIN CALCULATOR SECTION
───────────────────────────────────────────── */
.pain-section {
  background: var(--bg-subtle);
  padding: 100px 0;
  position: relative;
}

.pain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pain-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.pain-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.pain-calculator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
}

.pain-calculator::before {
  content: 'THE UNCOMFORTABLE TRUTH';
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--danger);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 4px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 16px;
}

.calc-row:last-child {
  border-bottom: none;
  padding-top: 24px;
  margin-top: 8px;
}

.calc-row.total {
  background: var(--danger-glow);
  margin: 0 -40px;
  padding: 20px 40px;
  border-radius: 0 0 16px 16px;
}

.calc-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-value {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 18px;
}

.calc-row.total .calc-value {
  color: var(--danger);
  font-size: 28px;
  font-family: 'Instrument Serif', Georgia, serif;
}

/* Pain Scenarios */
.pain-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pain-card .emoji {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.pain-card .highlight-text {
  color: var(--accent);
  font-weight: 600;
}

/* ─────────────────────────────────────────────
   SOLUTION SECTION (Light background variant)
───────────────────────────────────────────── */
.solution-section {
  padding: 100px 0;
  background: var(--text-primary);
  position: relative;
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}

.solution-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--bg-primary);
  margin-bottom: 16px;
}

.solution-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Systems Grid (Light background) */
.solution-section .systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.solution-section .system-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
}

.solution-section .system-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
}

.solution-section .system-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--accent);
}

.system-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 24px;
  color: var(--bg-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.system-name .tm {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  vertical-align: super;
}

.solution-section .system-card > p {
  color: #666;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.system-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-glow);
  color: var(--accent-dim);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   VALUE STACK SECTION
───────────────────────────────────────────── */
.value-section {
  background: var(--bg-subtle);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.value-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.value-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.value-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-header .total-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 72px;
  color: var(--accent);
  display: block;
  margin-top: 8px;
}

.value-stack {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.value-stack-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.value-stack-item:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
  transform: translateX(8px);
}

.value-stack-item.featured {
  background: var(--accent-glow);
  border-color: var(--accent);
}

.value-name {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.value-name .check {
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.value-price {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 24px;
  color: var(--text-muted);
}

.value-stack-item.featured .value-price {
  color: var(--accent);
}

.value-total {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 16px;
  margin-top: 32px;
}

.value-total .your-price {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 80px;
  color: var(--accent);
  line-height: 1;
}

.value-total .per-month {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 8px;
}

.value-total .per-day {
  color: var(--text-muted);
  font-size: 14px;
}

/* ─────────────────────────────────────────────
   GUARANTEE SECTION (Light background variant)
───────────────────────────────────────────── */
.guarantee-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--text-primary) 0%, #e8e5e0 100%);
}

.guarantee-header {
  text-align: center;
  margin-bottom: 60px;
}

.guarantee-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--bg-primary);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.guarantee-section .guarantee-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8e5e0;
  position: relative;
  transition: all 0.3s;
}

.guarantee-section .guarantee-card:hover {
  transform: translateY(-4px);
  border-color: var(--success);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.guarantee-shield {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--success), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

.guarantee-section .guarantee-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-section .guarantee-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.guarantee-proof {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 12px;
}

.guarantee-proof p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.guarantee-proof strong {
  color: #059669;
}

/* ─────────────────────────────────────────────
   TESTIMONIAL SECTION (Dark featured)
───────────────────────────────────────────── */
.testimonial-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '"';
  position: absolute;
  top: 60px;
  left: 10%;
  font-family: Georgia, serif;
  font-size: 400px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 40px;
}

.testimonial-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  padding: 32px;
  background: var(--bg-elevated);
  border-radius: 12px;
  margin-bottom: 32px;
}

.result-item {
  text-align: center;
}

.result-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
}

.result-label {
  color: var(--text-secondary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.author-info {
  text-align: left;
}

.author-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 18px;
}

.author-company {
  color: var(--text-secondary);
  font-size: 14px;
}

.author-stars {
  color: #ffaa00;
  font-size: 18px;
  letter-spacing: 2px;
}

/* ─────────────────────────────────────────────
   SCARCITY SECTION
───────────────────────────────────────────── */
.scarcity-section {
  padding: 80px 0;
  background: var(--danger);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scarcity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.05) 20px,
    rgba(0, 0, 0, 0.05) 40px
  );
  pointer-events: none;
}

.scarcity-content {
  position: relative;
  z-index: 1;
}

.scarcity-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.scarcity-spots {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 120px;
  line-height: 1;
  margin: 24px 0;
  animation: count-pulse 1s ease-in-out infinite;
}

@keyframes count-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.scarcity-spots span {
  font-size: 48px;
  opacity: 0.7;
}

.scarcity-reason {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.7;
}

.cost-waiting {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 32px;
  border-radius: 12px;
  margin-top: 24px;
}

.cost-item {
  text-align: center;
}

.cost-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 32px;
}

.cost-label {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────
   INDUSTRY FAQ SECTION
───────────────────────────────────────────── */
.industry-faq {
  padding: 100px 0;
  background: var(--text-primary);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: clamp(36px, 5vw, 48px);
  color: var(--bg-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list .faq-item {
  border-bottom: 1px solid #e8e5e0;
}

.faq-list .faq-item summary {
  padding: 24px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--bg-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-list .faq-item summary:hover {
  color: var(--accent-dim);
}

.faq-list .faq-item summary::after {
  content: '+';
  font-size: 28px;
  color: var(--accent-dim);
  font-weight: 400;
  transition: transform 0.3s;
}

.faq-list .faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-list .faq-item .answer {
  padding-bottom: 24px;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

.faq-list .faq-item .answer strong {
  color: var(--bg-primary);
}

/* ─────────────────────────────────────────────
   INDUSTRY FINAL CTA
───────────────────────────────────────────── */
.industry-final-cta {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.industry-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-header {
  text-align: center;
  margin-bottom: 48px;
}

.cta-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.option-card {
  padding: 32px;
  border-radius: 16px;
  border: 2px solid;
}

.option-card.bad {
  background: var(--danger-glow);
  border-color: rgba(255, 92, 92, 0.3);
}

.option-card.good {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.5);
}

.option-label {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.option-card.bad .option-label {
  color: #fca5a5;
}

.option-card.good .option-label {
  color: var(--success);
}

.option-list {
  list-style: none;
}

.option-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.option-card.bad .option-list li::before {
  content: '✗';
  color: var(--danger);
  font-weight: 700;
}

.option-card.good .option-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.final-cta-box {
  text-align: center;
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.final-cta-box .guarantee-text {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 24px;
}

.final-cta-box .btn-cta,
.final-cta-box .btn-accent {
  font-size: 20px;
  padding: 20px 48px;
}

.final-cta-box .bonus-text {
  color: #ffaa00;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* ─────────────────────────────────────────────
   INDUSTRY PRICING SECTION (Light background)
───────────────────────────────────────────── */
.industry-pricing {
  background: var(--text-primary);
  padding: 100px 0;
}

.pricing-hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.price-main {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-elevated) 100%);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.price-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.price-label {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.price-amount {
  font-size: 120px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Instrument Serif', Georgia, serif;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.price-amount span {
  font-size: 48px;
  vertical-align: top;
  margin-left: 4px;
}

.price-period {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.price-setup {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.price-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.industry-pricing .value-list {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
}

.industry-pricing .value-list-header {
  text-align: center;
  margin-bottom: 24px;
}

.industry-pricing .value-list-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.industry-pricing .value-list-item {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.industry-pricing .value-list-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.industry-pricing .value-list-item h4::before {
  content: '✓';
  color: var(--success);
  margin-right: 12px;
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   INDUSTRY CONTACT SECTION
───────────────────────────────────────────── */
.industry-contact {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.industry-contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-contact .contact-info h2 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.industry-contact .contact-info h2 em {
  font-style: italic;
  color: var(--accent);
}

.industry-contact .contact-info > p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   STATS SECTION
───────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-source {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   COMPARISON TABLE
───────────────────────────────────────────── */
.comparison-section {
  padding: 100px 0;
  background: var(--bg-subtle);
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.col-header {
  background: var(--bg-elevated);
}

.comparison-cell {
  padding: 16px 24px;
  font-size: 15px;
  color: var(--text-secondary);
}

.comparison-row.col-header .comparison-cell {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.comparison-cell.price {
  text-align: right;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 20px;
  color: var(--text-primary);
}

.comparison-row.col-header .comparison-cell.price {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

.comparison-cell.option-name {
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-row.highlight {
  background: var(--accent-glow);
  border: 1px solid var(--accent);
}

.comparison-row.highlight .comparison-cell.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 24px;
}

.comparison-row.highlight .comparison-cell.option-name {
  color: var(--accent);
}

.comparison-row.savings {
  background: rgba(0, 255, 136, 0.08);
}

.comparison-row.savings .comparison-cell.price {
  color: var(--success);
  font-size: 24px;
  font-weight: 700;
}

.comparison-row.savings .comparison-cell.option-name {
  color: var(--success);
  font-weight: 700;
}

.comparison-footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* ─────────────────────────────────────────────
   INTAKE QUESTIONS SECTION
───────────────────────────────────────────── */
.intake-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.intake-header {
  text-align: center;
  margin-bottom: 60px;
}

.intake-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.intake-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.intake-demo {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.intake-demo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.intake-demo-icon {
  font-size: 24px;
}

.intake-demo-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.intake-questions {
  list-style: none;
  padding: 8px 0;
}

.intake-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.intake-question:last-child {
  border-bottom: none;
}

.intake-question:hover {
  background: var(--bg-elevated);
}

.intake-question-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.intake-question-text {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.6;
}

.intake-question-text em {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   PRICING SECTION (pool-service variant)
───────────────────────────────────────────── */
.pricing-section {
  background: var(--text-primary);
  padding: 100px 0;
}

.pricing-section .value-list {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-section .value-list-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-section .value-list-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-section .value-list-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 6px;
}

.pricing-section .value-list-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.pricing-section .value-list-item h4::before {
  content: '✓';
  color: var(--success);
  margin-right: 12px;
  font-weight: 700;
}

/* Guarantee card subtitle */
.guarantee-title {
  font-size: 20px;
  color: var(--bg-primary);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

/* FAQ section (pool-service variant) */
.faq-section {
  padding: 100px 0;
  background: var(--text-primary);
}

/* ─────────────────────────────────────────────
   MOBILE RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .industry-contact .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .industry-hero { padding: 140px 0 80px; }
  .industry-hero h1 { font-size: 42px; }

  .pain-calculator { padding: 24px; margin: 0 16px 40px; }
  .pain-calculator::before { left: 24px; font-size: 10px; }
  .calc-row.total { margin: 0 -24px; padding: 16px 24px; }

  .solution-section .systems-grid { grid-template-columns: 1fr; }

  .value-header .total-value { font-size: 56px; }
  .value-total .your-price { font-size: 56px; }

  .scarcity-spots { font-size: 80px; }
  .scarcity-spots span { font-size: 32px; }

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

  .testimonial-results { grid-template-columns: repeat(2, 1fr); }
  .result-value { font-size: 32px; }

  .price-amount { font-size: 80px; }
  .price-amount span { font-size: 32px; }

  .comparison-row { grid-template-columns: 1fr; gap: 4px; }
  .comparison-cell { padding: 8px 16px; }
  .comparison-cell.price { text-align: left; }
  .comparison-row.col-header { display: none; }
  .intake-question { gap: 12px; }
  .intake-question-num { width: 28px; height: 28px; min-width: 28px; font-size: 12px; }
}

/* ─────────────────────────────────────────────
   ANIMATION REVEAL
───────────────────────────────────────────── */
.animate-reveal {
  animation: reveal-up 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ─────────────────────────────────────────────
   BUTTON VARIANTS FOR INDUSTRY PAGES
───────────────────────────────────────────── */
.btn-cta {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: none;
  animation: none;
}

.btn-cta:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-header {
  padding: 10px 20px;
  font-size: 13px;
  animation: none;
  box-shadow: 0 2px 10px var(--accent-glow);
}
