/* ═══════════════════════════════════════════════════
   ECO FETCH WEBSITE — STYLESHEET
   Brand green: #1AB045 | Blue: #0284C7 | Teal: #059669
════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #1AB045;
  --green-dark:   #148A36;
  --green-light:  #E8F9EE;
  --green-mid:    #DCFCE7;
  --teal:         #059669;
  --teal-light:   #D1FAE5;
  --blue:         #0284C7;
  --blue-light:   #E0F2FE;
  --text:         #111827;
  --text-mid:     #374151;
  --text-sub:     #6B7280;
  --border:       #E5E7EB;
  --bg:           #ffffff;
  --bg-alt:       #F9FAFB;
  --radius:       16px;
  --radius-lg:    24px;
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); overflow-x: hidden; }

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-sub); line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  border-radius: 12px; padding: 12px 24px; cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,176,69,0.3); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green-light); }
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: 14px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--text); }
.logo-accent { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--text-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-link { padding: 16px 24px; font-size: 16px; font-weight: 600; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-link:hover { background: var(--green-light); color: var(--green); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 140px 0 96px; background: linear-gradient(160deg, #F0FDF4 0%, #fff 60%, #EFF6FF 100%);
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.hero-circle { position: absolute; border-radius: 50%; opacity: 0.12; }
.c1 { width: 600px; height: 600px; background: var(--green); top: -200px; right: -100px; }
.c2 { width: 300px; height: 300px; background: var(--teal); bottom: -80px; left: -60px; }
.c3 { width: 200px; height: 200px; background: var(--blue); top: 40%; right: 25%; }

.hero-inner { display: flex; align-items: center; gap: 64px; position: relative; z-index: 1; }

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); border: 1px solid #BBF7D0;
  color: var(--green-dark); font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.7; } }

.hero-title {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
}

.hero-subtitle { font-size: 18px; color: var(--text-sub); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text-sub); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-image-wrap { flex: 0 0 auto; display: flex; justify-content: center; }
.hero-phone-mock {
  position: relative; width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.phone-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,176,69,0.15) 0%, transparent 70%);
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.hero-app-img { width: 260px; height: 260px; object-fit: contain; position: relative; z-index: 1; filter: drop-shadow(0 16px 48px rgba(26,176,69,0.25)); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  border: 1.5px solid var(--border); position: relative; overflow: hidden;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-green:hover { border-color: var(--green); }
.card-teal:hover { border-color: var(--teal); }
.card-blue:hover { border-color: var(--blue); }

.service-icon-wrap {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.green-bg { background: var(--green-mid); }
.teal-bg { background: var(--teal-light); }
.blue-bg { background: var(--blue-light); }

.service-img { width: 52px; height: 52px; object-fit: contain; }

.service-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-sub); line-height: 1.6; margin-bottom: 20px; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-list li { font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.check { font-weight: 700; font-size: 13px; }
.check.green { color: var(--green); }
.check.teal { color: var(--teal); }
.check.blue { color: var(--blue); }

.service-tag {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.green-tag { background: var(--green-mid); color: var(--green-dark); }
.teal-tag { background: var(--teal-light); color: var(--teal); }
.blue-tag { background: var(--blue-light); color: var(--blue); }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  justify-content: center; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 180px; max-width: 220px; text-align: center;
  padding: 0 16px;
}
.step-arrow { font-size: 28px; color: var(--border); align-self: center; flex-shrink: 0; padding: 0 8px; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 15px; font-weight: 800; margin-bottom: 12px;
}
.green-num { background: var(--green); color: #fff; }
.step-icon { font-size: 40px; margin-bottom: 12px; }
.step-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-sub); line-height: 1.6; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.feature-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

/* ── PRICING ── */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }

.pricing-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-pricing { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,176,69,0.1); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 999px;
}
.pricing-icon { font-size: 40px; margin-bottom: 16px; }
.green-icon {} .teal-icon {} .blue-icon {}
.pricing-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.pricing-basis { font-size: 13px; color: var(--text-sub); margin-bottom: 20px; }
.pricing-includes { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pricing-includes li { font-size: 14px; color: var(--text-mid); padding-left: 16px; position: relative; }
.pricing-includes li::before { content: "·"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pricing-note { font-size: 14px; color: var(--text-sub); }
.pricing-note strong { color: var(--text); font-size: 18px; }
.pricing-footer { text-align: center; font-size: 14px; color: var(--text-sub); }

/* ── DOWNLOAD ── */
.download {
  background: linear-gradient(135deg, #0F7A2C 0%, #1AB045 50%, #059669 100%);
  position: relative; overflow: hidden;
}
.download::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.download-inner { display: flex; align-items: center; gap: 64px; position: relative; z-index: 1; }
.download-content { flex: 1; }

.light-eyebrow { color: rgba(255,255,255,0.7); }
.download-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.download-sub { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }

.download-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }

.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 14px;
  padding: 12px 24px; text-decoration: none; transition: var(--transition);
}
.store-btn:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.google-btn {}
.store-btn-text { display: flex; flex-direction: column; }
.store-sub { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500; }
.store-name { font-size: 17px; font-weight: 700; color: #fff; }

.download-note { font-size: 13px; color: rgba(255,255,255,0.55); }

.download-img-wrap { flex: 0 0 auto; position: relative; display: flex; align-items: center; justify-content: center; }
.download-img-glow {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}
.download-app-icon { width: 200px; height: 200px; object-fit: contain; border-radius: 40px; box-shadow: 0 24px 64px rgba(0,0,0,0.25); position: relative; z-index: 1; }

/* ── FOOTER ── */
.footer { background: #0D1117; color: rgba(255,255,255,0.85); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { width: 36px; height: 36px; border-radius: 10px; }
.footer-logo-text { font-size: 20px; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 8px; }
.footer-company { font-size: 13px; color: rgba(255,255,255,0.35); }

.footer-links-group { display: flex; flex-direction: column; gap: 0; }
.footer-links-group h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links-group a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; padding: 5px 0; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--green); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── ANIMATIONS ── */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate-delay] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s; }
[data-animate].visible,
[data-animate-delay].visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-image-wrap { display: none; }
  .download-img-wrap { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .hero { padding: 100px 0 64px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step { max-width: 300px; }

  .download-inner { flex-direction: column; text-align: center; }
  .download-btns { justify-content: center; }
  .download-img-wrap { display: flex; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .section-title { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn-large { width: 100%; justify-content: center; }
  .featured-pricing { margin-top: 16px; }
}
