:root {
  --accent: #7b0e1a; /* burgundy */
  --muted: #9b9b9b;
  --bg: #cfcfcf;
  --footer-bg: #7b0e1a;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

html,
body {
  height: 100%;
  margin: 0;
}
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: var(--bg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.navbar-logo a {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-links li a:hover {
  color: var(--accent);
}

.navbar-links li a.navbar-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.navbar-links li a.navbar-cta:hover {
  background: #5d0a14;
  transform: translateY(-2px);
}
.hero-section {
  position: relative;
  background: var(--bg);
  min-height: 79vh;
  display: flex;
  flex-direction: column;
  padding-top: 56px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  flex: 1 1 auto;
}
.left-side {
  width: 55%;
  min-height: 79vh;
  padding-top: 24px;
  background-image: url("./images/hero-page-pic.png");
  background-repeat: no-repeat;
  background-size: 200%; /* was cover */
  background-position: right left;
}

.right-side {
  width: 50%;
  padding: 48px 36px;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 560px;
}
.hero-content h1 {
  margin: 0 0 24px 0;
  font-size: 64px;
  line-height: 0.95;
  color: var(--accent);
  font-weight: 700;
}
.hero-content .lead {
  margin: 0 0 28px 0;
  font-size: 53px;
  color: #666;
  font-weight: 400;
}
.cta {
  display: flex;
  gap: 18px;
}
.btn {
  font-size: 16px;
  width: 400px;
  padding: 12px 28px;
  border-radius: 28px;
  border: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(123, 14, 26, 0.06);
}

.hero-footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0.98;
}

/* Problem Section */
.problem-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0px 0px 36px;
  background: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.problem-left {
  width: 40%;
  height: 100vh;
  padding: 60px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.problem-left h1 {
  font-size: 72px;
  line-height: 0.95;
  color: #fff;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.problem-left p {
  font-size: 56px;
  color: #fff;
  font-weight: 300;
  margin: 0;
  text-align: center;
}
.problem-right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 100px 60px;
}
.problem-card {
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 50px 40px 40px;
  text-align: center;
  position: relative;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(123, 14, 26, 0.15);
}
.problem-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.problem-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  /* filter: invert(15%) sepia(85%) saturate(2500%) hue-rotate(340deg)
    brightness(75%); */
}
.problem-card h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 20px 0;
}
.problem-card p {
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  color: var(--accent);
  margin: 0;
}

/* How It Works Section */
.how-it-works-section {
  min-height: 100vh;
  padding: 80px 60px 100px;
  background: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.how-it-works-section > h1 {
  text-align: center;
  font-size: 72px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 100px 0;
  letter-spacing: -1px;
}
.steps-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}
.step-card {
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 60px 40px 40px;
  position: relative;
  background: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(123, 14, 26, 0.15);
  border-color: #5d0a14;
}
.step-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.step-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.step-card h2 {
  font-size: 32px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 24px 0;
  line-height: 1.2;
}
.step-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--accent);
  margin: 0;
  text-align: justify;
}

/* Key Features Section */
.features-section {
  min-height: 100vh;
  padding: 80px 60px 100px;
  background: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.features-section > h1 {
  text-align: center;
  font-size: 72px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 100px 0;
  letter-spacing: -1px;
}
.features-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 6px;
}
.feature-card {
  padding: 60px 40px 40px;
  text-align: center;
  background: #fef5f6;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(123, 14, 26, 0.12);
  background: #fde8ea;
}
.feature-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
  object-fit: contain;
}
.feature-card h2 {
  font-size: 32px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.feature-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  text-align: left;
}

