/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--navy);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: #0a5f62;
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-soft);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11, 34, 64, 0.35);
}

.btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  padding-inline: 0;
  border: none;
}

.btn-ghost:hover {
  color: var(--navy);
  transform: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Checklist */
.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--text);
}

.check-list li::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6' stroke='%230d7377' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 0.7rem no-repeat;
}

.check-list.gold li::before {
  background-color: #f7efd9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6' stroke='%239a7540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Icon bubble */
.icon-bubble {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon-bubble svg {
  width: 1.2rem;
  height: 1.2rem;
}

.icon-bubble.teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.icon-bubble.gold {
  background: #f7efd9;
  color: var(--gold-dark);
}

.icon-bubble.navy {
  background: var(--sky-soft);
  color: var(--navy);
}

/* Outcome strip */
.outcome-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.25rem 0 0;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.outcome-item svg {
  width: 1.35rem;
  height: 1.35rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.outcome-strip-light {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcome-strip-light .outcome-strip {
  padding: 1.1rem 0;
}

.outcome-strip-light .outcome-item {
  color: var(--navy);
  justify-content: center;
}

/* Product path cards */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 10px 32px rgba(11, 34, 64, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 34, 64, 0.1);
}

.product-card.tint-sky {
  background: linear-gradient(165deg, #eef6fb 0%, #e4f0f8 55%, #dceaf4 100%);
}

.product-card.tint-sand {
  background: linear-gradient(165deg, #fbf6ee 0%, #f7efe3 55%, #f3e8d8 100%);
}

.product-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.product-card-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.product-card-head p {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.product-card .visual {
  margin-top: auto;
  padding-top: 1.25rem;
}

/* Home proof / workflows band */
.proof-band {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

.proof-intro h2 {
  margin-bottom: 0.65rem;
}

.proof-intro p {
  color: var(--muted);
  margin: 0;
  max-width: 22rem;
}

.workflow-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 8px 28px rgba(11, 34, 64, 0.05);
}

.workflow-card .icon-asset {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.workflow-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.workflow-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.workflow-card .btn {
  margin-top: 0.85rem;
}

.trust-panel {
  background: linear-gradient(165deg, #e8f4f1 0%, #dceee9 100%);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 8px 28px rgba(13, 115, 119, 0.06);
}

.trust-panel .trust-point {
  align-items: center;
}

.trust-panel .trust-point h4 {
  margin: 0;
  font-size: 0.95rem;
}

.trust-panel .trust-point p {
  display: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.trust-points {
  display: grid;
  gap: 1.1rem;
}

.trust-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.trust-point h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin: 0 0 0.2rem;
}

.trust-point p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

/* CSS product UI mock */
.ui-panel {
  background: linear-gradient(160deg, #f4f7fb, #eef2f7);
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  font-family: var(--font-body);
}

.ui-panel-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
}

.ui-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.ui-panel-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 160px;
}

.ui-side {
  background: #102a4a;
  padding: 0.65rem 0.4rem;
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.ui-side span {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
}

.ui-main {
  padding: 0.75rem;
}

.ui-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.ui-stat {
  background: var(--white);
  border-radius: 6px;
  padding: 0.45rem;
  border: 1px solid #e4eaf1;
}

.ui-stat strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
}

.ui-stat span {
  font-size: 0.62rem;
  color: var(--muted);
}

.ui-chart {
  height: 54px;
  border-radius: 6px;
  background: linear-gradient(180deg, transparent 20%, rgba(13, 115, 119, 0.12)),
    repeating-linear-gradient(
      90deg,
      #0d7377 0 10px,
      transparent 10px 18px
    );
  background-size: 100% 100%, 100% 70%;
  background-position: bottom;
  background-repeat: no-repeat;
  border: 1px solid #e4eaf1;
  background-color: var(--white);
}

/* Chat mock */
.chat-mock {
  background: #efeae2;
  border-radius: 14px;
  padding: 0.85rem;
  max-width: 260px;
  margin-inline: auto;
  box-shadow: var(--shadow-card);
}

.chat-mock-head {
  background: #075e54;
  color: var(--white);
  border-radius: 10px 10px 0 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin: -0.85rem -0.85rem 0.75rem;
}

.bubble {
  max-width: 88%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.bubble.in {
  background: var(--white);
  margin-right: auto;
}

.bubble.out {
  background: #dcf8c6;
  margin-left: auto;
}

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(197, 154, 95, 0.45);
  border-color: var(--gold);
}

.form-field .error {
  color: #b42318;
  font-size: 0.8rem;
  display: none;
}

.form-field.is-invalid .error {
  display: block;
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: #b42318;
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--mint-soft);
  color: var(--navy);
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

/* Accordion */
.accordion {
  display: grid;
  gap: 0.65rem;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion-trigger::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--gold-dark);
}

.accordion-item.is-open .accordion-trigger::after {
  content: "–";
}

.accordion-panel {
  display: none;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 0.85rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .product-grid,
  .trust-grid,
  .proof-band,
  .outcome-strip,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .outcome-item {
    justify-content: flex-start;
  }
}