/* =========================================================
   Even Entry — style.css
   ========================================================= */

/* --- Reset & Base ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:        #0a0a0a;
  --dark:         #111111;
  --mid:          #1a1a1a;
  --gold:         #C9A84C;
  --gold-dk:      #b8941f;
  --gold-lt:      #dbbf6e;
  --offwhite:     #F5F0EB;
  --grey:         #888888;
  --border:       #2a2a2a;
  --white:        #FFFFFF;
  --light:        #F8F6F2;
  --warm-light:   #F0EBE3;
  --charcoal:     #1a1a1a;
  --border-light: #e8e2d9;
  --font-h:       'Montserrat', sans-serif;
  --font-b:       'Inter', sans-serif;
  --radius:       4px;
  --trans:        0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--offwhite);
  font-family: var(--font-b);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* --- Utility --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--offwhite);
  margin-bottom: 20px;
}

.gold { color: var(--gold); }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--trans);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--trans);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 20px 24px 28px;
  gap: 0;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--trans);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover {
  color: var(--gold);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero__headline {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__headline span {
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(245, 240, 235, 0.88);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.btn {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans), transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn--gold:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 100px 0;
  background: var(--light);
}

.about .section-title {
  color: var(--charcoal);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text p {
  font-size: 1.05rem;
  color: #2c2c2c;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about__image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
}

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits {
  padding: 100px 0;
  background: var(--white);
}

.benefits .section-title {
  color: var(--charcoal);
}

.benefits__header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits__header .section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--trans), transform var(--trans);
}

.benefit-tile:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.benefit-tile__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.benefit-tile__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-tile__title {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
}

.benefit-tile__desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how {
  padding: 100px 0 60px;
  background: var(--dark);
}

.how__header {
  text-align: center;
  margin-bottom: 64px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mid);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__body {}

.step__title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 8px;
  padding-top: 16px;
}

.step__desc {
  font-size: 0.95rem;
  color: rgba(245, 240, 235, 0.72);
  line-height: 1.75;
  margin-bottom: 10px;
}

.step__sub-heading {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 16px 0 8px;
}

.step__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.step__list li {
  font-size: 0.92rem;
  color: rgba(245, 240, 235, 0.72);
  line-height: 1.65;
  padding: 3px 0 3px 18px;
  position: relative;
}

.step__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.step__tip {
  background: rgba(201, 168, 76, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: rgba(245, 240, 235, 0.82);
  line-height: 1.65;
}

/* How It Works intro box */
.how__intro-box {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.how__intro-box h4 {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.how__intro-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.how__intro-box li {
  font-size: 0.92rem;
  color: rgba(245, 240, 235, 0.8);
  line-height: 1.65;
  padding: 4px 0 4px 20px;
  position: relative;
}

.how__intro-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  padding: 56px 0 44px;
  background: var(--white);
}

.gallery__header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery .section-title {
  color: var(--charcoal);
}

/* Grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.03);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gallery-lightbox__close:hover {
  opacity: 1;
}

.gallery-lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-lightbox__btn:hover {
  background: rgba(201, 168, 76, 0.4);
}

.gallery-lightbox__btn--prev { left: 20px; }
.gallery-lightbox__btn--next { right: 20px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 100px 0 60px;
  background: var(--dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section-title {
  margin-bottom: 16px;
}

.contact__tagline {
  font-size: 1rem;
  color: rgba(245, 240, 235, 0.72);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.contact__detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact__detail-text strong {
  display: block;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact__detail-text span {
  font-size: 0.95rem;
  color: var(--offwhite);
}

/* Form */
.contact__form {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.form__group {
  margin-bottom: 22px;
}

.form__label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form__label .req {
  color: var(--gold);
  margin-left: 2px;
}

.form__input,
.form__textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--offwhite);
  font-family: var(--font-b);
  font-size: 0.95rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--trans);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #555;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  display: none;
  font-size: 0.8rem;
  color: #e05a5a;
  margin-top: 6px;
}

.form__input.invalid,
.form__textarea.invalid {
  border-color: #e05a5a;
}

.form__input.invalid + .form__error,
.form__textarea.invalid + .form__error {
  display: block;
}

