:root {
  --bg-dark: #020617;
  --bg-light: #f5f7fb;
  --brand-primary: #2563eb;
  --brand-secondary: #0f172a;
  --text-dark: #0f172a;
  --text-light: #94a3b8;
  --border-light: rgba(15, 23, 42, 0.1);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-dark);
}

h1, h2, h3, .eyebrow, .eyebrow-light {
  font-family: var(--font-display);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.btn.secondary {
  background: var(--brand-secondary);
  color: #fff;
}

.btn.secondary:hover {
  background: #1e2a3e;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--text-dark);
}

button:focus-visible,
.btn:focus-visible,
.icon-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding: 0.2rem 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 1.25rem;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 220px;
}

.brand img {
  height: 48px;
  transform: scale(2.4);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  flex: 1;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: #475569;
  font-weight: 500;
}

.nav-links a.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--brand-primary);
}

.nav-mobile-spacer {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #0f172a;
  display: block;
}

.mobile-nav {
  display: none;
}

main {
  background: #fff;
}

/* Section rhythm: light / dark / alternate backgrounds */
.section-bg-light {
  background: #fff;
}

.section-bg-dark {
  /* Applied on .download and .contact; their own backgrounds remain */
}

.section-bg-alt {
  background: linear-gradient(180deg, #fafbff 0%, #f1f5fb 50%, #fff 100%);
  position: relative;
}

.section-bg-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-heading.light {
  color: #e2e8f0;
}

.section-heading p {
  color: #64748b;
}

.section-heading.light p {
  color: rgba(226, 232, 240, 0.85);
}

.eyebrow,
.eyebrow-light {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
}

.eyebrow {
  color: var(--text-light);
}

.eyebrow-light {
  color: #94a3b8;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 5rem 1.25rem 4rem;
  background: linear-gradient(180deg, #fff 0%, #eff6ff 45%, #e2e8f0 100%);
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 40px;
  box-shadow: 0 35px 85px rgba(15, 23, 42, 0.1);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-slide h1,
.hero-slide h2.hero-slide-heading {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 1rem 0;
}

.hero-slide p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.hero-dots {
  display: flex;
  gap: 0.25rem;
  flex: 1;
}

.hero-dots button {
  flex: 1;
  height: 6px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--brand-primary);
}

.hero-arrows {
  display: flex;
  gap: 0.25rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.features.section-bg-light {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.feature-grid article {
  padding: 1.25rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
}

.feature-grid article.feature-hero {
  min-height: 0;
  padding: 1.35rem 1.5rem;
  border-width: 1.5px;
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.06);
}

.feature-grid article.feature-hero:hover {
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.feature-grid article.feature-hero .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 26px;
}

.feature-grid article.feature-hero .feature-icon svg {
  width: 52px;
  height: 52px;
}

.feature-grid h3 {
  margin: 0;
  color: var(--text-dark);
}

.feature-grid p {
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
  align-self: center;
}

.feature-icon svg {
  width: 46px;
  height: 46px;
}

.feature-icon.personality {
  background: linear-gradient(135deg, #2563eb, #a855f7);
}

.feature-icon.lead {
  background: linear-gradient(135deg, #f97316, #facc15);
}

.feature-icon.sentiment {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.feature-icon.customization {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.feature-icon.training {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.feature-icon.analytics {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.download {
  background: linear-gradient(135deg, #0f172a, #1d2a44);
  color: #e2e8f0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.download-grid article {
  position: relative;
  padding: 1rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  align-items: center;
}

.download-grid article .btn {
  margin-top: auto;
}

.download-logo {
  min-height: 80px;
  width: 100%;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-logo img {
  max-height: 100px;
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Pricing table block (Download section) */
.pricing-block {
  margin-top: 3rem;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-free-celebration {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #34d399;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.pricing-title {
  text-align: center;
  font-size: 1.5rem;
  color: #e2e8f0;
  margin: 0 0 1rem;
}

.pricing-trial-row th {
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.pricing-trial-spacer {
  background: rgba(255, 255, 255, 0.04);
}

.pricing-trial-cell {
  padding: 0.5rem 0.75rem !important;
  background: transparent;
  border: none;
  vertical-align: middle;
}

.pricing-trial-badge {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.pricing-table th {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-table thead tr:first-child th {
  border-bottom: none;
}

.pricing-table th:first-child {
  text-align: left;
  width: 40%;
}

.pricing-table td:first-child {
  text-align: left;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-col-feature {
  text-align: left;
  font-weight: 600;
  color: #94a3b8;
}

.pricing-plan-name {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.pricing-plan-free {
  color: #34d399;
  font-weight: 700;
}

.pricing-plan-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.pricing-period {
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
}

.pricing-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.pricing-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.pricing-feature-icon svg {
  width: 16px;
  height: 16px;
}

.pricing-help {
  margin-left: 0.25rem;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: transparent;
  color: #e2e8f0;
  font-size: 0.75rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.pricing-help:hover,
.pricing-help:focus-visible {
  background: rgba(148, 163, 184, 0.2);
  outline: none;
}

.pricing-help-tooltip {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  z-index: 1000;
  max-width: 360px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: #0f172a;
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.55;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.pricing-help:focus + .pricing-help-tooltip,
.pricing-help:hover + .pricing-help-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.pricing-yes {
  color: #34d399;
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-no {
  color: #64748b;
}

.about.section-bg-alt {
  background: linear-gradient(180deg, #fafbff 0%, #f1f5fb 50%, #fff 100%);
}

.about-card {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  padding: 3rem;
  border-radius: 40px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.about-card p {
  color: #475569;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about-stats div {
  flex: 1;
  min-width: 160px;
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.about-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-primary);
}

.about-stat-icon svg {
  width: 26px;
  height: 26px;
}

.about-stats div > span:not(.about-stat-icon) {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1;
}

.about-stats div p {
  margin: 0;
  line-height: 1.3;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #e2e8f0;
}

.contact-heading {
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
}

.contact-info p,
.contact-info li {
  color: #cbd5f5;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #e2e8f0;
  gap: 0.5rem;
}
.contact-form label.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.contact-form label.checkbox-field input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0;
  accent-color: #2563eb;
  flex-shrink: 0;
}

.contact-form label.checkbox-field .checkbox-label {
  line-height: 1.4;
  flex: 1;
}


.contact-form .field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  line-height: 1.3;
}

.contact-form .required-indicator {
  color: #f97316;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 1rem;
}

.contact-form small {
  color: #94a3b8;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-highlight {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.4);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.08);
}

.contact-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.contact-highlight-icon.pulse {
  background: linear-gradient(135deg, #f97316, #facc15);
}

.contact-highlight-icon.pulse::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.contact-highlight-icon.pulse::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.contact-highlight-icon.signal {
  background: linear-gradient(135deg, #38bdf8, #6366f1);
}

.contact-highlight-icon.signal::before,
.contact-highlight-icon.signal::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-highlight-icon.signal::before {
  left: 14px;
  height: 32px;
  box-shadow: 10px -6px 0 rgba(255, 255, 255, 0.4);
}

.contact-highlight-icon.signal::after {
  left: 32px;
  height: 22px;
  opacity: 0.6;
}

.contact-highlight-icon.shield {
  background: linear-gradient(140deg, #34d399, #10b981);
}

.contact-highlight-icon.shield::before {
  content: "";
  position: absolute;
  inset: 14px;
  background: rgba(255, 255, 255, 0.35);
  clip-path: polygon(50% 0%, 90% 20%, 80% 80%, 50% 100%, 20% 80%, 10% 20%);
}

.contact-highlight-icon.shield::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 24px;
  top: 16px;
  left: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
}

.contact-highlight-title {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.contact-highlight-copy {
  margin: 0.2rem 0 0;
  color: #cbd5f5;
  font-size: 0.9rem;
  line-height: 1.4;
}


.form-status {
  font-weight: 600;
  color: #e2e8f0;
}

.form-status:empty {
  display: none;
}

.form-status:not(:empty) {
  display: block;
  margin-top: 0.25rem;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #f87171;
}

.form-status.info {
  color: #fbbf24;
}

.testimonials {
  background: #fff;
}

.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial {
  display: none;
  border-radius: 35px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2.5rem;
  background: #f8fafc;
}

.testimonial.active {
  display: block;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), #6366f1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-metric {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.3;
}

.testimonial p {
  font-size: 1.15rem;
  color: #0f172a;
}

.testimonial h4 {
  margin-top: 1.5rem;
  color: #475569;
}

.testimonial-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.testimonial-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--brand-primary);
}

/* FAQ section */
.faq.section-bg-dark {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #e2e8f0;
}

.faq-heading {
  margin: 0;
  font-size: 1.5rem;
}

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--brand-primary);
}

.faq-question:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}

.faq-question-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: #64748b;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-question-icon svg {
  width: 14px;
  height: 14px;
}

.faq-item.open .faq-question-icon {
  transform: rotate(90deg);
  background: rgba(37, 99, 235, 0.2);
  color: var(--brand-primary);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0 1.25rem 1.1rem 2.15rem;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.faq-answer[hidden] {
  display: none;
}

.partners.section-bg-alt {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #f1f5fb 100%);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.partner-logos div {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logos img {
  width: 160px;
  height: 60px;
  object-fit: contain;
}

.partner-logos img.partner-logo--shopify {
  width: 192px;
  height: 72px;
}

.partner-logos img.partner-logo--amazon {
  width: 400px;
  height: 150px;
}

.partner-logos img.partner-logo--anthropic {
  width: 240px;
  height: 90px;
}



.site-footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 3rem 1.25rem;
}

.site-footer .footer-top > p {
  margin: 1rem 0 0;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.25rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-logo-wrap img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-top {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-copy {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100;
}

.modal.open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
}

.modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: min(90vw, 560px);
  border-radius: 35px;
  padding: 2.5rem;
  box-shadow: 0 40px 65px rgba(15, 23, 42, 0.2);
}

.modal-card .contact-form {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  color: #0f172a;
}

.modal-card .contact-form label {
  color: #0f172a;
}

.modal-card .contact-form input,
.modal-card .contact-form textarea {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.icon-button.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  width: 36px;
  height: 36px;
  background: rgba(148, 163, 184, 0.2);
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .nav-mobile-spacer {
    display: block;
    width: 44px;
    min-width: 44px;
    flex-shrink: 0;
  }
  .nav-inner .brand {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
  }
  .nav-inner .brand img {
    transform: scale(2.4);
    transform-origin: center center;
  }
  .nav-links,
  .site-header .btn.ghost,
  .site-header .btn.primary {
    display: none;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .mobile-nav.open {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    align-items: center;
    text-align: center;
  }
  .mobile-nav a,
  .mobile-nav button {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    text-align: center;
    background: transparent;
    border: none;
    width: 100%;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 6rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .section {
    padding: 3rem 1rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .contact-highlights {
    grid-template-columns: 1fr;
  }
  .about-card,
  .contact-form,
  .modal-card {
    padding: 1.5rem;
  }
}



