/* Inner marketing pages — Dialzara IA, Veliform visual system */

.inner-page .page-hero {
  padding-block: 110px 56px;
}

.industry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.industry-hero-copy h1 {
  max-width: 14ch;
}

.industry-hero-visual {
  position: relative;
  isolation: isolate;
}

.industry-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--section);
}

.call-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.call-bubble {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: min(92%, 320px);
  padding: 12px 14px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--page) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px color-mix(in srgb, #000 14%, transparent);
  pointer-events: auto;
}

.call-bubble p {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  font-weight: 500;
  line-height: 1.35;
}

.bubble-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  margin-top: 1px;
}

.bubble-icon svg {
  width: 15px;
  height: 15px;
}

.bubble-agent {
  border: 1.5px solid color-mix(in srgb, var(--accent) 70%, transparent);
}

.bubble-agent .bubble-icon {
  color: #fff;
  background: var(--accent);
}

.bubble-caller {
  border: 1.5px solid color-mix(in srgb, #f59e0b 75%, transparent);
}

.bubble-caller .bubble-icon {
  color: #92400e;
  background: color-mix(in srgb, #f59e0b 22%, #fff);
}

.bubble-one {
  top: 8%;
  right: 4%;
  animation: bubble-in 700ms ease both;
}

.bubble-two {
  top: 38%;
  left: 3%;
  animation: bubble-in 700ms ease 160ms both;
}

.bubble-three {
  bottom: 10%;
  right: 5%;
  animation: bubble-in 700ms ease 320ms both;
}

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bubble-one,
  .bubble-two,
  .bubble-three {
    animation: none;
  }
}

.page-hero h1 {
  max-width: 16ch;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.page-lede {
  max-width: 52ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.pricing-note {
  margin: 0;
  color: var(--subtle);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  transition: border-color 160ms ease, transform 160ms ease;
}

.feature-link-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.feature-link-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.feature-link-card span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.workflow-grid a.workflow-card {
  text-decoration: none;
  color: inherit;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.pricing-card-featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}

.popular-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-period,
.price-meta {
  color: var(--muted);
}

.price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.price-pills span {
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, var(--surface));
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-card ul {
  margin: 8px 0 18px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.included-band {
  margin-top: 36px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: color-mix(in srgb, var(--section) 70%, transparent);
}

.included-band h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
}

.included-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.addon-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.addon-card,
.partner-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.addon-card h3,
.partner-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.addon-card p,
.partner-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.addon-card a {
  color: var(--accent);
  font-weight: 600;
}

.partner-form-card {
  max-width: 640px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.partner-form-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
}

.partner-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.partner-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--page);
  color: var(--foreground);
  font: inherit;
}

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

.industry-hub-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  transition: border-color 160ms ease, transform 160ms ease;
}

.industry-hub-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--section);
}

.industry-hub-card span {
  padding: 0 14px 14px;
  font-weight: 650;
}

.industry-hub-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.industry-hub-card:hover span {
  color: var(--accent);
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.split-story h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.split-story p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.check-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.footer-shell-wide {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 36px 48px;
  align-items: start;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-columns h3 {
  margin: 0 0 12px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
}

.footer-columns a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer-shell-wide .copyright {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .industry-hero {
    grid-template-columns: 1fr;
  }

  .industry-hero-copy h1 {
    max-width: 16ch;
  }

  .industry-photo {
    max-height: 560px;
  }

  .feature-link-grid,
  .pricing-grid,
  .addon-grid,
  .partner-grid,
  .split-story,
  .industry-hub-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-shell-wide,
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .inner-page .page-hero {
    padding-block: 88px 40px;
  }

  .call-bubble {
    width: min(94%, 280px);
    padding: 10px 12px;
  }

  .call-bubble p {
    font-size: 0.74rem;
  }

  .bubble-icon {
    width: 24px;
    height: 24px;
  }

  .feature-link-grid,
  .pricing-grid,
  .addon-grid,
  .partner-grid,
  .split-story,
  .industry-hub-grid,
  .solution-grid,
  .included-band ul {
    grid-template-columns: 1fr;
  }
}
