/* style.css - Mobile-First Optimized */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafcf8;
  color: #1e2a2f;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* header / nav */
header {
  padding: 1rem 0 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1d3b2f;
  text-decoration: none;
}

.logo i {
  color: #3ba86d;
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1e2a2f;
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.nav-links a:hover {
  color: #3ba86d;
}

/* Buttons - optimized for touch */
.btn-primary, .btn-ios {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  min-height: 52px;
  min-width: 160px;
  border: none;
  touch-action: manipulation;
}

.btn-primary {
  background: #1d3b2f;
  color: white;
  box-shadow: 0 12px 24px -10px rgba(29, 59, 47, 0.25);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-primary:hover {
  background: #2a5642;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -10px rgba(29, 59, 47, 0.35);
}

.btn-ios {
  background: #eaf3ee;
  color: #1d3b2f;
  opacity: 0.75;
}

.btn-ios:active {
  transform: scale(0.97);
}

.btn-ios:hover {
  background: #d4e6dd;
  opacity: 1;
}

.btn-primary i, .btn-ios i {
  font-size: 1.2rem;
}

/* hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 1.5rem;
  gap: 2rem;
}

.hero-text {
  width: 100%;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #1d2c24;
}

.hero-text h1 span {
  background: linear-gradient(145deg, #3ba86d, #1d7a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 1.2rem 0 1.8rem;
  color: #385a48;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.rating {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: #3f6854;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.rating i {
  color: #f5b342;
  font-size: 0.95rem;
}

.hero-graphic {
  width: 100%;
  background: linear-gradient(135deg, #eaf5ef, #d6e9df);
  border-radius: 32px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px -12px rgba(0,20,10,0.08);
  min-height: 200px;
}

.hero-graphic i:first-child {
  font-size: 3.2rem;
  color: #1d7a4a;
  background: rgba(255,255,255,0.8);
  padding: 0.8rem;
  border-radius: 60px;
  margin-bottom: 1rem;
}

.hero-graphic h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1d3b2f;
}

.hero-graphic p {
  color: #2d4f3e;
  max-width: 280px;
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

.food-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
  font-size: 1.6rem;
}

.food-icons i {
  background: none !important;
  padding: 0 !important;
  font-size: 1.6rem !important;
}

.food-icons .fa-apple-alt { color: #1d7a4a; }
.food-icons .fa-carrot { color: #e68a2e; }
.food-icons .fa-drumstick-bite { color: #b86b3a; }

/* features */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: #1a2c23;
}

.section-sub {
  color: #3c5f4c;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.features {
  padding: 2.5rem 0 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.feature-card {
  background: white;
  padding: 1.5rem 1.25rem;
  border-radius: 28px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.06);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.02);
}

.feature-card:active {
  transform: scale(0.98);
}

.feature-card i {
  font-size: 2rem;
  color: #3ba86d;
  margin-bottom: 0.8rem;
  background: #eaf5ef;
  padding: 0.6rem;
  border-radius: 18px;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.feature-card p {
  color: #2e4d3d;
  font-size: 0.9rem;
}

/* HOW IT WORKS - OPTIMIZED */
.how-section {
  background: #f2f8f4;
  padding: 2.5rem 0;
  margin: 1.5rem 0 2.5rem;
}

.how-section .container {
  padding: 0 1.25rem;
}

.how-section .section-title {
  font-size: 1.8rem;
  text-align: center;
}

.how-section .section-sub {
  text-align: center;
  margin-bottom: 2.5rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background: white;
  padding: 1.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.2s;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1d3b2f;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d2c24;
}

.step p {
  color: #2f4f3e;
  font-size: 0.95rem;
  margin-left: 0;
  padding-left: 3.25rem;
}

.step-arrow {
  display: none;
}

/* testimonial */
.testimonial {
  background: white;
  border-radius: 32px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.02);
  border: 1px solid #ecf3ef;
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.testimonial blockquote {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1f342b;
  font-style: italic;
}

.testimonial blockquote i {
  color: #3ba86d;
  margin-right: 4px;
}

.testimonial cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  color: #1d3b2f;
  font-size: 0.95rem;
}

.testimonial .badge {
  background: #eaf3ee;
  padding: 0.4rem 1.5rem;
  border-radius: 60px;
  font-weight: 600;
  color: #1d3b2f;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.testimonial .badge i {
  color: #e0646a;
}

/* final cta */
.final-cta {
  text-align: center;
  padding: 1.5rem 0 2.5rem;
}

.final-cta h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.final-cta p {
  color: #385a48;
  max-width: 400px;
  margin: 0.5rem auto 1.5rem;
  font-size: 1rem;
}

.final-cta .cta-group {
  flex-direction: column;
  align-items: center;
}

.final-cta .btn-primary,
.final-cta .btn-ios {
  width: 100%;
  max-width: 280px;
}

/* footer */
footer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.03);
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  color: #385a48;
}

footer .logo {
  font-size: 1.3rem;
  justify-content: center;
}

.copy {
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #1e2a2f;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.2rem 0;
}

.footer-links a:hover {
  color: #3ba86d;
}

