:root {
  --color-honey: #f3b25e;
  --color-sun: #fff3d9;
  --color-ink: #2c2a29;
  --color-cream: #fff8ec;
  --color-leaf: #3e7e62;
  --color-berry: #c64a68;
  --font-heading: "DM Sans", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --radius-pill: 999px;
  --radius-card: 12px;
  --shadow-soft: 0 12px 32px rgba(44, 42, 41, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 236, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 42, 41, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  padding-left: 0.25rem;
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  color: rgba(44, 42, 41, 0.7);
}

.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: var(--color-honey);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.cta-button {
  background: var(--color-honey);
  color: var(--color-ink);
  box-shadow: 0 8px 18px rgba(243, 178, 94, 0.25);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #f7c17e;
  box-shadow: 0 12px 26px rgba(243, 178, 94, 0.35);
}

.ghost-button {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid rgba(44, 42, 41, 0.2);
}

.ghost-button:hover,
.ghost-button:focus-visible {
  border-color: rgba(44, 42, 41, 0.45);
  color: var(--color-ink);
}

.hero {
  background: radial-gradient(circle at top right, rgba(243, 178, 94, 0.25), transparent 55%),
    var(--color-sun);
  padding: 7rem 0 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 3rem;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(44, 42, 41, 0.65);
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.1rem;
  margin: 0 0 2rem;
  color: rgba(44, 42, 41, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  color: rgba(44, 42, 41, 0.75);
  font-weight: 500;
}

.hero-highlights li::before {
  content: "✶";
  color: var(--color-honey);
  margin-right: 0.6rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(320px, 90%);
  background: var(--color-ink);
  color: var(--color-cream);
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-leaf);
  box-shadow: 0 0 10px rgba(62, 126, 98, 0.7);
}

.phone-dialog {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.phone-dialog p {
  margin: 0;
  font-size: 0.95rem;
}

.phone-footer {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(255, 243, 217, 0.7) 0%, rgba(255, 248, 236, 0.9) 100%);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 1rem;
}

.section-lead {
  color: rgba(44, 42, 41, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.scenario-card,
.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 42, 41, 0.05);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.scenario-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(44, 42, 41, 0.12);
}

.scenario-card h3,
.feature-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.scenario-card p,
.feature-card p {
  margin: 0;
  color: rgba(44, 42, 41, 0.75);
}

.feature-card {
  background: #fff;
}

.feature-card h3 {
  display: block;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
}

.steps li {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 42, 41, 0.05);
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: "Step " counter(step);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: rgba(44, 42, 41, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
}

.steps p {
  margin: 0;
  color: rgba(44, 42, 41, 0.75);
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 1.5rem;
  background: rgba(243, 178, 94, 0.18);
  color: var(--color-ink);
  border-bottom: 1px solid rgba(44, 42, 41, 0.08);
}

.compare-table tbody td {
  padding: 1.35rem 1.5rem;
  color: rgba(44, 42, 41, 0.82);
  border-top: 1px solid rgba(44, 42, 41, 0.06);
}

.compare-table tbody tr:nth-child(odd) td {
  background: rgba(255, 243, 217, 0.35);
}

.compare-table tbody tr:nth-child(even) td {
  background: #fff;
}

.compare-table td + td,
.compare-table th + th {
  border-left: 1px solid rgba(44, 42, 41, 0.06);
}

.compare-table .highlight {
  background: rgba(243, 178, 94, 0.28);
  color: var(--color-ink);
  font-weight: 600;
}

.industries-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  padding: 0;
  list-style: none;
  justify-items: stretch;
}

.industries-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: rgba(44, 42, 41, 0.8);
  box-shadow: var(--shadow-soft);
  text-align: center;
  min-height: 54px;
}

.industries-list li span {
  display: block;
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 42, 41, 0.05);
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: rgba(44, 42, 41, 0.75);
}

.section.cta {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 4rem 0;
}

.section.cta .section-lead {
  margin-bottom: 0;
  color: rgba(255, 248, 236, 0.8);
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section.cta .cta-container > div {
  flex: 1 1 360px;
}

.section.cta .cta-button {
  flex-shrink: 0;
  align-self: center;
  background: var(--color-honey);
  color: var(--color-ink);
  box-shadow: 0 12px 28px rgba(243, 178, 94, 0.3);
}

.site-footer {
  background: rgba(44, 42, 41, 0.9);
  color: var(--color-cream);
  padding: 2.5rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand .brand-text {
  color: var(--color-cream);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 248, 236, 0.7);
}

@media (max-width: 840px) {
  .nav-links {
    display: none;
  }

  .site-header {
    padding-inline: 0.5rem;
  }

  .hero {
    padding-top: 6rem;
  }
}

@media (max-width: 700px) {
  .section.cta .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .section.cta .cta-button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .compare-table {
    font-size: 0.95rem;
  }

  .compare-table tbody td,
  .compare-table thead th {
    padding: 1rem 1.2rem;
  }

  .industries-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
