* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #222;
}

/* HEADER */

header {
  padding: 18px 40px;
  background: #f7f7f7;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
}

header img {
  height: 60px;
}

/* HERO */

.hero {
  padding: 80px 40px 60px;
  background: linear-gradient(135deg, #07a94f 0%, #f7c623 100%);
  color: #ffffff;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
  animation: fadeInUp 0.9s ease-out;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin: 0 0 16px;
  font-weight: 900;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

.badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.cta-buttons {
  margin-top: 24px;
}

.cta-buttons a {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 10px;
}

.cta-primary {
  background: #ffffff;
  color: #067a39;
  border: 2px solid #ffffff;
}

.cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  background: transparent;
}

.hero-mockup {
  flex: 1 1 260px;
  min-width: 260px;
  text-align: center;
  position: relative;
}

.hero-mockup img {
  width: 260px;
  max-width: 100%;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.35));
  animation: floatPhone 4s ease-in-out infinite;
}

/* SECTIONS */

.section {
  padding: 60px 25px;
  text-align: center;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #067a39;
}

.section p.subtitle {
  max-width: 540px;
  margin: 0 auto 35px;
  color: #555;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.feature-box {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 22px 20px;
  width: 260px;
  border: 1px solid #e6e6e6;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.feature-box h3 {
  color: #067a39;
  margin-top: 0;
}

.preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.preview-text {
  flex: 1 1 320px;
  text-align: left;
}

.preview-mockup {
  flex: 1 1 260px;
  text-align: center;
}

.preview-mockup img {
  width: 260px;
  max-width: 100%;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.35));
  animation: floatPhone 4.5s ease-in-out infinite;
}

/* SIGNUP */

.signup {
  padding: 60px 25px 70px;
  background: #f7fdf9;
  text-align: center;
}

.signup p {
  max-width: 520px;
  margin: 0 auto 18px;
  color: #444;
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.signup-form input[type="email"] {
  padding: 12px 14px;
  min-width: 260px;
  max-width: 360px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-size: 0.95rem;
}

.signup-form button {
  padding: 12px 20px;
  border-radius: 8px;
  background: #07a94f;
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
}

.signup-form button:hover {
  background: #068a40;
}

.signup .small-print {
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
}

/* FOOTER */

footer {
  background: #0c0c0c;
  color: #ffffff;
  text-align: center;
  padding: 22px 15px;
  font-size: 0.88rem;
}

/* ANIMATIONS */

@keyframes floatPhone {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .hero {
    padding: 60px 18px 40px;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  header {
    padding: 14px 20px;
  }

  header img {
    height: 50px;
  }
}


.sv-early-access {
  background: #f5fff7;
  border-top: 3px solid #0f7f3c;
  border-bottom: 3px solid #0f7f3c;
  padding: 2.5rem 1.5rem;
  margin-top: 1.5rem;
}

.sv-early-access-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sv-early-access h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sv-early-access-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.sv-early-access-form input[type="email"] {
  padding: 0.75rem 1rem;
  min-width: 240px;
  max-width: 320px;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.sv-early-access-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #0f7f3c;
  color: #ffffff;
}

.sv-early-access-form button:hover {
  opacity: 0.9;
}

.sv-early-access-note {
  font-size: 0.85rem;
  color: #555;
}

.sv-early-access-contact {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.sv-early-access-contact a {
  text-decoration: underline;
}