/* Skiffr For Business — static landing */

:root {
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-subtle: #eff6ff;
  --color-primary-border: #dbeafe;
  --color-canvas: #f9fafb;
  --color-surface: #ffffff;
  --color-text: #111827;
  --color-text-secondary: #6b7280;
  --color-text-tertiary: #9ca3af;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-accent: #0cc0df;
  --color-brand: #ee4266;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgb(17 24 39 / 0.06), 0 1px 2px rgb(17 24 39 / 0.04);
  --shadow-md: 0 4px 12px rgb(17 24 39 / 0.08);
  --shadow-lg: 0 12px 32px rgb(17 24 39 / 0.12);
  --max-width: 1120px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.landing-container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────────────── */

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgb(255 255 255 / 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(229 231 235 / 0.8);
}

.landing-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.landing-logo {
  height: 32px;
  width: auto;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: 8px;
  transition:
    color 0.15s,
    background 0.15s;
}

.landing-nav__link:hover {
  color: var(--color-text);
  background: var(--color-canvas);
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  transition:
    background 0.15s,
    color 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
}

.landing-btn:active {
  transform: scale(0.98);
}

.landing-btn--primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 1px 2px rgb(37 99 235 / 0.24);
}

.landing-btn--primary:hover {
  background: var(--color-primary-hover);
}

.landing-btn--ghost {
  color: var(--color-primary);
  background: var(--color-primary-subtle);
}

.landing-btn--ghost:hover {
  background: var(--color-primary-border);
}

.landing-btn--outline {
  color: var(--color-text);
  border: 1px solid #e5e7eb;
  background: var(--color-surface);
}

.landing-btn--outline:hover {
  border-color: #d1d5db;
  background: var(--color-canvas);
}

.landing-btn--lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.landing-app-stores {
  margin-top: 1.75rem;
}

.landing-app-stores__label {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.landing-app-stores__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.landing-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.landing-store-btn--apple {
  color: #fff;
  background: #111827;
}

.landing-store-btn--apple:hover {
  background: #1f2937;
}

.landing-store-btn--google {
  color: #fff;
  background: var(--color-primary);
}

.landing-store-btn--google:hover {
  background: var(--color-primary-hover);
}

.landing-app-stores--cta .landing-app-stores__label {
  color: rgb(255 255 255 / 0.82);
}

.landing-app-stores--cta .landing-store-btn--apple {
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.24);
}

.landing-app-stores--cta .landing-store-btn--apple:hover {
  background: rgb(255 255 255 / 0.18);
}

.landing-app-stores--cta .landing-store-btn--google {
  background: #fff;
  color: var(--color-primary);
}

.landing-app-stores--cta .landing-store-btn--google:hover {
  background: rgb(255 255 255 / 0.92);
}

/* ── Hero ───────────────────────────────────────────────────── */

.landing-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
}

.landing-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgb(37 99 235 / 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgb(12 192 223 / 0.06) 0%, transparent 45%),
    url("/landing/hero-pattern.svg") center / cover no-repeat,
    var(--color-canvas);
}

.landing-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(249 250 251 / 0.4) 0%, rgb(249 250 251 / 0.85) 55%, var(--color-canvas) 100%);
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.landing-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border: 1px solid var(--color-primary-border);
  border-radius: 999px;
}

.landing-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.landing-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.landing-hero__title span {
  color: var(--color-primary);
}

