@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap');

:root {
  --brand-peach: #ffe5d0;
  --brand-blush: #ffd6e0;
  --brand-blue: #e5d6ff;
  --brand-brown: #a68b7c;
  --brand-cream: #fffaf6;
  --brand-accent: #ff6b81;
  --brand-dark: #4e3d36;
  --brand-shadow: 0 4px 16px rgba(160, 120, 100, 0.08);
}

body {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  background: var(--brand-cream);
  color: var(--brand-dark);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

header, .hero-section, .download-cta, footer {
  background: var(--brand-peach);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--brand-shadow);
  padding: 2rem 1rem;
  text-align: center;
}

.hero-section {
  min-height: 60vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-peach) 60%, var(--brand-blush) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="80" fill="%23ffd6e0" fill-opacity="0.18"/><circle cx="40" cy="160" r="30" fill="%23ff6b81" fill-opacity="0.08"/><circle cx="170" cy="60" r="20" fill="%23a68b7c" fill-opacity="0.07"/></svg>');
  background-repeat: repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero-content, .hero-image {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 520px;
  padding: 2rem 1rem;
}

.tagline {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.tagline-accent {
  color: var(--brand-accent);
}

.hero-description {
  font-size: 1.35rem;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}

.app-download-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.store-button img {
  border-radius: 18px;
  box-shadow: var(--brand-shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}

.store-button img:hover, .store-button img:focus {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,107,129,0.18);
}

.hero-image img {
  max-width: 340px;
  border-radius: 36px;
  box-shadow: 0 8px 32px rgba(160,120,100,0.13);
  margin-left: 2rem;
}

.key-benefits, .feature-showcase, .testimonials, .download-cta {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.benefits-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.benefit-card, .testimonial-card {
  flex: 1 1 260px;
  max-width: 260px;
  min-width: 220px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.benefit-card {
  background: var(--brand-cream);
  border-radius: 24px;
  box-shadow: var(--brand-shadow);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover, .benefit-card:focus {
  box-shadow: 0 8px 32px rgba(255,107,129,0.13);
  transform: translateY(-3px) scale(1.03);
}

.benefit-icon {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;
  display: block;
}

.feature-showcase {
  margin: 2rem auto;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--brand-blue);
  border-radius: 32px;
  box-shadow: var(--brand-shadow);
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 2.5rem 0;
}

.feature-block.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1 1 320px;
  max-width: 400px;
}

.feature-image {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
  font-size: 1.1rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5em;
  position: relative;
}

.feature-list li:before {
  content: '•';
  color: var(--brand-accent);
  position: absolute;
  left: 0;
  font-size: 1.5em;
  top: 0.1em;
}

.cta-button .download-now, .header-download-btn {
  background: linear-gradient(90deg, var(--brand-accent) 0%, #ffb86b 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(255,107,129,0.13);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.cta-button .download-now:hover, .header-download-btn:hover, .cta-button .download-now:focus, .header-download-btn:focus {
  background: linear-gradient(90deg, #ffb86b 0%, var(--brand-accent) 100%);
  box-shadow: 0 12px 32px rgba(255,107,129,0.18);
  transform: translateY(-2px) scale(1.04);
}

.testimonial-card {
  background: var(--brand-cream);
  border-radius: 24px 24px 24px 8px;
  box-shadow: 0 2px 12px rgba(160,120,100,0.10);
  padding: 1.7rem 1.2rem 1.2rem 1.2rem;
  text-align: left;
  font-style: italic;
  position: relative;
  margin-bottom: 1.2rem;
}

.testimonial-card:before {
  content: '';
  position: absolute;
  left: 1.2rem;
  bottom: -18px;
  width: 32px;
  height: 32px;
  background: var(--brand-cream);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(160,120,100,0.10);
  z-index: 0;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blush);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-right: 0.7rem;
  box-shadow: 0 1px 4px rgba(160,120,100,0.10);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  margin-top: 1.1rem;
  font-style: normal;
  color: var(--brand-brown);
  font-weight: 700;
  font-size: 1rem;
}

.download-cta {
  background: var(--brand-blush);
  border-radius: 32px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  max-width: 900px;
  box-shadow: var(--brand-shadow);
  text-align: center;
}

footer {
  margin-top: 3rem;
  border-radius: 32px 32px 0 0;
  box-shadow: var(--brand-shadow);
  background: var(--brand-cream);
  color: var(--brand-dark);
  padding: 1.2rem 1rem 0.7rem 1rem;
  text-align: center;
  position: relative;
}

footer:before {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blush) 60%, var(--brand-peach) 100%);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  max-width: 60px;
  width: 60px;
  height: auto;
  margin-bottom: 0.2rem;
}

.footer-logo-tagline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--brand-dark);
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.footer-links {
  margin: 0.2rem 0 0.2rem 0;
  font-size: 1rem;
}

