:root {
  --teal: #0f7774;
  --teal-dark: #075c59;
  --teal-soft: #dff3f0;

  --orange: #f28b45;
  --orange-dark: #df7130;

  --white: #ffffff;
  --off-white: #f7faf9;

  --text: #243333;
  --muted: #718080;
  --border: #e3ebea;

  --radius: 24px;
  --container: 1160px;
}


/* =========================================================
   RESET
========================================================= */

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


/* =========================================================
   BASE
========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(247, 250, 249, 0.92);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(227, 235, 234, 0.7);
}

.nav {
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 36px;

  font-size: 14px;
  font-weight: 600;

  color: var(--muted);
}

.nav-links a {
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-button {
  padding: 12px 22px;

  background: var(--teal);
  color: var(--white);

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;

  transition: 0.2s ease;
}

.nav-button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  background: var(--teal);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  min-height: 680px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 70px;

  padding: 70px 0;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.16em;
}

.hero-content h1 {
  max-width: 650px;

  font-size: clamp(52px, 6vw, 86px);

  line-height: 0.98;

  letter-spacing: -0.055em;

  margin-bottom: 28px;
}

.hero-content h1 span {
  color: #ffae70;
}

.hero-text {
  max-width: 550px;

  font-size: 19px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.82);

  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 15px 23px;

  border-radius: 999px;

  background: var(--orange);
  color: var(--white);

  font-size: 15px;
  font-weight: 800;

  transition: 0.2s ease;
}

.primary-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.primary-button span {
  font-size: 20px;
}

.secondary-button {
  display: inline-flex;

  padding: 14px 22px;

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 999px;

  color: var(--white);

  font-size: 15px;
  font-weight: 700;

  transition: 0.2s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-note {
  margin-top: 28px;

  display: flex;
  align-items: center;
  gap: 9px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 13px;
}

.dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ffae70;
}


/* =========================================================
   HERO POSTER
========================================================= */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.poster-wrapper {
  position: relative;
  width: min(100%, 470px);
}

.poster-glow {
  position: absolute;

  width: 85%;
  height: 85%;

  left: 7.5%;
  top: 8%;

  background: var(--orange);

  filter: blur(80px);
  opacity: 0.25;

  border-radius: 50%;
}

.poster {
  position: relative;

  width: 100%;

  border-radius: 30px;

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.25);

  transform: rotate(2deg);

  transition: transform 0.4s ease;
}

.poster:hover {
  transform: rotate(0deg) translateY(-8px);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 60px;
}

.section-heading .eyebrow {
  color: var(--orange);
}

.section-heading h2 {
  font-size: clamp(38px, 5vw, 60px);

  line-height: 1;
  letter-spacing: -0.045em;

  margin-bottom: 20px;
}

.section-heading p {
  color: var(--muted);

  font-size: 17px;

  max-width: 580px;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
  background: var(--off-white);
}