.landing-hero__desc {
  margin: 0 0 2rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.landing-hero__visual {
  position: relative;
}

.landing-hero__card {
  background: var(--color-surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.landing-hero__screenshot {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Stats strip ────────────────────────────────────────────── */

.landing-stats {
  position: relative;
  padding: 2.5rem 0;
  overflow: hidden;
}

.landing-stats__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(37 99 235 / 0.04) 0%, transparent 50%, rgb(12 192 223 / 0.04) 100%),
    url("/landing/stats-wave.svg") center / cover no-repeat,
    var(--color-surface);
  border-block: 1px solid #e5e7eb;
}

.landing-stats__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.landing-stats__item {
  text-align: center;
}

.landing-stats__value {
  display: block;
  margin-bottom: 0.375rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.landing-stats__label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ── Sections ───────────────────────────────────────────────── */

.landing-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.landing-section > .landing-container {
  position: relative;
  z-index: 1;
}

.landing-section--alt {
  background: var(--color-surface);
}

.landing-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.landing-section--textured .landing-section__bg {
  background:
    linear-gradient(180deg, rgb(249 250 251 / 0.6) 0%, transparent 30%, transparent 70%, rgb(249 250 251 / 0.8) 100%),
    url("/landing/features-bg.svg") center / cover no-repeat;
}

.landing-section__bg--platform {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.85) 0%, transparent 40%, rgb(255 255 255 / 0.9) 100%),
    url("/landing/benefits-grid.svg") center / cover no-repeat;
}

.landing-section__bg--usecases {
  background:
    linear-gradient(180deg, rgb(249 250 251 / 0.7) 0%, transparent 50%, rgb(249 250 251 / 0.85) 100%),
    url("/landing/usecases-pattern.svg") center / cover no-repeat;
}

.landing-section__bg--workflow {
  background:
    linear-gradient(135deg, rgb(37 99 235 / 0.03) 0%, transparent 50%),
    url("/landing/section-texture.svg") center / cover no-repeat;
  opacity: 0.9;
}

.landing-section__bg--testimonials {
  background:
    linear-gradient(180deg, rgb(249 250 251 / 0.5) 0%, transparent 45%, rgb(249 250 251 / 0.75) 100%),
    url("/landing/testimonial-pattern.svg") center / cover no-repeat;
}

.landing-section__bg--faq {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.88) 0%, transparent 50%, rgb(255 255 255 / 0.95) 100%),
    url("/landing/faq-pattern.svg") center / cover no-repeat;
}

.landing-section__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.landing-section__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.landing-section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-section__desc {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
}

/* ── Feature rows ───────────────────────────────────────────── */

.landing-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.landing-feature--reverse .landing-feature__content {
  order: 2;
}

.landing-feature--reverse .landing-feature__visual {
  order: 1;
}

.landing-feature + .landing-feature {
  margin-top: 5rem;
}

.landing-feature__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border-radius: 8px;
}

