/*!*****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs/index.js!./resources/web/css/styles.css ***!
  \*****************************************************************************************************************************/
@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f2eeeb;
  --dark: #3d3530;
  --mocha: #8c7b72;
  --muted: #c4b5ac;
  --terracotta: #a0836b;
  --sage: #6b8c7f;
  --navy: #2e4a5e;
  --white: #ffffff;
  --serif: 'DM Serif Display', serif;
  --sans: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(61, 53, 48, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--bg);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo em {
  color: var(--terracotta);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--bg);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #8a6c57 !important;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--muted);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(46, 74, 94, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(160, 131, 107, 0.35);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.08;
  color: var(--bg);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--mocha);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: #8a6c57;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid rgba(196, 181, 172, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  border-color: var(--muted);
  color: var(--bg);
}

/* ── ANIMATED COUNTER STRIP ── */
.loss-strip {
  background: rgba(46, 74, 94, 0.25);
  border: 1px solid rgba(46, 74, 94, 0.4);
  border-radius: 14px;
  padding: 1.5rem 2.5rem;
  margin: 3.5rem auto 0;
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.loss-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 0.6rem;
}

.loss-number {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--bg);
  line-height: 1;
}

.loss-number .currency {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--terracotta);
}

.loss-footnote {
  font-size: 0.78rem;
  color: var(--mocha);
  margin-top: 0.5rem;
}

.loss-footnote strong {
  color: var(--terracotta);
}

/* ── LOGOS STRIP ── */
.logos-strip {
  background: var(--bg);
  padding: 3.5rem 5%;
  text-align: center;
  border-bottom: 1px solid rgba(196, 181, 172, 0.4);
}

.logos-strip p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 2rem;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.logo-item {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  opacity: 0.7;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 6rem 5%;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: var(--dark);
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--mocha);
  max-width: 500px;
  line-height: 1.75;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--dark);
  color: var(--bg);
}

.how .section-title {
  color: var(--bg);
  max-width: 100%;
  text-align: center;
  margin: 0 auto 1rem;
}

.how .section-eyebrow {
  text-align: center;
}

.how .section-body {
  color: var(--mocha);
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 520px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  position: relative;
}

.step:first-child {
  border-radius: 14px 0 0 14px;
}

.step:last-child {
  border-radius: 0 14px 14px 0;
}

.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: rgba(196, 181, 172, 0.15);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--mocha);
  line-height: 1.65;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(160, 131, 107, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

/* ── FEATURES ── */
.features {
  background: var(--bg);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.features-inner.reverse {
  direction: rtl;
}

.features-inner.reverse > * {
  direction: ltr;
}

.feature-visual {
  background: var(--dark);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(107, 140, 127, 0.15) 0%, transparent 60%);
}

.fv-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 1.25rem;
}

/* mini card mockup */
.mock-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-card:last-child {
  margin-bottom: 0;
}

.mock-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bg);
}

.mock-price {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--bg);
}

.mock-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.mock-badge.ok {
  background: rgba(107, 140, 127, 0.25);
  color: #7fb89f;
}

.mock-badge.soon {
  background: rgba(212, 132, 42, 0.2);
  color: #d4842a;
}

.mock-badge.urgent {
  background: rgba(192, 57, 43, 0.2);
  color: #e07060;
}

.mock-total-bar {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.mock-total-label {
  font-size: 0.72rem;
  color: var(--mocha);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mock-total-val {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bg);
}

/* email mockup */
.mock-email {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.mock-email-header {
  background: rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1.2rem;
  font-size: 0.75rem;
  color: var(--mocha);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-email-header strong {
  color: var(--bg);
}

.mock-email-body {
  padding: 1.25rem 1.5rem;
}

.mock-email-body p {
  font-size: 0.82rem;
  color: var(--mocha);
  margin-bottom: 0.5rem;
}

.mock-email-body .highlight {
  color: var(--terracotta);
  font-weight: 600;
}

.mock-email-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 7px;
  margin-top: 0.75rem;
  text-decoration: none;
}

/* csv mockup */
.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.mock-table th {
  text-align: left;
  padding: 0.5rem 0.75rem;
  color: var(--mocha);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.68rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-table td {
  padding: 0.6rem 0.75rem;
  color: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-table tr:last-child td {
  border: none;
  font-weight: 600;
  color: var(--terracotta);
}

.features + .features {
  background: var(--white);
  padding-top: 0;
}

/* ── STATS ── */
.stats {
  background: var(--navy);
  padding: 5rem 5%;
  text-align: center;
}

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

.stat-item {
  padding: 1rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--bg);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(196, 181, 172, 0.7);
  letter-spacing: 0.04em;
}

/* ── PRICING ── */
.pricing {
  background: var(--bg);
  text-align: center;
}

.pricing .section-title {
  margin: 0 auto 1rem;
}

.pricing .section-body {
  margin: 0 auto 3.5rem;
}

.pricing-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 3rem;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 140, 127, 0.2) 0%, transparent 70%);
}

.price-tag {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-tag sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--terracotta);
}

.price-sub {
  font-size: 0.85rem;
  color: var(--mocha);
  margin-bottom: 2.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-features li:last-child {
  border: none;
}

.pricing-features li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--white);
}

.testimonials .section-title {
  max-width: 100%;
  text-align: center;
  margin: 0 auto 3.5rem;
}

.testimonials .section-eyebrow {
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testi-card {
  background: var(--bg);
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid rgba(196, 181, 172, 0.3);
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--serif);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bg);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.testi-role {
  font-size: 0.75rem;
  color: var(--mocha);
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--dark);
  padding: 7rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/*.final-cta::before {
    content: '';
    position: absolute;
    bottom: -80px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(107,140,127,.15) 0%, transparent 70%);
}*/
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--bg);
  margin-bottom: 1rem;
  position: relative;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--mocha);
  margin-bottom: 2.5rem;
}

.final-cta .btn-primary {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ── FOOTER ── */
footer {
  background: #2a2320;
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-logo em {
  color: var(--terracotta);
  font-style: normal;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(196, 181, 172, 0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

footer small {
  color: rgba(196, 181, 172, 0.35);
  font-size: 0.75rem;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .step:first-child {
    border-radius: 14px 14px 0 0;
  }
  .step:last-child {
    border-radius: 0 0 14px 14px;
  }
  .features-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .features-inner.reverse {
    direction: ltr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-mobile-btn {
    display: block;
  }
  section {
    padding: 4rem 5%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .loss-number {
    transition: none;
  }
}
