:root {
  /* Font Families */
  --font-heading: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  --color-text-primary: #000;

  --black: #000;
  --white: #fff;
  --blue-cta: #022eb0;
  --green-teal: #017186;
  --gray-medium: #333;
  --gray-divider: #d4d4d4;
  --red-bg: #ffeced;
  --red-main: #d74034;
  --cta-btn-bg: #d10000;
  --feature-yellow-bg: #f9f3e7;
  --feature-yellow-accent: #ffc544;
  --testimonials-border: #dddfe2;
  --color-tldr-title: #1d374e;
  --review-bg: #fcfbf9;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --shadow-cta: rgba(133, 133, 133, 0.3);
  --bottom-cta-bg: linear-gradient(265.98deg, #f8f2e4 19.65%, #fbfaf9 108.67%);
  --bottom-cta-bg-mobile: linear-gradient(
    8.42deg,
    #f8f2e4 43.12%,
    #fbfaf9 79.18%
  );
}

/* 1. Remove sizing inconsistencies */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Zero default margin and padding*/
* {
  margin: 0;
  padding: 0;
}

html,
body {
  overscroll-behavior-y: none;
}

/* 3. Improve typography in elements that use line-height */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* 4. Images, videos, canvas, etc. do not overflow the container */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5. Remove default form styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* 6. Prevent very long texts from breaking the layout */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 7. Create a stacking context root */
#root,
#__next {
  isolation: isolate;
}

/* Utility Classes */
.white-color {
  color: #fff;
}

.red-color {
  color: #ff1d03;
}

.white-bg {
  background-color: #fff;
}

.black-bg {
  background-color: #000;
}

.fb {
  display: flex;
}

.fb-inline {
  display: inline-flex;
}

.fb-column {
  flex-direction: column;
}

.fb-align-center {
  align-items: center;
}

.fb-justify-center {
  justify-content: center;
}

.fb-justify-space-between {
  justify-content: space-between;
}

.fb-wrap {
  flex-wrap: wrap;
}

.fb-flex-1 {
  flex: 1;
}

.text-semibold {
  font-weight: 500;
}

.hide-mobile {
  display: block;
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
}

.header-top {
  background-color: var(--gray-medium);
  text-align: center;
  padding: 6px 0;
}

.header-bottom {
  background-color: #f7f8f9;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--black);
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 47px;
  padding: 66px 0 97px 0;
  margin: 0 auto;
  width: 100%;
}

.left-content {
  max-width: 774px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 35px;
  line-height: 130%;
  margin-bottom: 1px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.main-title span {
  background-color: var(--green-teal);
  color: var(--white);
  padding: 0 1px;
}

.headline {
  border-left: 6px solid #ccc;
  background: var(--red-bg);
  padding: 12px 18px 12px 16px;
}

.headline-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0em;
}

.post-info {
  gap: 27px;
  font-size: 16px;
  margin-bottom: 0;
}

.post-info img {
  margin-right: 16px;
  object-fit: cover;
  border-radius: 100px;
}

.post-info > span {
  width: 1px;
  height: 48px;
  background-color: var(--gray-divider);
}

.post-info p {
  margin: 0;
}

.post-info .post-info-text {
  font-weight: 400;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 5px;
}

br.mobile {
  display: none;
}

.mobile-480 {
  display: none;
}

.hidden-mob {
  display: none;
}

.secondary-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 5px;
}

.secondary-title.mobile {
  display: none;
  font-size: 21px;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 5px;
}

.tldr-container {
  background-color: var(--feature-yellow-bg);
  padding: 15px 16px 14px;
}

.tldr-container h3 {
  padding: 12px 0;
  border-bottom: 2px solid var(--color-tldr-title);
  font-size: 18px;
}

.tldr-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.tldr-item {
  display: flex;
  align-items: center;
  gap: 9.5px;
  margin-top: 15px;
}

.tldr-item p {
  font-size: 16px;
}

.terrifying-stat-section p {
  letter-spacing: 0em;
}

.traditional-warming-section .problem {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 15px;
}

.beige-title {
  background-color: #f6e8df;
  color: var(--cta-btn-bg);
  max-width: max-content;
  padding: 8px 13.5px;
  border-radius: 40px;
  font-size: 18px;
}

.section-five .details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-five .detail {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 32px;
  align-items: center;
}

.section-five .detail .detail-texts {
  max-width: 656px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  letter-spacing: 0em;
}

.section-five .detail .detail-texts .detail-texts-feature {
  margin: -3px 0;
  border: 1px solid var(--black);
  border-radius: 12px;
  background-color: var(--feature-yellow-bg);
  padding: 16px;
}

.offer-cta {
  color: var(--blue-cta);
  /* font-weight: 700; */
  text-underline-offset: 2px;
}

.offer-cta-no-underline {
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
}

.quote-text {
  font-style: italic;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  max-width: 900px;
  position: relative;
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  /* margin-bottom: 12px; */
  align-items: center;
}