.steps {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.step-card {
  position: relative;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 34px;

  min-height: 300px;

  transition: 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 50px rgba(21, 74, 72, 0.08);
}

.step-card.featured {
  background: var(--teal);
  color: var(--white);

  border-color: var(--teal);
}

.step-number {
  margin-bottom: 45px;

  color: var(--orange);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.12em;
}

.step-icon {
  margin-bottom: 24px;

  font-size: 30px;
}

.step-card h3 {
  margin-bottom: 10px;

  font-size: 23px;

  letter-spacing: -0.025em;
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
}

.step-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   WHY MARU
========================================================= */

.why-section {
  background: var(--white);
}

.why-container {
  background: var(--teal);

  border-radius: 34px;

  padding: 75px;

  overflow: hidden;
}

.why-grid {
  display: grid;

  grid-template-columns: 1fr 0.9fr;

  gap: 70px;

  align-items: center;
}

.why-copy {
  color: var(--white);
}

.why-copy .eyebrow {
  color: var(--orange);
}

.why-copy h2 {
  color: var(--white);

  font-size: clamp(40px, 5vw, 62px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 24px;
}

.why-copy > p {
  color: rgba(255, 255, 255, 0.68);

  max-width: 560px;

  font-size: 17px;

  line-height: 1.8;
}

.feature-list {
  margin-top: 38px;

  display: flex;
  flex-direction: column;

  gap: 22px;
}

.feature {
  display: flex;
  align-items: flex-start;

  gap: 15px;
}

.feature-check {
  flex-shrink: 0;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: var(--orange);
  color: var(--white);

  font-weight: 900;
}

.feature strong {
  display: block;

  color: var(--orange);

  font-size: 16px;

  margin-bottom: 2px;
}

.feature span {
  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
}

.why-image {
  position: relative;

  display: flex;
  justify-content: center;
}

.why-image img {
  width: 100%;

  max-width: 430px;

  border-radius: 26px;

  transform: rotate(2deg);

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   MARU PROMISE
========================================================= */

.promise-section {
  background: var(--off-white);

  padding: 110px 0;
}

.promise-heading {
  max-width: 700px;

  margin-bottom: 60px;
}

.promise-heading .eyebrow {
  color: var(--orange);
}

.promise-heading h2 {
  color: var(--teal);

  font-size: clamp(42px, 5vw, 68px);

  line-height: 0.98;

  letter-spacing: -0.05em;

  margin-bottom: 24px;
}

.promise-heading p {
  max-width: 600px;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.8;
}

.promise-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.promise-card {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 34px;

  min-height: 300px;

  transition: 0.25s ease;
}

.promise-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 50px rgba(21, 74, 72, 0.08);
}

.promise-card.active {
  background: var(--teal);

  border-color: var(--teal);

  color: var(--white);
}

.promise-number {
  display: block;

  color: var(--orange);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.14em;

  margin-bottom: 45px;
}

.promise-icon {
  color: var(--orange);

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 0.18em;

  margin-bottom: 18px;
}

.promise-card h3 {
  color: var(--teal);

  font-size: 24px;

  letter-spacing: -0.025em;

  margin-bottom: 10px;
}

.promise-card.active h3 {
  color: var(--white);
}

.promise-card p {
  color: var(--muted);

  font-size: 15px;

  line-height: 1.7;
}

.promise-card.active p {
  color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   DOWNLOAD / CTA
========================================================= */

.cta-section {
  padding: 40px 0 120px;

  background: var(--white);
}

.cta-card {
  position: relative;

  overflow: hidden;

  background: var(--teal);
  color: var(--white);

  border-radius: 34px;

  padding: 70px;

  min-height: 390px;

  display: flex;
  align-items: center;
}

.cta-content {
  position: relative;

  z-index: 2;

  max-width: 680px;
}

.cta-content .eyebrow {
  color: var(--orange);
}

.cta-content h2 {
  color: var(--orange);

  font-size: clamp(40px, 5vw, 64px);

  line-height: 1;

  letter-spacing: -0.05em;

  margin-bottom: 22px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.72);

  font-size: 17px;

  max-width: 500px;

  margin-bottom: 30px;
}


/* =========================================================
   DOWNLOAD BUTTONS
========================================================= */

.download-buttons {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-wrap: wrap;
}

.store-button,
.ios-button {
  min-width: 190px;

  display: flex;
  align-items: center;

  gap: 12px;

  padding: 12px 18px;

  border-radius: 14px;
}

.store-button {
  background: var(--orange);
  color: var(--white);

  border: none;

  transition: 0.2s ease;
}

.store-button:hover {
  background: var(--orange-dark);
  color: var(--white);

  transform: translateY(-3px);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.12);
}

.store-button small,
.store-button strong {
  color: var(--white);
}

.ios-button {
  border: 1px solid rgba(255, 255, 255, 0.25);

  color: var(--white);

  opacity: 0.65;

  cursor: default;
}

.store-icon {
  font-size: 26px;
  line-height: 1;
}

.store-button small,
.ios-button small {
  display: block;

  font-size: 9px;
  line-height: 1.2;

  letter-spacing: 0.08em;

  margin-bottom: 2px;
}

.store-button strong,
.ios-button strong {
  display: block;

  font-size: 16px;
  line-height: 1.2;
}

.cta-paw {
  position: absolute;

  right: 50px;
  bottom: -60px;

  font-size: 300px;

  opacity: 0.07;

  transform: rotate(-15deg);
}


/* =========================================================
   SEO CONTENT
========================================================= */

.seo-content {
  background: var(--white);

  padding: 110px 0;
}

.seo-content .container {
  max-width: 820px;
}

.seo-content h2 {
  color: var(--teal);

  font-size: clamp(38px, 5vw, 62px);

  line-height: 1.05;

  letter-spacing: -0.045em;

  margin-bottom: 30px;
}

.seo-content p {
  color: var(--muted);

  font-size: 17px;

  line-height: 1.85;

  margin-bottom: 20px;

  max-width: 760px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
  background:#eef8f7;
}

.faq-list {
  max-width: 850px;

  border-top: 1px solid var(--border);
}

details {
  border-bottom: 1px solid var(--border);

  padding: 25px 0;
}

summary {
  list-style: none;

  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 18px;
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

summary .faq-plus {
  color: var(--orange);

  font-size: 26px;
  font-weight: 400;

  transition: 0.2s ease;
}

details[open] summary .faq-plus {
  transform: rotate(45deg);
}

details p {
  max-width: 720px;

  color: var(--muted);

  margin-top: 15px;

  font-size: 15px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding: 120px 0;

  background: var(--teal);

  color: var(--white);
}

.contact-container {
  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 80px;

  align-items: center;
}

.contact-heading .eyebrow {
  color: var(--orange);
}

.contact-heading h2 {
  color: var(--white);

  font-size: clamp(40px, 5vw, 60px);

  line-height: 1;

  letter-spacing: -0.045em;

  margin-bottom: 22px;
}

.contact-heading p {
  color: rgba(255, 255, 255, 0.68);

  font-size: 17px;

  max-width: 470px;

  margin-bottom: 25px;
}

.contact-email {
  color: var(--orange);

  font-weight: 800;

  font-size: 16px;
}

.contact-form {
  background: var(--white);

  border-radius: 28px;

  padding: 35px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 15px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;

  color: var(--teal);

  font-size: 13px;
  font-weight: 800;

  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;

  border: 1px solid var(--border);

  border-radius: 12px;

  background: var(--white);

  color: var(--teal);

  padding: 13px 15px;

  font: inherit;

  outline: none;

  transition: 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9aa9a8;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);

  box-shadow:
    0 0 0 3px rgba(242, 139, 69, 0.12);
}

.form-group textarea {
  resize: vertical;

  min-height: 140px;
}

.contact-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 14px 23px;

  border-radius: 999px;

  background: var(--orange);
  color: var(--white);

  font-size: 14px;
  font-weight: 800;

  transition: 0.2s ease;
}

