

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

body, html {
  overflow-x: hidden;
}

:root {
  
  --c-bg: #f8f9fa;
  --c-fg: #1a2332;
  --c-fg-secondary: #4a5f7f;
  --c-muted: #d4dce8;
  --c-accent: #2563eb;
  --c-accent-dark: #1e40af;
  --c-danger: #dc2626;
  --c-success: #059669;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;

  --bp-mobile: 640px;
  --bp-tablet: 1024px;
}

html {
  background-color: var(--c-bg);
  color: var(--c-fg);
}

body {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  color: var(--c-fg);
  background-color: var(--c-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--c-fg);
  margin-bottom: var(--space-4);
  text-balance;
}

h1 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
}

h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
}

h3 {
  font-size: clamp(18px, 2.2vw, 28px);
}

p {
  margin-bottom: var(--space-4);
  text-pretty;
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--c-accent-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.header {
  background-color: var(--c-fg);
  color: var(--c-bg);
  padding: var(--space-4) var(--space-6);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(232, 240, 254, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  color: var(--c-accent);
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--c-bg);
  letter-spacing: -0.5px;
}

.section {
  padding: var(--space-20) var(--space-6);
  background-color: var(--c-bg);
}

.section-center {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.section:nth-child(even) {
  background-color: #ffffff;
}

.hero {
  background-color: var(--c-fg);
  color: var(--c-bg);
  padding: var(--space-20) var(--space-6);
  min-height: auto;
}

.hero-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: left;
}

.hero h1 {
  color: var(--c-bg);
  margin-bottom: var(--space-6);
}

.hero-lead {
  font-size: clamp(16px, 1.8vw, 18px);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  color: rgba(232, 240, 254, 0.9);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-visual {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-illustration {
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: block;
}

.cta-button {
  background-color: var(--c-accent);
  color: #ffffff;
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  outline: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover {
  background-color: var(--c-accent-dark);
  text-decoration: none;
}

.cta-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.cta-button:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .cta-button {
    transition: none;
  }
}

.section-intro h2 {
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-intro .section-lead {
  text-align: center;
  margin-inline: auto;
  max-width: 600px;
}

.section-lead {
  text-align: center;
  margin-inline: auto;
  max-width: 600px;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--c-fg-secondary);
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: calc(var(--bp-mobile) + 1px)) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--space-8);
  border: 1px solid var(--c-muted);
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  text-align: center;
}

.section:nth-child(even) .feature-card {
  background-color: var(--c-bg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  display: block;
  color: var(--c-accent);
}

.feature-card h3 {
  margin-bottom: var(--space-3);
  font-size: clamp(16px, 1.8vw, 20px);
}

.feature-card p {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--c-fg-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.workflow-steps {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .workflow-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.workflow-step {
  text-align: center;
  padding: var(--space-6);
}

.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-accent);
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
}

.workflow-step h3 {
  margin-bottom: var(--space-3);
}

.workflow-step p {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--c-fg-secondary);
  margin-bottom: 0;
}

.included-split {
  display: grid;
  gap: var(--space-12);
  margin-top: var(--space-12);
  align-items: center;
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .included-split {
    grid-template-columns: 1fr 1fr;
  }
}

.included-list ul {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding-left: var(--space-8);
  margin-bottom: var(--space-3);
  position: relative;
  color: var(--c-fg-secondary);
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-success);
  font-weight: bold;
}

.included-visual {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.included-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.included-illustration {
  width: 100%;
  height: 100%;
  max-width: 300px;
  display: block;
  color: var(--c-fg);
}

.section-products h2 {
  text-align: center;
}

.products-grid {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  border: 1px solid var(--c-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}

.section:nth-child(even) .product-card {
  background-color: var(--c-bg);
}

.product-card-featured {
  border-color: var(--c-accent);
  border-width: 2px;
  transform: scale(1.02);
}

.badge {
  display: inline-block;
  background-color: var(--c-accent);
  color: #ffffff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card h3 {
  margin-bottom: var(--space-3);
  font-size: clamp(18px, 1.8vw, 22px);
}

.product-card p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--c-fg-secondary);
  margin-bottom: var(--space-4);
  flex-grow: 0;
  line-height: 1.6;
}

.product-subtext {
  font-size: 13px;
  color: var(--c-fg-secondary);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.product-price {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: var(--space-3);
}

.price-period {
  font-size: 14px;
  color: var(--c-fg-secondary);
  font-weight: 400;
  margin-left: var(--space-2);
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-6);
  border-top: 1px solid var(--c-muted);
  border-bottom: 1px solid var(--c-muted);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  flex-grow: 1;
}

