:root {
  --primary: #05966A;
  --primary-dark: #0E684B;
  --gradient-secondary: #0C9485;
  --secondary: #F8E3B9;
  --background: #FAFFFE;
  --surface: #FFFFFF;
  --surface-soft: #F3FAF8;
  --text-primary: #242424;
  --text-muted: #5A5A5A;
  --line: #DCEAE5;
  --shadow: 0 14px 40px rgba(5, 150, 106, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background: linear-gradient(180deg, #f7fffc 0%, var(--background) 50%, #f3faf8 100%);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 460px;
  height: 460px;
  top: -110px;
  right: -120px;
  background: radial-gradient(circle, rgba(5, 150, 106, 0.22) 0%, rgba(5, 150, 106, 0) 72%);
}

.orb-2 {
  width: 400px;
  height: 400px;
  left: -130px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(248, 227, 185, 0.45) 0%, rgba(248, 227, 185, 0) 72%);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--primary), var(--gradient-secondary));
  box-shadow: 0 0 0 6px rgba(5, 150, 106, 0.15);
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links a:hover {
  color: var(--primary-dark);
  background: #eefaf6;
}

.hero {
  padding: 62px 0 34px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 34px;
  align-items: center;
}

.brand-title {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: lowercase;
}

.brand-title span {
  color: var(--gradient-secondary);
}

h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.hero p {
  margin: 16px 0 0;
  color: var(--text-muted);
  max-width: 56ch;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-badge {
  min-width: 160px;
  background: #1f2024;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #2f3138;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transition: transform .16s ease, box-shadow .16s ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(18, 19, 22, 0.3);
}

.store-icon {
  font-size: 20px;
  font-weight: 700;
  width: 22px;
  text-align: center;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-text small {
  font-size: 11px;
  color: #d6d8de;
}

.store-text strong {
  font-size: 24px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--gradient-secondary));
  box-shadow: 0 8px 20px rgba(5, 150, 106, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(5, 150, 106, 0.3);
}

.btn-ghost {
  color: var(--primary-dark);
  background: #effaf6;
  border-color: #c6e9dd;
}

.btn-ghost:hover {
  background: #e7f6f0;
}

.hero-meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-meta div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.hero-meta strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.hero-meta span {
  color: var(--text-muted);
  font-size: 13px;
}

.hero-showcase {
  display: flex;
  justify-content: flex-end;
}

.hero-phones {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.phone-mockup {
  width: min(230px, 44vw);
  background: #fcfcfd;
  border: 6px solid #1f2227;
  border-radius: 34px;
  padding: 9px;
  box-shadow: 0 14px 32px rgba(11, 27, 23, 0.16);
  overflow: hidden;
}

.phone-mockup.simple {
  background: #f7f8fa;
}

.back-phone {
  transform: rotate(5deg) translate(70px, 14px);
  z-index: 1;
}

.front-phone {
  transform: rotate(0deg);
  z-index: 2;
}

.phone-notch {
  width: 34%;
  height: 18px;
  border-radius: 999px;
  background: #1c1e22;
  margin: 0 auto 8px;
}

.phone-screen {
  border-radius: 22px;
  padding: 0;
  background: #f2f4f7;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
}

.image-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: linear-gradient(180deg, #f5fdfa 0%, #eef8f4 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.section-head h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
}

.grid {
  display: grid;
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.feature-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-showcase-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.feature-copy h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.feature-copy p {
  margin: 0;
  color: var(--text-muted);
}

.feature-gallery {
  display: grid;
  gap: 12px;
}

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

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

.mini-phone {
  width: 168px;
  border-radius: 24px;
  border: 6px solid #0f3028;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(5, 150, 106, 0.16);
  background: #0f3028;
  aspect-ratio: 9 / 19.5;
}

.mini-phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.cta {
  text-align: center;
  border-radius: 20px;
  border: 1px solid #cde8de;
  padding: 40px 20px;
  background: linear-gradient(150deg, #f7fffc 0%, #ebf9f4 70%);
}

.cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
}

.cta p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.cta-actions {
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    justify-content: center;
  }

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

  .feature-gallery {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

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

  .back-phone {
    transform: rotate(5deg) translate(30px, 10px);
  }

  .mini-phone {
    width: min(44vw, 170px);
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 0;
  }

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

  .mini-phone {
    width: 170px;
  }

  .back-phone,
  .front-phone {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
  }
}
