/* ============ TOKENS ============ */
:root {
  --green: #70b85f;
  --green-dark: #4f8c42;
  --green-darker: #3a6a30;
  --green-light: #a8d89a;
  --green-lighter: #e8f3e3;
  --green-faint: #f4faf1;

  --bg: #ffffff;
  --bg-soft: #fafbfa;
  --bg-card: #ffffff;

  --text: #1a2419;
  --text-soft: #4a5848;
  --text-muted: #7a8678;
  --text-faint: #b3bdb0;

  --border: #e8ece6;
  --border-strong: #d4dad0;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm:
    0 1px 2px rgba(26, 36, 25, 0.04), 0 1px 3px rgba(26, 36, 25, 0.06);
  --shadow: 0 4px 12px rgba(26, 36, 25, 0.06), 0 2px 4px rgba(26, 36, 25, 0.04);
  --shadow-lg:
    0 24px 48px -12px rgba(26, 36, 25, 0.12),
    0 8px 20px -8px rgba(26, 36, 25, 0.08);
  --shadow-xl:
    0 48px 100px -24px rgba(26, 36, 25, 0.18),
    0 16px 40px -12px rgba(26, 36, 25, 0.12);

  --font-display: "Playfair", "Fraunces", "Times New Roman", Georgia, serif;
  --font-body:
    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;

  --container: 1240px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

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

.btn--primary {
  background: var(--green);
  color: white;
  box-shadow: 0 6px 18px -4px rgba(112, 184, 95, 0.45);
}
.btn--primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -4px rgba(112, 184, 95, 0.55);
}

.btn--ghost {
  background: white;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-faint);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}
.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}
.btn--full {
  width: 100%;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(232, 236, 230, 0.7);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: white;
  border-radius: 10px;
}
.logo__mark svg {
  width: 22px;
  height: 22px;
}
.logo__text {
  letter-spacing: -0.02em;
}
.logo__badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--green-lighter);
  color: var(--green-dark);
  border-radius: 999px;
  margin-left: 4px;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}
.nav__links a {
  position: relative;
  transition: color var(--transition);
}
.nav__links a:hover {
  color: var(--green-dark);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a {
  padding: 12px 8px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 8px;
}
.nav__mobile a:hover {
  background: var(--green-faint);
  color: var(--green-dark);
}
.nav__mobile .btn {
  margin-top: 8px;
}

.nav__mobile.is-open {
  display: flex;
}

@media (max-width: 980px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      rgba(112, 184, 95, 0.12),
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(168, 216, 154, 0.18),
      transparent 60%
    );
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image:
    linear-gradient(rgba(112, 184, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 184, 95, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    transparent 80%
  );
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}

.hero__copy {
  animation: fadeUp 0.8s 0.05s both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(112, 184, 95, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(112, 184, 95, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(112, 184, 95, 0.08);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--green-dark);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 6px;
  background: var(--green);
  opacity: 0.18;
  border-radius: 3px;
  z-index: -1;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}
.hero__bullets svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  background: var(--green-lighter);
  padding: 3px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__visual {
  position: relative;
  height: 540px;
  animation: fadeUp 0.9s 0.2s both;
}

/* ============ LAPTOP MOCKUP ============ */
.laptop {
  position: absolute;
  top: 20px;
  left: 30px;
  right: -80px;
  z-index: 1;
}
.laptop__screen {
  position: relative;
  background: #1a2419;
  border-radius: 14px 14px 4px 4px;
  padding: 14px 12px 12px;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.laptop__screen::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 6px;
  background: #0a0a0a;
  border-radius: 0 0 4px 4px;
}
.laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #c0c8c0 0%, #8a948a 100%);
  border-radius: 0 0 12px 12px;
  margin: 0 -20px;
  position: relative;
}
.laptop__base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #6a746a;
  border-radius: 0 0 6px 6px;
}

