﻿:root {
  --teal: #2f6865;
  --teal-dark: #244f4c;
  --slate: #1d2a28;
  --copper: #9e4a32;
  --berry: #8f4936;
  --ochre: #c89a46;
  --charcoal: #1d2a28;
  --green: #756858;
  --ice: #efe5d5;
  --cloud: #f4efe4;
  --text: #1d2a28;
  --muted: #756858;
  --line: #ddd3c4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(29, 42, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cloud);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--slate);
  color: var(--white);
  padding: 0.7rem 1rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 239, 228, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: block;
  flex: 0 0 auto;
}

.brand-name {
  font-weight: 800;
  color: var(--slate);
  line-height: 1.1;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--slate);
  min-width: 44px;
  height: 44px;
  border-radius: 6px;
  font-size: 1.2rem;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate);
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: 999px;
  padding: 0.42rem 0.58rem;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--teal);
}

.site-nav a.is-active {
  color: var(--teal);
  background: rgba(47, 104, 101, 0.12);
  box-shadow: inset 0 -2px 0 var(--copper);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border-radius: 6px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.button.primary {
  background: var(--copper);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--line);
}

.button.ghost {
  background: transparent;
  color: var(--teal-dark);
  border-color: rgba(47, 104, 101, 0.24);
}

.button.full-width {
  width: 100%;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(29, 42, 40, 0.14);
}

.button.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  background: #1d2a28;
  color: var(--white);
  min-height: 680px;
  overflow: hidden;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
}

.hero-copy {
  max-width: 690px;
  padding: 6rem 0 5rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 18px rgba(29, 42, 40, 0.42);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 42, 40, 0.94) 0%, rgba(29, 42, 40, 0.82) 38%, rgba(29, 42, 40, 0.38) 72%, rgba(29, 42, 40, 0.18) 100%),
    linear-gradient(180deg, rgba(29, 42, 40, 0.08), rgba(29, 42, 40, 0.45));
}

.eyebrow {
  color: var(--ochre);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  color: var(--slate);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.65rem, 5.4vw, 4.65rem);
  max-width: 12ch;
}

.hero p {
  max-width: 640px;
  font-size: 1.16rem;
  color: #efe5d5;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.section {
  padding: 5rem 1.25rem;
}

.section.alt {
  background: var(--white);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 790px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-head p,
.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.35rem;
  box-shadow: 0 8px 24px rgba(24, 49, 58, 0.06);
}

.alt .card {
  background: var(--cloud);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 7px;
  background: var(--ice);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul,
.detail-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.founder-intro {
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.founder-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cloud);
  align-self: center;
  max-width: 320px;
  margin: 0;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
}

.founder-copy {
  max-width: 680px;
}

.village-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.village-card {
  background: var(--teal-dark);
  color: var(--white);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(197, 151, 77, 0.45);
  box-shadow: var(--shadow);
}

.alt .village-card {
  background: var(--teal-dark);
}

.village-card h3,
.village-card p,
.village-card li {
  color: var(--white);
}

.village-card h3 {
  font-size: 1.45rem;
}

.village-card li {
  color: #f4efe4;
  font-size: 1.02rem;
}

.village-card .detail-list li::marker {
  color: var(--ochre);
}

