body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #f8fafb;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  padding: 0.5rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 48px;
  border-radius: 50%;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #2e7d5b;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #1b4d3e;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(120deg, #e6f4ea 0%, #f8fafb 100%);
  border-radius: 0 0 2rem 2rem;
}
.hero-logo {
  width: 90px;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.3rem;
  color: #4e6e5d;
  margin-bottom: 1.5rem;
}
.cta-buttons {
  margin: 1.5rem 0;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.btn.primary {
  background: #2e7d5b;
  color: #fff;
}
.btn.primary:hover {
  background: #256346;
}
.btn.secondary {
  background: #e0f2f1;
  color: #2e7d5b;
}
.btn.secondary:hover {
  background: #b2dfdb;
}

.how-it-works {
  padding: 2.5rem 0 1.5rem 0;
  background: #fff;
  border-radius: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.step {
  background: #f8fafb;
  border-radius: 1.5rem;
  padding: 1.5rem 1.2rem;
  width: 220px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  text-align: center;
}
.step-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.features {
  padding: 2.5rem 0 1.5rem 0;
}
.features h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.features-bg {
  position: relative;
  overflow: hidden;
}
.features-bg::before {
  content: none;
}
.features-bg > * {
  position: static;
  z-index: auto;
}
.features-grid {
  background: #fff;
}
.feature-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem 1.2rem;
  width: 240px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  text-align: center;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.screenshots {
  padding: 2.5rem 0 1.5rem 0;
}
.screenshots h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.screenshots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.screenshots-grid img {
  width: 180px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
}

.contact-section, .privacy-section {
  max-width: 500px;
  margin: 3rem auto;
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-section h1, .privacy-section h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-form input, .contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  border: 1px solid #cfd8dc;
  font-size: 1rem;
  background: #f8fafb;
  resize: none;
}
.contact-form button {
  align-self: flex-end;
}
.contact-info {
  text-align: center;
  color: #4e6e5d;
}

footer {
  background: #f8fafb;
  text-align: center;
  padding: 1.2rem 0 0.7rem 0;
  font-size: 1rem;
  color: #4e6e5d;
  margin-top: 2rem;
}
footer a {
  color: #2e7d5b;
  text-decoration: underline;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-content {
  flex: 1 1 320px;
  min-width: 280px;
}
.hero-image {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 320px;
  max-width: 90vw;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #fff;
}
.hero-desc {
  color: #4e6e5d;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.step-flex {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.step-img {
  width: 90px;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
}

.feature-flex {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-img {
  width: 70px;
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
}

@media (max-width: 900px) {
  .steps, .features-grid, .screenshots-grid {
    flex-direction: column;
    align-items: center;
  }
  .step, .feature-card, .screenshots-grid img {
    width: 90vw;
    max-width: 350px;
  }
  .hero-flex {
    flex-direction: column;
    align-items: center;
  }
  .hero-image img {
    width: 90vw;
    max-width: 350px;
  }
  .step-flex, .feature-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-img, .feature-img {
    width: 90vw;
    max-width: 200px;
  }
}

.hero-split {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60vh;
  padding: 3rem 1rem 2rem 1rem;
  overflow: hidden;
  background: none;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #e6f4ea 0%, #c8e6fa 100%);
  z-index: 0;
  border-radius: 0 0 2rem 2rem;
  opacity: 0.7;
}
.hero-left {
  flex: 1 1 350px;
  min-width: 300px;
  z-index: 1;
}
.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero-left .highlight {
  color: #2e7d5b;
  background: linear-gradient(90deg, #2e7d5b 60%, #4caf50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-animate {
  animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #2e7d5b33; }
  100% { box-shadow: 0 0 0 8px #2e7d5b11; }
}
.hero-right {
  flex: 1 1 350px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-phone {
  width: 340px;
  max-width: 90vw;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.10);
  background: #fff;
}

.how-works-zigzag {
  padding: 3rem 0 2rem 0;
  background: #fff;
  border-radius: 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.how-works-zigzag h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.how-step {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: flex-start;
  position: relative;
}
.how-step.reverse {
  flex-direction: row-reverse;
}
.how-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(120deg, #2e7d5b 60%, #4caf50 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #2e7d5b22;
}
.how-content {
  min-width: 180px;
  max-width: 340px;
}
.how-img {
  width: 120px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
}

.features-modern {
  padding: 3rem 0 2rem 0;
  background: #f8fafb;
}
.features-modern h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  background: none;
  border-radius: 0;
  padding: 0;
}
.feature-card.modern {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  width: 260px;
  box-shadow: 0 2px 12px rgba(44, 125, 91, 0.07);
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.feature-card.modern:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13);
}
.feature-card.modern .feature-icon {
  font-size: 2.3rem;
  margin-bottom: 0.7rem;
  color: #2e7d5b;
}

.mission {
  background: linear-gradient(120deg, #e6f4ea 0%, #f8fafb 100%);
  border-radius: 2rem;
  margin: 2.5rem 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.mission h2 {
  color: #2e7d5b;
  margin-bottom: 1rem;
}
.mission p {
  font-size: 1.2rem;
  color: #3a4a3f;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-section {
  background: #f8fafb;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.testimonial-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-author {
  font-size: 1.1rem;
  color: #2e7d5b;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.testimonials {
  background: #fff;
  border-radius: 2rem;
  margin: 2.5rem 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.testimonials h2 {
  color: #2e7d5b;
  margin-bottom: 1.5rem;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial {
  background: #f8fafb;
  border-radius: 1.2rem;
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  font-style: italic;
  color: #2e7d5b;
}
.testimonial span {
  display: block;
  margin-top: 1rem;
  color: #4e6e5d;
  font-style: normal;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #2e7d5b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #1b4d3e;
}
.footer-socials a {
  font-size: 1.3rem;
  margin-left: 0.7rem;
  vertical-align: middle;
  transition: transform 0.18s;
}
.footer-socials a:hover {
  transform: scale(1.2) rotate(-8deg);
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    align-items: center;
    min-height: unset;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .hero-left, .hero-right {
    min-width: 0;
    width: 100%;
    text-align: center;
  }
  .hero-phone {
    width: 90vw;
    max-width: 350px;
  }
  .how-step, .how-step.reverse {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .how-img {
    width: 90vw;
    max-width: 200px;
  }
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-card.modern {
    width: 90vw;
    max-width: 350px;
  }
  .testimonial-list {
    flex-direction: column;
    align-items: center;
  }
}

.apple-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60vh;
  padding: 4rem 1rem 2rem 1rem;
  background: none;
  overflow: hidden;
}
.apple-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #e6f4ea 0%, #c8e6fa 100%);
  z-index: 0;
  border-radius: 0 0 2rem 2rem;
  opacity: 0.8;
}
.apple-hero-content {
  flex: 1 1 400px;
  min-width: 320px;
  z-index: 1;
  padding-right: 2rem;
}
.apple-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  color: #222;
}
.apple-hero-highlight {
  color: #2e7d5b;
  background: linear-gradient(90deg, #2e7d5b 60%, #4caf50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.apple-hero-desc {
  font-size: 1.25rem;
  color: #4e6e5d;
  margin-bottom: 2rem;
}
.apple-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: #2e7d5b;
  color: #fff;
  box-shadow: 0 2px 12px #2e7d5b22;
  transition: background 0.2s, transform 0.18s;
  animation: pulse 1.5s infinite alternate;
}
.apple-cta:hover {
  background: #256346;
  transform: scale(1.04);
}
.apple-hero-mockup {
  flex: 1 1 400px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.apple-device-mockup {
  background: #fff;
  border-radius: 2.2rem;
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.10);
  padding: 1.2rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apple-device-mockup img {
  width: 340px;
  max-width: 90vw;
  border-radius: 1.5rem;
  display: block;
}

.apple-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 0 2rem 0;
  background: #fff;
  border-radius: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.apple-section-alt {
  flex-direction: row-reverse;
  background: #f8fafb;
}
.apple-section-content {
  flex: 1 1 400px;
  min-width: 260px;
  z-index: 1;
}
.apple-section-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2e7d5b;
}
.apple-section-content p {
  font-size: 1.15rem;
  color: #3a4a3f;
}
.apple-section-img {
  flex: 1 1 400px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apple-section-img img {
  width: 320px;
  max-width: 90vw;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #fff;
}

.apple-features {
  padding: 3rem 0 2rem 0;
  background: #fff;
  border-radius: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.apple-features h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #2e7d5b;
}
.apple-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}
.apple-feature-card {
  background: #f8fafb;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  width: 260px;
  box-shadow: 0 2px 12px rgba(44, 125, 91, 0.07);
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.apple-feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13);
}
.apple-feature-icon {
  font-size: 2.3rem;
  margin-bottom: 0.7rem;
  color: #2e7d5b;
}

.apple-trust {
  background: #f8fafb;
  border-radius: 2rem;
  margin: 2.5rem 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.apple-trust h2 {
  color: #2e7d5b;
  margin-bottom: 1.5rem;
}
.apple-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.apple-testimonial {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  font-style: italic;
  color: #2e7d5b;
  position: relative;
}
.apple-stars {
  color: #fbc02d;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
  font-style: normal;
}
.apple-testimonial span {
  display: block;
  margin-top: 1rem;
  color: #4e6e5d;
  font-style: normal;
  font-size: 1rem;
}

.apple-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #2e7d5b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #1b4d3e;
}
.footer-socials a {
  font-size: 1.3rem;
  margin-left: 0.7rem;
  vertical-align: middle;
  transition: transform 0.18s;
}
.footer-socials a:hover {
  transform: scale(1.2) rotate(-8deg);
}

@media (max-width: 900px) {
  .apple-hero {
    flex-direction: column;
    align-items: center;
    min-height: unset;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .apple-hero-content, .apple-hero-mockup {
    min-width: 0;
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .apple-device-mockup img {
    width: 90vw;
    max-width: 350px;
  }
  .apple-section, .apple-section-alt {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .apple-section-img img {
    width: 90vw;
    max-width: 200px;
  }
  .apple-features-grid {
    flex-direction: column;
    align-items: center;
  }
  .apple-feature-card {
    width: 90vw;
    max-width: 350px;
  }
  .apple-testimonials {
    flex-direction: column;
    align-items: center;
  }
}

.hero-section {
  background: inherit;
  padding: 0;
}
.container.hero-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  min-height: 70vh;
}
.hero-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 520px;
  text-align: left;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #22313a;
  margin-bottom: 0.3em;
  line-height: 1.1;
}
.hero-text h1 span {
  color: #4caf50;
}
.hero-sub {
  color: #6b7a86;
  font-size: 1.2rem;
  margin-bottom: 1.2em;
  font-weight: 500;
  line-height: 1.5;
}
.hero-tagline {
  color: #43a047;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2em;
}
.hero-btn-row {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
}
.hero-btn {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 0.9em 2em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.07);
  border: none;
  outline: none;
}
.hero-btn-primary {
  background: #4caf50;
  color: #fff;
  border: 2px solid #4caf50;
}
.hero-btn-primary:hover {
  background: #388e3c;
  border-color: #388e3c;
}
.hero-btn-secondary {
  background: #fff;
  color: #22313a;
  border: 2px solid #4caf50;
}
.hero-btn-secondary:hover {
  background: #e8f5e9;
  color: #388e3c;
  border-color: #388e3c;
}
.hero-btn-icon {
  font-size: 1.3em;
  display: flex;
  align-items: center;
}
.hero-mockup {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 480px;
  max-height: 70vh;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  padding: 0.5rem;
}
.hero-mockup img {
  width: 220px;
  height: 460px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: none;
  background: #fff;
}
@media (max-width: 900px) {
  .container.hero-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: unset;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .hero-mockup {
    height: 320px;
  }
  .hero-mockup img {
    width: 140px;
    height: 300px;
  }
}

.mobile-stack {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  padding: 2rem 0.5rem 1rem 0.5rem !important;
}
.mobile-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}
.mobile-step-card {
  background: #f8fafb;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(44, 125, 91, 0.07);
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.mobile-step-card .step-icon {
  font-size: 2.2rem;
}
.mobile-step-card .step-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e7d5b;
}

.mobile-step-card .step-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  text-align: center;
}
.mobile-step-card img {
  width: 90vw;
  max-width: 220px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
}
@media (max-width: 900px) {
  .mobile-stack {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 2rem 0.5rem 1rem 0.5rem !important;
  }
  .mobile-steps-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
  }
  .mobile-step-card {
    width: 100%;
    max-width: 350px;
    padding: 1.5rem 1rem;
  }
  .mobile-step-card img {
    width: 90vw;
    max-width: 220px;
  }
  .alt-carousel, .testimonial-bubbles {
    flex-direction: row;
    overflow-x: auto;
    gap: 1.2rem;
    align-items: stretch;
    width: 100vw;
    padding-bottom: 1rem;
  }
  .alt-card, .bubble {
    min-width: 240px;
    max-width: 90vw;
    flex: 0 0 auto;
  }
}
@media (min-width: 901px) {
  .mobile-steps-list.side-by-side {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2.2rem;
  }
  .mobile-step-card {
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 0;
  }
}

.easy-privacy {
  max-width: 600px;
  margin: 2.5rem auto;
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1.1rem;
  color: #2e7d5b;
}
.easy-privacy h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2e7d5b;
  font-size: 2rem;
}
.easy-privacy h2 {
  color: #256346;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}
.easy-privacy ul {
  margin: 0 0 1.2rem 1.2rem;
  padding: 0;
  list-style: disc inside;
}
.easy-privacy li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.easy-privacy p {
  margin-bottom: 1.2rem;
  color: #3a4a3f;
}
@media (max-width: 600px) {
  .easy-privacy {
    padding: 1.2rem 0.5rem;
    font-size: 1rem;
    border-radius: 1.2rem;
  }
  .easy-privacy h1 {
    font-size: 1.3rem;
  }
  .easy-privacy h2 {
    font-size: 1.05rem;
  }
}

.how-it-works-section {
  background: inherit;
  padding: 0 0 3rem 0;
}
.how-it-works-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.how-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #22313a;
  margin-bottom: 2.2rem;
  letter-spacing: -1px;
}
.how-steps-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.how-step-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(44, 125, 91, 0.07);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  width: 260px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.how-step-card:hover {
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13);
  transform: translateY(-6px) scale(1.03);
}
.how-step-card .step-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.how-step-card .step-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2e7d5b;
  margin-bottom: 0.5rem;
}
.how-step-card .step-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.how-step-card img {
  width: 120px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
  margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .how-steps-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .how-step-card {
    width: 95vw;
    max-width: 350px;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
  .how-step-card img {
    width: 90px;
  }
}

.how-subtitle {
  text-align: center;
  color: #8a939b;
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: -1rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0;
}

.features-section {
  background: #f7f8fa;
  padding: 0 0 3rem 0;
}
.features-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.features-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #22313a;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
.features-subtitle {
  text-align: center;
  color: #8a939b;
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2.5rem;
  letter-spacing: 0;
}

.safety-score-section {
  background: #f7f8fa;
  padding: 3rem 0 3rem 0;
}
.safety-score-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
}
.safety-score-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 520px;
  text-align: left;
}
.safety-score-title {
  font-size: 2rem;
  font-weight: 800;
  color: #22313a;
  margin-bottom: 0.7em;
  line-height: 1.1;
}
.safety-score-desc {
  color: #6b7a86;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
}
.safety-score-mockup {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 340px;
  max-height: 50vh;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  padding: 0.5rem;
}
.safety-score-mockup img {
  width: 140px;
  height: 320px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: none;
  background: #fff;
}
@media (max-width: 900px) {
  .safety-score-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: unset;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .safety-score-mockup {
    height: 220px;
  }
  .safety-score-mockup img {
    width: 90px;
    height: 200px;
  }
}