.admin {
  display: grid;
  grid-template-columns: 130px 1fr;
  height: 100%;
  background: white;
  border-radius: 6px;
  overflow: hidden;
  font-size: 11px;
}
.admin__sidebar {
  background: var(--bg-soft);
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.admin__logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 0 6px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.admin__logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}
.admin__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 6px;
  color: var(--text-soft);
  font-weight: 500;
}
.admin__nav-item--active {
  background: white;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}
.admin__nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.admin__nav-item--active .admin__nav-dot {
  background: var(--green);
  opacity: 1;
}

.admin__main {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.admin__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.admin__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
}

.admin__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.stat-card__label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.stat-card__trend {
  font-size: 9px;
  font-weight: 600;
  margin-top: 2px;
}
.stat-card__trend--up {
  color: var(--green-dark);
}

.admin__chart {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}
.admin__chart-title {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.admin__chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.admin__chart-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 3px 3px 0 0;
  height: var(--h);
  min-height: 8px;
  animation: barGrow 0.8s 0.5s both;
}
@keyframes barGrow {
  from {
    height: 0;
  }
  to {
    height: var(--h);
  }
}

/* ============ PHONE MOCKUP ============ */
.phone {
  width: 240px;
  background: #1a2419;
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 18;
  position: relative;
}

.phone--hero {
  position: absolute;
  right: 60px;
  bottom: -40px;
  z-index: 2;
  transform: rotate(-3deg);
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-10px);
  }
}

/* ============ MINIAPP UI ============ */
.miniapp {
  padding: 38px 14px 14px;
  font-size: 12px;
  height: 100%;
  overflow: hidden;
}
.miniapp__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
}
.miniapp__back,
.miniapp__fav {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 50%;
  font-size: 14px;
}
.miniapp__title {
  font-size: 13px;
  font-weight: 700;
}

.miniapp__hero {
  height: 110px;
  border-radius: 14px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.miniapp__hero img {
  object-fit: cover;
}

.miniapp__rating {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.miniapp__rating .star {
  color: #f4b400;
}
.muted {
  color: var(--text-muted);
}

.miniapp__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.miniapp__addr {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.miniapp__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.miniapp__tab {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.miniapp__tab--active {
  background: var(--green-lighter);
  color: var(--green-dark);
  font-weight: 600;
}

.miniapp__service {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 6px;
}
.miniapp__service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.miniapp__service-name {
  font-weight: 600;
  font-size: 12px;
}
.miniapp__service-meta {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}
.miniapp__service-price {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 13px;
}

.miniapp__btn {
  width: 100%;
  background: var(--green);
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  margin-top: 10px;
  box-shadow: 0 4px 12px -2px rgba(112, 184, 95, 0.4);
}

.miniapp__search {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.miniapp__filters {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.miniapp__chip {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 10px;
  color: var(--text-soft);
  font-weight: 500;
}
.miniapp__chip--active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.stable-card {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  align-items: center;
}
.stable-card__img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: linear-gradient(135deg, #a8d89a, #70b85f);
  flex-shrink: 0;
}
.stable-card__img--2 {
  background: linear-gradient(135deg, #c4a484, #8c7355);
}
.stable-card__img--3 {
  background: linear-gradient(135deg, #d4a8b8, #a87887);
}
.stable-card__body {
  flex: 1;
  min-width: 0;
}
.stable-card__name {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}
.stable-card__meta {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.stable-card__meta .star {
  color: #f4b400;
  font-weight: 600;
}
.stable-card__price {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
}

.checkout {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}
.checkout__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 11px;
  border-bottom: 1px dashed var(--border);
}
.checkout__row:last-child {
  border-bottom: none;
}
.checkout__total {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 13px;
}
.checkout__note {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

/* ============ TRUST ============ */
.trust {
  margin-top: 60px;
  text-align: center;
}
.trust__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.trust__item {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.trust__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* ============ SECTIONS ============ */
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding: 5px 12px;
  background: var(--green-lighter);
  border-radius: 999px;
}
.eyebrow--light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ============ PROBLEMS ============ */
.problems {
  padding: 100px 0;
  background: var(--bg-soft);
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.problem {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.problem:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.problem__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--green-lighter);
  color: var(--green-dark);
}
.problem__icon svg {
  width: 24px;
  height: 24px;
}
.problem h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.problem p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============ FEATURES ============ */
.features {
  padding: 120px 0;
}
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 110px;
}
.feature:last-child {
  margin-bottom: 0;
}
.feature--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}
.feature--reverse .feature__copy {
  order: 2;
}

.feature__num {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.feature__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.feature__desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--green-lighter);
  border-radius: 50%;
}
.feature__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--green-dark);
  border-bottom: 1.5px solid var(--green-dark);
  transform: rotate(-45deg);
}

/* ============ BROWSER MOCKUP ============ */
.browser {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.browser__bar > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e8ece6;
}
.browser__bar > span:nth-child(1) {
  background: #ff7062;
}
.browser__bar > span:nth-child(2) {
  background: #ffc14a;
}
.browser__bar > span:nth-child(3) {
  background: var(--green);
}
.browser__url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  background: white;
  padding: 5px 12px;
  border-radius: 6px;
  margin: 0 8px;
  border: 1px solid var(--border);
}
.browser__content {
  padding: 22px;
  overflow: hidden;
}

/* ============ TIMELINE (vertical, column-based) ============ */
.browser__content--timeline {
  padding: 0 !important;
  overflow: hidden !important;
}

.tl {
  --row-h: 64px;
  --time-w: 54px;
  --rows: 7;
  font-size: 12px;
}

.tl__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.tl__day {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tl__day-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-lighter);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl__day-icon svg {
  width: 18px;
  height: 18px;
}
.tl__day-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.tl__day-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 500;
}
.tl__nav {
  display: flex;
  gap: 6px;
}
.tl__nav button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-lighter);
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}
.tl__nav button:hover {
  background: var(--green);
  color: white;
}