.price {
  font-size: 2rem;
  color: var(--teal-dark);
  font-weight: 900;
  margin: 0.3rem 0 0.8rem;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.package-hook {
  border-left: 4px solid var(--ochre);
  padding: 0.75rem 0.9rem;
  margin: 0 0 1rem;
  background: rgba(197, 151, 77, 0.1);
  color: var(--slate);
  font-weight: 900;
  line-height: 1.35;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.package-card .button {
  margin-top: auto;
}

.package-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--ice);
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.featured-plan {
  border-color: rgba(185, 104, 59, 0.55);
  box-shadow: 0 18px 45px rgba(185, 104, 59, 0.16);
}

.pricing-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.catalog-card .button {
  margin-top: auto;
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.faq-item {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.event-highlight {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.event-highlight img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.event-content {
  padding: 1.5rem;
}

.event-list {
  display: grid;
  gap: 1.25rem;
}

.event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 49, 58, 0.07);
  padding: 1.25rem;
}

.event-card.featured-event {
  border-color: rgba(197, 151, 77, 0.75);
  box-shadow: var(--shadow);
}

.event-card-date {
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 8px;
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.9rem;
  align-self: start;
}

.event-card-date span,
.event-card-date small {
  color: #efe5d5;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-card-date strong {
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
}

.event-card-body h2 {
  margin-bottom: 0.5rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.event-meta span {
  background: rgba(47, 104, 101, 0.1);
  color: var(--teal-dark);
  border: 1px solid rgba(47, 104, 101, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.visual-card-grid,
.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.visual-card,
.image-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(24, 49, 58, 0.07);
}

.visual-card img,
.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-card div,
.image-card div {
  padding: 1rem;
}

.visual-card h3,
.image-card h3 {
  margin-bottom: 0.35rem;
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 49, 58, 0.07);
  overflow: hidden;
}

.faq-accordion summary {
  cursor: pointer;
  color: var(--slate);
  font-weight: 900;
  padding: 1rem 1.15rem;
  list-style-position: inside;
}

.faq-accordion p,
.faq-accordion .button {
  margin: 0 1.15rem 1rem;
}

.faq-accordion p {
  color: var(--muted);
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.proof-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 240px;
  box-shadow: 0 8px 24px rgba(24, 49, 58, 0.08);
}

.proof-photo.large {
  grid-row: span 2;
  min-height: 500px;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--white);
  background: linear-gradient(0deg, rgba(29, 42, 40, 0.9), rgba(29, 42, 40, 0));
  font-weight: 800;
}

.photo-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
}

.partner-initials {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.partner-meta {
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.partner-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.partner-flow .card {
  border-top: 4px solid var(--copper);
}

.speaker-photo {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid var(--ochre);
  background: var(--ice);
}

.speaker-photo.placeholder {
  display: grid;
  place-items: center;
  color: var(--slate);
  font-weight: 900;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .partner-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

.problem-list {
  display: grid;
  gap: 0.75rem;
}

.problem-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(24, 49, 58, 0.05);
}

.problem-link strong {
  color: var(--slate);
}

.problem-link span {
  color: var(--muted);
  display: block;
}

.problem-section {
  background: var(--white);
}

.problem-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.problem-photo {
  min-height: 420px;
  background: var(--slate);
}

.problem-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-copy h2 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

.problem-copy .button {
  align-self: flex-start;
  margin-top: 1rem;
}

.problem-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.problem-tile {
  position: relative;
  display: block;
  min-height: 230px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cloud);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(24, 49, 58, 0.07);
}

.problem-tile::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 0;
  height: 5px;
  background: var(--ochre);
}

.problem-tile span {
  display: inline-flex;
  margin: 0.6rem 0 1rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.problem-tile strong {
  display: block;
  color: var(--slate);
  font-size: 1.22rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.problem-tile p {
  color: var(--muted);
  margin: 0;
}

.problem-tile:hover,
.problem-tile:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(24, 49, 58, 0.13);
}

.event-banner {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--copper);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 800;
}

.event-banner a {
  color: var(--white);
  text-decoration: underline;
}

.event-days {
  display: grid;
  gap: 1rem;
}

.day-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.day-option input {
  width: auto;
  min-height: auto;
  margin-top: 0.25rem;
}

.total-box {
  background: var(--slate);
  color: var(--white);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1rem;
}

.total-box h3,
.total-box p {
  color: var(--white);
}

.total-amount {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--white);
}

.invoice-sheet {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.invoice-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
  border-bottom: 2px solid var(--ochre);
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
}

.invoice-business {
  display: grid;
  gap: 0.25rem;
  color: var(--muted);
}

.invoice-business strong {
  color: var(--ink);
}

.invoice-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.invoice-meta div,
.invoice-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  padding: 1rem;
}

.invoice-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.8rem;
  background: var(--white);
}

.invoice-table th,
.invoice-table td {
  border: 1px solid var(--line);
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}

.invoice-table th {
  background: var(--teal-dark);
  color: var(--white);
}

.invoice-panel + .invoice-panel {
  margin-top: 1rem;
}