.ingredient-analysis-section {
  background: #f7f8fa;
  padding: 3rem 0 3rem 0;
}
.ingredient-analysis-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
}
.ingredient-analysis-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 520px;
  text-align: left;
}
.ingredient-analysis-title {
  font-size: 2rem;
  font-weight: 800;
  color: #22313a;
  margin-bottom: 0.7em;
  line-height: 1.1;
}
.ingredient-analysis-desc {
  color: #6b7a86;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
}
.ingredient-analysis-mockup {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 340px;
  max-height: 50vh;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  padding: 0.5rem;
}
.ingredient-analysis-mockup img {
  width: 140px;
  height: 320px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: none;
  background: #fff;
}
@media (max-width: 900px) {
  .ingredient-analysis-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: unset;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .ingredient-analysis-mockup {
    height: 220px;
  }
  .ingredient-analysis-mockup img {
    width: 90px;
    height: 200px;
  }
}

.personal-preference-section {
  background: #f7f8fa;
  padding: 3rem 0 3rem 0;
}
.personal-preference-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
}
.personal-preference-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 520px;
  text-align: left;
}
.personal-preference-title {
  font-size: 2rem;
  font-weight: 800;
  color: #22313a;
  margin-bottom: 0.7em;
  line-height: 1.1;
}
.personal-preference-desc {
  color: #6b7a86;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
}
.personal-preference-mockup {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 340px;
  max-height: 50vh;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  padding: 0.5rem;
}
.personal-preference-mockup img {
  width: 140px;
  height: 320px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: none;
  background: #fff;
}
@media (max-width: 900px) {
  .personal-preference-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: unset;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .personal-preference-mockup {
    height: 220px;
  }
  .personal-preference-mockup img {
    width: 90px;
    height: 200px;
  }
}