/* Horse pills row */
.tl__horses {
  display: grid;
  grid-template-columns: var(--time-w) repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 14px 22px 10px;
}

.tl__horse {
  padding: 7px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: var(--text);
}

/* Body: time axis + 5 horse columns + now-indicator */
.tl__body {
  position: relative;
  display: grid;
  grid-template-columns: var(--time-w) repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 4px 22px 22px;
}

.tl__axis {
  position: relative;
  padding-right: 10px;
}
.tl__hour {
  height: var(--row-h);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
  line-height: 1;
  transform: translateY(-6px);
}

.tl__col {
  position: relative;
  min-height: calc(var(--row-h) * (var(--rows) - 1));
  background-color: white;
  background-image: repeating-linear-gradient(
    to bottom,
    var(--border) 0,
    var(--border) 1px,
    transparent 1px,
    transparent var(--row-h)
  );
}

.tl__col--rent {
  background-color: rgba(196, 164, 132, 0.07);
}

.tl__booking {
  position: absolute;
  left: 3px;
  right: 3px;
  top: calc(var(--row-h) * var(--top, 0) + 3px);
  height: calc(var(--row-h) * var(--h, 1) - 6px);
  background: var(--green-lighter);
  border-left: 3px solid var(--green);
  border-radius: 7px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 2;
  cursor: pointer;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
  overflow: hidden;
}
.tl__booking:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(26, 36, 25, 0.2);
  z-index: 5;
}

