/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Avenir', 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #2f2e2e;
  line-height: 1.6;
  background: #fff;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header / Nav === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #bf4778;
  letter-spacing: 0.5px;
}

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

.logo span {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 300;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2f2e2e;
  margin: 5px 0;
  transition: transform 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  color: #324158;
  transition: color 0.2s;
  font-weight: 400;
}

.nav-links a:hover {
  color: #bf4778;
}

/* === Hero === */
.hero {
  text-align: center;
  padding: 60px 24px 40px;
}

.hero-image {
  max-width: 860px;
  margin: 0 auto 24px;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.btn-demo {
  display: inline-block;
  background: #bf4778;
  color: #fff;
  padding: 12px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-demo:hover {
  background: #a83c68;
}

/* === Section helpers === */
.section {
  padding: 60px 24px;
}

.section--gray {
  background: #f7f7f7;
}

.section--dark {
  background: #324158;
  color: #fff;
}

.section-title {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #bf4778;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 24px;
}

.section-title--white {
  color: #fff;
}

/* === Value Proposition === */
.value-prop {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.value-prop h2 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #2f2e2e;
}

.value-prop p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* === Platform / Partner Two-Column === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.two-col h3 {
  color: #bf4778;
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.two-col ul {
  list-style: disc;
  padding-left: 20px;
}

.two-col li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* === Feature Showcase (alternating) === */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 0;
}

.feature-row + .feature-row {
  border-top: 1px solid #eee;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2f2e2e;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.feature-text p + p {
  margin-top: 12px;
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f2e2e;
  margin-top: 24px;
  margin-bottom: 8px;
}

.feature-img {
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* === Benefit Cards === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-card img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2f2e2e;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* === Departments & Industries === */
.dept-section {
  background: #f7f7f7;
}

.dept-intro {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.dept-grid h4 {
  grid-column: 1 / -1;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 4px;
  color: #2f2e2e;
}

.dept-grid span {
  font-size: 0.92rem;
  color: #555;
  padding: 4px 0;
  border-left: 2px solid #bf4778;
  padding-left: 12px;
}

/* === Free Trial CTA === */
.trial-section {
  text-align: center;
  padding: 60px 24px;
}

.trial-section h2 {
  color: #bf4778;
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.trial-section p {
  color: #999;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === Contact === */
.contact-section {
  background: #324158;
  color: #fff;
  text-align: center;
  padding: 60px 24px;
}

.contact-section h2 {
  color: #bf4778;
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-section p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.contact-section .location {
  color: #fff;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-section a {
  color: #bf4778;
  text-decoration: underline;
}

/* === Clients === */
.clients-section {
  text-align: center;
  padding: 60px 24px;
}

.clients-section h2 {
  color: #bf4778;
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.clients-section img {
  max-width: 200px;
  margin: 0 auto;
}

/* === Footer === */
.site-footer {
  background: #f7f7f7;
  text-align: center;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: #999;
}

.site-footer a {
  color: #bf4778;
  margin: 0 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* === Legal Pages === */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.legal-page h1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2f2e2e;
}

.legal-page .updated {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 28px;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
  color: #2f2e2e;
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 6px;
  color: #2f2e2e;
}

.legal-page p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row--reverse {
    direction: ltr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .dept-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dept-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.4rem;
  }
}