.product-alternatives-section {
  background: #f7f8fa;
  padding: 3rem 0 3rem 0;
}
.product-alternatives-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
}
.product-alternatives-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 520px;
  text-align: left;
}
.product-alternatives-title {
  font-size: 2rem;
  font-weight: 800;
  color: #22313a;
  margin-bottom: 0.7em;
  line-height: 1.1;
}
.product-alternatives-desc {
  color: #6b7a86;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.5;
}
.product-alternatives-mockup {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 340px;
  max-height: 50vh;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(44, 125, 91, 0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  padding: 0.5rem;
}
.product-alternatives-mockup img {
  width: 140px;
  height: 320px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: none;
  background: #fff;
}
@media (max-width: 900px) {
  .product-alternatives-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    min-height: unset;
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .product-alternatives-mockup {
    height: 220px;
  }
  .product-alternatives-mockup img {
    width: 90px;
    height: 200px;
  }
}

.reverse-row {
  display: flex !important;
  flex-direction: row-reverse !important;
  border: 2px dashed #4caf50;
}
.reverse-row > div {
  float: none !important;
  width: auto !important;
  flex: initial !important;
}
.reverse-row > div:first-child {
  order: 1 !important;
  background: #e0f7fa !important; /* debug color */
}
.reverse-row > div:last-child {
  order: 2 !important;
}
@media (max-width: 900px) {
  .ingredient-analysis-flex.reverse-row,
  .product-alternatives-flex.reverse-row {
    flex-direction: column !important;
  }
}

.features-cards-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.feature-card {
  background: #fff;
  border: 2px solid #e0e7ef;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(46, 125, 91, 0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  width: 280px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  border-color: #2e7d5b;
  box-shadow: 0 4px 24px rgba(46, 125, 91, 0.12);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2e7d5b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: 3.5rem;
  background: #e6f4ea;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 4px rgba(46, 125, 91, 0.08);
}
.feature-card-title {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #1b4d3e;
}
.feature-card-desc {
  font-size: 1rem;
  color: #3a4a3f;
  margin-bottom: 1.5rem;
}
.feature-screenshot {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}
.feature-screenshot img {
  width: 120px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e7ef;
}
@media (max-width: 900px) {
  .features-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .feature-card {
    width: 100%;
    max-width: 350px;
  }
  .feature-screenshot img {
    width: 100px;
  }
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #2e7d5b;
  margin-left: 0.3rem;
  letter-spacing: 0.01em;
  vertical-align: middle;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  display: inline-block;
} 