.tl__b-title {
  font-weight: 700;
  color: var(--text);
  font-size: 11.5px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tl__b-time {
  font-size: 10.5px;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tl__b-client {
  font-size: 10.5px;
  font-style: italic;
  color: var(--text-soft);
  margin-top: 1px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tl__b-client span {
  font-style: normal;
}
.tl__b-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-top: auto;
  letter-spacing: -0.01em;
}

/* Booking types */
.tl__booking--ride {
  background: #d8ecc9;
  border-left-color: #70b85f;
}
.tl__booking--photo {
  background: #c7e4e3;
  border-left-color: #4ea29c;
}
.tl__booking--hippo {
  background: #d3d5ef;
  border-left-color: #6a6dc0;
}
.tl__booking--lesson {
  background: #e5cfe2;
  border-left-color: #a45a98;
}
.tl__booking--rent {
  background: #e8d5bc;
  border-left-color: #b48555;
}

/* Add placeholder */
.tl__booking--add {
  background: rgba(112, 184, 95, 0.04);
  border: 2px dashed var(--green);
  border-left-width: 2px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 11.5px;
}
.tl__booking--add svg {
  width: 15px;
  height: 15px;
}
.tl__booking--add:hover {
  background: rgba(112, 184, 95, 0.1);
}

/* "Now" line indicator */
.tl__now {
  position: absolute;
  left: var(--time-w);
  right: 22px;
  top: calc(4px + var(--row-h) * var(--at, 0));
  border-top: 1.5px dashed #ef9a3c;
  z-index: 6;
  pointer-events: none;
  margin-left: 6px;
}
.tl__now::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef9a3c;
  box-shadow: 0 0 0 3px rgba(239, 154, 60, 0.18);
}
.tl__now-label {
  position: absolute;
  left: -62px;
  top: -11px;
  background: #fff1de;
  color: #b86e1f;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============ PHONES PAIR ============ */
.phones-pair {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  min-height: 500px;
}
.phone--back {
  position: absolute;
  right: 10%;
  top: 30px;
  z-index: 0;
  transform: rotate(6deg);
  opacity: 0.92;
}
.phones-pair .phone:not(.phone--back) {
  position: absolute;
  left: 10%;
  top: 0;
  z-index: 1;
  transform: rotate(-3deg);
}

/* ============ ANALYTICS ============ */
.analytics__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
}
.analytics__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.ac {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.ac__label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.ac__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.ac__delta {
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}
.ac__delta--up {
  color: var(--green-dark);
}

.analytics__charts {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
}
.analytics__chart {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.analytics__chart-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.pie {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.pie svg {
  width: 100px;
  height: 100px;
}
.pie-legend {
  font-size: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-soft);
}
.pie-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 6px;
  vertical-align: middle;
}
.weekbars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  height: 120px;
  align-items: flex-end;
}
.weekbars > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.weekbar {
  width: 100%;
  height: var(--h);
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 4px 4px 0 0;
}
.weekbars span {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============ HORSES ============ */
.horses__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.horses__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.horses__btn {
  padding: 6px 12px;
  background: var(--green);
  color: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.horse-card {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 6px;
}
.horse-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #70b85f, #4f8c42);
}
.horse-card__avatar--2 {
  background: linear-gradient(135deg, #c4a484, #8c7355);
}
.horse-card__avatar--3 {
  background: linear-gradient(135deg, #6a8eb8, #4a6e98);
}
.horse-card__avatar--4 {
  background: linear-gradient(135deg, #d4a8b8, #a87887);
}
.horse-card__name {
  font-weight: 600;
  font-size: 13px;
}
.horse-card__meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.horse-card__tags {
  display: flex;
  gap: 4px;
}
.tag {
  padding: 3px 8px;
  background: var(--green-lighter);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
}
.horse-card__status {
  font-size: 11px;
  color: var(--green-dark);
  font-weight: 600;
}
.horse-card__status--rest {
  color: #b3852a;
}

/* ============ HOW ============ */
.how {
  padding: 100px 0;
  background: var(--bg-soft);
}
.steps {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  gap: 16px;
  align-items: start;
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.step__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px -3px rgba(112, 184, 95, 0.4);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}
.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 50px;
  color: var(--green);
  font-size: 28px;
  font-weight: 300;
}

/* ============ NUMBERS ============ */
.numbers {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--text) 0%, #2a3a28 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 50% at 20% 30%,
      rgba(112, 184, 95, 0.18),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 70%,
      rgba(168, 216, 154, 0.12),
      transparent 60%
    );
}
.numbers__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.number__value {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.number__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============ PRICING ============ */
.pricing {
  padding: 120px 0;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan--featured {
  background: linear-gradient(180deg, var(--green-faint) 0%, white 100%);
  border-color: var(--green);
  border-width: 2px;
  box-shadow: 0 20px 50px -10px rgba(112, 184, 95, 0.25);
  transform: translateY(-8px);
}
.plan--featured:hover {
  transform: translateY(-12px);
}

.plan__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--green);
  color: white;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px -3px rgba(112, 184, 95, 0.5);
}

.plan__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.plan__price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.plan__price span {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.plan__sub {
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--green-lighter);
  border-radius: 50%;
}
.plan__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--green-dark);
  border-bottom: 1.5px solid var(--green-dark);
  transform: rotate(-45deg);
}

