:root{
  /* Green scheme */
  --bg: #ffffff;
  --bg-soft: #f7faf7;
  --panel: #ffffff;
  --text: #0b0f11;
  --muted: #5b6b63;
  --brand: #16a34a;  /* green-600 */
  --brand-2: #22c55e; /* green-500 */
  --brand-3: #86efac; /* green-200 */
  --ring: rgba(34,197,94,.35);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(34, 16, 16, 0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  padding-top: 72px;
}

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

/* Layout */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-sizing: border-box;
  /* padding-right: calc(100vw - 100%); */
  padding-right: 15px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap: 48px;
  position: relative;
}

.navlinks-center {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-weight: 500;
  justify-content: center;
  flex: 1 1 auto;
  margin: 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  font-weight:800;
  letter-spacing:.2px;
  flex: 0 0 auto;
  margin: 0;
  padding-left: 8px;
}

.logo{
  width:34px;
  height:34px;
  border-radius:10px;
  background:none;
  display: flex;
  align-items: center;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.navlinks{
  display:flex;
  gap:24px;
  color:var(--muted);
  font-weight:500;
  align-items:center;
}

.nav-download {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin: 0;
}

.cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  color:white;
  border:0;
  background:none;
}

.ghost{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(0,0,0,.02);
  font-weight:700;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  background:var(--bg-soft);
}

.hero::before{
  content:"";
  position:absolute;
  inset:auto -10% 40% -10%;
  height:60%;
  background:
    radial-gradient(600px 300px at 20% 30%, rgba(34,197,94,.20), transparent 60%),
    radial-gradient(500px 250px at 90% 10%, rgba(134,239,172,.25), transparent 60%);
  pointer-events:none;
  filter:blur(0px);
}

.hero .container{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:36px;
  align-items:center;
  padding:86px max(24px, calc((100vw - 100%) / 2 + 24px));
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 16px;
  border-radius:999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}

.title{
  font-size: clamp(36px, 6vw, 64px);
  line-height:1.04;
  margin:16px 0 14px;
  font-weight:900;
  letter-spacing:-.02em;
}

.title .grad{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.subtitle{
  color:var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
  max-width:54ch;
}

.hero-ctas{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.meta{
  display:flex;
  gap:18px;
  align-items:center;
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
}

.stars{
  display:inline-flex;
  gap:2px;
  color:#16a34a;
}

/* Phone mock with carousel */
.device-wrap{
  position:relative;
  isolation:isolate;
}

.device-simple {
  width: min(292px, 66%);
  margin: 0 auto;
  border-radius: 36px;
  padding: 0;
  background: #fff;
  border: 8px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08), 0 0 0 8px #e5e7eb inset;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel{
  position:relative;
}

.track{
  display:flex;
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
}

.slide{
  min-width:100%;
  aspect-ratio:9/19.5;
  display:grid;
  place-items:center;
  background:#ffffff;
}

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

.dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 10;
}

.dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
  outline: none;
}

.dot.active{
  background: #16a34a;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.9);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--shadow);
  width:36px;
  height:36px;
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.arrow.left{left:10px}
.arrow.right{right:10px}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* Sections */
.section{
  padding:90px 0;
}

.section .header{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:28px;
}

.section h2{
  font-size: clamp(26px, 4.6vw, 40px);
  margin:0;
  letter-spacing: -0.01em;
}

.muted{
  color:var(--muted);
}

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

.card{
  background:var(--panel);
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 40px rgba(0,0,0,.15);
}

.icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background: rgba(34,197,94,.1);
  display:grid;
  place-items:center;
  font-weight:800;
  color: #16a34a;
  font-size: 22px;
}

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

.step{
  position:relative;
  padding-top:16px;
}

.badge{
  position:absolute;
  top:-6px;
  left:0;
  background:rgba(22,163,74,.12);
  border:1px solid rgba(22,163,74,.35);
  color:#065f46;
  font-weight:800;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 0 auto;
  max-width: 1200px;
}

.review-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.05);
}

.review-stars {
  color: #fbbf24;
  font-size: 20px;
  letter-spacing: 1px;
  display: flex;
  gap: 1px;
}

