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

:root {
  --p: #2D9596;
  --pl: #E8F7F7;
  --pd: #257E7F;
  --t: #111111;
  --ts: #555555;
  --th: #999999;
  --bg: #FFFFFF;
  --sf: #F5F5F5;
  --br: #EFEFEF;
  --f: 'Outfit', sans-serif
}

body {
  font-family: var(--f);
  color: var(--t);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--br);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--f);
  color: var(--t);
  text-decoration: none
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-mark img {
  width: 100%;
  height: auto;
}

.logo-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.3px
}

.nav-links {
  display: flex;
  gap: 2px
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ts);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  text-decoration: none;
  display: inline-block
}

.nav-link:hover {
  color: var(--p);
  background: var(--pl)
}

.nav-link.active {
  color: var(--p)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--pl);
  color: var(--p);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1.5px solid #C0E8E8;
  text-decoration: none;
  transition: background .15s
}

.nav-cta:hover {
  background: #D0F0F0
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0
}

.nav-burger:hover {
  background: var(--sf)
}

.burger-line {
  width: 18px;
  height: 2px;
  background: var(--t);
  border-radius: 2px;
  transition: transform .2s, opacity .2s
}

.nav-burger.open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-burger.open .burger-line:nth-child(2) {
  opacity: 0
}

.nav-burger.open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--br);
  padding: 8px 16px
}

.mobile-nav-link {
  padding: 13px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ts);
  text-decoration: none;
  border-radius: 8px
}

.mobile-nav-link:hover {
  color: var(--p);
  background: var(--pl)
}

.mobile-nav-link.active {
  color: var(--p)
}

.hero {
  padding: 72px 24px 40px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pl);
  color: var(--p);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid #C0E8E8
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--p);
  animation: pulse 2.4s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero h1 {
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 20px
}

.hero h1 em {
  color: var(--p);
  font-style: normal
}

.hero-sub {
  font-size: 18px;
  color: var(--ts);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.notify-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.notify-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 400px
}

.notify-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--br);
  border-radius: 12px;
  font-family: var(--f);
  font-size: 14px;
  color: var(--t);
  background: var(--bg);
  outline: none;
  transition: border-color .15s
}

.notify-input:focus {
  border-color: var(--p)
}

.notify-input::placeholder {
  color: var(--th)
}

.notify-btn {
  padding: 12px 20px;
  background: var(--p);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0
}

.notify-btn:hover {
  background: var(--pd)
}

.notify-note {
  font-size: 12px;
  color: var(--th)
}

.notify-success {
  display: none;
  background: var(--pl);
  color: var(--p);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #C0E8E8;
  max-width: 400px;
  width: 100%;
  text-align: center
}

.download-wrap {
  display: flex;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
  align-items: stretch
}

.download-card {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  border: 1.5px solid var(--br);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left
}

.download-qr {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  align-self: center;
  border: 1px solid var(--br);
  border-radius: 10px;
  padding: 6px;
  background: #fff
}

.download-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%
}

.download-platform {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--p);
  display: flex;
  align-items: center;
  gap: 6px
}

.download-platform svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #111111;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  line-height: 1.3;
  text-align: center;
  transition: background .15s
}

.download-btn:hover {
  background: #000
}

.download-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0
}

.download-hint {
  font-size: 12px;
  color: var(--th);
  line-height: 1.5;
  margin: 0
}

.download-body .notify-form {
  flex-direction: column;
  max-width: none
}

.download-body .notify-btn {
  width: 100%
}

.mockup-section {
  padding: 16px 24px 72px;
  display: flex;
  justify-content: center
}

.phone-frame {
  width: 252px;
  background: #1A1A1A;
  border-radius: 40px;
  padding: 11px;
  box-shadow: 0 48px 96px rgba(0, 0, 0, .16), 0 0 0 1px rgba(255, 255, 255, .04)
}

.phone-screen {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  height: 490px;
  position: relative
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 16px 16px;
  z-index: 10
}

.app-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-screen img {
  width: 100%;
  height: auto;
}

.trust-strip {
  padding: 28px 24px;
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px
}

.trust-icon {
  width: 17px;
  height: 17px;
  color: var(--p);
  flex-shrink: 0
}

.trust-text {
  font-size: 13px;
  color: var(--ts);
  font-weight: 500
}

.section {
  padding: 72px 24px;
  max-width: 1040px;
  margin: 0 auto
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--p);
  margin-bottom: 10px;
  text-transform: uppercase
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -.8px;
  margin-bottom: 12px;
  line-height: 1.15
}