/* TABLET & DESKTOP */
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    flex-direction: row;
    gap: 1.5rem;
    align-items: stretch;
  }
  
  .step {
    flex: 1;
    padding: 1.5rem 1.25rem;
  }
  
  .step p {
    padding-left: 0;
    margin-top: 0.3rem;
  }
  
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .step .num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3ba86d;
    font-size: 1.5rem;
    opacity: 0.5;
    flex-shrink: 0;
    padding: 0 0.25rem;
  }
  
  .final-cta .cta-group {
    flex-direction: row;
    justify-content: center;
  }
  
  .final-cta .btn-primary,
  .final-cta .btn-ios {
    width: auto;
  }
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    text-align: left;
    padding: 3.5rem 0 2.5rem;
    gap: 3rem;
  }
  
  .hero-text {
    text-align: left;
    flex: 1 1 50%;
  }
  
  .hero-text h1 {
    font-size: 3.5rem;
  }
  
  .hero-text p {
    margin-left: 0;
    margin-right: 0;
  }
  
  .cta-group {
    justify-content: flex-start;
  }
  
  .rating {
    justify-content: flex-start;
  }
  
  .hero-graphic {
    flex: 1 1 40%;
    min-height: 260px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 3rem 2.5rem;
  }
  
  footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  footer .logo {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .btn-primary, .btn-ios {
    min-width: 140px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    min-height: 44px;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .step {
    padding: 1.25rem 1rem;
  }
  
  .step p {
    padding-left: 2.75rem;
    font-size: 0.9rem;
  }
}
.page-header {
  background: linear-gradient(135deg, #f2f8f4, #e6f0ea);
  padding: 3rem 0 2.5rem;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1d2c24;
  margin-bottom: 0.4rem;
}

.page-header p {
  font-size: 1.15rem;
  color: #385a48;
}

/* Section Padding */
.section-padding {
  padding: 3rem 0;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-content .section-title {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.about-text {
  font-size: 1.05rem;
  color: #2e4d3d;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  background: #f2f8f4;
  padding: 1.2rem 0.5rem;
  border-radius: 16px;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1d3b2f;
}

.stat-label {
  font-size: 0.85rem;
  color: #385a48;
  margin-top: 0.2rem;
}

.about-image {
  background: linear-gradient(135deg, #eaf5ef, #d6e9df);
  border-radius: 32px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  position: relative;
}

.about-image i {
  font-size: 5rem;
  color: #1d7a4a;
  background: rgba(255,255,255,0.8);
  padding: 1.5rem;
  border-radius: 60px;
}

.about-image-badge {
  margin-top: 1.5rem;
  background: white;
  padding: 0.6rem 1.8rem;
  border-radius: 60px;
  font-weight: 600;
  color: #1d3b2f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.about-image-badge i {
  font-size: 1rem;
  padding: 0;
  background: none;
  color: #e0646a;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-card {
  background: white;
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.team-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eaf5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.team-avatar i {
  font-size: 2rem;
  color: #1d7a4a;
}

.team-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1d2c24;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.9rem;
  color: #3ba86d;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.9rem;
  color: #2e4d3d;
  line-height: 1.5;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: all 0.2s;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.value-card i {
  font-size: 2.2rem;
  color: #3ba86d;
  margin-bottom: 0.8rem;
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1d2c24;
}

.value-card p {
  font-size: 0.9rem;
  color: #2e4d3d;
}

/* Legal Pages (Privacy & Terms) */
.legal-content {
  padding: 2rem 0 3rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d2c24;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.legal-section p {
  color: #2e4d3d;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.legal-section ul {
  margin: 0.8rem 0 1rem 1.5rem;
  color: #2e4d3d;
  line-height: 1.7;
}

.legal-section ul li {
  margin-bottom: 0.4rem;
}

.legal-section ul li strong {
  color: #1d2c24;
}

.legal-section a {
  color: #3ba86d;
  text-decoration: none;
  font-weight: 600;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Responsive - About, Privacy, Terms */
@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about-stats {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .about-image {
    min-height: 180px;
    padding: 2rem 1rem;
  }
  
  .about-image i {
    font-size: 3.5rem;
    padding: 1rem;
  }
}
.logo-img {
  height: 32px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1d3b2f;
  text-decoration: none;
}

@media (max-width: 480px) {
  .logo-img {
    height: 28px;
  }
  
  .logo {
    font-size: 1.4rem;
    gap: 0.4rem;
  }
}
.hero-graphic {
  width: 100%;
  background: linear-gradient(135deg, #eaf5ef, #d6e9df);
  border-radius: 32px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -12px rgba(0,20,10,0.08);
  min-height: 200px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

@media (max-width: 640px) {
  .hero-graphic {
    min-height: 160px;
    padding: 1rem;
  }
  
  .hero-image {
    max-height: 250px;
    border-radius: 16px;
  }
}

@media (min-width: 900px) {
  .hero-graphic {
    min-height: 260px;
    padding: 2rem;
  }
  
  .hero-image {
    max-height: 400px;
  }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  min-height: 52px;
  min-width: 160px;
  border: 2px solid #1d3b2f;
  background: transparent;
  color: #1d3b2f;
  touch-action: manipulation;
}

.btn-secondary:hover {
  background: #1d3b2f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(29, 59, 47, 0.25);
}

.btn-secondary:active {
  transform: scale(0.97);
}

.btn-secondary i {
  font-size: 1.2rem;
}