/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2463C3;
  --blue-dark: #1a4fa0;
  --blue-light: #e8f0fb;
  --orange: #FE8A24;
  --orange-light: #fff4e8;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ed;
  --gray-400: #9aa3b2;
  --gray-600: #5a6478;
  --gray-800: #1e2533;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(36,99,195,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(36,99,195,.14), 0 4px 12px rgba(0,0,0,.08);
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--nav { padding: 10px 22px; font-size: .9rem; }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(254,138,36,.35);
}
.btn--primary:hover {
  background: #e07a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,138,36,.4);
}

.btn--outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn--outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn--disabled {
  opacity: .55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--cta {
  background: var(--white);
  color: var(--blue);
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.btn--cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.btn--cta-apple {
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
}

.badge--soon {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(140deg, #0f2b6e 0%, #1a4fa0 40%, #2463C3 70%, #3b7de8 100%);
  padding-top: 64px;
  overflow: hidden;
}

.hero__bg-shape {
  position: absolute;
  top: -120px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(254,138,36,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 16px 6px 6px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__badge-logo {
  height: 32px;
  width: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.badge__dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.highlight {
  color: var(--orange);
  position: relative;
}

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__actions .btn--outline {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.hero__actions .btn--outline:hover {
  background: rgba(255,255,255,.1);
}

.hero__note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* Mockup */
.hero__mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 520px;
  min-height: 420px;
}

.mockup__glow {
  position: absolute;
  bottom: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(254,138,36,.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.mockup__phone {
  position: absolute;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  object-fit: cover;
}
.mockup__phone--main {
  width: 300px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) perspective(900px) rotateY(-18deg) rotateX(4deg);
  transform-origin: center bottom;
  z-index: 2;
  animation: phoneFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55)) drop-shadow(-12px 20px 30px rgba(0,0,0,.3));
}

@keyframes phoneFloat {
  0%   { transform: translateX(-50%) perspective(900px) rotateY(-18deg) rotateX(4deg) translateY(0px); }
  50%  { transform: translateX(-50%) perspective(900px) rotateY(-14deg) rotateX(2deg) translateY(-14px); }
  100% { transform: translateX(-50%) perspective(900px) rotateY(-18deg) rotateX(4deg) translateY(0px); }
}

.hero__wave {
  position: relative;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--gray-50);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}
.stats__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 40px;
}
.stat__number {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-tag--light { color: rgba(255,255,255,.7); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-header--light .section-title { color: var(--white); }
.section-desc {
  font-size: .98rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.section-header--light .section-desc { color: rgba(255,255,255,.7); }

/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 96px 0;
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--wide {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.feature-card--wide .feature-card__body { flex: 1; }
.feature-card--wide h3 { margin-bottom: 6px; }

.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.feature-card--wide .feature-card__icon { margin-bottom: 0; }
.feature-card__icon--blue { background: var(--blue-light); color: var(--blue); }
.feature-card__icon--orange { background: var(--orange-light); color: var(--orange); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.feature-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.feature-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* =============================================
   SCREENSHOTS
   ============================================= */
.screenshots {
  position: relative;
  padding: 96px 0 72px;
  overflow: hidden;
}

.screenshots__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #0f2b6e 0%, #1a4fa0 50%, #2463C3 100%);
}

.screenshots .container { position: relative; }
.screenshots .section-header { position: relative; }

.screenshots__track-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  cursor: grab;
  user-select: none;
}
.screenshots__track-wrapper:active { cursor: grabbing; }

.screenshots__track {
  display: flex;
  gap: 20px;
  padding: 24px 40px 40px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.screenshots__track img {
  width: 220px;
  height: auto;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  transition: transform var(--transition);
  pointer-events: none;
}
.screenshots__track img:hover { transform: scale(1.03); }

.screenshots__dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
}
.screenshots__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.screenshots__dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits {
  padding: 96px 0;
  background: var(--gray-50);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.benefit__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit h4 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.benefit p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* =============================================
   AUDIENCE
   ============================================= */
.audience {
  padding: 80px 0;
  background: var(--white);
}

.audience__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.audience__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 16px;
  width: 160px;
  min-height: 110px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.audience__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.audience__icon { font-size: 2rem; }
.audience__card span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-700, #374151);
  text-align: center;
}

/* =============================================
   CTA
   ============================================= */
.cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #0f2b6e 0%, #2463C3 60%, #3b7de8 100%);
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(254,138,36,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,125,232,.3) 0%, transparent 70%);
  border-radius: 50%;
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.cta__logo img {
  height: 64px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.3));
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 16px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.cta__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta__coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--gray-800);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand img { filter: brightness(10); height: 28px; }
.footer__brand p { font-size: .85rem; color: var(--gray-400); display: flex; align-items: center; gap: 6px; }
.footer__softyou-logo { height: 18px; width: auto; filter: brightness(0) invert(.6); vertical-align: middle; }
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: .85rem;
  color: var(--gray-400);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  width: 100%;
  text-align: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 20px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 0;
    gap: 0;
  }
  .hero__text {
    order: 1;
    padding-bottom: 24px;
  }
  .hero__mockup {
    order: 2;
    height: auto;
    width: 100%;
    min-height: unset;
    padding-bottom: 0;
    align-items: flex-start;
    justify-content: center;
  }
  .hero__desc { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__note { text-align: center; }

  .mockup__phone--main {
    position: relative;
    width: 72%;
    max-width: 300px;
    left: auto;
    top: auto;
    bottom: auto;
    margin-top: 0;
    transform: none;
    animation: none;
    border-radius: 28px;
  }

  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--wide { grid-column: span 2; }

  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .stat__item { padding: 12px 20px; }

  .features { padding: 64px 0; }
  .benefits { padding: 64px 0; }
  .screenshots { padding: 64px 0 48px; }
  .audience { padding: 56px 0; }
  .cta { padding: 64px 0; }
}

@media (max-width: 640px) {
  .mockup__phone--main { width: 68%; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: span 1; flex-direction: column; }
  .feature-card--wide .feature-card__icon { margin-bottom: 16px; }

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

  .stats__inner { flex-wrap: wrap; gap: 0; }
  .stat__divider { display: none; }
  .stat__item { width: 50%; padding: 20px 12px; border-bottom: 1px solid var(--gray-200); text-align: center; }
  .stat__item:nth-child(5),
  .stat__item:nth-child(7) { border-bottom: none; }
  .stat__label { font-size: .72rem; line-height: 1.3; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .screenshots__track { padding: 16px 24px 32px; }
  .screenshots__track img { width: 170px; }

  .audience__grid { gap: 10px; justify-content: center; }
  .audience__card { width: calc(33% - 8px); min-width: 100px; padding: 20px 8px; min-height: 100px; }

  .section-header { margin-bottom: 36px; }
}

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn--lg { justify-content: center; }
  .mockup__phone--main { width: 65%; }
  .stat__item { padding: 12px 6px; }
  .stat__number { font-size: 1.3rem; }
}
