﻿:root {
  --text: #101214;
  --muted: #4a555f;
  --aqua: #58bedd;
  --aqua-deep: #2e96b8;
  --lime: #a9cc55;
  --lime-deep: #7ca430;
  --dark: #101214;
  --surface: rgba(255, 255, 255, 0.76);
  --shadow: 0 24px 60px rgba(16, 18, 20, 0.16);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(88, 190, 221, 0.36), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(169, 204, 85, 0.24), transparent 26%),
    linear-gradient(180deg, #f8fbfc 0%, #e1f0f5 100%);
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  content: "";
  filter: blur(28px);
  opacity: 0.65;
}

body::before {
  top: -12rem;
  right: -10rem;
  background: rgba(88, 190, 221, 0.28);
}

body::after {
  bottom: -14rem;
  left: -10rem;
  background: rgba(169, 204, 85, 0.18);
}

.page-shell {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 36px;
}

.topbar {
  display: flex;
  justify-content: center;
  padding: 0;
}

.brand {
  display: block;
  width: min(100%, 740px);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 196px;
  object-fit: contain;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.hero h1 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin-top: 28px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  padding: 16px 18px;
  border-radius: 18px;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(16, 18, 20, 0.2);
}

.store-button.ios {
  background: linear-gradient(135deg, #77b7ef, var(--aqua-deep));
}

.store-button.android {
  background: linear-gradient(135deg, #b7da5d, var(--lime-deep));
}

.store-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.8rem;
  font-weight: 800;
}

.store-copy {
  display: grid;
  gap: 3px;
  text-align: left;
}

.store-copy small {
  opacity: 0.88;
}

.store-copy strong {
  font-size: 1.06rem;
}

.hero-text {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 22px;
}

.feature-pill {
  padding: 22px 20px;
  border-radius: 24px;
  box-shadow: 0 20px 46px rgba(16, 18, 20, 0.1);
}

.feature-pill h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
}

.feature-pill p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.feature-pill.aqua {
  background: linear-gradient(160deg, rgba(88, 190, 221, 0.95), rgba(152, 228, 246, 0.88));
}

.feature-pill.dark {
  background: linear-gradient(160deg, #131619, #292d31);
  color: #fff;
}

.feature-pill.lime {
  background: linear-gradient(160deg, rgba(169, 204, 85, 0.94), rgba(213, 238, 138, 0.88));
}

.feature-pill.white {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(196, 231, 243, 0.92));
}

.services-section {
  width: 100%;
  margin-top: 26px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 50px rgba(16, 18, 20, 0.1);
}

.services-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.services-kicker {
  margin: 0;
  color: var(--aqua-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.12;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(16, 18, 20, 0.12);
  text-align: left;
}

.service-card--aqua {
  background: linear-gradient(160deg, rgba(88, 190, 221, 0.95), rgba(152, 228, 246, 0.88));
}

.service-card--dark {
  background: linear-gradient(160deg, #131619, #292d31);
  color: #fff;
}

.service-card--lime {
  background: linear-gradient(160deg, rgba(169, 204, 85, 0.94), rgba(213, 238, 138, 0.88));
}

.service-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.22);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 20px;
}

.service-card__body h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 800;
}

.service-card__price {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 46px;
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(16, 18, 20, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.service-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 18, 20, 0.16);
  background: #fff;
}

.service-card__button:active {
  transform: translateY(0);
}

.service-card--dark .service-card__button {
  background: rgba(255, 255, 255, 0.96);
  color: #131619;
}

@media (max-width: 980px) {
  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mascot-wrap {
  position: relative;
  width: min(100%, 560px);
  margin-top: 26px;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 50px rgba(16, 18, 20, 0.1);
}

.mascot-image {
  display: block;
  width: 100%;
  border-radius: 26px;
}

.contact-note {
  width: 100%;
  align-self: stretch;
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
  font-size: 0.98rem;
  line-height: 1.6;
  box-shadow: 0 16px 36px rgba(16, 18, 20, 0.08);
}

.contact-note p {
  margin: 0;
}

.contact-note p + p {
  margin-top: 6px;
}

.contact-note a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.mascot-slogan {
  position: absolute;
  top: 42px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 12px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 12px 28px rgba(16, 18, 20, 0.1);
  backdrop-filter: blur(10px);
}

@media (max-width: 700px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 10px;
  }

  .topbar {
    padding: 0;
  }

  .brand {
    width: 100%;
  }

  .brand-logo {
    height: 136px;
  }

  .hero {
    padding-top: 0;
  }


  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.2vw, 2rem);
  }

  .store-button {
    width: 100%;
    min-width: 0;
  }

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

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .services-section {
    margin-top: 20px;
    padding: 18px;
    border-radius: 24px;
  }

  .services-heading {
    align-items: flex-start;
    margin-bottom: 16px;
    text-align: left;
  }

  .services-heading h2 {
    font-size: 1.55rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    border-radius: 22px;
  }

  .service-card__body {
    padding: 16px;
  }

  .mascot-wrap {
    margin-top: 20px;
    padding: 12px;
    border-radius: 26px;
  }

  .mascot-slogan {
    top: 24px;
    width: calc(100% - 40px);
    padding: 10px 14px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .mascot-image {
    border-radius: 20px;
  }

  .contact-note {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}


