:root {
  --brand-orange: #f1592a;
  --brand-peach: #ffe3d7;
  --brand-dark: #1c1c1e;
  --brand-muted: #5c5c63;
  --bg: #fff9f6;
  --card-bg: #ffffff;
  --accent: #ff9c6f;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 30px 60px -24px rgba(241, 89, 42, 0.45);
  --shadow-card: 0 18px 40px -22px rgba(12, 13, 28, 0.28);
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Urbanist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top right, rgba(255, 238, 228, 0.7), transparent 40%) var(--bg);
  color: var(--brand-dark);
  line-height: 1.6;
}

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

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(28, 28, 30, 0.05);
}

.nav.is-scrolled {
  box-shadow: 0 12px 30px -22px rgba(12, 13, 28, 0.6);
  background: rgba(255, 255, 255, 0.95);
}

.nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.25rem;
}

.brand img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__menu a {
  color: var(--brand-muted);
  transition: color 0.2s ease;
}

.nav__menu a:hover,
.nav__menu a:focus {
  color: var(--brand-orange);
}

.nav__cta {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 10px 20px -12px rgba(241, 89, 42, 0.8);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.2rem;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--brand-dark);
  border-radius: 999px;
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.hero__glow--one {
  background: rgba(241, 89, 42, 0.36);
  top: -160px;
  left: -120px;
}

.hero__glow--two {
  background: rgba(255, 196, 156, 0.32);
  bottom: -220px;
  right: -160px;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(241, 89, 42, 0.25) 1px, transparent 0),
    url('assets/img/bg-pattern.jpg');
  background-size: 32px 32px, cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0.5rem 0 1.5rem;
}

.hero__eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-orange);
}

.hero__body {
  color: var(--brand-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-orange), #ff7d4f);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: translateY(-3px);
}

.btn--ghost {
  border-color: rgba(241, 89, 42, 0.3);
  color: var(--brand-orange);
  background: rgba(241, 89, 42, 0.08);
}

.btn--full {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 0;
  margin: 0 0 1.8rem;
  list-style: none;
}

.hero__stats li {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: 0 18px 30px -28px rgba(12, 13, 28, 0.36);
  display: grid;
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
}

.hero__stats li::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(241, 89, 42, 0.12);
  pointer-events: none;
}

.stat__icon {
  font-size: 1.35rem;
}

.stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.stat__suffix {
  font-size: 1rem;
  color: var(--brand-muted);
}

.stat__label {
  display: block;
  color: var(--brand-muted);
  margin-top: 0.3rem;
}

.hero__trusted {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.18);
}

.hero__trusted-label {
  font-weight: 600;
  color: var(--brand-muted);
}

.hero__trusted-logos {
  display: inline-flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--brand-dark);
}

.hero__visual {
  position: relative;
}

.hero__phone {
  width: min(380px, 90%);
  margin-inline: auto;
  aspect-ratio: 9 / 18;
  border-radius: 40px;
  padding: 1.1rem;
  background: linear-gradient(180deg, #1c1c28, #2c2c39);
  box-shadow: var(--shadow-card);
  position: relative;
}

.phone__screen {
  height: 100%;
  border-radius: 28px;
  background: #f7f7fb;
  padding: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.phone__header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #0c0c1c;
}

.phone__signal {
  width: 46px;
  height: 10px;
  background: linear-gradient(90deg, rgba(241, 89, 42, 0.2), rgba(241, 89, 42, 0.6));
  border-radius: 999px;
}

.phone__hero-card {
  background: linear-gradient(135deg, rgba(241, 89, 42, 0.08), rgba(255, 142, 94, 0.23));
  border-radius: 24px;
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #1c1c28;
}

.card__label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: rgba(28, 28, 40, 0.6);
}

.card__service {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  border-radius: 18px;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 20px -16px rgba(0, 0, 0, 0.4);
}

.card__icon {
  font-size: 1.4rem;
}

.card__title {
  font-weight: 700;
  margin: 0;
}

.card__subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(28, 28, 40, 0.55);
}

.card__chevron {
  margin-left: auto;
  font-size: 1.4rem;
  color: rgba(28, 28, 40, 0.3);
}

.card__cta {
  border: none;
  border-radius: 14px;
  padding: 0.8rem;
  font-weight: 700;
  background: var(--brand-orange);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card__cta:hover {
  transform: translateY(-2px);
}

.phone__screenshot {
  position: absolute;
  inset: 62%;
  transform: translateY(-50%);
  width: calc(100% - 2.4rem);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 40px -26px rgba(12, 13, 28, 0.35);
}

.phone__screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  right: 0;
  bottom: -2.5rem;
  background: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 18px;
  box-shadow: 0 16px 40px -22px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  color: var(--brand-dark);
}

section {
  padding: 5rem 0;
}

.section__intro {
  max-width: 620px;
  color: var(--brand-muted);
  margin: 0.6rem auto 3rem;
  text-align: center;
}

.partners {
  padding: 2.4rem 0 0;
}

.partners__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--brand-muted);
  font-weight: 600;
}

.partners__wrapper p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.partners__logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--brand-dark);
}

.partners__logos span {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(241, 89, 42, 0.08);
}