.section-sub {
  font-size: 16px;
  color: var(--ts);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.65
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 14px
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--br);
  border-radius: 18px;
  padding: 24px;
  transition: border-color .2s, box-shadow .2s
}

.feature-card:hover {
  border-color: #C0E8E8;
  box-shadow: 0 4px 20px rgba(45, 149, 150, .07)
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--pl);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px
}

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

.feature-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px
}

.feature-desc {
  font-size: 14px;
  color: var(--ts);
  line-height: 1.55
}

.pricing-bg {
  background: #FAFFFE;
  padding: 72px 24px;
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br)
}

.pricing-inner {
  max-width: 580px;
  margin: 0 auto
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px
}

.pricing-card {
  background: white;
  border: 1.5px solid var(--br);
  border-radius: 20px;
  padding: 24px
}

.pricing-card.featured {
  border-color: var(--p)
}

.pricing-badge {
  display: inline-block;
  background: var(--p);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .3px
}

.pricing-price {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.8px;
  margin-bottom: 2px
}

.pricing-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--th)
}

.pricing-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.pricing-list li {
  font-size: 13px;
  color: var(--ts);
  display: flex;
  gap: 7px;
  align-items: flex-start
}

.pricing-list li::before {
  content: '✓';
  color: var(--p);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.pricing-cta {
  display: block;
  width: 100%;
  margin-top: 18px;
  background: var(--p);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 11px;
  border-radius: 12px;
  text-align: center;
  border: none;
  font-family: var(--f);
  cursor: pointer;
  transition: background .15s;
  text-decoration: none
}

.pricing-cta:hover {
  background: var(--pd)
}

.pricing-cta.sec {
  background: var(--sf);
  color: var(--t)
}

.pricing-cta.sec:hover {
  background: #EBEBEB
}

.social-section {
  padding: 72px 24px;
  text-align: center
}

.social-inner {
  max-width: 560px;
  margin: 0 auto
}

.social-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px
}

.social-btn-big {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--sf);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 13px 22px;
  text-decoration: none;
  color: var(--t);
  font-size: 14px;
  font-weight: 600;
  transition: border-color .15s, background .15s, color .15s
}

.social-btn-big:hover {
  border-color: #C0E8E8;
  background: var(--pl);
  color: var(--p)
}

.social-btn-big svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

footer {
  padding: 40px 24px;
  border-top: 1px solid var(--br)
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-logo {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-name {
  font-size: 15px;
  font-weight: 600
}

.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap
}

.footer-link {
  font-size: 13px;
  color: var(--ts);
  text-decoration: none;
  transition: color .15s;
  padding: 4px 8px;
  border-radius: 6px
}

.footer-link:hover {
  color: var(--p)
}

.footer-socials {
  display: flex;
  gap: 6px
}

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--sf);
  border: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ts);
  transition: background .15s, color .15s, border-color .15s
}

.footer-social:hover {
  background: var(--pl);
  color: var(--p);
  border-color: #C0E8E8
}

.footer-social svg {
  width: 15px;
  height: 15px
}

.footer-copy {
  font-size: 12px;
  color: var(--th);
  width: 100%;
  margin-top: 4px
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 52px 24px 88px
}

.legal-page h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.6px;
  margin-bottom: 6px
}

.legal-date {
  font-size: 13px;
  color: var(--th);
  margin-bottom: 36px
}

.legal-page h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 36px 0 10px
}

.legal-page p {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.72;
  margin-bottom: 13px
}

.legal-page ul {
  margin: 0 0 13px 20px
}

.legal-page li {
  font-size: 15px;
  color: var(--ts);
  line-height: 1.72;
  margin-bottom: 5px
}

.legal-page a {
  color: var(--p);
  text-decoration: none
}

.legal-page a:hover {
  text-decoration: underline
}

.legal-highlight {
  background: var(--pl);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 18px 0;
  border-left: 3px solid var(--p)
}

.legal-highlight p {
  color: #2D6A6A;
  margin: 0;
  font-size: 14px
}

@media(max-width:620px) {
  .nav-links {
    display: none
  }

  .nav-burger {
    display: flex
  }

  .mobile-nav.open {
    display: flex;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: calc(100vh - 58px);
    overflow-y: auto
  }

  .pricing-cards {
    grid-template-columns: 1fr
  }

  .trust-strip {
    gap: 18px
  }

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

  .notify-form {
    flex-direction: column
  }

  .notify-btn {
    width: 100%;
    padding: 13px
  }

  .download-wrap {
    flex-direction: column
  }

  .download-card {
    flex-direction: column;
    text-align: center
  }

  .download-platform {
    justify-content: center
  }
}