/* ============ FAQ ============ */
.faq {
  padding: 100px 0;
  background: var(--bg-soft);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item:hover {
  border-color: var(--green-light);
}
.faq__item[open] {
  border-color: var(--green);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-lighter);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--green-dark);
  border-radius: 1px;
  top: 50%;
  left: 50%;
}
.faq__icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.faq__item[open] .faq__icon {
  background: var(--green);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: white;
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__body {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ============ CTA ============ */
.cta {
  padding: 100px 0;
}
.cta__card {
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-darker) 100%
  );
  color: white;
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta__card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(168, 216, 154, 0.25),
    transparent 65%
  );
  pointer-events: none;
}
.cta__card::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(112, 184, 95, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.cta__copy {
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.cta__form {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-xl);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.field input {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  background: var(--bg-soft);
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(112, 184, 95, 0.12);
}
.cta__fineprint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}
.cta__fineprint a {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ============ FOOTER ============ */
.footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-soft);
  transition: color var(--transition);
}
.footer__col a:hover {
  color: var(--green-dark);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    text-align: left;
  }
  .hero__visual {
    height: 480px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .laptop {
    right: 0;
    left: 0;
  }
  .phone--hero {
    right: 30px;
  }
  .nav__links {
    gap: 18px;
    font-size: 13px;
  }
  .logo__badge {
    font-size: 10px;
    padding: 2px 7px;
  }
}

@media (max-width: 980px) {
  .feature,
  .feature--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .feature--reverse .feature__copy {
    order: 0;
  }
  .feature {
    margin-bottom: 70px;
  }

  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .step__arrow {
    display: none;
  }

  .plans {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 18px;
  }
  .plan--featured {
    transform: none;
  }
  .plan--featured:hover {
    transform: translateY(-4px);
  }

  .cta__card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 44px 32px;
  }

  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 60px;
  }
  .hero__visual {
    height: 420px;
  }
  .laptop {
    display: none;
  }
  .phone--hero {
    position: static;
    transform: none;
    animation: none;
    margin: 0 auto;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }

  .problems,
  .features,
  .how,
  .faq,
  .cta,
  .numbers {
    padding: 70px 0;
  }
  .feature {
    margin-bottom: 50px;
  }
  .problems__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .problem {
    padding: 22px;
  }

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

  .browser__content {
    padding: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .browser__content > * {
    min-width: 360px;
  }
  .browser__content--timeline {
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
  .browser__content--timeline > * {
    min-width: 580px;
  }
  .tl__header {
    padding: 12px 16px;
  }
  .tl__grid {
    padding: 10px 16px 16px;
  }
  .tl__day-title {
    font-size: 16px;
  }

  .analytics__cards {
    grid-template-columns: 1fr;
  }
  .analytics__charts {
    grid-template-columns: 1fr;
  }

  .phones-pair {
    min-height: 480px;
  }
  .phones-pair .phone:not(.phone--back) {
    left: 0;
  }
  .phone--back {
    right: 0;
  }

  .horse-card {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }
  .horse-card__tags,
  .horse-card__status {
    grid-column: 2;
    margin-top: 4px;
  }

  .cta__form {
    padding: 22px;
  }
  .cta__card {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .numbers__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 30px;
  }

  .section__head {
    margin-bottom: 40px;
  }

  .logo__badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .phone {
    width: 220px;
  }
  .browser__url {
    font-size: 10px;
    padding: 4px 8px;
  }
  .faq__item summary {
    font-size: 16px;
    padding: 18px 20px;
  }
  .faq__body {
    padding: 0 20px 18px;
    font-size: 14px;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