.why {
  text-align: center;
}

.why__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  padding: 2.4rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px -40px rgba(12, 13, 28, 0.8);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(241, 89, 42, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after {
  opacity: 1;
}

.card__pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(241, 89, 42, 0.12);
  color: var(--brand-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0.6rem 0;
  font-size: 1.4rem;
}

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

.services {
  background: radial-gradient(circle at top left, rgba(255, 214, 196, 0.45), transparent 42%);
}

.services__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.services__copy p {
  color: var(--brand-muted);
  margin-bottom: 2rem;
}

.services__list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}

.services__list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.services__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(241, 89, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.services__gallery {
  display: grid;
  gap: 1.5rem;
}

.gallery__card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: 0 24px 50px -30px rgba(12, 13, 28, 0.2);
}

.gallery__card--primary {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.gallery__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(28, 28, 30, 0.5);
}

.gallery__fixer {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.gallery__fixer img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 18px;
}

.gallery__name {
  margin: 0;
  font-weight: 700;
}

.gallery__tagline {
  margin: 0.3rem 0 0;
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.gallery__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gallery__chips span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(241, 89, 42, 0.12);
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 0.85rem;
}

.gallery__card--secondary {
  background: var(--brand-orange);
  color: #fff;
  font-style: italic;
  border-radius: var(--radius-md);
}

.gallery__card--secondary span {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-weight: 600;
}

.gallery__card--tertiary {
  text-align: center;
  background: linear-gradient(160deg, rgba(241, 89, 42, 0.15), rgba(255, 192, 164, 0.4));
}

.gallery__card--tertiary h3 {
  margin: 0;
  font-size: 2.6rem;
}

.gallery__card--tertiary p {
  margin: 0.5rem 0 0;
  color: var(--brand-muted);
}

.app {
  background: #fff;
}

.app__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.app__preview {
  display: grid;
  gap: 1.5rem;
}

.app__screen {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.app__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app__card {
  display: grid;
  gap: 1.2rem;
  background: #fff;
  padding: 1.6rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -30px rgba(12, 13, 28, 0.35);
  border: 1px solid rgba(241, 89, 42, 0.12);
}

.app__card h3 {
  margin: 0 0 0.2rem;
}

.app__details p {
  color: var(--brand-muted);
}

.app__details ul {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  color: var(--brand-dark);
  display: grid;
  gap: 0.8rem;
}

.store__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.4rem;
  border-radius: 18px;
  background: #1c1c28;
  color: #fff;
  min-width: 200px;
  transition: transform 0.2s ease;
}

.store:hover {
  transform: translateY(-4px);
}

.store--google {
  background: #121a26;
}

.store__icon {
  font-size: 1.8rem;
}

.store__copy small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.store__copy strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonials {
  background: radial-gradient(circle at top right, rgba(241, 89, 42, 0.2), transparent 40%);
}

.testimonials__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonials figure {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 20px 45px -28px rgba(0, 0, 0, 0.2);
}

.testimonials blockquote {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--brand-dark);
}

.testimonials figcaption span {
  display: block;
  color: var(--brand-muted);
  margin-top: 0.3rem;
}

.cta {
  background: linear-gradient(135deg, rgba(241, 89, 42, 0.1), rgba(255, 176, 142, 0.35));
}

.cta__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.cta__copy h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.cta__copy p {
  color: var(--brand-muted);
}

.cta__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 60px -30px rgba(12, 13, 28, 0.2);
  display: grid;
  gap: 1.4rem;
}

.form__group {
  display: grid;
  gap: 0.6rem;
}

.form__group label {
  font-weight: 600;
  color: var(--brand-dark);
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(28, 28, 30, 0.12);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: rgba(241, 89, 42, 0.4);
  box-shadow: 0 0 0 4px rgba(241, 89, 42, 0.15);
}

.form__hint {
  font-size: 0.9rem;
  color: rgba(28, 28, 40, 0.6);
}

.form__hint a {
  color: var(--brand-orange);
  font-weight: 600;
}

.footer {
  background: #101019;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem;
}

.footer h4 {
  margin-top: 0;
  color: #fff;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer__form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer__form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  font-family: inherit;
}

.footer__form button {
  border: none;
  background: var(--brand-orange);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

.footer__social {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  font-size: 1.2rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.brand--footer {
  color: #fff;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #1c1c28;
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px -24px rgba(12, 13, 28, 0.6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 120;
  max-width: 280px;
  line-height: 1.5;
}

.toast strong {
  font-size: 1rem;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero__grid,
  .services__wrapper,
  .app__grid,
  .testimonials__grid,
  .cta__wrapper,
  .why__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__badge {
    position: static;
    margin-top: 2rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 5%;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
  }

  .nav__menu.is-open {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
  }

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

  .services__gallery {
    order: -1;
  }

  .partners__wrapper {
    flex-direction: column;
  }

}

@media (max-width: 640px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery__card {
    text-align: left;
  }

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

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

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


  .partners__logos {
    justify-content: center;
  }

  .toast {
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .nav__menu {
    width: 90%;
    right: 50%;
    transform: translate(50%, -10px);
  }

  .nav__menu.is-open {
    transform: translate(50%, 0);
  }
}
