@font-face {
  font-family: 'Saans';
  src: url('assets/fonts/SaansTRIAL-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Saans';
  src: url('assets/fonts/SaansTRIAL-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Saans';
  src: url('assets/fonts/SaansTRIAL-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Saans';
  src: url('assets/fonts/SaansTRIAL-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Saans';
  src: url('assets/fonts/SaansTRIAL-Heavy.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Saans';
  src: url('assets/fonts/SaansTRIAL-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: 'Saans', sans-serif;
  --font-size-base: 1.125em;
  /* 18px */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-heavy: 800;
  --color-primary: #f97316;
  --color-secondary: #6b7280;
  --color-bg: #ffffff;
  --color-bg-light: #f7f7f7;
  --color-text: #1a1a1a;
  --color-accent: #e5e7eb;
  --color-footer-bg: #111827;
  --color-sand: #f2ece2;

  --hero-bg: url('assets/hero.webp');
  /* update path/filename */
  --hero-bg2: url('assets/hero2.webp');
  /* update path/filename */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  position: relative;
}

img {
  display: block;
  object-fit: cover;
  width: 100%;
}

body,
input,
textarea,
select {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  text-wrap-style: pretty;
}

.top-bar {
  background-color: var(--color-sand);
  color: black;
  position: sticky;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  padding: 1rem 4rem;
  align-items: center;
  top: 0;
  z-index: 9;
}

.top-bar-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: black;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  font-weight: var(--font-weight-heavy);
  font-size: 3em;
  line-height: 1.2;
}

.hero-content h1 {
  text-shadow: -2px 2px #00000080;
}

h2 {
  font-weight: var(--font-weight-bold);
}

h3 {
  font-weight: var(--font-weight-medium);
  font-size: 1.5em;
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
  font-weight: var(--font-weight-normal);
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
  font-weight: var(--font-weight-bold);
  transition: background 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
}

.hero-2 a {
  background-color: white;
  color: black;
}

.btn-dark {
  background: var(--color-footer-bg);
}

.btn-primary:hover {
  background-color: #ea580c;
}

.light-bg {
  background-color: var(--color-bg-light);
}

.dark-bg {
  background-color: var(--color-footer-bg);
  color: white;
  padding: 2rem;
  text-align: center;
}

.hero .container {
  align-content: end;
}

.subheading {
  font-size: 1.2em;
  max-width: 600px;
  margin: 0 auto;
  color: white;
  font-weight: var(--font-weight-light);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: var(--font-weight-normal);
}

.card img {
  min-height: 220px;
  border-radius: 10px;
  mask-image: linear-gradient(black, transparent);

}

.form-section {
  text-align: center;
}

.form-step {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-step label {
  font-weight: var(--font-weight-bold);
  text-align: left;
}

.button-group {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.button-group button {
  background-color: var(--color-accent);
  font-family: var(--font-family);
  font-size: 1em;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: var(--font-weight-medium);
  transition: background 0.2s ease-in-out;
}

.button-group button:hover {
  background-color: var(--color-primary);
  color: white;
}

.logo-placeholder {
  display: grid;
  justify-self: left;
  height: max-content;
}

.logo-placeholder img {
  height: auto;
  width: clamp(120px, 200px, 32vw);
  display: block;
}

.logo-placeholder.center {
  margin-top: 4rem;
}

.center {
  text-align: center;
  margin-inline: auto;
  justify-self: center;
  place-content: space-around;
}

.product-highlight {
  padding: 3rem 2rem;
  background-color: var(--color-bg);
}

.benefits {
  padding: 4rem 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-cta {
  padding: 0 2rem 2rem;
  text-align: center;
}

.highlight-img {
  /*mask-image: radial-gradient(black 50%, transparent 60%);*/
  border-radius: 20px;

}

.img-with-text {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.faq {
  padding: 0rem 0 4rem;
}

.faq-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.faq-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-accent);
}

.form-placeholder {
  background-color: var(--color-accent);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.form-placeholder p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.footer a {
  color: white;
  text-decoration: underline;
  margin: 0 0.5rem;
}

.hero {
  padding: 4rem 2rem;
  background-color: var(--color-bg-light);
  text-align: center;
  position: relative;
  border-radius: 40px;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  height: clamp(180px, 37vw, 100svh);
  display: grid;
  width: clamp(60vw, 1800px, 90vw);
  margin: 1rem auto;
}

.hero-2 {
  background-image: var(--hero-bg2);
}

.hero-2 .container {
  width: 100%;
  padding: 0;
  max-width: 100%;
  display: grid;
  align-items: center;
  justify-content: start;
  align-content: center;
  text-align: left;
}

.hero-2 .hero-content {
  max-width: 40%;
}

.hero-2 .subheading {
  margin: 0;
}

.hero-2 p {
  color: white;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 500;
}

.hero-2 p span {
  text-shadow: -2px 2px #00000080;
}

/*
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
} */

.hero .container {
  position: relative;
  z-index: 2;
}

.mobile-only {
  display: none;
}

.intro {
  text-align: center;
}

.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.form-group input,
.form-group textarea,
.form-group select {
  display: block;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: 1.2em;
  font-family: var(--font-family);
}

.navigation-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.button-group button.selected {
  background-color: var(--color-primary);
  color: white;

  border: 2px solid black;
}

button.disabled {
  background-color: #d1d5db;
  /* Light gray */
  color: #9ca3af;
  /* Darker gray */
  cursor: not-allowed;
  pointer-events: none;
}

.btn-secondary {
  background-color: white;
  color: black;
  padding: 5px 15px;
  display: inline-block;
  font-weight: var(--font-weight-bold);
  transition: background 0.2s ease-in-out;
  border: 1px solid black;
  cursor: pointer;
  border-radius: 50px;
}

.navigation-buttons button {
  font-size: 1em;
  border-radius: 40px;
  padding: .75rem 3rem;
  text-transform: uppercase;
}

.multi-step-form {
  background: white;
  padding-block: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-section h2 {
  width: max-content;
  padding: 10px 20px;
  background: #f2ece2;
  border-radius: 6px;
  border: 1px solid;
  margin-bottom: -30px;
  z-index: 2;
  position: relative;
  color: #000000;
  display: block;
}

#step-1 {
  margin-top: 4rem;
}

#step-2 {
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 4rem;
}

.step-2-bottom {
  width: 100%;
  margin-inline: auto;
  grid-column: 1 / -1;
  margin-top: 0;
  gap: 1rem;
}

.form-group textarea {
  width: 100%;
}

.faq .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.faq img {
  -webkit-mask-image: linear-gradient(black, transparent);
  mask-image: radial-gradient(black 50%, transparent 60%);
}

.footer-top {
  background: var(--color-sand);
  padding: 1rem;
  font-size: .75em;
}

.footer-top p {
  color: black;
}
/* --- Simple Header with Logo and Title Side-by-Side --- */
.simple-header {
  background-color: #f8f7f4;
  padding: 25px 20px;
  border-bottom: 1px solid #e0dfda;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: center; /* centers logo + text together */
  gap: 16px; /* space between logo and text */
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap; /* ensures good mobile stacking */
}

.header-logo {
  width: 80px; /* smaller size */
  height: auto;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-logo:hover {
  opacity: 0.85;
}

.header-text h1 {
  font-size: 2rem;
  color: #1b1c1f;
  margin: 0;
}

.header-text p {
  color: #555;
  font-size: 1rem;
  margin: 4px 0 0 0;
  line-height: 1.4;
}
/* ------- Page Header (Left-aligned, compact) ------- */
.simple-header {
  background: #ffffff;                 /* clean white */
  padding: 28px 0 20px;                /* tighter than before */
  border-bottom: 1px solid #ececec;    /* subtle divider */
}

.simple-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;                     /* side breathing room */
}

/* Row with logo + title */
.header-row {
  display: flex;
  align-items: center;
  gap: 14px;                           /* space between logo & title */
  min-height: 40px;
}

/* Natural logo size; aligns well with H1 baseline */
.brand-mark {
  height: 28px;                        /* feels “brand bar” size */
  width: auto;
  display: block;
  cursor: pointer;
}

/* Title + subtitle */
.page-title {
  margin: 0;
  font-size: 2.2rem;                   /* strong but not oversized */
  line-height: 1.2;
  color: #1b1c1f;
}

.page-subtitle {
  margin: 6px 0 0 0;
  color: #66707b;                      /* softer gray */
  font-size: 1rem;
  line-height: 1.5;
}
/* Slider display amount */
.display-amount {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

/* Min / Max labels */
.range-hint {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* Basic range styling (optional brand tune) */
.styled-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(to right, #1b1c1f 0%, #e6e6e6 0%);
  outline: none;
}


/* Chrome/Safari thumb */
.styled-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1b1c1f;
  cursor: pointer;
}

/* Firefox thumb */
.styled-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1b1c1f;
  cursor: pointer;
}
@media (max-width: 768px) {
  .top-bar {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    grid-template-columns: 1fr; /* stack text + button vertically */
    gap: 0.5rem;
  }

  .top-bar a.btn-primary {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .logo-placeholder.mobile-only {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 1rem 0;
  }

  .logo-placeholder.mobile-only img {
    width: auto;
    max-width: 180px; /* adjust as needed */
    height: auto;
  }
}

/* Mobile: stack gracefully */
@media (max-width: 640px) {
  .header-row { flex-wrap: wrap; }     /* logo above title if needed */
  .brand-mark { height: 24px; }
  .page-title { font-size: 1.7rem; }
}

/* Mobile optimization */
@media (max-width: 600px) {
  .header-flex {
    flex-direction: column;
    text-align: center;
  }

  .header-logo {
    width: 70px;
  }

  .header-text h1 {
    font-size: 1.6rem;
  }
}
.input-with-symbol {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-symbol .symbol {
  position: absolute;
  left: 10px;
  color: #333;
  font-weight: 500;
}

.input-with-symbol .styled-input {
  padding-left: 25px; /* make room for the $ symbol */
}

@media(max-width:1279px) {
  .hero-2 .desktop-only {
    display: none;
  }

  #step-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reverse-order {
    order: 2;
  }

  .faq .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-mobile {
    text-align: center;
  }

  .hero-mobile .container {
    padding-top: 0;
    display: grid;
    gap: 1rem;
  }

  h1 {
    font-size: 2em;
  }

  .subheading {
    color: black;
    font-size: 1em;
    text-wrap-style: balance;
  }

  .logo-placeholder {
    justify-self: center;
    height: max-content;
    width: 100%;
    justify-items: center;
    margin-top: 2rem;
  }

  .container {
    padding: 1.5rem;
  }

  .hero {
    border-radius: 24px;
  }

  .img-with-text {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 0;
  }

  .form-step {
    padding: 0 1rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .form-section h2 {
    width: auto;
    padding: 5px 15px;
    line-height: 115%;
  }
}