:root {
  --bg: #f4f6f8;
  --bg-elevated: #ffffff;
  --bg-subtle: #eef1f4;
  --text: #15202b;
  --muted: #5a6570;
  --border: #dde3ea;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-soft: #ccfbf1;
  --accent-border: #99f6e4;
  --warm: #c2410c;
  --warm-soft: #ffedd5;
  --shadow: 0 1px 2px rgba(21, 32, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(21, 32, 43, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1120px;
  --font: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 100% -20%, rgba(13, 148, 136, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 50% at -10% 100%, rgba(194, 65, 12, 0.06), transparent 45%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-hover);
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent-hover);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.15rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent-hover);
}

.header-cta {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

main {
  padding-bottom: 3.5rem;
}

.hero {
  padding: 2.75rem 0 2rem;
  text-align: center;
}

.hero.hero--left {
  text-align: left;
}

@media (min-width: 720px) {
  .hero.hero--left {
    max-width: 42rem;
  }
}

.eyebrow,
.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
}

.tag {
  letter-spacing: 0.03em;
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 600;
}

h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.lead {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero .lead {
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero--left .hero-actions {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.section {
  padding: 2.25rem 0;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-title {
  margin: 0 0 0.4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.card h3 {
  color: var(--text);
}

.card p,
.card .muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.outcomes .card h3 {
  color: var(--accent-hover);
}

.audience-card .label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm);
  margin-bottom: 0.35rem;
}

.split-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.split-panel h3 {
  margin-top: 0;
  font-size: 1rem;
  color: var(--accent-hover);
}

.split-panel > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.split-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.split-panel li {
  margin-bottom: 0.35rem;
}

.workflow-section {
  margin-bottom: 2.25rem;
}

.workflow-section:last-child {
  margin-bottom: 0;
}

.workflow-head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--accent-soft);
}

.workflow-head h2 {
  margin: 0;
  font-size: 1.2rem;
}

.workflow-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-block {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.feature-block h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.feature-block p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-block ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text);
}

.feature-block li {
  margin-bottom: 0.3rem;
}

.faq details {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
  list-style-position: outside;
}

.faq details p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.contact-block {
  max-width: 560px;
  margin: 0 auto;
}

.contact-layout .contact-block {
  margin: 0;
  max-width: none;
}

.contact-aside {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.contact-aside h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.contact-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row--hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.form-row .optional {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-actions {
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.form-status--success {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent-hover);
}

.form-status--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.proof {
  padding-bottom: 0.5rem;
}

.proof-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2rem;
}

.proof-logo {
  flex: 1 1 140px;
  max-width: 200px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.proof-logo svg {
  width: 100%;
  height: auto;
  max-height: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-card blockquote p {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text);
}

.testimonial-card--wide {
  grid-column: 1 / -1;
}

.testimonial-card footer {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.contact-block .email-value {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.35rem 0 0;
}

.contact-block .email-value a {
  text-decoration: none;
}

.contact-block .email-value a:hover {
  text-decoration: underline;
}

.field-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 1rem;
}

.field-label:first-of-type {
  margin-top: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.5rem 1.25rem;
  margin-top: 2rem;
}

.site-footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--accent-hover);
}

.cta-band {
  background: linear-gradient(135deg, var(--accent-soft), var(--warm-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.cta-band p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.btn-group--start {
  justify-content: flex-start;
}

.calendar-deco {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  max-width: 280px;
  margin: 1.5rem auto 0;
  opacity: 0.85;
}

.calendar-deco span {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--border);
  font-size: 0;
}

.calendar-deco span:nth-child(3),
.calendar-deco span:nth-child(9),
.calendar-deco span:nth-child(12) {
  background: var(--accent);
  opacity: 0.35;
}

.calendar-deco span:nth-child(6),
.calendar-deco span:nth-child(11) {
  background: var(--warm);
  opacity: 0.25;
}

@media (max-width: 720px) {
  .header-cta {
    width: 100%;
    text-align: center;
  }
}