.product-features li {
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  position: relative;
  color: var(--c-fg-secondary);
  font-size: 14px;
}

.product-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: bold;
}

.product-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-link {
  display: block;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius-md);
  background-color: transparent;
  color: var(--c-accent);
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.product-link:hover {
  background-color: var(--c-accent);
  color: #ffffff;
  text-decoration: none;
}

.product-link-primary {
  background-color: var(--c-accent);
  color: #ffffff;
}

.product-link-primary:hover {
  background-color: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
}

.section-metrics {
  background: linear-gradient(135deg, var(--c-fg) 0%, #2d3a4f 100%);
  color: #ffffff;
}

.section-metrics h2 {
  color: #ffffff;
  text-align: center;
}

.metrics-grid {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: calc(var(--bp-mobile) + 1px)) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-item {
  text-align: center;
  padding: var(--space-6);
}

.metric-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--c-accent);
  display: block;
  margin-bottom: var(--space-2);
}

.metric-item p {
  font-size: 14px;
  color: rgba(232, 240, 254, 0.9);
  margin-bottom: 0;
}

.testimonials-grid {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  border: 1px solid var(--c-muted);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background-color: #ffffff;
}

.section:nth-child(even) .testimonial-card {
  background-color: var(--c-bg);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-fg-secondary);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-attribution strong {
  display: block;
  color: var(--c-fg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.testimonial-attribution span {
  display: block;
  font-size: 13px;
  color: var(--c-fg-secondary);
}

.faq-list {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.faq-item {
  padding: var(--space-6);
  border-left: 3px solid var(--c-accent);
  background-color: #ffffff;
  border-radius: var(--radius-md);
}

.section:nth-child(even) .faq-item {
  background-color: var(--c-bg);
}

.faq-item h3 {
  margin-bottom: var(--space-3);
  font-size: clamp(16px, 1.8vw, 18px);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--c-fg-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.section-contact h2 {
  text-align: center;
}

.contact-methods {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  text-align: center;
  padding: var(--space-6);
}

.contact-card h3 {
  margin-bottom: var(--space-3);
}

.contact-link {
  font-weight: 600;
  color: var(--c-accent);
}

.contact-detail {
  font-size: 13px;
  color: var(--c-fg-secondary);
  margin-bottom: 0;
  margin-top: var(--space-2);
}

.footer {
  background-color: var(--c-fg);
  color: var(--c-bg);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-content {
  display: grid;
  gap: var(--space-12);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: calc(var(--bp-tablet) + 1px)) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: var(--space-4);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  margin-bottom: var(--space-6);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(232, 240, 254, 0.8);
  margin-bottom: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: rgba(232, 240, 254, 0.9);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--c-accent);
}

.footer-section p {
  font-size: 14px;
  color: rgba(232, 240, 254, 0.9);
  margin-bottom: var(--space-2);
}

.footer-section a {
  color: rgba(232, 240, 254, 0.9);
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 240, 254, 0.1);
  padding-top: var(--space-6);
  text-align: center;
  color: rgba(232, 240, 254, 0.7);
  font-size: 13px;
}

@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    padding: var(--space-12) var(--space-6);
  }
  
  .section {
    padding: var(--space-12) var(--space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

.header {
  z-index: 100;
}

#cookie-banner {
  z-index: 1000;
}

.section { color: #111111 !important; }
.section:nth-child(even) { color: #111111 !important; }
.feature-card { color: #111111 !important; }
.section:nth-child(even) .feature-card { color: #111111 !important; }
.product-card { color: #111111 !important; }
.section:nth-child(even) .product-card { color: #111111 !important; }
.testimonial-card { color: #111111 !important; }
.section:nth-child(even) .testimonial-card { color: #111111 !important; }
.faq-item { color: #111111 !important; }
.section:nth-child(even) .faq-item { color: #111111 !important; }

.included-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* wh-contrast-fix */
/* Auto-injected: text color did not meet 4.5:1 against declared background. */
.section { color: #111111 !important; }
.section:nth-child(even) { color: #111111 !important; }
.feature-card { color: #111111 !important; }
.section:nth-child(even) .feature-card { color: #111111 !important; }
.product-card { color: #111111 !important; }
.section:nth-child(even) .product-card { color: #111111 !important; }
.testimonial-card { color: #111111 !important; }
.section:nth-child(even) .testimonial-card { color: #111111 !important; }
.faq-item { color: #111111 !important; }
.section:nth-child(even) .faq-item { color: #111111 !important; }

/* wh-img-fill */
.included-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