.feature-item.one,
.feature-item.two {
  padding-top: 17px;
}

/* --- CONTINUOUS BORDERS ON DESKTOP --- */
.features .feature-item:nth-child(-n + 6):nth-child(odd) {
  position: relative;
}

.features .feature-item:nth-child(-n + 6):nth-child(odd)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background: var(--gray-divider);
  width: calc(200% + 20px); /* 2 columns + gap between them */
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
}

.feature-item p {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
}

.features.mobile {
  display: none;
}
.bottom-line {
  border: 2px dashed var(--black);
  border-radius: 12px;
  padding: 20px 12px 0;
  background-color: var(--feature-yellow-bg);
}

.bottom-line h2 {
  padding: 0 6px;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  background-color: var(--feature-yellow-accent);
  border-radius: 6px;
}

.bottom-line .content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

.bottom-line .content .texts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

strong {
  font-weight: 700 !important;
}

strong.teal {
  color: var(--green-teal);
}

hr {
  border: none;
  height: 1px;
  background-color: var(--gray-divider);
}

hr.dark {
  height: 2px;
  background-color: var(--black);
}

.reviews-section .review {
  background-color: var(--review-bg);
  border: 1px solid var(--gray-divider);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FAQ Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-divider);
  overflow: hidden;
}

/* .faq-item:last-child {
  border-bottom: none;
} */

.faq-question {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  line-height: 140%;
  background: none;
}

.faq-question > span:first-child {
  flex: 1;
  font-weight: 700;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  transition: opacity 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='black'/%3E%3Cpath d='M12 9V15M15 12H9' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.faq-item.active .faq-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='black'/%3E%3Cpath d='M15 12H9' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-answer {
  color: #333;
  font-weight: 500;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 15px 0;
  letter-spacing: -0.02em;
}

.order-today-section p {
  text-align: center;
}

.bottom-cta {
  border: 1px solid var(--gray-divider);
  max-width: 1173px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  display: grid;
  justify-content: center;
  grid-template-columns: auto auto;
  gap: 15px;
}

.bottom-cta-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 631px;
  gap: 15px;
  text-align: center;
}

