:root {
  --color-bg: #f5f5f5;
  --color-bg-light: #f4e7d4;
  --color-primary: #1f3447;
  --color-secondary: #1a9c8c;
  --color-accent: #f2a13a;
  --color-text: #222222;
  --color-muted: #7a7a7a;
  --color-white: #ffffff;

  --radius-small: 0.5rem;
  --radius: 1.25rem;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);

  --font-heading: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1120px;
}

/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fafafa;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-accent {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
}

.section-accent .card.translucent {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.bg-light {
  background: #f7f7f7;
}

h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  color: inherit;
}

h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.3rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 100px;
  height: 100px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.logo-sub {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Navigation */
.main-nav {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-primary);
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  padding: 10rem 0;
  background: linear-gradient(to right, #ffffff 30%, transparent 60%),
              url('assets/hero-bg.png') no-repeat right -150px bottom / contain;
}




.hero-landing,
.hero-sales {
  padding-top: 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.hero-text {
  max-width: 34rem;
  font-size: 1.02rem;
  color: var(--color-muted);
}

.hero-actions {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.hero-highlights li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
}

.hero-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.hero-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30, 142, 134, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30, 142, 134, 0.45);
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(31, 52, 71, 0.2);
  box-shadow: none;
}

.btn-outline:hover {
  background: #f1f1f1;
  box-shadow: none;
}

.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Cards / grids */
.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.profile-card {
  background: linear-gradient(135deg, #f4e7d4, #ffffff);
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  max-width: 34rem;
}

/* Icon list */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-weight: 700;
}

/* Section extras */
.section-highlight {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-accent);
}

.section-footnote {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: #ffffff;
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Pricing */
.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  text-align: left;
}

.pricing-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.pricing-card-featured {
  border: 2px solid var(--color-secondary);
  transform: translateY(-4px);
}

/* FAQ */
.faq details {
  margin-bottom: 0.7rem;
  border-radius: var(--radius-small);
  background: #ffffff;
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* Contact form */
.contact-form {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.55rem 0.65rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(26, 156, 140, 0.1);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.6rem;
}

/* Step list (sales page) */
.step-list {
  margin: 0;
  padding-left: 1.1rem;
}

/* Footer */
.site-footer {
  background: #121820;
  color: #d9dde3;
  padding: 1.8rem 0;
  margin-top: 2rem;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links a {
  color: #d9dde3;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.seal {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: rgba(244, 231, 212, 0.06);
  border: 1px solid rgba(230, 230, 230, 0.15);
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Utility */
.center {
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 0.55rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 0;
    top: 120%;
    background: #ffffff;
    padding: 0.8rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  }

  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.2rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .card,
  .contact-form {
    padding: 1.4rem;
  }
}