.footer-links a {
  color: var(--brand-dark);
  text-decoration: underline;
  margin: 0 0.5rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--brand-accent);
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--brand-brown);
  margin-top: 0.2rem;
}

/* Logo styles */
.logo {
  display: block;
  margin: 0 auto 1.5rem auto;
  max-width: 180px;
  width: 100%;
  height: auto;
}

/* Responsive styles */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    min-height: 0;
  }
  .hero-image img {
    margin: 2rem auto 0 auto;
    max-width: 260px;
  }
  .benefits-grid, .testimonial-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .benefit-card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .feature-block, .feature-block.reverse {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
  .feature-content, .feature-image {
    max-width: 100%;
    width: 100%;
  }
  .feature-image img {
    max-width: 220px;
  }
}

@media (max-width: 700px) {
  .tagline {
    font-size: 1.5rem;
  }
  
  .app-download-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .store-button img {
    max-width: 200px;
    width: 100%;
    height: auto;
  }
}

/* Header improvements */
.main-header {
  background: var(--brand-blush);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--brand-shadow);
  padding: 1.2rem 0 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.header-logo {
  max-width: 80px;
  width: 80px;
  height: auto;
  margin-right: 1rem;
}

.header-tagline {
  font-size: 1.25rem;
  color: var(--brand-dark);
  font-weight: 600;
  flex: 1;
  text-align: left;
  margin-right: 1rem;
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
}

.header-download-btn {
  font-size: 1.15rem;
  padding: 1rem 2rem;
  border-radius: 32px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,107,129,0.10);
  background: var(--brand-accent);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.header-download-btn:hover, .header-download-btn:focus {
  background: #ff3b5c;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(255,107,129,0.18);
}

@media (max-width: 700px) {
  .main-header {
    border-radius: 0 0 24px 24px;
  }
  .header-inner {
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
  }
  .header-divider {
    display: none;
  }
  .header-logo {
    margin: 0 auto 0.5rem auto;
    max-width: 64px;
    width: 64px;
  }
  .header-tagline {
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    width: 100%;
  }
  .header-download-btn {
    margin: 0 0 0.5rem 0;
    width: 100%;
    max-width: 300px;
  }
  .hero-image img,
  .feature-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 340px;
    display: block;
    margin: 2rem auto 0 auto;
  }
  .feature-content .cta-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.2rem;
  }
}

/* Feature icons */
.icon-heart { color: var(--brand-accent); }
.icon-bear { color: var(--brand-brown); }
.icon-chat { color: var(--brand-blue); }
.icon-badge { color: var(--brand-peach); }

/* General improvements */
button, .store-button img, .header-download-btn, .download-now {
  outline: none;
}
button:focus, .store-button img:focus, .header-download-btn:focus, .download-now:focus {
  box-shadow: 0 0 0 3px var(--brand-blue);
}

/* Consistent spacing */
section, .key-benefits, .feature-showcase, .testimonials, .download-cta {
  margin-bottom: 2.5rem;
}

/* High readability */
body, p, li, a, span, h1, h2, h3 {
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 1.5rem 0 0 0;
}

.footer-social a img {
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.18s, transform 0.15s;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(160,120,100,0.10);
}

.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px #ffb86b);
  transform: scale(1.12);
} 