/* Proof & Process Section */
.proof-section {
  min-height: 100vh;
  padding: 80px 60px 100px;
  background: #f5f5f5;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.proof-section > h1 {
  text-align: center;
  font-size: 72px;
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 80px 0;
  letter-spacing: -1px;
}
.proof-intro {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: #eed9db;
  padding: 50px 60px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.proof-intro:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(123, 14, 26, 0.12);
}
.proof-intro img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.proof-intro p {
  font-size: 22px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
.proof-intro em {
  font-style: italic;
  font-weight: 600;
  color: #444;
}
.proof-cards-container {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.quality-control {
  background: #e8e8e8;
  padding: 50px 40px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.quality-control:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #e0e0e0;
}
.quality-control-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.quality-control-header img {
  width: 60px;
  height: 60px;
}
.quality-control h2 {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.quality-control ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.quality-control li {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}
.quality-control li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 20px;
}
.quality-control p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.quality-control em {
  font-style: italic;
  font-weight: 600;
  color: #444;
}
.proof-section .cta {
  max-width: 800px;
  margin: 0 auto 60px;
  justify-content: center;
  gap: 24px;
}
.proof-section .cta button {
  width: auto;
  min-width: 260px;
  font-size: 18px;
  padding: 16px 36px;
}
.btn-filled {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-filled:hover {
  background: #6a0c17;
  border-color: #6a0c17;
}
.proof-section .tagline {
  text-align: center;
  font-size: 32px;
  font-style: italic;
  color: var(--accent);
  margin: 0;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .left-side {
    width: 100%;
    min-height: 300px;
    background-position: center top;
  }
  .right-side {
    width: 100%;
    padding: 40px 28px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content .lead {
    font-size: 28px;
  }
  .cta {
    flex-direction: column;
    gap: 16px;
  }
  .btn {
    width: 100%;
    font-size: 18px;
    padding: 14px 28px;
  }
  .footer-inner {
    font-size: 16px;
    padding: 0 28px;
  }

  .problem-section {
    flex-direction: column;
    padding: 0;
    min-height: auto;
    height: auto;
  }
  .problem-left {
    width: 100%;
    height: auto;
    padding: 60px 28px;
  }
  .problem-left h1 {
    font-size: 48px;
  }
  .problem-left p {
    font-size: 36px;
  }
  .problem-right {
    width: 100%;
    padding: 60px 28px;
    gap: 80px;
  }
  .problem-card {
    padding: 60px 28px 32px;
  }
  .problem-card h2 {
    font-size: 28px;
  }
  .problem-card p {
    font-size: 16px;
  }

  .how-it-works-section {
    padding: 60px 28px 80px;
  }
  .how-it-works-section > h1 {
    font-size: 48px;
    margin-bottom: 60px;
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .step-card {
    padding: 60px 28px 32px;
  }
  .step-card h2 {
    font-size: 26px;
  }
  .step-card p {
    font-size: 16px;
    text-align: left;
  }

  .features-section {
    padding: 60px 28px 80px;
  }
  .features-section > h1 {
    font-size: 48px;
    margin-bottom: 60px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-card {
    padding: 50px 28px 32px;
  }
  .feature-card h2 {
    font-size: 26px;
  }
  .feature-card p {
    font-size: 16px;
  }

  .proof-section {
    padding: 60px 28px 80px;
  }
  .proof-section > h1 {
    font-size: 48px;
    margin-bottom: 60px;
  }
  .proof-intro {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    margin-bottom: 60px;
  }
  .proof-intro img {
    width: 60px;
    height: 60px;
  }
  .proof-intro p {
    font-size: 18px;
  }
  .proof-cards-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .quality-control {
    padding: 40px 28px;
  }
  .quality-control h2 {
    font-size: 24px;
  }
  .quality-control li,
  .quality-control p {
    font-size: 16px;
  }
  .proof-section .cta {
    flex-direction: column;
    max-width: 100%;
    gap: 16px;
  }
  .proof-section .cta button {
    width: 100%;
    min-width: auto;
    font-size: 18px;
  }
  .proof-section .tagline {
    font-size: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 14px 20px;
  }
  .navbar-logo a {
    font-size: 18px;
  }
  .navbar-links {
    gap: 16px;
  }
  .navbar-links li a {
    font-size: 12px;
  }
  .navbar-links li a.navbar-cta {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero-section {
    padding-top: 60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content .lead {
    font-size: 22px;
  }
  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  .problem-left h1 {
    font-size: 36px;
  }
  .problem-left p {
    font-size: 28px;
  }
  .problem-right {
    padding: 40px 20px;
    gap: 60px;
  }
  .problem-card {
    padding: 50px 20px 28px;
  }
  .problem-card h2 {
    font-size: 24px;
  }
  .problem-icon {
    width: 60px;
    height: 60px;
  }
  .problem-icon img {
    width: 70px;
    height: 70px;
  }

  .how-it-works-section > h1,
  .features-section > h1,
  .proof-section > h1 {
    font-size: 36px;
  }

  .step-icon,
  .step-icon img {
    width: 70px;
    height: 70px;
  }

  .feature-card img {
    width: 60px;
    height: 60px;
  }

  .proof-intro img,
  .quality-control-header img {
    width: 50px;
    height: 50px;
  }

  .footer-brand h2 {
    font-size: 32px;
  }
  .footer-brand p {
    font-size: 20px;
  }
}

/* Footer Section */
.site-footer {
  background: #2a2a2a;
  padding: 80px 60px 60px;
  color: #fff;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand .brand-logo {
  margin-bottom: 20px;
}
.footer-brand .brand-logo img {
  width: 350px;
  height: 350px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.footer-brand h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}
.footer-brand p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  opacity: 0.7;
}
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact .contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact .contact-item span {
  font-size: 14px;
  line-height: 1.5;
}
.footer-social .social-icons {
  display: flex;
  gap: 16px;
}
.footer-social .social-icons a {
  transition: opacity 0.3s, transform 0.3s;
}
.footer-social .social-icons a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0 40px 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copyright {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}
.footer-legal {
  font-size: 14px;
}
.footer-legal a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.footer-legal a:hover {
  opacity: 0.7;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 60px 36px 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand h2 {
    font-size: 28px;
  }
  .footer-brand p {
    font-size: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-copyright {
    font-size: 12px;
  }
  .footer-legal {
    font-size: 12px;
  }
}
