:root {
  --ink: #17211f;
  --muted: #62706d;
  --teal: #58beb1;
  --teal-dark: #1e8078;
  --leaf: #87b55d;
  --sun: #f1c24d;
  --coral: #ec6d5f;
  --mist: #edf8f6;
  --paper: #ffffff;
  --line: #dbe7e4;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(88, 190, 177, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 44px rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #40504d;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--mist);
  color: var(--teal-dark);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  background: var(--teal-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-pad {
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding-top: 70px;
  background:
    radial-gradient(circle at 72% 16%, rgba(236, 109, 95, 0.16), transparent 32%),
    linear-gradient(135deg, #f7fbf9 0%, #eaf8f5 54%, #fff7df 100%);
}

.hero-grid,
.explore-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.explore-grid p,
.faq-grid > div > p,
.contact-grid p,
.download-inner p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.hero-points li {
  padding: 10px 13px;
  border: 1px solid rgba(88, 190, 177, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #31423f;
  font-weight: 700;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-buttons-center {
  justify-content: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
  min-height: 58px;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(23, 33, 31, 0.16);
}

.store-button-alt {
  background: var(--teal-dark);
}

.store-button small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.82;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.hero-visual {
  min-width: 0;
}

.phone-stage {
  position: relative;
  min-height: 620px;
}

.phone-main {
  position: relative;
  z-index: 2;
  width: min(390px, 80vw);
  margin-left: auto;
  filter: drop-shadow(0 30px 44px rgba(23, 33, 31, 0.24));
}

.phone-float {
  position: absolute;
  z-index: 1;
  width: min(260px, 46vw);
  left: 0;
  bottom: 46px;
  opacity: 0.96;
  filter: drop-shadow(0 22px 34px rgba(23, 33, 31, 0.2));
}

.trust {
  padding: 28px 0;
  background: var(--ink);
  color: #fff;
}

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

.trust h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.trust p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.features-section {
  background: #fff;
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.76fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature-card {
  min-height: 166px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 33, 31, 0.06);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card:nth-child(2n) .feature-icon {
  background: #fff4df;
  color: #a46c00;
}

.feature-card-link {
  background: var(--ink);
  color: #fff;
}

.feature-card-link p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-phone img {
  width: min(330px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 30px 42px rgba(23, 33, 31, 0.18));
}

.explore-section {
  background: var(--mist);
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metric-row span {
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.metric-row strong {
  color: var(--ink);
}

.map-panel {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-panel img {
  width: min(420px, 100%);
  margin: 0 auto;
}

.screenshots-section {
  background: #fff;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: end;
}

.screenshots-grid figure {
  margin: 0;
  padding: 24px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbf9, #fff);
  text-align: center;
}

.screenshots-grid img {
  height: 460px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.screenshots-grid figcaption {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
}

.faq-section {
  background: #f7fbf9;
}

.faq-grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

details,
.support-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 33, 31, 0.05);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
}

.support-box {
  padding: 24px;
  background: var(--ink);
  color: #fff;
}

.support-box p {
  color: rgba(255, 255, 255, 0.72);
}

.support-box a {
  display: inline-flex;
  margin-top: 6px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--ink);
  font-weight: 900;
}

.download-cta {
  padding: 76px 0;
  background:
    linear-gradient(rgba(23, 33, 31, 0.86), rgba(23, 33, 31, 0.86)),
    url("../images/app-explore.png") center / contain repeat-x;
  color: #fff;
  text-align: center;
}

.download-inner {
  max-width: 760px;
}

.download-inner p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-section {
  background: #fff;
}

address {
  color: var(--muted);
  font-style: normal;
}

address a,
.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfdcd9;
  border-radius: 8px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(88, 190, 177, 0.24);
  border-color: var(--teal);
}

.contact-form button {
  min-height: 50px;
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  background: #111816;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 42px;
  padding: 54px 0;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand {
  margin-bottom: 14px;
  color: #fff;
}

.footer-grid h3 {
  margin-bottom: 14px;
}

.footer-bottom {
  padding: 18px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.legal-page {
  padding: 80px 0;
}

.legal-content {
  max-width: 850px;
}

.legal-content h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .explore-grid,
  .contact-grid,
  .faq-grid,
  .features-layout {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone-main {
    margin: 0 auto;
  }

  .phone-float {
    left: 6%;
  }

  .trust-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .features-layout {
    max-width: 760px;
    margin: 0 auto;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav-static {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .site-nav-static a:not(.nav-cta) {
    display: none;
  }

  .section-pad {
    padding: 68px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .phone-stage {
    min-height: auto;
  }

  .phone-float {
    display: none;
  }

  .screenshots-grid img {
    height: 390px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .section-inner {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-points,
  .metric-row {
    flex-direction: column;
  }

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