.form__submit {
  width: 100%;
  font-size: 0.82rem;
  padding: 17px;
  margin-top: 8px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.footer__contact {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  flex: 1;
}

.footer__contact a {
  color: inherit;
}

.footer__sep {
  color: #bbb;
}

.footer__right {
  font-size: 0.85rem;
  color: #666;
  text-align: right;
  white-space: nowrap;
}

.footer__right a {
  color: var(--gold);
  text-decoration: none;
}

.footer__right a:hover {
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__image {
    order: -1;
  }
  .about__image img {
    height: 340px;
  }
  .about__image::before {
    display: none;
  }

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

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

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .about { padding: 72px 0; }
  .benefits { padding: 72px 0; }
  .how { padding: 72px 0 40px; }
  .gallery { padding: 40px 0 32px; }
  .contact { padding: 72px 0; }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }
  .step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }
  .step__number {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }
  .step__title {
    padding-top: 12px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer__contact {
    text-align: center;
  }

  .footer__sep {
    display: none;
  }

  .footer__contact span {
    display: block;
  }

  .footer__right {
    text-align: center;
    white-space: normal;
  }

  .gallery-lightbox__btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .gallery-lightbox__btn--prev { left: 10px; }
  .gallery-lightbox__btn--next { right: 10px; }
}


/* =========================================================
   COMPARISON / PRICING
   ========================================================= */
.comparison {
  padding: 100px 0;
  background: var(--white);
}

.comparison__header {
  text-align: center;
  margin-bottom: 56px;
}

.comparison .section-title {
  color: var(--charcoal);
}

.comparison__intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.comparison__box {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 44px 40px;
  margin-bottom: 32px;
}

.comparison__box-title {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.comparison__box-sub {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 32px;
}

/* Cards layout */
.comparison__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comparison__card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.comparison__card--competitor {
  opacity: 0.8;
}

.comparison__card--highlight {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.comparison__card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.comparison__card-label {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison__card-price {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.comparison__rrp {
  font-size: 0.75rem;
  font-weight: 500;
  color: #999;
  vertical-align: super;
  margin-left: 4px;
  letter-spacing: 0.03em;
}

.comparison__card--highlight .comparison__card-price {
  color: var(--gold-dk);
}

.comparison__card-note {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

/* Table */
.comparison__table-wrap {
  overflow-x: auto;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison__table th {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dk);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--border-light);
  white-space: nowrap;
}

.comparison__table td {
  padding: 14px 16px;
  color: #444;
  border-bottom: 1px solid var(--border-light);
}

.comparison__table-highlight td {
  background: rgba(201, 168, 76, 0.06);
  color: var(--charcoal);
}

/* Simplicity callout */
.comparison__simplicity {
  text-align: center;
  padding: 56px 40px;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-top: 32px;
}

.comparison__simplicity-icon {
  width: 56px;
  height: 56px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.comparison__simplicity-icon svg {
  width: 100%;
  height: 100%;
}

.comparison__simplicity-title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.comparison__simplicity-desc {
  font-size: 1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Comparison responsive */
@media (max-width: 900px) {
  .comparison__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .comparison__box {
    padding: 28px 20px;
  }
}

@media (max-width: 640px) {
  .comparison { padding: 72px 0; }
  .comparison__simplicity {
    padding: 36px 20px;
  }
  .comparison__table {
    font-size: 0.82rem;
  }
  .comparison__table th,
  .comparison__table td {
    padding: 10px 10px;
  }
}

/* =========================================================
   LIGHT THEME OVERRIDES — How It Works + Contact
   ========================================================= */

/* How It Works — cream background */
.how { background: var(--light); }
.steps::before { display: none; }
.how .section-title { color: var(--charcoal); }
.step { border-bottom-color: var(--border-light); }
.step__number { background: var(--light); }
.step__title { color: var(--charcoal); }
.step__desc { color: #555; }
.step__list li { color: #555; }
.step__tip {
  background: rgba(201, 168, 76, 0.08);
  color: #555;
}
.how__intro-box li { color: #555; }

/* Benefits cards — cream on white section */
.benefit-tile { background: var(--light); }

/* Contact — cream background */
.contact { background: var(--light); }
.contact .section-title { color: var(--charcoal); }
.contact__tagline { color: #555; }
.contact__detail-text span { color: var(--charcoal); }
.contact__form {
  background: var(--white);
  border-color: var(--border-light);
}
.form__input,
.form__textarea {
  background: var(--white);
  border-color: var(--border-light);
  color: var(--charcoal);
}
.form__input::placeholder,
.form__textarea::placeholder { color: #aaa; }

/* Footer — centered minimal */
.footer__inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.footer__logo { margin-bottom: 4px; }
.footer__copy {
  font-size: 0.85rem;
  color: #666;
}
.footer__attr {
  font-size: 0.82rem;
  color: #999;
}
.footer__attr a {
  color: var(--gold);
}
.footer__attr a:hover { text-decoration: underline; }
