*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f2e8dc;
  --dark-text: #3d3535;
  --blue-link: #275eaa;
  --orange: #f7a35c;
  --page-pad: 160px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--dark-text);
  background: var(--cream);
  overflow-x: hidden;
}

.gradient-text {
  background: linear-gradient(0deg, #397cd9 0%, #ff7b72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 256px;
  height: 62px;
  padding: 16px 24px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #fff;
  background: var(--orange);
  box-shadow:
    0px -4px 8px 0px #944807 inset,
    0px 4px 6px 0px #fff9d8 inset;
  transition:
    background 0.25s,
    box-shadow 0.25s;
  text-decoration: none;
}
.btn:hover {
  background: linear-gradient(0deg, #397cd9 0%, #ff7b72 100%);
  box-shadow:
    0px -4px 8px 0px #122e7d inset,
    0px 4px 6px 0px #fffce9 inset;
}

header {
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(61, 53, 53, 0.08);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: #ddd;
}
nav {
  display: flex;
  gap: 40px;
}
nav a {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--blue-link);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  margin: 5px 0;
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  background: var(--cream);
  border-radius: 16px;
  margin: 8px 16px;
  padding: 16px 0;
  top: 76px;
  left: 20px;
  right: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.mobile-menu a {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--dark-text);
  text-decoration: none;
  padding: 14px 32px;
  text-align: center;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--blue-link);
}
.mobile-menu.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 635px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/UniversalUpscaler_Ultra_Realistic_2_615aab69-fc8f-4896-8acc-b6664b35a92a\ 1.jpg");
  background-size: cover;
  background-position: right center;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

h1.hero-title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 120%;
  letter-spacing: 0%;

  background: linear-gradient(0deg, #397cd9 0%, #ff7b72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  filter: drop-shadow(2px 0 0 #fff) drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff) drop-shadow(0 -2px 0 #fff)
    drop-shadow(1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff)
    drop-shadow(1px -1px 0 #fff) drop-shadow(-1px 1px 0 #fff);
  margin-bottom: 16px;
}
.hero-sub {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  color: var(--dark-text);
  padding-bottom: 50px;
}
.hero-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--dark-text);
  max-width: 480px;
  padding-bottom: 60px;
}

section {
  padding: 100px 0;
}
.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.section-title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 120%;
  background: linear-gradient(0deg, #397cd9 0%, #ff7b72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
}
.para-heading {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--blue-link);
  margin-bottom: 12px;
}
.para-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--dark-text);
}

#how-it-works {
  background: var(--cream);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-number {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--blue-link);
  margin-bottom: 6px;
}
.step-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--dark-text);
  margin-bottom: 16px;
}
.step-img {
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 16px;
  display: block;
}

#features {
  background: var(--cream);
}
.features-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.features-center-image {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
  max-height: 470px;
  display: block;

  margin-bottom: 48px;
}
.features-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

#testimonials {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.testimonials-bg {
  background-image: url("assets/Image_25ypkv.jpg");
  background-size: cover;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 0;
}
.testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title.testimonials-title {
  margin-bottom: 32px;
}
.testimonial-card {
  padding: 32px 36px;
}
.stars {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--dark-text);
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-text);
  text-align: right;
}
/* Arrow navigation */
.testimonial-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.arrow-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.arrow-btn:hover {
  opacity: 0.75;
  transform: scale(1.1);
}
.arrow-btn img {
  width: 48px;
  height: 48px;
}

/* ───────────── CTA FOOTER SECTION ───────────── */
#cta {
  background: #2d2929;
  padding: 100px var(--page-pad);
  text-align: center;
}
.cta-tagline {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 120%;
  background: linear-gradient(0deg, #397cd9 0%, #ff7b72 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 48px;
}

/* ───────────── FOOTER ───────────── */
footer {
  background: #2d2929;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px var(--page-pad);
  text-align: center;
}
footer nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  flex-direction: column;
  padding-bottom: 40px;
}
footer nav a {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #d4a5c9;
  text-decoration: none;
}
footer nav a:hover {
  color: var(--cream);
}
.footer-copy {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: #d4a5c9;
}

@media (max-width: 768px) {
  :root {
    --page-pad: 20px;
  }
  section {
    padding: 50px 0;
  }

  nav {
    display: none;
  }
  .hamburger {
    display: block;
  }

  .hero {
    min-height: 812px;
    display: flex;
    align-items: flex-start;
    padding-top: 80px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  h1.hero-title {
    font-size: 56px;
  }
  .hero-sub {
    font-size: 24px;
  }
  .hero-text {
    font-size: 16px;
  }

  .hero-content {
    padding: 0px var(--page-pad);
    margin-left: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-bg {
    background-image: url("assets/Gemini_Generated_Image_bddu0vbddu0vbddu\ 1.jpg");
  }

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

  .features-grid-top,
  .features-grid-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #testimonials {
    min-height: 732px;
  }
  .testimonials-inner {
    grid-template-columns: 1fr;
  }
  .testimonials-left {
    display: none;
  }
  .testimonials-bg {
    background-image: url("assets/Gemini_Generated_Image_qnki8fqnki8fqnki\ 1.jpg");
  }
  .testimonial-card {
    padding-left: 0;
    margin-left: 0;
    text-align: left;
  }

  .testimonial-quote {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
  }

  .stars {
    justify-content: flex-start;
    text-align: left;
  }

  .section-title {
    font-size: 36px;
  }

  #cta {
    padding: 80px var(--page-pad);
  }
  .cta-tagline {
    font-size: 32px;
  }

  /* Footer */
  footer {
    padding: 32px var(--page-pad);
  }
}