.review-text {
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.review-author {
  margin-top: auto;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 32px;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question:after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: #16a34a;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question:after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 32px 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
footer{
  padding:36px 0;
  border-top:1px solid rgba(0,0,0,.08);
  color:var(--muted);
  background:var(--bg-soft);
}

/* Reveal on scroll */
.reveal{
  opacity:1 !important;
  transform:none !important;
  transition:opacity .6s ease, transform .6s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* Utilities */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.center{text-align:center}

/* Additional Utilities */
.block-image {
  display: block;
}

.hero-cta-wrapper {
  display: flex;
  /* justify-content: flex-start; */
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.app-store-badge {
  height: 60px;
  width: auto;
  display: block;
}

.centered-eyebrow {
  margin: auto;
}

.dark-section-header {
  padding-top: 80px;
  margin-top: 100px;
  text-align: center;
}

.dark-section-container {
  max-width: 1000px;
  padding: 0 48px;
}

.dark-section-header-content {
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.dark-section-title {
  margin-bottom: 40px;
  text-align: center;
}

.dark-section-steps {
  max-width: 900px;
  margin: 0 auto;
}

.step-grid {
  gap: 48px;
}

.step-card {
  text-align: left;
  padding: 28px;
}

.step-badge {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}

.content-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.download-section {
  padding-top: 60px;
  background: var(--bg-soft);
}

.centered-ctas {
  justify-content: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-text {
  font-size: 13px;
}

.footer-link {
  margin-left: 18px;
  font-size: 13px;
}

/* Privacy Policy */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.privacy-title {
  font-size: 2.5rem;
  margin: 0 0 2rem;
  color: var(--text);
}

.privacy-section {
  margin: 2rem 0;
}

.privacy-section h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--brand);
}

.privacy-section p {
  margin: 1rem 0;
  color: var(--text);
  line-height: 1.6;
}

.privacy-link {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .privacy-title { font-size: 2rem; }
  .privacy-section h2 { font-size: 1.25rem; }
}

/* Dark Section */
.section-dark {
  background: #10151a;
  color: #fff;
  width: 100%;
  position: relative;
  padding: 120px 0;
  margin: 0;
}

.section-dark .container {
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark .badge {
  color: #fff;
}

.section-dark .card {
  background: #18202a;
  border-color: rgba(255,255,255,0.08);
}

.section-dark .card.step .muted {
  color: #94a3b8;
}

.section-dark .badge {
  background: rgba(34,197,94,.18);
  color: #a7f3d0;
  border-color: rgba(34,197,94,.35);
}

/* Language dropdown */
.lang-dropdown{
  position:relative;
}

.lang-btn{
  padding:6px 10px;
  border:1px solid #ddd;
  border-radius:6px;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:14px;
}

.lang-menu{
  position:absolute;
  top:110%;
  left:0;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  display:none;
  flex-direction:column;
  min-width:160px;
  max-height:300px;
  overflow-y:auto;
  z-index:100;
  padding: 4px 0;
}

.lang-menu button{
  background:none;
  border:0;
  padding:10px 16px;
  text-align:left;
  width:100%;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  transition: background-color 0.2s ease;
}

.lang-menu button:hover{
  background:#f3f4f6;
}

.lang-dropdown.open .lang-menu{
  display:flex;
}

/* Footer drop-up variant */
.lang-dropdown.drop-up .lang-menu{
  top:auto;
  bottom:110%;
  right:0;
  left:auto;
}

/* Mobile navigation */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #16a34a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  --bg-soft: #ffffff;
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #16a34a;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.mobile-nav .close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-nav .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-nav a {
  font-size: 1.8rem;
  color: var(--text) !important;
  text-decoration: none;
  margin: 12px 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 600;
  padding: 12px;
  transition: color 0.2s ease;
  display: inline-block;
}

.mobile-nav a:hover {
  color: rgba(0, 0, 0, 0.7) !important;
  background: none;
}

.mobile-nav .download-section {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-nav .download-section img {
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

.mobile-nav .download-section img:hover {
  transform: translateY(-2px);
}

/* Navigation buttons */
.navlinks .cta,
.nav-download .cta {
  background: #16a34a;
  color: white;
  box-shadow: 0 10px 30px rgba(34,197,94,.15);
  border-radius: 6px;
  padding: 7px 16px;
  font-weight: 500;
  font-size: 15px;
  border: none;
  transition: background 0.18s, transform 0.18s;
}

.navlinks .cta:hover,
.nav-download .cta:hover {
  background: #15803d;
}

.navlinks-center a {
  color: var(--muted);
  transition: color 0.18s;
}

.navlinks-center a:hover {
  color: #16a34a;
}

/* Responsive */
@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 56px 20px;
  }
  .features,
  .steps,
  .pricing,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  header .navlinks {
    display: none;
  }
  .arrow {
    display: none;
  }
  .hero::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .navlinks-center,
  .nav-download {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
  .mobile-nav {
    --brand: #0b0f11;
    --brand-2: #0b0f11;
    --brand-3: #0b0f11;
  }
}

@media (min-width: 901px) {
  .mobile-menu-btn,
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .section-dark .steps {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .device {
    animation: none;
  }
  .track {
    transition: none;
  }
  .track-marquee {
    animation: none;
  }
}