.bottom-cta .bottom-cta-title {
  font-size: 32px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bottom-cta-details p span:first-child {
  font-weight: 700;
  text-transform: uppercase;
}

.bottom-cta-details p span:nth-of-type(2) {
  font-weight: 600;
}

/* .bottom-cta-details p span:last-child {
  font-weight: 600;
  color: var(--green-teal);
} */

.bottom-cta-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bottom-cta-detail.mobile {
  display: none;
}

.right-sidebar {
  min-width: 320px;
  max-width: 320px;
}

.sticky-container {
  background-color: #f7f8f9;
  border-radius: 12px;
  position: sticky;
  top: 76px;
  padding: 19px 19.5px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.sticky-container p {
  margin-top: -12px;
  font-size: 16px;
}

.sticky-container .sticky-cta-img {
  width: 240px;
  /* height: auto; */
}

.sticky-container h3 {
  color: #131d24;
  margin-top: -10px;
}

.cta-button {
  box-shadow: 0px 4px 4px var(--shadow-cta);
  background-color: var(--cta-btn-bg);
  /* width: 100%; */
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  border-radius: 100px;
}

.cta-button-floating-container {
  width: 100%;
}

.cta-button.cta-button-floating {
  padding: 14px 0;
  gap: 12px;
  width: 100%;
  font-size: 18px;
}

.cta-middle-button {
  width: 100%;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.cta-button.cta-button-bottom {
  padding: 16px 24px;
}

footer {
  background-color: var(--black);
  color: var(--white);
  padding: 50px 90px;
  text-align: center;
  margin-top: auto;
}

.logo-footer {
  width: auto;
  height: 85px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 31px;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 80px;
}

footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

footer p {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 22px;
}

@media screen and (max-width: 1199px) {
  br.web {
    display: none;
  }
}

@media screen and (max-width: 1220px) {
  main {
    padding: 30px 16px 40px 16px;
  }
}

/* Mobile Sticky CTA - Hidden by default on desktop */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 991px) {
  .bottom-cta {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }

  .bottom-cta-detail.mobile {
    display: flex;
  }

  .right-sidebar {
    display: none;
  }

  .left-content {
    width: 100%;
    max-width: none;
    gap: 20px;
  }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--bottom-cta-bg);
    box-shadow: 0 -2px 10px var(--shadow-light);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  * {
    font-size: 16px;
  }

  .header-container {
    padding: 0;
  }

  .main-title {
    font-size: 24px;
  }

  .main-title span {
    font-size: 26px;
  }

  .headline-text {
    font-size: 14px;
  }

  .post-info {
    margin-top: -3px;
  }

  .hero-img {
    border-radius: 5.55px;
    margin-bottom: 0;
  }

  .beige-title {
    font-size: 1rem;
    padding: 5px 12px;
  }

  .secondary-title {
    font-size: 24px;
  }

  .secondary-title.web {
    display: none;
  }

  .secondary-title.mobile {
    display: block;
  }

  .section-five .detail {
    align-items: start;
    grid-column-gap: 16px;
  }

  .section-five .detail img {
    width: 55px;
    height: 55px;
  }

  .section-five .detail .detail-texts .detail-texts-feature p,
  .section-five .detail .detail-texts .detail-texts-feature b {
    font-size: 18px;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    padding: 24px 20px;
  }

  .bottom-cta-detail {
    flex-direction: column;
    padding: 32px 0;
  }

  .bottom-cta-detail .cta-texts {
    text-align: center;
    margin-left: 0;
  }

  .cta-button.cta-button-bottom {
    font-size: 20px;
    padding: 15px 0;
    width: 100%;
  }

  .cta-button.cta-button-bottom svg {
    width: 20px;
    height: auto;
  }

  footer {
    padding: 30px 0;
  }
}

@media screen and (max-width: 481px) {
  .post-info > span {
    height: 37px;
  }
  
  .headline {
    border-left: 5px solid #ccc;
  }
  .post-info {
    gap: 9px;
    line-height: 1.2;
  }

  .post-info img {
    width: 42px;
    height: 42px;
    margin-right: 4px;
  }

  p.p-mobile,
  p.p-mobile span {
    font-size: 18px;
  }

  .tldr-container {
    padding: 12px;
  }

  .tldr-container h3 {
    font-size: 16px;
  }

  .tldr-list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 0;
  }

  .tldr-item {
    margin-top: 12px;
  }

  .kitchen-section p {
    letter-spacing: 0em;
  }

  .terrifying-stat-section p {
    letter-spacing: -0.009em;
  }

  .traditional-warming-section h2 {
    letter-spacing: 0.01em;
  }

  .traditional-warming-section > p:nth-of-type(2) {
    letter-spacing: -0.001em;
  }

  .traditional-warming-section .problem {
    grid-template-columns: 1fr;
  }

  .traditional-warming-section .problem .problem-text p {
    letter-spacing: 0.001em;
  }

  .features-section .secondary-title {
    letter-spacing: 0em;
  }

  .features {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
  }

  .features .feature-item.two {
    padding-top: 1px;
  }

  .features .feature-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-divider);
  }

  /* Remove border pseudo-element on mobile */
  .features .feature-item:nth-child(-n + 6):nth-child(odd)::after {
    content: none;
  }

  .features .feature-item img {
    width: 45px;
    height: 45px;
  }

  .features .feature-item.two {
    order: 1;
  }
  .features .feature-item.three {
    order: 2;
  }
  .features .feature-item.six {
    order: 3;
  }
  .features .feature-item.one {
    order: 4;
  }
  .features .feature-item.four {
    order: 5;
  }
  .features .feature-item.five {
    order: 6;
  }

  .tldr-list img {
    width: 19.5px;
    height: 19.5px;
  }

  .who-section p {
    max-width: 356px;
  }

  .who-section p:last-of-type {
    letter-spacing: 0em;
  }

  .reviews-section .review {
    padding: 12px;
  }

  .bottom-line {
    padding: 20px 12px;
  }

  .bottom-line h2 {
    font-size: 24px;
  }

  .bottom-line .content {
    grid-template-columns: auto;
    justify-items: center;
  }

  .bottom-line .content img {
    width: 100%;
    height: auto;
  }

  .bottom-line .content .texts {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .faq-question > span:first-child {
    font-size: 15px;
  }

  .faq-icon {
    margin-left: 6px;
  }

  .bottom-cta {
    border: 1px solid var(--gray-divider);
    padding: 20px 12px;
    margin-top: 10px;
  }

  .bottom-cta .bottom-cta-title {
    font-size: 22px;
    gap: 4px;
  }

  .bottom-cta .bottom-cta-title img {
    height: 22px;
    width: 22px;
  }

  .bottom-cta-details p {
  }

  .bottom-cta-details p span {
    font-size: 14px;
  }

  .cta-texts .cta-texts-first {
    font-size: 24px;
  }

  .cta-texts .cta-texts-second {
    font-size: 40px;
  }

  .cta-texts .cta-texts-third {
    font-size: 16px;
  }

  .cta-button.cta-button-bottom {
    padding: 8px 0;
  }

  .mobile-480 {
    display: inline;
  }

  footer {
    padding: 30px 8px;
  }

  .logo-footer {
    margin-bottom: 24px;
  }

  footer p {
    font-size: 16px;
  }

  footer .footer-links {
    gap: 50px;
  }
}

@media screen and (max-width: 396px) {
  .reviews-section .review p {
    max-width: 328px;
  }
}

@media screen and (max-width: 394px) {
  br.mobile {
    display: inline;
  }

  .headline {
    padding: 6px 2px 6px 6px;
  }

  .post-info strong,
  .post-info span {
    font-size: 12px !important;
    line-height: 0em;
  }
}