.contact-button:hover {
  background: var(--orange-dark);

  transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: var(--teal-soft);
  color: var(--teal);
  padding: 75px 24px 30px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  gap: 26px;
}

/* BRAND */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  width: 120px;
  height: auto;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* FOLLOW */

.footer-follow {
  margin-top: 4px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

/* LINKS */

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 20px;

  color: var(--orange);
  background: transparent;

  border: 1px solid rgba(242, 139, 69, 0.45);
  border-radius: 999px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 700;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* COPYRIGHT */

.copyright {
  width: 100%;

  margin-top: 25px;
  padding-top: 22px;

  border-top: 1px solid rgba(15, 119, 116, 0.15);

  text-align: center;

  color: rgba(15, 119, 116, 0.60);

  font-size: 12px;
}

/* MOBILE */

@media (max-width: 600px) {

  .footer {
    padding: 55px 20px 25px;
  }

  .footer-brand img {
    width: 105px;
  }

  .footer-links {
    gap: 9px;
  }

  .footer-links a {
    padding: 9px 16px;
  }

}
/* =========================================================
   RESPONSIVE — TABLET / MOBILE
========================================================= */

@media (max-width: 850px) {

  /* Header */

  .nav {
    height: 72px;
  }

  .nav-links {
    display: none;
  }

  .nav-button {
    padding: 10px 17px;
  }


  /* Hero */

  .hero-grid {
    grid-template-columns: 1fr;

    gap: 50px;

    min-height: auto;

    padding-top: 65px;
    padding-bottom: 65px;
  }

  .hero-content h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-visual {
    max-width: 500px;

    margin: 0 auto;
  }


  /* Steps */

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

  .step-card {
    min-height: auto;
  }


  /* Why */

  .why-container {
    padding: 45px 30px;

    border-radius: 25px;
  }

  .why-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .why-image {
    order: -1;
  }


  /* Promise */

  .promise-section {
    padding: 85px 0;
  }

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

  .promise-card {
    min-height: auto;
  }


  /* CTA */

  .cta-card {
    padding: 50px 30px;
  }

  .cta-paw {
    right: -30px;

    font-size: 220px;
  }


  /* Contact */

  .contact-section {
    padding: 85px 0;
  }

  .contact-container {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .contact-form {
    padding: 25px;
  }


  /* SEO */

  .seo-content {
    padding: 85px 0;
  }


  /* Footer */

  .footer-inner {
    grid-template-columns: 1fr;

    text-align: left;
  }

  .copyright {
    text-align: left;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .download-buttons {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }

  .store-button,
  .ios-button {
    width: 100%;

    min-width: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-container {
    padding: 40px 24px;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .container {
    width: min(
      calc(100% - 32px),
      var(--container)
    );
  }

  .hero-grid {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero-content h1 {
    font-size: 55px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section {
    padding: 85px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .why-card {
    padding: 25px;
    border-radius: 25px;
  }

  .qr-box {
    width: 180px;
    height: 180px;
  }

  .cta-section {
    padding-bottom: 85px;
  }

  .cta-card {
    border-radius: 25px;

    min-height: 420px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .seo-content {
    padding: 75px 0;
  }

  .seo-content h2 {
    font-size: 38px;
  }

  .seo-content p {
    font-size: 16px;
  }

  

}