@media print {
  body {
    background: var(--white);
  }

  .site-header,
  .site-footer,
  .no-print {
    display: none !important;
  }

  .section {
    padding: 0;
  }

  .invoice-sheet {
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

.event-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(29, 42, 40, 0.72);
  z-index: 30;
}

.event-modal.is-open {
  display: flex;
}

.event-modal-card {
  background: var(--white);
  border-radius: 8px;
  max-width: 680px;
  width: 100%;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.event-modal-card img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.event-modal-body {
  padding: 1.5rem;
}

.modal-close {
  float: right;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  min-width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
}

.band {
  background: var(--teal-dark);
  color: var(--white);
  padding: 4rem 1.25rem;
}

.band h2,
.band h3 {
  color: var(--white);
}

.band p {
  color: #e4f0f0;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(29, 42, 40, 0.94), rgba(29, 42, 40, 0.72)),
    var(--page-hero-image, url("assets/anwtc-hero.png")) var(--page-hero-position, center) / cover;
  color: var(--white);
  padding: 5.5rem 1.25rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--ochre);
}

.section {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  max-width: 900px;
}

.page-hero p {
  max-width: 790px;
  color: #efe5d5;
  font-size: 1.14rem;
}

.card {
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: var(--ochre);
}

.custom-pricing-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(244, 239, 228, 0.94), rgba(244, 239, 228, 0.86)),
    url("assets/policy-systems.png") center / cover;
  box-shadow: var(--shadow);
}

.custom-pricing-panel ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.custom-price-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.custom-price-card h3,
.custom-price-card p,
.custom-price-card .price,
.custom-price-card .price small {
  color: var(--white);
}

