:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-alt: #f1ece3;
  --text: #1f2937;
  --muted: #5b6472;
  --border: #e3ddcf;
  --primary: #8a2d2d;
  --primary-dark: #6e2121;
  --secondary: #274c77;
  --shadow: 0 8px 20px rgba(31, 41, 55, 0.05);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1160px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link,
.sr-only,
.hidden-field {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 247, 0.97);
  border-bottom: 1px solid rgba(227, 221, 207, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.35rem;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  background: rgba(138, 45, 45, 0.08);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-home {
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.hero-panel h2,
.pricing-card h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  max-width: 12ch;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 1.15rem 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(138, 45, 45, 0.12);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-alt {
  background: rgba(39, 76, 119, 0.1);
  color: var(--secondary);
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover,
.button:focus-visible {
}

.button-primary {
  background: var(--primary);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface);
}

.button-chip {
  min-height: 42px;
  background: var(--surface);
  border-color: var(--border);
  color: var(--muted);
}

.button-chip.is-selected {
  background: rgba(138, 45, 45, 0.1);
  border-color: rgba(138, 45, 45, 0.22);
  color: var(--primary);
}

.hero-points,
.feature-list,
.footer-links,
.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-points li,
.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.hero-points li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--primary);
  transform: translateY(-50%);
}

.hero-panel,
.info-card,
.step-card,
.pricing-card,
.comparison-card,
.faq-item,
.sidebar-card,
.contact-detail-card,
.card-viewer,
.cta-panel {
  background: var(--surface);
  border: 1px solid rgba(227, 221, 207, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel,
.pricing-card,
.comparison-card,
.sidebar-card {
  padding: 1.6rem;
}

.panel-label {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel p,
.section-heading p,
.info-card p,
.step-card p,
.pricing-card p,
.comparison-card p,
.faq-item p,
.sidebar-card p,
.contact-detail-card,
.viewer-note,
.form-note,
.form-status,
.small-note {
  color: var(--muted);
}

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

.stat-item {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.stat-item span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.section {
  padding: 2rem 0 4.5rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.35);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.section-heading.left-aligned {
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.card-viewer {
  padding: 1.35rem;
}

.card-viewer-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.card-display {
  margin: 0;
}

.card-display-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(227, 221, 207, 0.95);
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
}

.card-zoom-button {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 1;
  min-height: 48px;
  padding: 0.7rem 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: rgba(138, 45, 45, 0.96);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(138, 45, 45, 0.28);
}

.card-zoom-button:hover,
.card-zoom-button:focus-visible {
  background: rgba(110, 33, 33, 0.98);
  border-color: #ffffff;
}

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

.card-display figcaption {
  margin-top: 0.8rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.viewer-note {
  margin: 1.1rem 0 0;
  text-align: center;
}

.zoom-modal[hidden] {
  display: none;
}

.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.zoom-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
}

.zoom-modal-content {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-height: calc(100vh - 2rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(227, 221, 207, 0.9);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
}

.zoom-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(227, 221, 207, 0.9);
}

.zoom-modal-title {
  margin: 0;
  font-weight: 800;
  color: var(--text);
}

.zoom-modal-close {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
}

.zoom-modal-body {
  overflow: auto;
  background: #f8f8f8;
}

.zoom-modal-body img {
  display: block;
  width: 100%;
  height: auto;
}

.offers-grid,
.info-grid,
.benefits-grid,
.steps-grid,
.faq-list,
.footer-grid,
.contact-grid,
.pricing-layout {
  display: grid;
  gap: 1.25rem;
}

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

.offer-card {
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(227, 221, 207, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.offer-meta {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(39, 76, 119, 0.09);
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 700;
}

.offer-card h3,
.info-card h3,
.step-card h3,
.comparison-card h3,
.faq-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.offer-business-label,
.offer-title-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-business-label {
  color: var(--secondary);
}

.offer-title-label {
  margin-top: 1rem;
  color: var(--primary);
}

.offer-title {
  margin: 0.4rem 0 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--primary);
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(138, 45, 45, 0.08);
}

.offer-card p,
.offer-card li {
  color: var(--muted);
}

.offer-details {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.offer-details li + li {
  margin-top: 0.35rem;
}

.offer-card .offer-business {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.offer-card .offer-cta {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--primary);
}

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

.info-card,
.step-card,
.faq-item {
  padding: 1.45rem;
}

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

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

.step-number {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(138, 45, 45, 0.12);
  color: var(--primary);
  font-weight: 800;
}

.pricing-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

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

.newsletter-section .section-heading {
  max-width: 760px;
}

.newsletter-embed-wrap {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(227, 221, 207, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
}

.newsletter-embed-wrap .sib-form {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cta-section {
  padding-bottom: 5rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #fff;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.contact-form-wrapper {
  padding: 1.65rem;
  background: var(--surface);
  border: 1px solid rgba(227, 221, 207, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 0.7rem;
}

.contact-detail-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.8rem;
}

.contact-detail-card {
  display: block;
  padding: 1.1rem 1.2rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(138, 45, 45, 0.45);
  box-shadow: 0 0 0 4px rgba(138, 45, 45, 0.08);
}

.form-note {
  margin: 0;
  align-self: center;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 600;
  border-radius: 16px;
  transition: all var(--transition);
}

.form-status.is-success {
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  color: #17643a;
  background: rgba(23, 100, 58, 0.1);
  border: 1px solid rgba(23, 100, 58, 0.24);
}

.form-status.is-error {
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  color: #9a1f1f;
  background: rgba(154, 31, 31, 0.08);
  border: 1px solid rgba(154, 31, 31, 0.18);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(227, 221, 207, 0.8);
  background: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
}

.small-note {
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-layout,
  .contact-grid,
  .info-grid,
  .benefits-grid,
  .steps-grid,
  .offers-grid,
  .faq-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .pricing-layout,
  .hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0.625rem;
    left: 0.625rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
  }

  .section {
    padding: 1.5rem 0 3rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .section-heading h2,
  .cta-panel h2,
  .hero-panel h2,
  .pricing-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .stats-panel,
  .info-grid,
  .benefits-grid,
  .steps-grid,
  .offers-grid,
  .faq-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card-viewer,
  .info-card,
  .step-card,
  .faq-item,
  .offer-card,
  .contact-form-wrapper,
  .hero-panel,
  .pricing-card,
  .comparison-card,
  .sidebar-card,
  .cta-panel,
  .newsletter-embed-wrap {
    padding: 1.1rem;
    border-radius: 18px;
  }

  .card-viewer-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .card-gallery {
    grid-template-columns: 1fr;
  }

  .card-zoom-button,
  .zoom-modal-close {
    width: 100%;
    justify-content: center;
  }

  .zoom-modal {
    padding: 0.75rem;
  }

  .zoom-modal-content {
    max-height: calc(100vh - 1.5rem);
  }

  .zoom-modal-header {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-card .offer-business {
    font-size: 1.2rem;
  }

  .offer-title {
    font-size: 1.25rem;
    padding: 0.65rem 0.75rem;
  }

  .hero-actions,
  .cta-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .contact-detail-card {
    padding: 1rem;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 0.94rem;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    gap: 0.5rem;
  }

  .badge {
    width: 100%;
    justify-content: center;
  }

  .offer-meta {
    margin-bottom: 0.65rem;
  }

  .offer-details {
    padding-left: 1rem;
  }

  .form-field input,
  .form-field textarea {
    padding: 0.85rem 0.9rem;
  }
}

/* Made with Bob */
