:root {
  --primary-zapfy: #E33814;
  --primary-zapfy-light: #ff5722;
  --primary-zapfy-dark: #d32f2f;
  --secondary-green: #10B981;
  --bg-body: #ffffff;
  --bg-section-alt: #f8f9fa;
  --bg-card: #ffffff;
  --accent: #E33814;
  --accent-soft: rgba(227, 56, 20, 0.15);
  --accent-strong: #d32f2f;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --text-strong: #1a1a1a;
  --border-subtle: #e1e5e9;
  --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease-out;
  --container-width: 1200px;
  --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  font-family: var(--font-family);
  background: var(--bg-body);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-strong);
}

.logo img {
  width: 32px;
  height: 32px;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-desktop a {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-bottom: 0.25rem;
  position: relative;
  font-weight: 500;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: var(--primary-zapfy);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a.active {
  color: var(--primary-zapfy);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
  background: white;
}

.nav-mobile a {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.hero-alt {
  padding-top: 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-strong);
  font-weight: 700;
}

.hero-subtitle {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.7;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-zapfy);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
}

.btn.full {
  width: 100%;
}

.btn.primary {
  background: var(--primary-zapfy);
  color: white;
  box-shadow: 0 4px 14px rgba(227, 56, 20, 0.3);
}

.btn.primary:hover {
  background: var(--primary-zapfy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 56, 20, 0.4);
}

.btn.secondary {
  background: white;
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn.secondary:hover {
  background: var(--bg-section-alt);
  border-color: var(--primary-zapfy);
  color: var(--primary-zapfy);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn.ghost:hover {
  background: var(--bg-section-alt);
  border-color: var(--primary-zapfy);
  color: var(--primary-zapfy);
}

.hero-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem;
  background: white;
  box-shadow: var(--shadow-soft);
}

.hero-card-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--text-strong);
  font-weight: 600;
}

.hero-card-header p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.metric-row:last-of-type {
  border-bottom: none;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.metric-value {
  font-weight: 700;
  color: var(--primary-zapfy);
  font-size: 1.1rem;
}

.hero-card-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.metric-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-section-alt);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.metric-card:hover {
  background: rgba(248, 249, 250, 0.8);
  transform: translateX(4px);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.25rem;
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-content .metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1;
}

.metric-content .metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--bg-section-alt);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  color: var(--text-strong);
  font-weight: 700;
}

.section-subtitle {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.7;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  background: white;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.card .card-list { flex: 1; }

.card .card-footer { margin-top: auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.badge.enterprise { background: #fff5f2; color: var(--primary-zapfy); border: 1px solid var(--primary-zapfy); }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--text-strong);
  font-weight: 600;
}

.card p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.card-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-zapfy);
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--primary-zapfy);
  font-weight: 600;
}

.card-link:hover {
  text-decoration: underline;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.comparison-column {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  background: white;
}

.comparison-column h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.comparison-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-column li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.comparison-column li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.comparison-column.highlight {
  border-color: var(--primary-zapfy);
  border-width: 2px;
  background: #fff5f2;
}

.comparison-column.highlight h3 {
  color: var(--primary-zapfy);
}

.comparison-column.highlight li::before {
  content: "✓";
  color: var(--primary-zapfy);
  font-weight: 700;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  border: 1px solid var(--border-subtle);
  background: white;
  color: var(--text-main);
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 1rem;
}

.bullet-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-main);
  line-height: 1.6;
}

.bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-zapfy);
  font-weight: 700;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-subtle);
  background: white;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.cta-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-strong);
  min-height: 2.5em;
}

.cta-card p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.cta-card .btn {
  margin-top: auto;
}

.pricing-card {
  position: relative;
}

.pricing-card.highlight {
  border-color: var(--primary-zapfy);
  border-width: 2px;
  background: #fff5f2;
  box-shadow: 0 10px 30px rgba(227, 56, 20, 0.15);
}

.price {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-zapfy);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-note {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.addons {
  margin-top: 3rem;
}

.addons h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

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

.addon {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  background: white;
}

.addon h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-strong);
}

.addon p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.addon strong {
  color: var(--primary-zapfy);
  font-weight: 600;
}

.demo-message {
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  padding: 0.75rem;
  background: var(--bg-section-alt);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary-zapfy);
}

.demo-message strong {
  color: var(--primary-zapfy);
  font-weight: 600;
}

.ordered-list {
  margin: 1rem 0 0;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: var(--text-main);
}

.ordered-list li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.site-footer {
  width: 100%;
  background: linear-gradient(to right, rgb(17, 24, 39), rgb(0, 0, 0), rgb(17, 24, 39));
  border-top: 1px solid rgba(31, 41, 55, 0.3);
  margin-top: 4rem;
  padding: 3rem 0;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  text-align: left;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.footer-brand-header img {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}

.footer-brand-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, rgb(249, 115, 22), rgb(220, 38, 38));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand-subtitle {
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
  color: rgb(156, 163, 175);
}

.footer-text {
  color: rgb(209, 213, 219);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 24rem;
  font-size: 0.95rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(to right, rgb(249, 115, 22), rgb(220, 38, 38));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 1rem 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section a {
  color: rgb(156, 163, 175);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}

.footer-section a:hover {
  color: rgb(249, 115, 22);
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.5);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgb(107, 114, 128);
  font-size: 0.875rem;
}

.footer-copyright-brand {
  font-weight: 600;
  background: linear-gradient(to right, rgb(249, 115, 22), rgb(220, 38, 38));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-label {
  color: rgb(107, 114, 128);
  font-size: 0.875rem;
}

.footer-social a {
  color: rgb(107, 114, 128);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: rgb(249, 115, 22);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  display: block;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero-card {
    order: -1;
  }

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

  .card-grid.three,
  .card-grid.two,
  .cta-grid,
  .addon-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .footer-links-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }
}