.landing-feature__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-feature__desc {
  margin: 0 0 1.25rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.landing-feature__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.landing-feature__list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.landing-feature__visual {
  position: relative;
  padding: 1.5rem;
  background: linear-gradient(145deg, var(--color-primary-subtle), var(--color-surface));
  border: 1px solid var(--color-primary-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.landing-feature__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url("/landing/section-texture.svg") center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.landing-mockup {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
}

/* ── Benefits grid ──────────────────────────────────────────── */

.landing-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.landing-benefit {
  padding: 1.5rem;
  background: rgb(255 255 255 / 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
}

.landing-benefit:hover {
  border-color: var(--color-primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.landing-benefit__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.landing-benefit__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.landing-benefit__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

/* ── Use cases ──────────────────────────────────────────────── */

.landing-usecases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.landing-usecase {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.landing-usecase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgb(37 99 235 / 0.04), transparent 60%);
  pointer-events: none;
}

.landing-usecase__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border-radius: 999px;
}

.landing-usecase__title {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.landing-usecase__desc {
  position: relative;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

/* ── Flow steps ───────────────────────────────────────────────── */

.landing-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.landing-flow__item {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  background: var(--color-surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.landing-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-border), var(--color-primary));
  transform: translateY(-50%);
}

.landing-flow__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.landing-flow__title {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.landing-flow__desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

/* ── Testimonials ───────────────────────────────────────────── */

.landing-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.landing-testimonial {
  margin: 0;
  padding: 1.75rem;
  background: rgb(255 255 255 / 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.landing-testimonial__quote {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text);
}

.landing-testimonial__quote::before {
  content: "\201C";
  display: block;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary-border);
}

.landing-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.landing-testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
}

.landing-testimonial__role {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

/* ── FAQ ────────────────────────────────────────────────────── */

.landing-faq__list {
  max-width: 42rem;
  margin: 0 auto;
}

.landing-faq__item {
  border-bottom: 1px solid #e5e7eb;
}

.landing-faq__item:first-child {
  border-top: 1px solid #e5e7eb;
}

.landing-faq__question {
  padding: 1.125rem 2rem 1.125rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.landing-faq__question::-webkit-details-marker {
  display: none;
}

.landing-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.2s;
}

.landing-faq__item[open] .landing-faq__question::after {
  content: "\2212";
}

.landing-faq__answer {
  margin: 0;
  padding: 0 0 1.125rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ── CTA ────────────────────────────────────────────────────── */

.landing-cta {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.landing-cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgb(37 99 235 / 0.92), rgb(29 78 216 / 0.95)),
    url("/landing/cta-pattern.svg") center / cover no-repeat;
}

.landing-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.landing-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-cta__desc {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: 1.0625rem;
  opacity: 0.9;
}

.landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.landing-cta .landing-btn--primary {
  background: #fff;
  color: var(--color-primary);
}

.landing-cta .landing-btn--primary:hover {
  background: var(--color-primary-subtle);
}

.landing-cta .landing-btn--outline {
  color: #fff;
  border-color: rgb(255 255 255 / 0.4);
  background: transparent;
}

.landing-cta .landing-btn--outline:hover {
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.6);
}

/* ── Footer ─────────────────────────────────────────────────── */

.landing-footer {
  padding: 2.5rem 0;
  background: var(--color-surface);
  border-top: 1px solid #e5e7eb;
}

.landing-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-footer__copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.landing-footer__links a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: color 0.15s;
}

.landing-footer__links a:hover {
  color: var(--color-primary);
}

/* ── SVG mockup animations ──────────────────────────────────── */

@keyframes count-up {
  0%,
  20% {
    opacity: 0.4;
  }
  40%,
  100% {
    opacity: 1;
  }
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

@keyframes cursor-click {
  0%,
  70%,
  100% {
    transform: translate(0, 0);
  }
  75% {
    transform: translate(2px, 2px) scale(0.95);
  }
}

@keyframes bell-ring {
  0%,
  80%,
  100% {
    transform: rotate(0);
  }
  84% {
    transform: rotate(12deg);
  }
  88% {
    transform: rotate(-10deg);
  }
  92% {
    transform: rotate(6deg);
  }
  96% {
    transform: rotate(-4deg);
  }
}

@keyframes scan-line {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(48px);
    opacity: 0;
  }
}

.anim-metric-value {
  animation: count-up 3s ease-in-out infinite;
}

.anim-bar {
  transform-origin: bottom;
  animation: bar-grow 1.2s ease-out forwards;
}

.anim-bar:nth-child(1) {
  animation-delay: 0.1s;
}
.anim-bar:nth-child(2) {
  animation-delay: 0.25s;
}
.anim-bar:nth-child(3) {
  animation-delay: 0.4s;
}
.anim-bar:nth-child(4) {
  animation-delay: 0.55s;
}
.anim-bar:nth-child(5) {
  animation-delay: 0.7s;
}

.anim-booking-row {
  animation: slide-in 0.6s ease-out forwards;
  opacity: 0;
}

.anim-booking-row:nth-child(1) {
  animation-delay: 0.2s;
}
.anim-booking-row:nth-child(2) {
  animation-delay: 0.45s;
}
.anim-booking-row:nth-child(3) {
  animation-delay: 0.7s;
}

.anim-status-pending {
  animation: status-pulse 2s ease-in-out infinite;
}

.anim-cursor {
  animation: cursor-click 3s ease-in-out infinite;
  transform-origin: top left;
}

.anim-bell {
  transform-origin: top center;
  animation: bell-ring 4s ease-in-out infinite;
}

.anim-scan-line {
  animation: scan-line 2.5s ease-in-out infinite;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 960px) {
  .landing-hero__content,
  .landing-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .landing-feature--reverse .landing-feature__content,
  .landing-feature--reverse .landing-feature__visual {
    order: unset;
  }

  .landing-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .landing-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-usecases {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-testimonials {
    grid-template-columns: 1fr;
  }

  .landing-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-flow__item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .landing-nav__link {
    display: none;
  }

  .landing-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .landing-section {
    padding: 3.5rem 0;
  }

  .landing-stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .landing-benefits,
  .landing-usecases {
    grid-template-columns: 1fr;
  }

  .landing-flow {
    grid-template-columns: 1fr;
  }

  .landing-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