.custom-price-card .button {
  margin-top: auto;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.service-detail:first-child {
  border-top: 0;
}

.service-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 1.25rem;
  background: var(--cloud);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pill-list span {
  background: var(--ice);
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

label {
  font-weight: 800;
  color: var(--slate);
  display: block;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 46px;
  padding: 0.8rem;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

textarea {
  min-height: 150px;
}

.newsletter-card h3 {
  margin-top: 0;
}

.checkbox-stack {
  display: grid;
  gap: 0.55rem;
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem;
}

.checkbox-stack label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.checkbox-stack input {
  width: auto;
  min-height: auto;
}

.microcopy {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  margin: 0.9rem 0 0;
  border-left: 4px solid var(--teal);
  background: var(--cloud);
  color: var(--slate);
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  font-weight: 700;
}

.meeting-options {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0;
}

.meeting-options .card {
  border-left: 5px solid var(--ochre);
}

.meeting-options strong {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--teal-dark);
}

.booking-note {
  background: var(--cream);
}

.consultation-booking .section-heading {
  max-width: 760px;
}

.booking-shell {
  margin-top: 2rem;
}

.live-booking {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-live-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: var(--white);
}

.booking-live-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.booking-live-actions p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

.booking-embed-placeholder {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.booking-preview {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.booking-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.booking-preview-header strong {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.booking-preview-header span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.calendar-preview {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.45rem;
}

.calendar-preview span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-preview button,
.slot-preview button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-weight: 800;
}

.calendar-preview button[disabled] {
  background: #e1ddd4;
  color: #8b8173;
  opacity: 0.7;
}

.calendar-preview .has-slots {
  border-color: var(--ochre);
  background: #fff7e8;
  color: var(--teal-dark);
}

.calendar-preview .today {
  box-shadow: inset 0 0 0 2px var(--copper);
}

.slot-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.slot-preview button {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.booking-afterword {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  background: #1d2a28;
  color: var(--white);
  padding: 4rem 1.25rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  color: #efe5d5;
  text-decoration: none;
  margin-bottom: 0.55rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2rem;
  padding-top: 1rem;
  color: #ddd3c4;
  font-size: 0.92rem;
}

.site-footer .footer-social {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  background: #1877f2;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.site-footer .footer-social:hover,
.site-footer .footer-social:focus {
  background: #efe5d5;
  color: var(--teal-dark);
}

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 3px;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0.75rem;
  }

  .hero-grid {
    min-height: 620px;
    display: flex;
  }

  .hero-copy {
    padding: 4.5rem 1.25rem 3rem;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-media::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(29, 42, 40, 0.94), rgba(29, 42, 40, 0.58)),
      linear-gradient(180deg, rgba(29, 42, 40, 0.1), rgba(29, 42, 40, 0.62));
  }

  .grid.three,
  .grid.two,
  .founder-grid,
  .feature-split,
  .answer-grid,
  .proof-gallery,
  .event-card,
  .visual-card-grid,
  .image-card-grid,
  .partner-flow,
  .problem-feature,
  .problem-tile-grid,
  .footer-grid,
  .service-detail,
  .form-grid,
  .custom-pricing-panel,
  .booking-embed-placeholder,
  .booking-afterword {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .proof-photo.large {
    min-height: 320px;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand {
    min-width: 0;
  }

  .brand-sub {
    display: none;
  }

  .section {
    padding: 3.25rem 1rem;
  }

  .page-hero {
    padding: 4rem 1rem;
  }

  .hero-actions .button,
  .cta-row .button {
    width: 100%;
  }
}

/* ANWTC custom consultation booking */
.booking-app {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 2rem;
}

.booking-calendar-panel,
.booking-times-panel,
.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 18px 45px rgba(26, 54, 57, 0.08);
}

.booking-form {
  grid-column: 1 / -1;
}

.booking-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-panel-header h3 {
  margin: 0.15rem 0 0;
  color: var(--teal-dark);
}

.booking-month-controls {
  display: flex;
  gap: 0.4rem;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--teal-dark);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--copper);
  outline: none;
}

.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.booking-day-name {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.booking-day {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.booking-day.is-muted,
.booking-day:disabled {
  background: #e2ded5;
  color: #8d8376;
  cursor: not-allowed;
  opacity: 0.75;
}

.booking-day.is-weekday {
  border-color: rgba(191, 142, 55, 0.55);
  background: #fff7e8;
}

.booking-day.is-today {
  box-shadow: inset 0 0 0 2px var(--copper);
}

.booking-day.is-selected {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}

.booking-zone,
.booking-selected-date,
.booking-status {
  color: var(--muted);
  font-weight: 800;
}

.booking-selected-date {
  margin-top: 0;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.booking-slot {
  min-height: 46px;
  border: 1px solid var(--teal-dark);
  border-radius: 8px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 900;
  cursor: pointer;
}

.booking-slot:hover,
.booking-slot:focus-visible,
.booking-slot.is-selected {
  background: var(--teal-dark);
  color: var(--white);
  outline: none;
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--copper);
  outline: 2px solid rgba(163, 84, 54, 0.18);
}

.booking-form .button {
  margin-top: 1rem;
}

.booking-status.is-error {
  color: var(--copper-dark);
}

.booking-status.is-success {
  color: var(--teal-dark);
}

@media (max-width: 900px) {
  .booking-app {
    grid-template-columns: 1fr;
  }

  .booking-slots {
    grid-template-columns: 1fr;
  }
}

/* ANWTC TRAINING BUILDER CSS START */
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.training-plan-jump { position: fixed; right: 1rem; bottom: 1rem; z-index: 40; display: inline-flex; gap: .35rem; align-items: center; padding: .65rem .85rem; border-radius: 999px; background: var(--color-primary, #173a3a); color: #fff; box-shadow: 0 16px 35px rgba(0,0,0,.18); font-weight: 800; text-decoration: none; }
.course-catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.training-course-card { display: flex; flex-direction: column; gap: .45rem; min-height: 100%; padding: 1rem; }
.training-course-card h3 { margin-bottom: 0; font-size: 1.02rem; line-height: 1.2; }
.training-course-card p { font-size: .9rem; line-height: 1.45; margin: 0; }
.training-course-card h4 { margin: .2rem 0 0; font-size: .82rem; }
.training-course-card ul { margin: 0 0 .25rem 1rem; padding: 0; font-size: .88rem; line-height: 1.45; }
.course-card-top { display: flex; justify-content: space-between; gap: .6rem; align-items: flex-start; }
.course-chip, .status-pill { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; padding: .3rem .55rem; background: rgba(191, 146, 65, .18); color: var(--color-primary, #173a3a); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.course-price { font-weight: 900; color: var(--color-accent, #9b5238); }
.course-audience, .course-format, .small-note, .muted { color: var(--color-muted, #6b6258); }
.training-plan-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr); gap: 1.5rem; align-items: start; }
.training-plan-card { position: sticky; top: 96px; border: 1px solid rgba(90, 76, 60, .22); border-top: 5px solid var(--color-gold, #bf9241); border-radius: 8px; background: var(--color-card, #fffaf0); padding: 1.25rem; box-shadow: 0 20px 45px rgba(0,0,0,.08); }
.training-plan-card-head, .selected-course-item, .estimate-action-row { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.selected-course-list { display: grid; gap: .65rem; margin: 1rem 0; }
.selected-course-item { border: 1px solid rgba(90, 76, 60, .18); border-radius: 8px; background: rgba(255,255,255,.62); padding: .75rem; }
.selected-course-item strong { display: block; }
.remove-course-btn { border: 0; background: transparent; color: var(--color-accent, #9b5238); font-weight: 800; cursor: pointer; }
.training-plan-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .55rem; margin: .75rem 0; }
.summary-stat { border-radius: 8px; background: rgba(23,58,58,.06); padding: .75rem; }
.summary-stat strong { display: block; font-size: 1.1rem; }
.estimate-builder fieldset { border: 1px solid rgba(90, 76, 60, .24); border-radius: 8px; padding: 1rem; margin: 0 0 1rem; background: rgba(255,255,255,.7); }
.estimate-builder legend { padding: 0 .4rem; font-weight: 900; color: var(--color-primary, #173a3a); }
.form-grid, .course-count-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
.estimate-builder label { display: grid; gap: .35rem; font-weight: 800; color: var(--color-primary, #173a3a); }
.estimate-builder input, .estimate-builder select, .estimate-builder textarea { width: 100%; border: 1px solid rgba(90,76,60,.32); border-radius: 8px; padding: .7rem .75rem; font: inherit; background: #fff; color: var(--color-ink, #162c2c); }
.full-width, .checkbox-line { grid-column: 1 / -1; }
.checkbox-line { display: flex !important; align-items: center; gap: .6rem; margin-top: .65rem; }
.checkbox-line input { width: auto; }
.estimate-print-area { margin-top: 1.5rem; border: 1px solid rgba(90,76,60,.24); border-top: 5px solid var(--color-gold, #bf9241); border-radius: 8px; background: #fff; padding: 1.25rem; box-shadow: 0 20px 45px rgba(0,0,0,.08); }
.estimate-header { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgba(90,76,60,.2); padding-bottom: 1rem; margin-bottom: 1rem; }
.estimate-summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin: 1rem 0; }
.estimate-box { border-radius: 8px; background: rgba(23,58,58,.06); padding: .8rem; }
.estimate-box strong { display: block; font-size: 1.2rem; }
.estimate-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.estimate-table th, .estimate-table td { border-bottom: 1px solid rgba(90,76,60,.18); padding: .65rem .4rem; text-align: left; vertical-align: top; }
.estimate-table th:last-child, .estimate-table td:last-child { text-align: right; }
.estimate-total { text-align: right; font-size: 1.25rem; font-weight: 900; }
.estimate-disclaimer { background: rgba(191,146,65,.16); border-radius: 8px; padding: 1rem; margin-top: 1rem; }
.rate-list { display: grid; gap: .65rem; padding-left: 1.1rem; }
.process-grid .card { min-height: 100%; }
.step-label { display: inline-flex; width: 2rem; height: 2rem; border-radius: 50%; align-items: center; justify-content: center; background: var(--color-primary, #173a3a); color: #fff; font-weight: 900; }
.final-cta .cta-panel { text-align: center; }
@media (max-width: 980px) { .course-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .training-plan-layout { grid-template-columns: 1fr; } .training-plan-card { position: static; } .estimate-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .course-catalog-grid, .form-grid, .course-count-grid, .estimate-summary-grid, .training-plan-summary { grid-template-columns: 1fr; } .training-plan-jump { left: 1rem; right: 1rem; justify-content: center; } .estimate-header, .selected-course-item, .estimate-action-row { align-items: flex-start; flex-direction: column; } .estimate-table { font-size: .9rem; } }
@media print { body * { visibility: hidden !important; } .estimate-print-area, .estimate-print-area * { visibility: visible !important; } .estimate-print-area { position: absolute; left: 0; top: 0; width: 100%; border: 0; box-shadow: none; } .site-header, .site-footer, .event-banner, .training-plan-jump, .estimate-action-row { display: none !important; } }
.travel-provided-options { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem; background: rgba(255,255,255,.65); margin-bottom: 1rem; }
.travel-provided-options .small-note { margin: 0 0 .5rem; font-weight: 800; color: var(--ink); }
.training-faq-accordion { max-width: 920px; margin: 0 auto; }
/* ANWTC TRAINING BUILDER CSS END */


/* ANWTC SERVICE BUILDER CSS START */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--slate);
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: 999px;
  padding: 0.42rem 0.58rem;
  cursor: pointer;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus,
.nav-dropdown-toggle.is-active {
  color: var(--teal);
  background: rgba(47, 104, 101, 0.12);
}
.nav-dropdown-toggle.is-active { box-shadow: inset 0 -2px 0 var(--copper); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .45rem);
  left: 0;
  min-width: 190px;
  display: none;
  padding: .45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu { display: grid; gap: .2rem; }
.nav-dropdown-menu a { border-radius: 6px; padding: .65rem .75rem; }
.service-workflow-section { background: var(--white); }
.service-process-grid .card,
.service-process-card {
  border-top: 5px solid var(--color-gold, #bf9241);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.solution-area-list { display: grid; gap: 1rem; }
.solution-area-card {
  border: 1px solid rgba(90, 76, 60, .22);
  border-top: 5px solid var(--color-gold, #bf9241);
  border-radius: 8px;
  background: var(--color-card, #fffaf0);
  box-shadow: 0 16px 35px rgba(0,0,0,.06);
  overflow: hidden;
}
.solution-area-card summary {
  display: grid;
  gap: .3rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}
.solution-area-card summary::-webkit-details-marker { display: none; }
.solution-area-card summary span {
  color: var(--color-primary, #173a3a);
  font-size: 1.1rem;
  font-weight: 900;
}
.solution-area-card summary small {
  color: var(--color-muted, #6b6258);
  font-size: .92rem;
  line-height: 1.4;
}
.solution-area-body {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: 1rem;
  padding: 0 1.15rem 1.15rem;
}
.solution-area-body.single-panel { grid-template-columns: 1fr; }
.problem-panel,
.deliverable-panel {
  border: 1px solid rgba(90, 76, 60, .18);
  border-radius: 8px;
  background: rgba(255,255,255,.65);
  padding: 1rem;
}
.problem-panel h3,
.deliverable-panel h3 { margin: 0 0 .65rem; }
.problem-panel ul { margin: 0 0 0 1rem; padding: 0; line-height: 1.55; }
.deliverable-panel-head {
  display: flex;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}
.deliverable-list { display: grid; gap: .6rem; }
.deliverable-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: .8rem;
  align-items: center;
  padding: .8rem;
  border: 1px solid rgba(90, 76, 60, .18);
  border-radius: 8px;
  background: #fff;
}
.deliverable-row strong { display: block; color: var(--color-primary, #173a3a); }
.deliverable-row span:not(.deliverable-price) { display: block; color: var(--color-muted, #6b6258); font-size: .9rem; margin-top: .2rem; }
.deliverable-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: .35rem .65rem;
  background: rgba(155, 82, 56, .13);
  color: var(--color-accent, #9b5238);
  font-size: .84rem;
  font-weight: 900;
  white-space: nowrap;
}
.solution-summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  border-top: 5px solid var(--color-gold, #bf9241);
}
.workforce-summary { grid-template-columns: minmax(0, 1fr) auto; }
.service-plan-jump { bottom: 1rem; }
.estimate-builder-form { border-top: 5px solid var(--color-gold, #bf9241); }
@media (max-width: 940px) {
  .nav-dropdown-menu { position: static; box-shadow: none; margin-top: .35rem; }
  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: grid; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.is-open:hover .nav-dropdown-menu { display: grid; }
  .nav-dropdown-toggle { text-align: left; width: 100%; padding: .65rem .75rem; }
}
@media (max-width: 900px) {
  .solution-area-body,
  .solution-summary-card,
  .workforce-summary { grid-template-columns: 1fr; }
  .deliverable-panel-head { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 680px) {
  .deliverable-row { grid-template-columns: 1fr; align-items: flex-start; }
  .deliverable-row .button { width: 100%; }
}
/* ANWTC SERVICE BUILDER CSS END */

.service-catalog-grid .button.ghost { white-space: nowrap; }
.service-quote-card { min-height: 100%; }
.service-quote-card .course-price { text-align: right; }
